@charset "utf-8";
/* CSS Document */

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #EEE;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.mainpage #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #666;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.mainpage #header {
	text-align: center;
	height: 85px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #006;
}
.mainpage #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 10px;
	font-size: 220%;
	color: #CCC;
}
.mainpage #header p {
	text-transform: uppercase;
	font-size: 94%;
	font-weight: bold;
	display: inline;
	margin: 0;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
	color: #FFF;
}
.mainpage #sidenav {
	font-size: 90%;
}
.mainpage #sidenav h1 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-weight: normal;
	padding-bottom: 10px;
	letter-spacing: 7px;
	font-size: 120%;
}
.mainpage #sidenav a {
	color: #00F;
	text-decoration: none;
	font-weight: bold;
	font-style: italic;
}
.mainpage #sidenav a:link {
	text-decoration: underline;
}
.mainpage #sidenav a:visited {
}
.mainpage #sidenav a:hover {
	background-color: #CCC;
	color: #00F;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
.mainpage #sidenav a:active {
}
.mainpage #nav {
	text-align: center;
	height: 24px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #052133;
	border-bottom-color: #052133;
	background-color: #999;
}
.mainpage #nav a {
	background-color: #b6041a;
	margin-right: 3px;
	margin-left: 3px;
	padding-right: 7px;
	padding-left: 7px;
	padding-top: 2px;
	margin-bottom: 3px;
	color: #FFF;
	text-decoration: none;
	border: 1px solid #052133;
	font-size: 75%;
}
.mainpage #nav a:link {
	margin-bottom: 6px;
}
.mainpage #nav a:visited {
}
.mainpage #nav a:hover {
	background-color: #FFF;
	color: #000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
.mainpage #nav a:active {
}
.mainpage #mainContent {
	font-size: 80%;
}
.mainpage #mainContent a {
	color: #00F;
	text-decoration: underline;
}
.mainpage #mainContent a:link {

}
.mainpage #mainContent a:visited {
}
.mainpage #mainContent a:hover {
	background-color: #CCC;
	color: #00F;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
.mainpage #mainContent a:active {
}
.sidenav_rightborder {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}
.content_bg {
	background-color: #FFF;
}
.mainpage #footer {
	padding: 0 10px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #666;
	background-color: #006;
}
.mainpage #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 75%;
	text-align: center;
	color: #FFF;
}
.mainpage #footer a {
	color: #00F;
	text-decoration: none;
	background-color: #CCC;
	padding-right: 3px;
	padding-left: 3px;
}
.mainpage #footer a:link {

}
.mainpage #footer a:visited {
}
.mainpage #footer a:hover {
	background-color: #FFF;
	color: #000;
}
.mainpage #footer a:active {
}
.listspace {
	line-height: 30px;
}

