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

body {
	background: #3f3f3f;
	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.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td, div {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p, td, div {
	font-size: 11px;
	line-height: 17px;
	vertical-align: top;
}
h1 {
	font-size: 18px;
	margin-bottom: -5px;
}
h2 {
	font-size: 15px;
	color: #ababab;
	margin-bottom: -5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #aaa;
}
h3 {
	font-size: 14px;
	margin-bottom: -5px;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #B3B3B3;
	text-decoration: none;
}
a:visited {
	color: #9A9A9A;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	color: #B3B3B3;
	text-decoration: none;
}

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

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

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 775px;
	height: 220px;
}

div#content {
	position: relative;
	top: 30px;
	width: 775px;
	margin-left: auto;
	margin-right: auto;
}

div#copyright {
	font-size: 9px;
	color: #ccc;
	text-align: center;
	padding-top: 7px;
	line-height: 13px;
	padding-bottom: 7px;
	border-top: 1px solid #aaa;
}

div#copyright a {
	font-size: 9px;
}


/* ------------------- NAVIGATION ------------------- */

div#navigation {
	float: right;
	width: 125px;
	margin-left: 25px;
	margin-bottom: 25px;
	font-size: 10px;
	line-height: 14px;
}

ul#mainnav {
	background-color: #3f3f3f;
	width: 125px;
	margin: 0px;
	padding: 0px;
}

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

ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #aaa;
	width: 125px;
	padding: 5px;
}

ul#mainnav li a:hover {
	color: #FFFFFF;
	background-color: #727272;
}

ul#mainnav li a.current {
	color: #FFFFFF;
	background-color: #727272;
	font-weight: bold;
}



/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
	margin-right: 25px;
	margin-bottom: 40px;
	border: 1px solid #fff;
}
img.right {
	float: right;
	margin-left: 25px;
	margin-bottom: 25px;
	border: 1px solid #fff;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */