
body {
	margin: 15px 0;
	text-align: center;
	/* Above line is for IE5: Makes the #wrapper-outer be centered, as (#wrapper-outer) margin: 0 auto; doesn't work in IE5.  */
	background: #253c01;
}

#wrapper-outer {
	margin: 0 auto;
	text-align: left; /* Sets the text left again, after centering it in the body (see IE5 note above) */
	width: 90%;
	border-right: solid 3px #253c01;
	border-bottom: solid 3px #cc6633;
	border-left: solid 2px #253c01;
	border-top: solid 2px #253c01;
	background-color: #cc6633;
	/* The above line fixes a problem in IE when the #rightbar is longer than the #content
		Try it yourself. Change the color to red to see it easily, and then set the font size in IE
		to small, or add more content in #content */
}

#header, #footer {
	background-color: #cc6633;
	color: #ffffff;
	padding-left: 5px;
	padding-right: 5px;
}

#header {
	border-bottom: solid 2px #000000; /** Color is not quite right in my opinion **/
}

#header .rightSpan {
	float: right;
	padding: 2px 0 0 0; /* this breaks IE5 in smallest font size. Set it all to 0 if you are concerned */
}

#header a, #footer a {
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	background-color: transparent;
}

#header a:hover, #footer a:hover {
	text-decoration: underline;
}


#banner {
	background: url(images/finalbanner.jpg) top left no-repeat;
	height: 170px;
	padding-left: 160px;
}

#banner h1 {
	margin: 0;
	padding: 0;
	font-size: 1.6em;
	font-weight: normal;
}

#menu {
	background-color: #e8522d;
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
	height: 2em;
	line-height: 2em;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #000000;
	font-size: 0.9em;
	font-weight: bold;
	overflow: hidden;
	/* overflow:hidden is there because sometimes the borders on
		the #menu li can keep going outside of the #menu for some reason.
		overflow:hidden just hides anything that spills over */
}

#menu ul {
	list-style: none;
	color: #b0cc71;
	margin: 0;
	padding: 0.1em 0 0 0;
}

#menu li {
	display: inline;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	padding: 0;
	margin: 0;
	float: left;
	/* float: left is used for all browsers. Makes the #menu li's display as they should. Remove it to see what happens */
}

#menu a:link, #menu a:visited {
	color: #ffffff;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
	padding: 0 10px;
	
}

#menu a:hover {
	text-decoration: underline;
}

#rightbar {
	float: right;
	margin: 15px 20px 10px 0;
	width: 140px;
	font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
font-weight: bold;
color: #ffffff;
}

* html #rightbar { margin-right: 10px; } /*correct IE right margin*/ 

#rightbar a {
	float: right;
	clear: both;
	margin: 2px 0;
	padding: 3px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #ffcc66;
}

#rightbar a:hover {
color: #ffcc66;
}

#rightbar img {
	border :0;
}

#wrapper-content {
	border-top: 1px solid #000000;
	background-color: #408080;
}

#content {
	padding: 20px;
	background-color: #f8f8f8;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 15px 20% 15px 15px;
}

* html #content {height:1%}
/* The above line fixes a problem in IE. All other browsers ignore this, except IE5 Mac. If you remove it, then set
	the font size to small in IE (so that the #rightbar is taller than #content), the content in #content vanishes! Oh joy.
	This hack has to be used with the one below if you care about IE Mac */
* > html #content {height:auto}
/* Fixes the problem that height: 1% does in IE Mac. */

/* The above 2 hacks can also be used to fix the IE 3 Pixel Jog. (see http://www.positioniseverything.net/explorer/threepxtest.html) */

#footer {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	clear: both; /* Pushes the footer below the #content and #rightbar */
	border-bottom: solid 2px #cc6633;
}

h1 { font-size: 1.25em;}
h2 { font-size: 1.0em; }

h3 { font-size: 1em; }