@charset "iso-8859-1";

/**
 *
 * Thickbox
 * http://jquery.com/demo/thickbox/
 *
 **/

/**
 *
 * Thickbox specific link and font settings
 *
 **/
#TB_window { color:#333; }
#TB_window a { color:#999; }
#TB_window a:hover {color:#333;}


/**
 *
 * Thickbox settings
 *
 **/
#TB_overlay {
	position:fixed;
	z-index:100;
	top:0;
	left:0;
	height:100%;
	width:100%;
}
.TB_overlayBG {
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}
* html #TB_overlay { /* ie6 hack */
     position:absolute;
     height:expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight :document.body.offsetHeight + 'px');
}
#TB_window {
	position:fixed;
	top:50%;
	left:50%;
	display:none;
	text-align:left;
	color:#333;
	background-color:#fff;
	border:4px solid #525252;
	z-index:102;
}
* html #TB_window { /* ie6 hack */
	position: absolute;
	margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}
#TB_window img#TB_Image {
	display:block;
	margin:15px 0 0 15px;
	border:1px solid;
	border-color:#666 #ccc #ccc #666;
}


/**
 *
 * Caption
 *
 **/
#TB_caption{
	position:relative;
	width:100%;
	height:30px;
	text-align:left;
	color:#333;
	margin:10px 0;
	overflow:visible;
}


/**
 *
 * Texto do caption
 *
 **/
#TB_caption div#textoCaption {
	float:left;
	min-height:30px !important;
	height:auto !important;
	height:30px;
	line-height:30px;
	font-size:100%;
	font-weight:bold;
	margin:0 90px 0 0;
	padding-left:15px;
}

/**
 *
 * Links "Próxima" e "Anterior"
 *
 **/
#TB_caption a#TB_prev,
#TB_caption a#TB_next {
	position:absolute;
	top:0;
	display:block;
	width:30px;
	height:30px;
	text-indent:-9999px;
	outline:none;
}

/* Anterior */
#TB_caption a#TB_prev {
	left:-45px;
	background:url(../imagens/prev.gif) no-repeat 0 0;
}
#TB_caption a#TB_prev:hover { background-position:0 -30px; }

/* Próxima */
#TB_caption a#TB_next {
	right:-45px;
	background:url(../imagens/next.gif) no-repeat 0 0;
}
#TB_caption a#TB_next:hover { background-position:0 -30px; }



/**
 *
 * Área do botão "Fechar"
 *
 **/
#TB_caption #TB_botoes {
	position:absolute;
	top:2px;
	right:15px;
	width:72px;
	height:25px;
}

/* IE6 */
#TB_caption #TB_botoes {
	_position:relative;
	_float:right;
}


/* Botão Fechar */
#TB_caption #TB_botoes a#TB_closeWindowButton {
	display:block;
	float:right;
	width:72px;
	height:25px;
	line-height:23px;
	text-align:right;
	text-decoration:none;
	font-size:80%;
	font-weight:bold;
	background:url(../imagens/close.gif) no-repeat 0 0;
}
#TB_caption #TB_botoes a#TB_closeWindowButton:hover {
	color:#f00;
	background-position:0 -25px;
}


/**
 *
 * Loading...
 *
 **/
#TB_load {
	position:fixed;
	top:50%;
	left:50%;
	display:none;
	width:64px;
	height:64px;
	margin:-32px 0 0 -32px;
	z-index:103;
}

* html #TB_load { /* ie6 hack */
	position:absolute;
	margin-top:expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + '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');
}

#TB_iframeContent{
	clear:both;
	border:none;
	margin-bottom:-1px;
	margin-top:1px;
	_margin-bottom:1px;
}


