@charset "UTF-8";
body {
	background: #06370E;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 1.25em;
	padding-left: 1.25em;
}
h1 {
	text-align:center;
}
p {
	text-align:justify;
}
h2 {
		line-height: 1.5em;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#045FAA;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #583700;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	font-style:italic;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	font: 90%/1.3em Verdana, Arial, Helvetica, sans-serif;
	width: 82%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 640px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #5D843F;
	color: white;
    /* height: 120px;	*/	/*não é necessário especificar altura: a altura da foto já fará isso.*/
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: right;
	width: 20%;
	padding-bottom: 1em;
	margin: 0 0 1em 1.3em;
	font-size: .85em;
	background-color: #E6FFDF;
	box-shadow: -6px 6px 7px #06370E; /*#888888; */ /* cinza */
}
.content {
	padding: 1em 0;
	width: 100%;
	float: right;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 1.25em 1.25em 3.3em; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles ~~ */
nav {
	margin: 99px auto; /*margem da célula anterior. Alterar! Deixe este valor ridículo para teste comparativo.*/
	text-align: center;
}

nav ul li:hover > ul {
		display: block;
	}
nav ul {
	background: #efefef; 
	background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); 
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); 
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	padding: 0 10px; /* largura do MENU total */
	border-radius: 10px;  
	list-style: none;
	position: relative;
	display: inline-table; /* não "block". Fundamental para o comportamento do menu. */
}
	nav ul:after {
		content: ""; clear: both; display: block;
	}
nav ul li {
	float: left;
}
	nav ul li:hover {
		background: #4b545f;
		background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
		background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
		background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);
	}
		nav ul li:hover a {
			color: #fff;
			text-decoration: none; /*conflito com o tag "A" genérico.*/
		}
	
	nav ul li a {
		display: block;
		padding: 50px 40px; /* refere-se apenas aos elementos do MENU */
		color: #757575;
		text-decoration: none;
	}
nav ul ul {
	display: none;
	float: none;
	background: #5f6975; border-radius: 0px; padding: 0;
	position: absolute; top: 100%;
}
nav ul ul li {
		float: none; 
		border-top: 1px solid #6b727c;
		border-bottom: 1px solid #575f6a;
		position: relative;
	}
		nav ul ul li a {
			padding: 15px 40px; /* refere-se aos elementos do submenu */
			color: #fff;
		}	
			nav ul ul li a:hover {
				background: #4b545f;
			}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
/* NAV ends here */

/* ~~ The footer ~~ */
.footer {
	padding: 2em 0 0 0;
	background: #CEFFD1;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
/* ~~ miscellaneous float/clear classes ~~ */
.floatRight {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.floatLeft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearFloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/* ~~ Zoltan Paulinyi ~~ */

#NomeCursivo {
	font-family:"MS Serif", "New York", serif;
	font-size:2em;
	font-style:italic;
	line-height:1em;
	font-weight: bolder;
}
#subTitulo {
	font-family:"MS Serif", "New York", serif;
	font-size:1.2em;
	font-style:normal;
}

#esquerda {
	float: left;
	width: 30%;
}
.header a:link {
	color:#FEA1FA;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
.header a:visited {
	color: #BFC4FC;
	text-decoration: underline;
}
.header a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
#centro {
	float: left;
	width: 40%;
}
#centro p{
		text-align:center;
}
#direita {
	float: left;
	width: 30%;
}
#direita p {
	padding:0;
}

#centeredmenu {
	float:left;
	width:100%;
	/*background:#fff; /*deve ser a mesma cor do container, por favor!*/
	position:relative;
	height:40px; /*para delimitar altura da célula do MENU, guardando distância do próximo elemento*/
	overflow:visible; /*para permitir escrever sobre o corpo do texto (outro container) quando ativar submeno pelo "hover"*/
    /*border:4px solid #000;*/
}
#centeredmenu ul {
	clear:left;
	float:left;
	list-style:none;
	margin:0;
	padding:0;
	position:relative;
	left:50%;
	text-align:center;
}
#centeredmenu ul li {
	display:block;
	float:left;
	list-style:none;
	margin:0;
	padding:0;
	position:relative;
	right:50%;
	/* width:10px; */ /*largura da célula: melhor deixar automático*/
}
#centeredmenu ul li a {
	display:block;
	margin:0 1px; /* distância entre elementos celulares. */
	padding:8px 15px; /* tamanho interno da célula!!! Achei! */
	background:#ddd;
	color:#000;
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	text-decoration: none;
	line-height:1.3em;
}
#centeredmenu ul li a:hover {
	background:#1B4D12;
	color:#fff;
}
#centeredmenu ul li a.active, #centeredmenu ul li a.active:hover {
	color:#fff;
	background:#000;
	font-weight:bold;
}

/*** SUB MENU ********/
#centeredmenu ul.sub-menu {
	display: none;
	position: absolute; /* para evitar dançar o menu quando ativar o submenu */
	z-index: 90; /*alta prioridade de escrita na diagramação*/
}

#centeredmenu ul.sub-menu li {
	text-align: center;
	float: none; /*para o fluxo seguir normalmente na vertical*/
}

#centeredmenu li:hover ul.sub-menu {
	display: block;
}
/*************/

.centralizarParagrafo p {
	text-align: center;
}

.tabela td{
	font-size:9px;
	line-height:1.2em;
}

.FiguraEsq {
	float: left; 
    margin: 1em 1em 1em 0;
}
.FiguraDir {
    float: right; 
    margin: 1em 1em 0 1em;
}

/*class="elastic" serve para quando utilizado dentro de um div explicitando largura.*/
img.elastic {
	width: 100%; /* porcentagem da largura desejada. Neste caso, a imagem estará contido em outro DIV de 1/3 do total da largura*/
	height: auto;
}
/*A largura width pode ser redefinida APÓS a chamada da classe="FiguraEsq" ou "FiguraDir"*/
.FiguraEsq, .FiguraDir {
	width: 30%;
	background-color: #E6FFDF;
}
.FiguraEsq p, .FiguraDir p {
	text-align: center;
	font-style: italic;
 	font-size: smaller;
  	text-indent: 0;
	padding:0;
	line-height:1.2em;
}
.letraPequena{
	font-size: .7em;
}

