@charset "utf-8";
/* CSS Document */

body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #ffffff;
	FONT-SIZE: 12px;
	line-height: 16px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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 */
	scrollbar-face-color: #C0C0C0;
	scrollbar-shadow-color: #ffffff;
	scrollbar-highlight-color: #ffffff;
	scrollbar-3dlight-color: #C0C0C0;
	scrollbar-darkshadow-color: #C0C0C0;
	scrollbar-track-color: #EEEEEE;
	scrollbar-arrow-color: #ffffff;
}
img {
	border: 0;
}
a:link {
	color: #FF6600;
	text-decoration: none;
}
a:hover {
	color: #FF9900;
	text-decoration: underline;
}
a:active {
	color: #FF9900;
}
a:visited {
	color: #996600;
	text-decoration: none;
}

/* HOME */
#Geral {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
}
#Topo {
	background: #ffffff; 
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#Topo h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#Cabecalho {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#Conteudo {
	margin: 0px 0 0 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */	    
	padding: 0px 0 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
}
#Conteudo h1 {/* titulo*/
	FONT-FAMILY: arial, helvetica, sans-serif;
	FONT-SIZE: 16px;
	line-height: 16px;
	COLOR: #666666;
	font-weight: bold;
	margin: 2px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5 5px;
}
#Conteudo h2 {/* subtitulo*/
	FONT-FAMILY: arial, helvetica, sans-serif;
	FONT-SIZE: 14px;
	line-height: 18px;
	COLOR: #FF6600;
	font-weight: normal;
	margin: 5px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5 5px;
}
#Conteudo h3 {/* texto*/
	FONT-FAMILY: arial, helvetica, sans-serif;
	FONT-SIZE: 12px;
	line-height: 22px;
	COLOR: #000000;
	font-weight: normal;
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5 50px;
	text-align: justify;
}
#Conteudo h4 {/* legenda*/
	FONT-FAMILY: arial, helvetica, sans-serif;
	FONT-SIZE: 12px;
	line-height: 22px;
	COLOR: #666666;
	margin: 0px; 
	padding: 0 0px;
	font-style: italic;
	font-weight: normal;
}
#Conteudo  ul li {
	list-style-image: url(../img/list.gif);
}
#Fotos {
	margin: 10px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */	    
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	height: auto;
}
#Fotos ul li {	
	list-style: none;

	float: left;
	padding-left: 10px;
	padding-rigth: 10px;
	width: 18%;
	text-align: justify;
	line-height: 50px;
	}

#Base {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
}
#Base p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
/* MENU */
#MenuTopo {
	width: 960px;
	height: 35px;
	background-color: #ffffff;
	text-align: center;
	padding: 2px;
	} 

#MenuTopo ul
	{
	margin: 0px;
	padding: 0px;
	}
	
#MenuTopo ul li
	{
	list-style: none;
	display: list-item;
	float: left;
	padding-left: 10px;
	padding-rigth: 10px;
	width: 10%;
	text-align: justify;
	}
	
#MenuBase {
	width: 960px;
	height: 43px;
	background-color: #000000;
	text-align: center;
	padding: 0px;
	} 

#MenuBase ul
	{
	margin: 0px;
	padding: 0px;
	}
	
#MenuBase ul li
	{
	list-style: none;
	display: list-item;
	float: left;
	padding-left: 8px;
	padding-rigth: 8px;
	width: 24%;
	text-align: center;
	}

