/*
	Used to display floating div with a dimming backgroud.
	div.dimmer is used for the dimming of the background.
	div.dimming is used to display the floating div over the dimmed background
	floatingheader is used for the title bar of the floating div.
	whitelink is for the links on the div titlebar
*/

#TB_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
	height:100%;
	width:100%;
}

* html #TB_overlay { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_HideSelect{
	z-index:99;
	position:fixed;
	top: 0;
	left: 0;
	background-color:#fff;
	border:none;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	height:100%;
	width:100%;
}

* html #TB_HideSelect { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}
 
div.dimming {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	background-color:#FFFFFF;
	position:absolute;
	z-index:10000;
	visibility: hidden;
	border-style: solid;
	border-color: #999999;
	border-width: 0px;
}

table.floatingHeader
{
	color:#ffffff; 
	border:0px solid #ccc; 
	background-image:url(../images/level1_t.gif); 
	background-repeat:repeat-x; 
	background-color:#FFFFFF;
	font-family:Arial; 
	font-weight:bold; 
	font-size:12px; 
	padding:0px 0px 0px 5px;
}

table.floatingFooter
{
	
	background-image:url(../images/level1_b.gif); 
	background-repeat:no-repeat; 
	background-color:Transparent;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}

.whitelink
{
	color:#ffffff; 
	font-family:Arial; 
	font-weight:bold; 
	font-size:10px; 
	height:19px; 
	padding:0px 0 0 5px;
	text-decoration: underline;
}

.whitelink:hover
{
	color:#ffffff; 
	font-family:Arial; 
	font-weight:bold; 
	font-size:10px; 
	height:19px; 
	padding:0px 0 0 5px;
	text-decoration: none;
}

