/* CSS Document */

/* TUDO */

body  {
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #4b4b4b;
	margin-top:30px;
}

img {border:0;}

h1 {
	font: 190% "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	letter-spacing:-0.1em;
	margin-bottom:5px;
}

h2 {
	font: 130% "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	letter-spacing:-0.1em;
	color:#fc6000;
	font-weight:bold;
	margin:0;
}

/* LAYOUT */

#container { 
	width: 900px;  
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	height:74px;
	width:731px;
	padding-left:23px;
	}

#colesq {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; 
	padding: 0; 
}
#coldir {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; 
	padding: 0; 
}

#mainContent { 
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	margin-right:0;
	padding: 0;
} 

#footer { 
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */	
	padding-left:225px;
	line-height:62px; /* hack to ie7 */
	background:url(imagens/bg_rodape.gif) no-repeat;
	height:66px;
	font-size:1em;
} 


/* GERAL */

.content {
	position: relative;
	padding:25px;
	padding-top:0;
}
.cot {
	padding:50px 2px 50px 17px;
}

.space {height:25px; width:450px;}

.data {
	position:absolute;
	top:-20px;
	left:310px;
	color:#000;
	font-size:80%;
	margin-top:15px;
	margin-left:100px;
}

.fltright { 
	float: right;
}
.fltleft { 
	float: left;
}
.clear { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.inline {display:inline;}

/* MENU */


#menu {
	font: 15px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#525252;
	margin-left:23px;
	margin-top:10px;
	}
	
#menu ul {
	margin:	0;
	padding:0;
	}

#menu ul li {
	height:30px;
	line-height:30px;
	border-bottom:1px solid #dedede;
	list-style:none;
	background:url(imagens/seta2.gif) no-repeat  0 11px;
	}

#menu ul li a { 
	color:#949494;
	text-decoration:none;
	list-style:none;
	background:url(imagens/seta2.gif) no-repeat 0 11px;
	}
	
#menu ul li a:hover {
	color:#FC6000; 
	text-decoration:none;
	}
	
#menu ul li.active {
	background:none;
	color:#525252;
	}


/* LINKS */

a:link, a:visited, a:active {color:#4b4b4b; text-decoration:none;}
a:hover {color:#FC6000;}

a.color:link, a.color:visited, a.color:active {color:#FC6000; text-decoration:none; font-weight:bold;}
a.color:hover {color:#FC6000; text-decoration:underline;font-weight:bold;}



