/* CSS Document */

@import url("structure.css");
@import url("pages.css");

/*Reset CSS*/
html, body, div, span, applet, object, iframe, table, caption,
tbody, tfoot, thead, tr, th, td, del, dfn, em, font, img, ins,
kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr,
acronym, address, big, cite, code, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
    vertical-align: baseline;
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
:focus {
    outline: 0;
}
body {
    background: white;
    line-height: 1;
    color: black;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    font-weight: normal;
    text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}


/*Fonte e Backgrond geral*/
html 					{font-size: 62.5%}		
body 					{font: normal 1.1em/1.4em Arial, Helvetica, sans-serif; background:#c6dae2; color:#636363}
em						{font-style:italic}
strong 					{font-weight:bold}
h1, h2, h3, h4, h5, h6	{font-weight:bold;}
p		{text-align:justify;}
hr		{}
address	{font-style:normal!important}

/*Reset Links*/
a 					{text-decoration: none; cursor:pointer}
a:link, a:visited 	{text-decoration:none}
a:hover 			{text-decoration: underline}
a:visited 			{text-decoration:none}

/*floats*/
.left      			{float: left!important;}
.img-left     		{float: left!important; margin:0 5px 5px 0!important}
.right     			{float: right!important;}
.img-right     		{float: right!important; margin:0 0 5px 5px!important}
.center    			{display: block!important; margin: 0 auto 0!important; text-align:center!important}
.nobackground		{background:none!important}
.noborder      		{border: none !important;}
.nomargin	   		{margin:0!important}
.nomargin-left	   	{margin-left:0!important}
.nomargin-right	   	{margin-right:0!important}
.nomargin-bottom	{margin-bottom:0!important}
.nomargin-top		{margin-top:0!important}
.nopadding	   		{padding:0!important}
.nopadding-left		{padding-left:0!important}
.nopadding-right	{padding-right:0!important}
.nopadding-bottom	{padding-bottom:0!important}
.nopadding-top		{padding-top:0!important}
.clear         		{clear: both;}
.overflow	   		{width:100%; overflow:hidden; _overflow:visible}
.txt-small			{font-size:1.0em}
.txt-medium			{font-size:1.3em}
.inline				{display:inline}

.txt-left	   {display:block; text-align:left}
.txt-right	   {display:block; text-align:right}
.txt-center	   {display:block; text-align:center}

/*image replacement*/
.replacement	{text-indent:-9999px; display:block}

/*forms*/
input, select{}

label{}

/*Lightbox*/
#hideshow {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#fade {
	background: #000; 
	position: fixed; 
	width: 100%;
	height: 100%;
	filter:alpha(opacity=80);
	opacity: .80;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; /*--IE 8 Transparency--*/
	left: 0;
	z-index: 10;
}
.popup_block {
	background: #ddd;
	padding: 10px 20px;
	border: 10px solid #fff;
	float: left;
	width: 480px;
	position: fixed;
	top: 20%;
	left: 50%;
	margin: 0 0 0 -250px;
	z-index: 100;

}
.popup_block .popup {
	float: left;
	width: 100%;
	background: #fff;
	margin: 10px 0;
	padding: 10px 0;
	border: 1px solid #bbb;
}
.popup h3 {
	margin: 0 0 20px;
	padding: 5px 10px;
	border-bottom: 1px solid #bbb;
	font-size: 1.5em;
	font-weight: normal;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
}
.popup img.cntrl {
	position: absolute;
	right: -20px;
	top: -20px;
}

/*--Making IE6 Understand Fixed Positioning--*/

*html #fade {
	position: absolute;
	top:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollTop : document.body.scrollTop);
}

*html .popup_block {
	position: absolute;
	top:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollTop
	+((documentElement.clientHeight-this.clientHeight)/2)
	: document.body.scrollTop
	+((document.body.clientHeight-this.clientHeight)/2));
	
	left:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollLeft 
	+ (document.body.clientWidth /2 ) 
	: document.body.scrollLeft 
	+ (document.body.offsetWidth /2 ));
}

