﻿/* column stuff thanks to 
	http://www.devarticles.com/c/a/Web-Style-Sheets/DIV-Based-Layout-with-CSS/8/  */

body {
	background: #FAF6DE;
	color: #18150F;
	font-family: Verdana, Tahoma, Arial, sans-serif;
	font-size:90%;
	margin: 0px;
	width:90%;
}

#parent {
	display: block;
	min-height: 100%;
	width: 95%;
	position: absolute;
	top: 0px;
	left: 30px;
	margin-top: 1%;
}

#header {
	background: #FAF6DE;
	color:#EAA315;
	clear: both;
	width: 95%;
	margin-left: 2.5%;
	font-family: Verdana, Tahoma, Arial, sans-serif;
	border-bottom: 3px #EAA315;
} 

#header p { 
	color: #EAA315;
	border: 0px;
	font-size: 125%;
	float:right;
}
#header img {float:left;}

#sideNote {color: #18150F;}

#spacer {clear:both;}

#nav {
	background: #FAF6DE;
	width: 10%;
	margin-left: 2.5%;
	padding: 2px;
  	font-family: Verdana, Tahoma, Arial, sans-serif;
	font-size: 105%;
	float: left;
}

#nav a {
	text-align: right;
	color: #18150F;
	display:block ;
	border:1px solid black;
	background: url(graphics/inactive.JPG);
	background-repeat: no-repeat;
	height: 40px;
	margin-top: 5px;
}

#nav a:hover {
	background: url(graphics/hover.JPG);
	background-repeat: no-repeat;
	}

table.center{
	margin-left:auto; 
	margin-right:auto;
	cellpadding: 5px;
	cellspacing: 5px;
	border: 5px outset #EAA315;
}

table.center td{
	border: 5px inset #EAA315;
}

table.center th{
	text-transform: uppercase;
	border: 5px inset #EAA315;
}

#Info {
	padding: 5px;
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 95%;
	color: black;
	background: #EAA315;
	width: 100%;
	text-align: center;
}

#content {
	background: #FAF6DE;
	width:79%;
	margin-right: 2.5%;
	font-family: Verdana, Tahoma, Arial, sans-serif;
	font-size:85%;
	padding-bottom: 50px;
	float: right;
}

#footer {
	background: #FAF6DE;
	clear: both;
	width: 95%;
	font-family: Verdana, Tahoma, Arial, sans-serif;
	font-size:60%;
	text-align: center;
	position: absolute;
	left: 0px;
	bottom: 0px;
	display: block;
	height: 30px;
	padding: 0px;
	margin: 0px;
	margin-left: 2.5%;
}

#footer td {
	border: 0px;
}

/* http://alistapart.com/articles/dropdowns/ */
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
  
li {
	float: left;
	position: relative;
	width: 10em;
}
  
li ul {
	display: none;
	position: absolute; 
	top: 1em;
	left: 0;
}

li:hover ul, li.over ul{
	display: block;
	background: #FAF6DE;
	border: 3px #EAA315;
}