/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
/*
*{padding: 0; margin: 0;}
html, body {
min-height: 100%;
height: auto !important;
height: 100%
}
*/

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_window {
	font: 12px Arial, Helvetica, sans-serif;
	color: #333333;
}

#TB_window a:link {color: #666666;}
#TB_window a:visited {color: #666666;}
#TB_window a:hover {color: #000;}
#TB_window a:active {color: #666666;}
#TB_window a:focus{color: #666666;}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_overlay {
	position: fixed;
	z-index:100;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	background-color:#000;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

#TB_window {
	position: fixed;
    top: 50%;
    left: 50%;
	background: #ffffff;
	z-index: 102;
	color:#000000;
	display:none;
	border: 4px solid #525252;
	text-align:left;
}

#TB_window img {
	display: block;
	margin: 10px 0 0 15px;
}

#TB_title {
	height: 24px;
}

#TB_galleryLegend {
	float: left;
	margin-top: 4px;
	margin-left: 14px;
	position: relative;
	top: 5px;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	font-family: Arial, Helvetica, Verdana;
	color: #404040;
	visibility: hidden;
}

#TB_galleryNavigation {
	height: 16px;
	padding-top: 9px;
	text-align: center;
}

#TB_galleryNavigation a {
	color: #404040;
	width: 20px;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	font-family: Arial, Helvetica, Verdana;
	text-decoration: none;
	padding: 1px;
}

#TB_galleryNavigation a#TB_prev {
	margin-right: 4px;
}

#TB_galleryNavigation a#TB_prev_inactive {
	margin-right: 4px;
	color: #BBBBBB;
}

#TB_galleryNavigation a#TB_next:hover,
#TB_galleryNavigation a#TB_prev:hover {
	color: black;	
}

#TB_galleryNavigation a#TB_next {
	margin-left: 4px;
}

#TB_galleryNavigation a#TB_next_inactive {
	margin-left: 4px;
	color: #BBBBBB;
}

#TB_closeImageWindow {
	float: right;
	margin-top: 4px;
	margin-right: 15px;
	position: relative;
	top: 5px;
}

#TB_closeAjaxWindow {
	margin-bottom: 1px;
	margin-right: 5px;
	margin-top: 4px;
	text-align:right;
	float:right;
}

a#TB_closeWindowButton {
	background-image: url('close.gif');
	display: block;
	width: 16px;
	height: 16px;
	background-color: #525252;
}

#TB_ajaxWindowTitle{
	float: left;
	padding: 0px 0 0px 5px;
	margin-bottom: 1px;
	line-height: 22px;
	font-size: 12px;
	font-weight: bold;
}

#TB_caption{
	height: 25px;
	padding: 7px 15px 10px 15px;
	float:left;
}

#TB_ajaxContent{
	clear: both;
	padding: 2px 15px 15px 15px;
	overflow: auto;
	text-align: left;
	line-height: 1.4em;
}

#TB_ajaxContent p {
	padding: 5px 0px 5px 0px;
}

#TB_load {
	position: fixed;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px; /* -height/2 0 0 -width/2 */
	display:none;
	height:100px;
	width:100px;
	z-index:101;
	background-image: url('loading.gif');
}

#TB_HideSelect{
	z-index: 99;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	border: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

#TB_iframeContent {
	clear: both;
	border: none;
	margin-bottom: -1px;
	margin-top: 1px;
	_margin-bottom: 1px;
}


/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> emulate fixed positioning for ie 6 <<<------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/

* html #TB_window, * html #TB_load {
     position: absolute;
     margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}
* html #TB_overlay {
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}