/*Just some defaults to override any browser settings*/
html, body {
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 100%;
	height: 100%;
}
table, tr, td{
	padding: 0px;
	border-spacing: 0px;
	margin: 0px;
	
	color: inherit;
}
h1 {
	font-weight: normal;
	text-align: center;
}
a {
	margin-bottom: 2px;

	text-decoration: none;
}
a:link {
	color: #00BBFF;
}
a:hover,
a:visited {
	color: #A5A5A5;
}
/*Background and styling for entire doc*/
body {
	background: url("/resources/images/bg2.jpg") fixed center top no-repeat #005098;
	
	font: 93% Arial, sans-serif;
}
/*Container--contains all things in the page, to position them properly.*/
#container {
	margin-left: auto;
	margin-right: auto;
	width: 980px;
}
#headerImage img {
	width: 980px;
	height: 100px;
}
#container:after {
	display: block;
	clear: both;
	content: "";
}
/*Navbar*/
#mainNav {
	margin: 0px;
	padding: 0px;
	width: 100%;
	display: table;
	
	table-layout: fixed;
	text-align: center;
}
#mainNav li {
	display: table-cell;
	
	list-style: none;
}
#mainNav li > a {
	border-left: 1px solid #EEEEEE;
	border-right: 1px solid #EEEEEE;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	padding-left: 3px;
	padding-right: 3px;
}
/*	For the sake of separation of concerns, all actual content sits inside this 
	layout. */
#content {
	margin: 0px;
	display: inline-block;

	vertical-align: top;
}
