/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #FFFFFF;
	margin: 0px; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	text-align: center; /* Equivalent to <center> tag for older IE browsers. Remove if you do not want to center page. */
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

h3, h4, h5, a, ul, li, lo, td {
	font-family: Arial, sans-serif;
	text-align: left;
	font-size: 12px;
	color: #000000;
}

/* Redefines the p tag */
p {
	font-family: Arial, sans-serif;
	text-align: left;
	font-size: 12px;
	color: #000000;
	padding-top: 8px;
	padding-left: 8px;
	padding-bottom: 4px;
	margin:0px;
}

p.footer {
	font-family: Arial, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	margin-top:1px;
	padding: 0px;
	text-align:center;
}

h1 {
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	font-weight: bold;
	margin-top: 1px;
	margin-left: 5px;
	padding: 0px;
	margin-bottom:0px;
}

h2 {
	background: #000000;
	font-family: Arial, sans-serif;
	font-size: 13px;
	margin: 0px;
	clear: both;
	font-weight: normal;
}

ul.body {
	list-style-type: square;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	margin-top: 3px;
	line-height: 15px;
}

ol {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	margin-top: 0px;
	margin-right: 200px;
	line-height: 16px;
	padding-top: 0px;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	font-size: 12px;
	color: #0066FF;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a:visited {
	color: #0066FF;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {	
	text-decoration: underline;
}



/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
}

/* Creates the div container for the footer. */

.action {
	background-color:#5D5D5D;
	width: 105px;
	padding: 4px;
	margin: 0px;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
}

div#container {
	width: 581px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

div#nav {
	width:581px;
	margin:0px;
	padding:0px;
	background-image:url(images/road.jpg);
	border-top: 1px solid #FFFFFF;
}

div#title {
	background-image:url(images/body_header.gif);
	width: 581px;
	margin-top: 1px;
	height:22px;
}

div#body {
	width: 581px;
	background-image:url(images/body_bg.gif);
	padding: 0px;
	margin: 0px;
	top: 0px;
}

div#footer {
	clear: both;
	background-image: url(images/footer.gif);
	margin: 0px;
	height:18px;
	padding: 0px;
	width: 581px;
	text-align:center;
}

a.footer {
	font-size: 12px;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a.footer:visited {
	color: #FFFFFF;
	text-decoration: none;
}
a.footer:hover {
	text-decoration: underline;
}
a.footer:active {	
	text-decoration: underline;
}

.right {
	float: right;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
}

div#copyright {
	color: #000000;
	font-family: Arial, sans-serif;
	font-size: 12px;
}


ul#mainnav {
	padding: 0px;
	margin: 0px;
}

/* Removes the bullet from the list. The inline style here keeps the bulleted items tightened up and removes any stray padding.*/

ul#mainnav li {
	list-style-type: none;
	display: inline;
	margin: 0px;
}

/* This creates the style for the link. The block style places the links in a vertical order. */
ul#mainnav li a {
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	padding: 4px;
	width: 105px;
	background-color:#0066FF;
	border-bottom: 1px solid #FFFFFF;
	font-weight: bold;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
}
/* Creates a hover status for links. Also, creates a current status, which can be applied individually
to the create an "on" status for each page link. */
ul#mainnav li a:hover {
	color: #000000;
	background-color: #B0D3F2;
}

ul#mainnav li a.active {
	background-color: #B0D3F2;
	color:#000000;
}

