html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

body {
	margin: 0px;
	padding: 0px;
	/*background:#B0B0B0 ;*/
	background:#FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 10pt;
	color:#0C0C0C;
}


h1, h2, h3 {
	margin: 0;
	padding: 0;
}

h2
{
	font-weight: 300;
	font-size: 2.50em;
}

.title
{
	display: block;
	padding: 0px 0px 0px 0px;
	text-decoration: none;
	color: #666666;
}

p, ol, ul {
	margin-top: 0px;
}

p {
	line-height: 180%;
}

strong {
}

a {
	color: #333333;
}

a:hover {
	text-decoration: none;
}

a img {
	border: none;
}

img.border {
	border: 5px solid rgba(255,255,255,1);
}

img.alignleft {
	float: left;
	margin-right: 30px;
}

img.alignright {
	float: right;
}

img.aligncenter {
	margin: 0px auto;
}

hr {
	display: none;
}

.image-left
{
    float: left;
	margin: 0em 1.5em 0em 0em;
	/* border: 5px solid rgba(255,255,255,1); */
}

#full-screen-background-image {
  z-index: -999;
  min-height: 100%;
  min-width: 1024px;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
}

#wrapper {
  position: relative;
  width: 100%;
  min-height: 600px;
  margin: 50px auto;
}

#wrapper {
	overflow: hidden;
}

.container {
	width: 1000px;
	margin: 0px auto;
}

.clearfix {
	clear: both;
}

#banner {
	margin-bottom: 30px;
}

/** HEADER */
#header-top
{
	overflow: hidden;
	height: 30px;
  	position: relative;
	width: 100%;
  	min-height: 30px;
/*  	margin: 5px auto;*/
	background-color:#000000;
	text-align:right;
	color:#ffffff;
}

#header-top div {
	font-weight:bold;
	margin-right:30px;
	margin-top:5px;
	height:30px;
}
#header-top div a {
	color:#FFFFFF;
	text-decoration:none;
}

#header-wrapper
{
	overflow: visible; /* para o submenu ficar visivel foi colocado o overflow em visibel (estava hidden) */
	height: 80px;
	margin-bottom: 40px;
}

#header {
	overflow: visible; /* para o submenu ficar visivel foi colocado o overflow em visibel (estava hidden) */
}

/** LOGO */

#logo {
	float: left;
	width: 300px;
	height: 80px;
}

#logo h1, #logo p {
	margin: 0px;
	line-height: normal;
}

#logo h1 a {
	padding-left:0px;
	text-decoration: none;
	font-size: 1.50em;
	font-weight: 300;
	color: #333333;
}

/** MENU ORIGINAL 

#menu {
	float: right;
	height: 80px;
}

#menu ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	line-height: normal;
}

#menu li {
	float: left;
	margin-right: 1px;
}

#menu a {
	display: block;
	height: 80px;
	padding: 0px 30px;
	line-height: 80px;
	text-decoration: none;
	text-transform: uppercase;
	color: #333333;
}

#menu a:hover {
	text-decoration: none;
	background: #79c242;
}

#menu .active
{
	background: #79c242;
}
*/

/** NOVO MENU */
#menu a {
	display: block;
	height: 80px;
	padding: 0px 20px;
	line-height: 80px;
	text-decoration: none;
	text-transform: uppercase;
	color: #333333;
}

#menu a:hover {
	text-decoration: none;
	background: #79c242;
}

#menu .active
{
	background: #79c242;
}
#menu {
	float: right;
	height: 80px;
}

#menu ul {
  display: inline;
  margin: 0px;
  padding: 0px;
  list-style: none;
  /**/
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
#menu ul li {
  display: inline-block;
  margin-right: -2px;
  position: relative;
  background: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#menu ul li:hover {
  background: #a3d766;
  color: #fff;
}
#menu ul li ul {
  padding: 0;
  position: absolute;
  top: 80px;
  left: 0;
  width: 240px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}
#menu ul li ul li { 
  background: #0056a5; 
  display: block; 
  color: #fff;

}
#menu ul li ul li:hover { background: #006da5; }
#menu ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
#menu ul li ul li a {
	display: block;
	height: 40px;
	padding: 0px 15px;
	line-height: 40px;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	font-size:10pt;
}
#menu ul li ul li a:hover {
	text-decoration: none;
	background: #0079c2;
}
/** PAGE */

#page {
	overflow: hidden;
	margin-bottom: 20px;
}

/** CONTENT */

#content {
	float: left;
	width: 600px;
	padding: 40px;
	background: rgba(0,0,0,0.05);
}

#content h2 a
{
	display: block;
	padding: 0px 0px 20px 0px;
	text-decoration: none;
	color: #666666;
}

#content #box1
{
	margin-bottom: 30px;
}

#content #box1 span span
{
    font-size:14pt;
    letter-spacing:2pt;
	color: #999999;
}
#content div ul li ul li{
    border:0;
    padding:2px 0 2px 0;
}

/** CONTENT DETALHE */

#content-detalhe {
	float: left;
	width: 600px;
	padding: 40px;
	background: rgba(0,0,0,0.05);
}


#content-detalhe h2 span
{
	display: inline-block;
	padding: 0px 0px 20px 0px;
	text-decoration: none;
	color: #666666;
	font-size:16pt;
}

#content-detalhe p a, #box1-detalhe ul li a
{
	text-decoration: none;
	color: #666666;
}
#content-detalhe p a:hover, #box1-detalhe ul li a:hover
{
	text-decoration: underline;
	color: #666666;
}

#content-detalhe #box1-detalhe
{
	margin-bottom: 30px;
}

/* p/candidaturas */
#content-detalhe #box1-detalhe span span span
{/**/
    font-size:14pt;
    letter-spacing:2pt;
	color: #999999;
	
}

#box1-detalhe th {
    line-height:36px;
    background-color:#dedede;
}
#box1-detalhe td {
    padding:4px 4px 4px 4px;
    
}

#box1-detalhe td a{
	text-decoration: none;
	color: #666666;
    
}
#box1-detalhe td a:hover{
	text-decoration: underline;
    
}
/* -/- */

img.border-detalhe {
	border: 5px solid rgba(255,255,255,1);
}

img.alignleft-detalhe {
	float: none;
	margin-right: 30px;
}
/* ANEXOS */
ul.style1-anexos {
	margin: 0px;
	padding: 10px 0px 0px 0px;
	list-style: none;
	border-top: 1px solid #CCCCCC;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.10);	
}

ul.style1-anexos li {
	clear: both;
	margin-bottom: 0px;
	padding: 0px 0px 0px 0px;
}

ul.style1-anexos li td {
	/* width:180px; */
	vertical-align:middle; 
	height:50px;
}
.button-style-anexos
{
	display:inline-block;
	background-color: #79c242;
	margin-top: 0px;
	padding: 5px 30px;
	height: 24px;
	line-height: 24px;
	text-decoration: none;
	text-align: center;
	color: #333333;
}

/** SIDEBAR */

#sidebar {
	float: right;
	width: 220px;
	padding: 40px;
}

#sidebar h2
{
	padding: 0px 0px 20px 0px;
	color: #666666;
}

/* Footer */

#footer {
	overflow: hidden;
	margin: 0px auto 0px auto;
	padding: 0px 0px;
	background: rgba(0,0,0,.10);
	/* min-height: 300px;	*/
	min-height: 200px;	
	text-align:center;
	float:none;	
}

#footer div {
    text-align:center;
    float:none;
    position:inherit;
}

#footer p {
	padding: 15px 0px;
	text-align: center;
	font-size: 12px;
	vertical-align:middle;
}
#footer h2 {
	height: 124px;
  	position: relative;
	width: 100%;
  	min-height: 124px;
	text-align: center;
	background: #000000; 
}

#footer h2 img{
	margin: 20px auto 0px auto;
}

/* FOOTER MAPA SITE*/
#footer table {
    margin-left: 25px;
    margin-right: auto;
    margin-top: 25px;
}
#footer th {
    padding:4px 9px 8px 9px;

    text-align:left;
    /* text-transform:uppercase; */
    font-size: 11pt;
    color:#000000;
    font-weight:normal;
}

#footer .titulo {
padding-right:35px;
    text-align:left;
    font-size: 16pt;
    color:#333333;
    font-weight:normal;
}

#footer td {
    padding:0px 9px 0px 9px;
    text-align:left;
}
#footer a {
	text-decoration:none;
	color: #333333;
}

#footer td a {
/**/
     list-style:square inside none;
     display:list-item; 
     
}

#footer th a {
    color: #000000;
}

#footer a:hover {
	text-decoration:none;
	/* background: #79c242;*/
}


/** UL Clean **/
ul.limpo {
	margin: 0px;
	padding: 10px 0px 0px 0px;
	list-style: none;
}

ul.limpo li {
	clear: both;
	margin-bottom: 0px;
	padding: 20px 0px 20px 0px;
	border-top: 1px solid #CCCCCC;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

ul.limpo li .pdf {
	border-top: 0px solid #CCCCCC;
	padding: 5px 0px 5px 0px;
}

ul.limpo li .normal {
	border-top: 0px solid #CCCCCC;
}

ul.limpo p {
	line-height: 150%;
}

ul.limpo .first {
    padding-top: 0px;
	border-top: none; 
	box-shadow: none;
}

ul.limpo a {
	text-decoration: none;
	color: #666666;
}

ul.limpo a:hover {
	text-decoration: underline;
}
/** LIST STYLE 1 */

ul.style1 {
	margin: 0px;
	padding: 10px 0px 0px 0px;
	list-style: none;
}

ul.style1 li {
	clear: both;
	margin-bottom: 25px;
	padding: 20px 0px 40px 0px;
	border-top: 1px solid #CCCCCC;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

ul.style1 h3 {
	display: block;
	padding: 10px 0px 10px 0px;
	font-size: 14px;
	color: #333333;
}

ul.style1 p {
	line-height: 150%;
}

ul.style1 .button-style {
	float: left;
	margin-top: 0px;
}

ul.style1 .first {
    padding-top: 0px;
	border-top: none; 
	box-shadow: none;
}

/** LIST STYLE 3 */

ul.style3 {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.style3 li {
	padding: 10px 0px 10px 0px;
	border-top: 1px solid #CCCCCC;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

ul.style3 a {
	text-decoration: none;
	color: #666666;
}

ul.style3 a:hover {
	text-decoration: underline;
}

ul.style3 .first {
	padding-top: 0px;
	border-top: none;
	box-shadow: none;
}

ul.style3 .date {
	width: 87px;
	/*background-color: #00aef0;*/
	background-color: #CCCCCC;
	margin-top: 20px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	font-size: 12px;
	color: #333333;
	/*font-weight:bold;*/
}

ul.style3 .first .date
{
	margin-top: 0px;
}

.button-style
{
	display: inline-block;
	background-color: #79c242;
	margin-top: 20px;
	padding: 5px 30px;
	height: 24px;
	line-height: 24px;
	text-decoration: none;
	text-align: center;
	color: #333333;
}

.entry
{
	margin-bottom: 30px;
}
/* DOS CONTEUDOS */
td.MenuNormal
{
border-right: solid 1px #D2D2D2;
border-left: solid 1px #D2D2D2;
border-top: solid 1px #D2D2D2;
border-bottom:solid 1px #D2D2D2;
background-color:#EEEEEE;
cursor:pointer;
text-align:center;
}

td.MenuSelect
{
border-right: solid 1px #D2D2D2;
border-left: solid 1px #D2D2D2;
border-top: solid 1px #D2D2D2;
background-color:#F3F3F3;
font-weight:bold;
cursor:pointer;
text-align:center;
}

div.Conteudo
{
border-right: solid 1px #D2D2D2;
border-left: solid 1px #D2D2D2;
/* border-bottom: solid 1px #D2D2D2;*/
background-color:#F3F3F3;
padding:10px 10px 10px 10px;
}

div.Conteudo ul {
	margin: 0px;
	padding: 5px 0px 0px 50px;
}

div.Conteudo li {
	clear: both;
	margin-bottom: 0px;
	padding: 10px 0px 0px 0px;
	border-top: 0px solid #CCCCCC;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

/* CONTATOS */
#contatos .DrpDown{
	margin: 0px;
	padding: 0px;
	font-family: 'Open Sans', sans-serif;
	font-size: 10pt;
	color:#0C0C0C;
}

input {
	font-family: 'Open Sans', sans-serif;
}












