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

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #FFFFFF;
	
}
#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #999999;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 0 0 10px 60px;  /* this padding centers the image in the container*/
	text-align: center;
	font-size: 100%;
	/* border: 1px solid #999999; */
}
#header h1 {
	height: 90px;
	background-image: url(images/Title-1.gif);
	background-repeat: no-repeat;
	text-indent: -9999px;
	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 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#header h2 {padding: 0 0 0 0;
}
#mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #999999;
	font-size: 100%;
}
#mainContent h2 {
	text-align: center;
	margin: 0px;
}

#mainContent img {padding: 20px 0px 20px 0px;
}

#footer {
	font: small/1.4 "Lucida Grande", Tahoma, sans-serif;
	font-size: 92%;
	text-align: center;
	padding: 10px 0 50px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#999; 
}
#footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	/*padding: 0px 0px 20px 0px ; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#nav {
	margin: 0;
	padding: 0;
	background: #999;
	list-style-type: none;
	width: 960px;
	float: left;
}
#nav li {
	margin: 0;
	padding: 0;
	float: left;
}
#nav a {
	float: left;
	width: 159px;
	text-align: center;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 2;
	border-right: 1px solid #FFF;
}
#nav #nav_con a {
	border: none; 
}
#nav a:hover {
	background: #666;
}
#body_hom #nav_hom a,
	  #body_por #nav_por a, #body_gal #nav_gal a,
	  #body_ser #nav_ser a, #body_lin #nav_lin a,
	  #body_con #nav_con a { 
	background: #999999;
	color: #FFFFFF;
	font-weight: bold;
}
