/**
 * Common stylesheet - used for both backend and frontend, mainly by dFrame javascript object.
 */
 
/**** BASE FOR NORMALIZING PROPERTIES ****/
*.df_base
{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 11px;
	color: #000;
	text-align: left;
	line-height: 14px;
}

*.df_base A
{
	color: #000;
}

*.df_base TABLE
{
	font-size: 11px;
}

*.df_base INPUT, *.df_base SELECT, *.df_base TEXTAREA
{
	font-size: 11px;
}

/**** MODAL WINDOWS ****/

DIV.df_modal
{
	position: fixed;
	left: -2000px;
	top: -2000px;
}

DIV.df_modalinner
{
	position: relative;
	border: 1px solid #CCC;
	padding: 12px;
	background: #FFF;
	z-index: 1;
}

DIV.df_modalbg
{
	position:absolute;
	width: 100%;
	height: 100%;
	
	border: none;
	display: block;
	margin: 0;
	padding: 0;
}

DIV.df_modalbg_n
{
	top: -12px;
	left: 0px;
	height: 12px;
	background: url(../design/common/modalshadow_v.png) top left;
}

DIV.df_modalbg_e
{
	right: -12px;
	top: 0px;
	width: 12px;
	background: url(../design/common/modalshadow_h.png) top right;
}

DIV.df_modalbg_s
{
	left: 0px;
	bottom: -12px;
	height: 12px;
	background: url(../design/common/modalshadow_v.png) bottom left;
}

DIV.df_modalbg_w
{
	left: -12px;
	top: 0;
	width: 12px;
	background: url(../design/common/modalshadow_h.png) top left;
}

DIV.df_modalbg_ne
{
	right: -12px;
	top: -12px;
	width: 12px;
	height: 12px;
	background: url(../design/common/modalshadow.png) top right;
}

DIV.df_modalbg_nw
{
	left: -12px;
	top: -12px;
	width: 12px;
	height: 12px;
	background: url(../design/common/modalshadow.png) top left;
}

DIV.df_modalbg_se
{
	right: -12px;
	bottom: -12px;
	width: 12px;
	height: 12px;
	background: url(../design/common/modalshadow.png) bottom right;
}

DIV.df_modalbg_sw
{
	left: -12px;
	bottom: -12px;
	width: 12px;
	height: 12px;
	background: url(../design/common/modalshadow.png) bottom left;
}

SPAN.df_modaltitle
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 22px;
	background: url(../design/bg_navigation.png) repeat-x center;
	cursor: default;
}

SPAN.df_modaltitle SPAN
{
	display: block;
	font-size: 14px;
	font-weight: bold;
	padding: 2px 20px 0 10px;
	color: #FFF;
}

SPAN.df_modaltitle_move
{
	cursor: move;
}

SPAN.df_modalclose
{
	position: absolute;
	top: -11px;
	right: -13px;
	width: 26px;
	height: 28px;
	background: url(../design/common/modalcloser.png) top left;
	cursor: pointer;
	z-index: 1;
}

SPAN.df_modalclose:hover
{
	background-image: url(../design/common/modalcloser_hover.png)
}

DIV.df_modalcontent
{
	margin-top: 22px;
	position: relative;
}

DIV.df_modalcontent_buttons
{
	margin-bottom: 35px;
}

DIV.df_modalbuttons
{
	position: absolute;
	text-align: right;
	height: 22px;
	padding: 12px 0 12px 0;
	bottom: 0;
	right: 12px;
}

DIV.df_prompt INPUT
{
	width: 100%;
	border: 1px solid #999;
}

/**** UI BLOCKING ****/

DIV.df_shadow
{
	position: fixed;
	left: 0px;
	top: 0px;
	filter: alpha(opacity=60);
	opacity: 0.6;
	background: #000;
	width: 100%;
	height: 100%;
}

DIV.df_waiter
{
	position: fixed;
	left: 0px;
	top: 0px;
	background: url(../design/symbols/reload_bar.gif) no-repeat center;
	width: 100%;
	height: 100%;
}

IFRAME.df_iframeshim_applet
{
	position: absolute;
	border: 0;
	padding: 0;
	margin: 0;
	background: url(../design/bg_lines2.gif) #FFF;
}

IFRAME.df_iframeshim
{
	position: absolute;
	left: 0;
	top: 0;
	border: 0;
	padding: 0;
	margin: 0;
	background: #FFF;
	z-index: -100;
}

/**** LOADING ****/

*.df_loading
{
	background: url("../design/symbols/reload_big.gif") no-repeat center;
	min-height: 300px;
}