@charset "UTF-8";
body {
	font: medium Verdana, Arial, Helvetica, sans-serif;
	background: #aaa;
	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: #000000;
}
.homepage #container {
	width: 1020px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	background: #FFFFFF;
}
#navbanner {
	background: url(images/bar.png) no-repeat;
	height: 100px;
	width: 100%;
	padding-bottom: 3px;
	position: relative;
	top: auto;
}
#nav, #nav ul {
	list-style: none;
	margin-left: 70px;
	width: 850px;
}
#nav {
	position: relative;
	top: 20px;
}

#nav a {
	display: block;
	color: #CC99FF;
	text-decoration: none;
	font-size: 90%;
}

#nav li {
	float: left;
	margin-top: 22px;
}
#nav li ul {
	position: absolute;
	left: -999em;
}

#nav li:hover ul {
	left: auto;
	margin-left: -2em;
	text-align: left;
	width: 13em;
	margin-top: 8px;
}
#nav li li {
	width: 240px;
	padding-left: 1em;
	margin-top: -10px;
	padding-top: 10px;
	text-align: left;
	height: auto;

}
#nav li li a {
	font-size: 75%;
	color: #4FE450;
	background: #007E4C;
	padding: 6px 2px 6px 4px;
	margin-top: -6px;
}
#navbanner li {
	display: inline;
	list-style: none;
	color: #FFF8D1;
	font-weight: bolder;
	font-size: 110%;
	padding-right: 20px;
}
#navbanner a:hover {
	color: #4FE450;
}
.homepage #mainContent {
	padding: 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.homepage #container p img {
	margin-top: -80px;
}

