/* CSS Document */
/* ********** NOTES ************ */
/* This CSS file is for layout and initial design */
/* Please change styles.css for any additional styles */

body {
	font-family: Arial, Helvetica;
	font-size: 14px;
	color: #000;
	background-color: #000;
}
div { overflow: hidden; }
a {
	color: red;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:visited {
	color: red;
}
#mainWrapper {
	width: 996px;
	margin-left: auto; /* Centers on page */
	margin-right: auto; /* Centers on page */
	background-color: #FFF;
}
#header {
	width: 996px;
	height: 154px;
}

/* ******* NAVIGATION STYLES ******* */
#nav {
	background-color: #000;
	width: 996px;
	height: 35px;
	overflow: visible;
}
#nav li {
	float: left;
	height: 35px;
	position: relative;
}
#nav li a {
	font-size: 16px;
	color: #FFF;
	line-height: 35px;
	text-decoration: none;
	padding: 8px 23px;
}
#nav li a:hover { 
	background-color: #555; /* Background color when hovering over the navigation */
	text-decoration: none;
	line-height: 35px;
}
/* Hides second level */
#nav ul ul {
	height: 0;
	top: 35px;
	left: 0px;
	visibility: hidden;
	position: absolute;
	width: 150px; 
	z-index: 100;
}
#nav ul ul li {
	height: 35px;
	background-color: #000;
}
#nav ul ul a, #nav ul ul a:hover {
	width: 159px;
	line-height: 25px;
	padding: 5px 5px;
	display: block;
}
/* Shows second level when hovering over first */
#nav ul li:hover ul,
#nav ul a:hover ul {
	visibility: visible;
}
/* END NAVIGATION STYLES */

#mainContent {
	background: #FFF url(../index_images/main_background.jpg);
	width: 990px;
	padding: 4px;
}

/* ******* STYLES FOR TEXT AREA ******* */
h1,h2,h3,h4,h5,h6 { 
	font-weight: bold;
	margin-bottom: 15px;
}
h1 {
	color: #564630;
	font-size: 24px;
}
h2 {
	color: #948664;
	font-size: 22px;
}
h3 {
	color: #564630;
	font-size: 20px;
}
h4 {
	color: #948664;
	font-size: 18px;
}
h5 {
	color: #564630;
	font-size: 16px;
}
h6 {
	color: #1d1309;
	font-size: 16px;
}
#textArea ul {
	list-style-type: disc;
	margin-left: 25px;
	margin-bottom: 15px;
}
#textArea ol {
	list-style-type: decimal;
	margin-left: 25px;
	margin-bottom: 15px;
}
#textArea p {
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
}
/* END STYLES FOR TEXT AREA */

/* ******* STYLES FOR FOOTERS ******* */
#footer {
	width: 988px;
	margin-top: 10px;
	padding-top: 5px;
	position: relative;
	bottom: 0px;
	text-align: center;
	border-top: 2px #E2BB84 inset;
}
#footer #links {
	position: absolute;
	top: 5px;
	right: 50px;
	text-align: left;
}
#footer #links ul {
	list-style-type: none;
}
#bottomNav {
	width: 996px;
	text-align: center;
	color: #E2BB84;
	padding: 15px 0;
	background-color: #000;
}
#bottomNav a {
	color: #E2BB84;
	text-decoration:none;
}
#bottomNav a:hover {
	text-decoration:underline;
}
#bottomNav a:visited {
	color: #E2BB84;
}	
/* END STYLES FOR FOOTERS */

