@charset "UTF-8";

body {
/* Green tiled background image */
	background-image: url(../images/bg_tile_stripe.png);
	font: 100% Verdana, Arial, Helvetica, sans-serif;
/* Zero padding of body to account for differing browser defaults */
	padding: 0;
/* This centers the container in IE 5* browsers */
	text-align: center;
/* the auto margins (in conjunction with a width) center the page in most browsers */
	width: 900px;
	margin: 0 auto;
}

/* Horizontal menu bar */
div#topnav {
/* Green colour, this will make the menu bar appear to sretch the width of the page */
	background-color: #bfa789;
/* Dimension pulled from provided design */
	height: 30px;
}

/* The entire center area which will contain all page content */
div#mainContent {
/* Set background to white */
	background-color: #FFFFFF;
	text-align: left;
}

div#contentDiv {
	margin: 10px;
	text-align: left;
}

div#mainContent p, div#mainContent td {
	font-size: 11px;
	line-height: 1.5em;
	color: #535353;
}

/* The image to the left on all pages excluding the home page */
div#logoList img {
	padding: 10px;
}

/* Footer or bottom area of the page which is common on all pages */
div#footer {
/* Put some space between the content and the footer edges */
	padding: 0 10px;
/* Light gray background */
	background: #bfa789;
	font-size: 10px;
}

div#footer a:visited, div#footer a {
	color: #FFF;
}

div#footer a:hover {
	color: #535353;
}

/* Text contained within the footer region of each page */
div#footer p {
/* Zero margins of footer content to avoid margin collapse (space between divs) */
	margin: 0;
/* Apply some padding so text is nicely spaced out */
	padding: 5px 0;
}

