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

body {
	background: #FFFFFF;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

/* 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 {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: #FFFFFF;
}
/* Redefines the p tag */
p {
	font-size: 12px;
}
h1 {
	font: bold 18px Arial, Helvetica, sans-serif;
	display: inline;
	color: #00387D;
}
h2 {
	font: bold 14px Arial, Helvetica, sans-serif;
	display: inline;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #1E4E74;
}
a:visited {
}
a:hover {
}
a:active {
}

/* ----------------- 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 {
}
div#copyright {
	font-size: 9px;
	color: #000000;
	text-align: left;
	width: 690px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 5px;
}
div#copyright a:link, div#copyright a:visited, div#copyright a:active {
	font-size: 9px;
	color: #333333;
}
div#copyright a:hover {
	font-size: 9px;
	color: #023779;
}

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

img.left {
	float: left;
}
img.right {
	float: right;
	border: 2px solid #0173BC;
	padding: 5px;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */
div#container {
	margin: 0px auto;
	width: 700px;
	background: #FFFFFF url(images/layout.jpg) no-repeat left top;
	height: 400px;
	position: relative;
}
div#content {
	font: 12px Arial, Helvetica, sans-serif;
	float: left;
	text-align: left;
	color: #FFFFFF;
	top: 160px;
	width: 225px;
	position: absolute;
	right: 20px;
}
ul {
	list-style: inside;
	margin-left: 0px;
}
strong {
	color: #000000;
	font-size: 12px;
}

