@charset "utf-8";
/* CSS Document */

body {
	background-color: #999999;
}

.style1 {font-family: "Trebuchet MS"}
.style2 {
	font-family: "Trebuchet MS";
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
}

#header {
	width:1024px;
	height:100px;
	background-color: #525051;
	background-image: url("Images/header.gif");
	background-repeat:no-repeat;
	background-position:left;
	margin-left:auto;
	margin-right:auto;

}
#nav {
	width:1024px;
	font-family: trebuchet ms;
	font-size:12px;
	margin-left:auto;
	margin-right:auto;
	background-color:#840b00 ;
	height:34px; /* Changed this to from 28px */
	padding:0;
	position: relative;
}


#nav ul {
	list-style:none;
	padding:0;
	margin:0;

}

#nav a {
	display:block;
	background-color: #840b00; /*I've added this to the drop down menu isnt white (background)*/
}

#nav li {
	display:inline;
	border-bottom:#840b00; /*I've changed this from #92110c to #840b00 */
	position:relative;
	top: 0px;
	float:left;
	width: 113px;  /*I changed this (cant remember what from, i might of added it)*/
	height: 20px;
}

#nav a:link, #nav a:visited {
	width: 80px; /* Changed this from 150px */
	height: 25px;
	font: bold 80% Trebuchet MS;
	color: #FFFFFF;
	text-decoration:none;
	padding: 0.4em 1em 0.4em 1em;
}
#nav a:hover {
	color:#FFFFFF;
	background-color: #92110c; 
}
#nav li ul {
    display: none;
width: 100px; /*cant remember if i added this :S */
height: 20px;
}

#nav ul li a {
  
  text-decoration: none;
  padding: 5px 15px 5px 15px;
  margin-left: 1px;
  white-space: nowrap;
}

#nav li:hover > ul {
    display: block;
}
ul#nav li ul {
    display: none;
}
ul#nav li:hover > ul {
    display: block;
	position: absolute;
}
#content {
	width:1024px;
	margin-left:auto;
	margin-right:auto;
	background-color: #FFFFFF;
	font-family: Trebuchet MS;
	font-size:12px;
	height:715px;
}
#footer {
	width:1024px;
	margin-left:auto;
	margin-right:auto;
	background-color: #999999;
	height: 120px;
	font-family: Trebuchet MS;
	font-size:12px;
}
	
