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

body {
	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 */
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FBB200;
	background-image: url(images/girasol_orange.jpg);
}
 #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	border:none;

}
 #header {
	background: #FFFFFF;  /* 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. */
	margin-top:30px;
	background-image: url(images/top.jpg);
	background-repeat: no-repeat;
	background-position: top;
	height: 190px;
	padding: 0;
}

 #header menu {
	margin: 0;
	padding-top: 152px;
	padding-right: 0;
	padding-left: 0;
}

 #mainContent {
	border:none;
	background-color: #FFFFFF;
	background-image: url(images/middle.jpg);
	background-repeat: repeat;
	padding-top: 10px;
	padding-right: 58px;
	padding-bottom: 10px;
	padding-left: 58px;	
}
 #footer {
	padding: 0x; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	background-image: url(images/bottom.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	height: 60px;
}
 #footer 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: 20px 38px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	color: #666666;
}

 #chamada {
	float: right;
	width: 189px;
	height: 78px;
	text-align:center;
	background-image: url(images/chamada.png);
	background-repeat: no-repeat;
	margin-right:52px;
	margin-top:42px;
	padding-top:17px;
	font-weight: bold;

}

.bold {font-weight: bold;}
.tit {font-weight: bold;color:#FF9900;}
.italic {font-style:italic;font-weight: bold;}
hr {font-size: 1px;border: none;}


a:link {color:#FF9900;font-weight: bold;text-decoration: none;}
a:visited {color: #FF9900;font-weight: bold;text-decoration: none;}
a:hover {color: #FF9900;font-weight: bold;text-decoration: underline;}
a:active {color: #FF9900;font-weight: bold;text-decoration: underline;}

