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

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #ACC5DD url(images/bg_site.jpg) repeat-x;
}

/* 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: Verdana, Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
a {
	color:#5F86AC;
}
/* Redefines the p tag */
p {
	font-size: 12px;
	line-height: 17px;
}
h1 {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
}
h2 {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	width: 434px;
	border-bottom: 1px solid #000;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Creates DIV container for header, sidebar, and main content. Setting the left and right margins to auto will center DIV. */
div#container {
	width: 750px;
	margin: 0px auto;
	background: #F8F4D0 url(images/layout.gif) repeat-y;
	
}
/* Styles DIV container for header.*/
div#header {
	width: 750px;
	margin: 0px auto;
	}


/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 270px;
	float: left;
	padding:15px 10px 0px;
	text-align: left;
}
div#sidebar img{
	padding-bottom:10px;
}
/* Creates DIV container for main content */ 
div#content {
	width: 434px;
	float: right;
	padding:15px 13px;
}
/* Creates DIV container for copyright */ 
div#copyright {
	font-size: 9px;
	width: 750px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding:10px 0px;
	color: #D9E6F9;
	background-color: #000000;
}
div#copyright a {
	color: #E0ECF8;
	text-decoration: underline;
}