@charset "utf-8";
/* CSS Document */

body {
font-family:Arial,"Helvetica", sans-serif;
font-size:12px;
border:0px;
margin:0px;
text-align:center;
background-image:url(../images/bg.gif);
background-repeat:repeat-x;
background-color:#FAFAFA;

           }
		   
#menu-home{
	background-image:url(../images/bg-home_01.jpg);background-repeat:repeat; width:270px; height:230px;}
	
#bg-right{ background-image:url(../images/bg_tabela.jpg); background-repeat:repeat; width:301px; height:466px;}
		   
.texto{
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	color:#666;
	text-decoration:none;

           }
.titulo-home {
	font-family:Verdana, Geneva, sans-serif;
	font-size:15px;
	color:#BEB962;
	font-weight:bold;
	}      
		   
.texto_cinza{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color: #777;
	text-decoration:none;

           }
		   
.titulo_branco{
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	color:#FFF;
	text-decoration:none;
	font-weight: bold;

           }
		   
 .titulo_branco_g{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#FFF;
	text-decoration:none;
	font-weight: bold;

           }
		   
.titulo{
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px;
	color:#36567D;
	text-decoration:none;
	font-weight: bold;

           }
		   
/* tabelas e DIV´s */

#texto{
text-align:left;
background-color:#FFFFFF;

              }
		 
#div_overflow{   
border: 0px solid  black;
width: 530px ;
margin:2px 2px 2 px 2px;
height: 300px;
overflow: auto;
}

.link {
color:#BEB962;
text-decoration:underline;
font-family:Verdana, Geneva, sans-serif;
font-size:10px;
font-weight:bold;
         }
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 245px;
	border-bottom: 1px solid #ccc;

	}
	ul li {
	position: relative;
	}
	li ul {
	position: absolute;
	left: 0px;
	top: 0;
	display: none;
	}
	ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	background: #fff;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	}
	
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { 
	display: block;
	background:#CCC;}

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

