body {
	margin: 0;
	padding: 0;
	color: black;
	line-height: 120%;
	background: rgb(231,231,231) ;
}

#wrapper-header { background: rgb(69,83,114); }

#header {
	background: rgb(224,233,233) url('./banner.jpg') right no-repeat;
	width: 85%;
	height: 125px;
	margin: 0 auto ;
	border-left: 1px solid rgb(45,57,86);
	border-right: 1px solid rgb(45,57,86);
	border-bottom: 1px solid rgb(45,57,86);
}

#header h1 {
	margin: 20px ;
	padding: 0;
	color: rgb(255,26,0);
	font-size: 180%;
	margin-right: 20px;
	float: right;
}

#wrapper-menu {
	background: rgb(231,231,231) ;
	float: left;
	width: 100%;
}


#menu {
	width: 85%;
	margin: 0 auto;
	font-size: 95%;
	white-space: nowrap; /* stops half a menu link dropping to next line. Instead, the whole link will drop. This only happens if you have a lot of menu links, and large text size */
	padding-right: 2px;	/* The menu far left, and far right borders are not quite lining up in non IE browsers for some reason. This makes it less noticeable */
}


* html #menu { padding-right: 0; } /* See above comment. This re-adjusts IE to the above padding */

#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	border-left: 1px solid rgb(45,57,86);
	border-right: 1px solid rgb(45,57,86);
	width: 100%;
}

#menu li { display: inline; }

#menu a:link, #menu a:visited {
	padding: 0.25em 1em;
	background: transparent;
	color: rgb(69,83,114);
	text-decoration: none;
	float: left;
	border-right: 1px solid rgb(45,57,86);
}

#menu a:hover {
	background: rgb(224,233,233) ;
	color: rgb(97,106,127);
}

#content {
	width: 83%; /* 83% because it has 1% padding on each side, which brings it to 85% wide */
	margin: 0 auto;
	padding: 3.5em 1% 20px 1%;
	border-left: 1px solid rgb(45,57,86);
	border-right: 1px solid rgb(45,57,86);
	background: white;
	font-size: 90%;
}

* html #content { padding-top: 1.8em; } /* Set padding top in IE to 20px */

#footer {
	margin: 0 auto;
	padding: 2px 1%;
	width: 83%;
	color: rgb(69,83,114);
	background: rgb(231,231,231) ;
	border: 1px solid rgb(45,57,86);
	font-size: 80%;
}

h2 {
	color: rgb(255,26,0);
	padding-bottom: 3px;
	border-bottom: 1px solid rgb(255,26,0);
	font-size: 150%;
}

h3 {
	color: rgb(255,26,0);
	margin: 0;
}

a:link {
	color: rgb(45,57,86);
	text-decoration: underline;
}

a:hover {
	color: rgb(69,83,114);
	text-decoration: underline;
}

a:visited {
	color: rgb(97,106,127);
	text-decoration: underline;
}

p { margin-left: 1em; }

a img { border: 2px solid rgb(45,57,86); }
a:hover img { border: 2px solid rgb(69,83,114); }
a:visited img { border: 2px solid rgb(97,106,127); }

img.nav, a:hover img.nav, a:visited img.nav { vertical-align:middle; border:none; }

hr { color: rgb(255,26,0); background-color: rgb(255,26,0); height:1px; border:none; }
