@charset "UTF-8";
body {
	margin: 0px;
	padding: 0px;
	font-size: 12px;
}
#container {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #666666;
}
#header {
	float: left;
	height: 125px;
	width: 980px;
}
#title {
	font-size: 1em;
	color: #78b03d;
	float: right;
	margin-top: 85px;
	padding-right: 10px;
}
#nav {
	background-color: #78b03d;
	float: left;
	height: 40px;
	width: 970px;
	margin-bottom: 2px;
}
#main_img {
	float: left;
	height: 284px;
	width: 980px;
}
#bg_img {
	z-index: 1;
	float: left;
	height: 284px;
	width: 980px;
}
#quote {
	float: right;
	width: 300px;
	z-index: 2;
	position: relative;
	top: -125px;
	padding-right: 25px;
	font-size: 1.2em;
	color: #FFFFFF;
}
.right {
	float: right;
}
.left {
	float: left;
}
#under_main {
	background-image: url(../images/under_main_img.jpg);
	float: left;
	height: 87px;
	width: 980px;
	margin-top: 2px;
}
#content {
	font-size: 1em;
}
#content a {
	color: #666666;
}
#content ul {
	margin: 0px;
	padding: 0px;
}
#content ul li {
	padding-bottom: 5px;
	list-style-position: inside;
	list-style-type: square;
}
h2 {
	font-size: 1em;
	margin: 0px;
	padding-bottom: 10px;
}
h3 {
	font-size: 1em;
	margin: 0px;
	padding-bottom: 10px;
	padding-top: 10px;
}
.form {
	width: 650px;
}
#small {
	width: 300px;
}
#under_small {
	background-image: url(../images/under_small.jpg);
	float: left;
	height: 35px;
	width: 300px;
	margin-top: 2px;
}
#big {
	width: 650px;
}
#under_big {
	background-image: url(../images/under_big.jpg);
	float: left;
	height: 35px;
	width: 650px;
	margin-top: 2px;
}
#footer {
	background-color: #78b03d;
	float: left;
	height: 28px;
	width: 956px;
	margin-top: 75px;
	margin-bottom: 25px;
	font-size: 1em;
	color: #256532;
	padding-top: 12px;
	padding-right: 12px;
	padding-left: 12px;
}
#footer a {
	color: #256532;
}
#footer a:hover {
	color: #163c1e;
}




/*******************************/
/*      CSS Drop Down Menu     */
/*******************************/

#menu1 {
	left: 150px;
	top: -40px;
}
#menu2 {
	left: 300px;
	top: -80px;
}
#menu3 {
	left: 450px;
	top: -120px;
}
#menu4 {
	left: 600px;
	top: -160px;
}
#menu5 {
	top: -200px;
	float: right;
	text-align: left;
}
#menu5 a {
	padding-right: 10px;
}

.menu {
	width: 150px;
	height: 40px;
	font-size: 1em;
	position: relative;
	z-index: 100;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.menu ul ul {
	width: 150px;
	list-style-type: none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	width: 150px;
	position: relative;
}

/* style the links for the top level */
.menu a {
	display: block;
	text-decoration: none;
	color: #256532;
	width: 140px;
	height: 40px;
	background: #78b03d;
	padding-left: 10px;
	line-height: 40px;
	background-position: right center;
	background-repeat: no-repeat;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color: #fafaee;
	background: #163c1e;
}

.menu :hover > a, .menu ul ul :hover > a {
	color: #fafaee;
	background: #163c1e;
}

/* style the second level background */
.menu ul ul a.drop {
	background: #163c1e;
}

/* style the second level hover */
.menu ul ul a.drop:hover {
	background: #163c1e;
}

.menu ul ul :hover > a.drop {
	background: #163c1e;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 40px;
	left: 0;
	width: 150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position: absolute;
	top: 0; 
	left: 0;
	border-collapse: collapse;
}

/* style the second level links */
.menu ul ul a {
	background: #78b03d;
	color: #256532;
	padding: 0px 10px;
	width: 130px;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible;
}

