@charset "iso-8859-1";

body {
	margin:0;
	padding:0;
	color:#222;
}
.verdana10 {
	font-family:verdana;
	font-size:77%;
}
.verdana11 {
	font-family:verdana;
	font-size:85%;
}
.verdana12 {
	font-family:verdana;
	font-size:93%;
}
.verdana13 {
	font-family:verdana;
	font-size:100%;
}

#doc {
	font-size:93%;
	color:#666;
/*	background:url(/imagens/background.gif) repeat-x;*/
}

a {
	color:#e77616;
	text-decoration:underline;
	font-weight:bold;
}

a:hover {
	color:#ffc08a;
	text-decoration:underline;
}

#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	background-color:#fff;
}
#menu ul li {
	position: relative; 
	list-style: none;
	width: 160px;
	float: left;
	height: 1%;
	margin:0 0 1px 0; 
}
#menu li ul {
	position: absolute;
	left: 160px;
	top: 0;
	display: none;
}
#menu ul li a  {
	height: 1%;
	display: block;
	text-decoration: none;
	font-weight:normal;
	color: #fff;
	padding: 3px 7px;
	background:url('/imagens/leiaute/fundo-menu-item.gif') 0px 0px no-repeat; 
}
#menu ul li a.ultimo {
	font-weight:normal;
	background:url('/imagens/leiaute/fundo-menu-item-ultimo.gif') 0px 0px no-repeat; 
}
#menu ul li a:hover {
	font-weight:normal;
	color:#333;
	background:url('/imagens/leiaute/fundo-menu-item-hover.gif') 0px 0px no-repeat; 
}
#menu ul li a.ultimo:hover {
	font-weight:normal;
	background:url('/imagens/leiaute/fundo-menu-item-ultimo-hover.gif') 0px 0px no-repeat; 
}
#menu li:hover ul { display: block; }

.noticias .noticia {
	clear:left;
	border-top:1px dotted #666;
	padding-top:5px;
}
.noticias .noticia p {
	line-height:1.3em;
}
.noticias .noticia h3 a {
	font-weight:bold;
	text-decoration:none;
}
.noticias img.chamada {
	float:left;
	padding:0 10px 5px 0;
}
.titulo {
	/*color:#06F;*/
	color:#e77616;
	/*text-transform:uppercase;*/
	font-weight:bold;
}
.botoes img {
	padding:3px 0;
}
#ft {
	border-top:1px dotted #999;
	text-align:center;
	padding-top:5px;
	margin-top:10px;
}
img {
	border:0;
}
#titulo-secao {
	/*border-bottom:2px dashed #06F;*/
	padding:3px;
	margin-bottom:20px;
}
#titulo-secao h3 {
	margin:0px;
	/*text-transform:uppercase;*/
	font-weight:bold;
	color:#e77616;/*#06F;*/
	/*font-style:italic;*/
}
#conteudo p {
	line-height:150%;
}
.formulario ul {
	padding:0;
	margin:0;
}
.formulario li {
	list-style:none;
}
.formulario input, select, textarea {
	background-color:#fff;
	border:1px solid #666;
}
.formulario input:focus, select:focus, textarea:focus {
	background-color:#efefef;
}
#accordion, #accordion2 {
	font-size:85%;
}

/********* FORMULARIO *************/
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0;
  padding: 0;
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  /* border-color: #000;
  border-width: 1px;
  border-style: solid;*/
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}