﻿/* CSS layout */
body {
	margin: 0;
	padding: 0;
}

#masthead {
	min-width: 600px;
}

#logo {
	float: left;
	width: 150px;
	padding: 0px 0px 0px 20px;
}

#header {
	background-image: url('../images/NewSky.gif');
	width: 775.50px;
	height: 200px;
	padding-left: 0px;
	margin-left: 150px;
}

#mission {
	font-size: 10pt;
	text-align: center;
	margin-top: -50px;
}

.menu {
	 float:inherit;
	 
}
/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	height: 32px;
	width: 800px;
	margin-left: 150px;
}
/* make the top level links horizontal and position relative so that we can
position the sub level */
.menu li{
	float: left;
	position: relative;
	z-index: 100;
}
/* use the table to position the dropdown list */
.menu table{
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: -1;
	top: 25px;
	margin-left: -150px;
}
/* style all the links */
.menu :visited {
	display:inline-block;
	font-size: 14px;
	width: 110px;
	padding: 7px 0;
	color: #000;
	background: #99CCFF;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
}
.menu a {
	display: block;
	font-size: 14px;
	width: 110px;
	padding: 7px 0;
	color: #000;
	background: #99CCFF;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
	font-weight: bold;
}
/* style the links hover */
.menu :hover{
	color: #A6752F;


}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:139px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul a:hover ul{
visibility:visible;
}


.menu ul li:hover ul{
visibility:visible;
}
#container {
	clear: both;
	min-width: 600px;
}

#left_col {
	float: left;
	width: 350px;
	text-align: justify;
	text-indent: 3%;
	padding: 100px 0px 0px 100px;
}

#page_content {
	width: 640px;
	margin-left: 600px;
	padding-top: 100px;
}

#footer {
	clear: both;
}

