@charset "UTF-8";
 

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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #333333;
	font-size: 12px;
}
#container  {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffffff; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	padding-top: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header    {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 30px;
	background-color: #cc0000;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
}
#nav  {
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
#nav  p  {
	text-align: center;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
}
#nav p a:link {
	font-size: 12px;
	color: #000000;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
}
#nav p a:visited {
	font-size: 12px;
	color: #000000;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
}
#nav p a:hover {
	font-size: 12px;
	color: #cc0000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}
#nav p a:active {
	font-size: 12px;
	color: #cc0000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}
#captions {
	height: 70px;
}
#captions p {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000000;
	text-decoration: none;
	line-height: 15px;
	font-weight: normal;
}
#captions p a:link {
	font-size: 13px;
	font-style: normal;
	color: #cc0000;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
#captions p a:visited {
	font-size: 13px;
	font-style: normal;
	color: #000000;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
#captions p a:hover {
	font-size: 13px;
	font-style: normal;
	color: #999999;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
#captions p a:active {
	font-size: 13px;
	font-style: normal;
	color: #999999;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
#mainContent  {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	text-align: center;
}
#mainContent   img    {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#footer p {
	text-align: center;
	color: #FFFFFF;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: normal;
	background-color: #cc0000;
	height: 30px;
	line-height: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-bottom: 0px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
