@charset "UTF-8";
/* ---------- basic styling ---------- */

* {
	margin: 0px;
	padding: 0px;
}

body {
	background: url(../_assets/background.jpg);
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 85%;
}
	
#wrapper {
	position: relative;
	width: 900px;
	margin: 0 auto;
	text-align: left;
}	
	
#clear {
	clear: both;
}
	
/* ---------- position container elements ---------- */

#header h1 {
	margin-left: -9000px;
}
/* ----- header nav ----- */
#header ul {
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 900px;
	height: 34px;
	list-style: none;
	background: url(../_assets/menu_bg.jpg) repeat-x top left;
}
#header ul li {
	float: left;
}
#header ul a {
	padding: 0 1.5em;
	font-size: 14px;
	line-height: 2.4em;
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	float: left;
	display: block;
	background: url(../_assets/menu_seperator.jpg) no-repeat left top;
}
#header ul a.first {
	background: none;
}
#header ul a:hover {
	color: #0123c2;
}

#content {
	width: 900px;
	background: #fff;
}

#footer {
	padding: 1em .5em;
	color: #fff;
	font: 14px "Times New Roman", Times, serif;
	font-weight: bold;
	background: #0123c2;
	margin-top: 0;
	height: 50px;
}
#footer a {
	padding: 0 .5em;
	text-decoration: none;
	color: #fff;
}
#footer a:hover {
	color: #0033FF;
}	