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

body {
	background: #6699FF;
	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;
	line-height: 15px;
	margin:10px 10px 8px 15px;
}

h1 {
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	padding:4px;
	margin:0px;
	text-align:left;
	padding-left:6px;
	background-color: #3399FF;
	border-bottom:1px solid #FFFFFF;
}

h2 {
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: bold;
	padding:4px 0px 4px 6px;
	margin:0px;
	text-align:left;
	background-color:#0066CC;
	color:#FFFFFF;
}

ul {
	font-family: Arial, sans-serif;
	color: #000000;
	line-height: 15px;
}


/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	font-size: 12px;
	color: #000000;
	font-family: Arial, sans-serif;
	text-decoration: underline;
}
a:visited {
	color: #000000;
	text-decoration: underline;
}
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. */

div#container {
	width: 750px;
	margin-left: auto;
	margin-right: auto;
	margin-top:10px;
	text-align:center;
}

div#body {
	width:750px;
	border:2px solid #FFFFFF;
	background-color:#33CCFF;
	text-align:center;
	clear:both;
	margin:0px;
}

.map {
	margin:15px;
	border:0px;
}

.right {
	float:right;
	margin:20px;
	margin-top:5px;
	margin-left:50px;
}

div#footer {
	font-family: Arial, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	padding-top:4px;
	padding-bottom:6px;
	margin:0px;
	text-align:center;
	background-color: #3399FF;
	border-top:1px solid #FFFFFF;
}

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

div#clear {
	clear:both;
}

div#mainnav {
	width:456px;
	background-color:#0066CC;
	border:1px solid #FFFFFF;
	margin:16px auto 0 auto;
}

ul#mainnav {
	line-height: 14px;
	margin:0px;
	padding: 0px;
	list-style-type: none;
}

ul#mainnav li {
	display: inline;
	float:left;
}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a {
	text-decoration:none;
	border:1px solid #FFFFFF;
	margin-bottom: 0px;
	font-size: 11px;
	text-align: left;
	color: #FFFFFF;
	font-weight: bold;
	display: block;
	text-align:center;
	padding-top:6px;
	padding-bottom:6px;
	width: 150px;
	background:#445AFF;
}

ul#mainnav li a:hover {
	background-color: #3399FF;
}

ul#mainnav li a.active {
	background-color: #3399FF;
}