/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 20px 0px;
	padding: 0px;
	text-align: center;
	background-image: url(images/bg.gif);
}

/* 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, ol, td {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p {
	font-size: 11px;
	line-height: 16px;
	color: #666666;
	margin-right: 35px;
	margin-left: 10px;
	margin-bottom: 20px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
}

h1 {
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #5A33CC;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 0px;
	text-transform: uppercase;
	margin-top: 20px;
	border-bottom: 1px solid #CCCCCC;
}
h2 {
	font-weight: bold;
	font-size: 11px;
	color: #666666;
	margin-left: 10px;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
}
/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #FFFFFF;
	font-weight: bold;
}
a:visited {
	color: #FFFFFF;
}
a:hover {
	text-decoration: underline;
	color: #FFFF00;
}
a:active {
}
address {
	font: normal 11px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	padding: 0px;
	margin: 30px 0px 20px 10px;
	text-align: left;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background-color: #FFFFFF;
	position: relative;
	width: 770px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	height: 100px;
}

/* Creates the div container for the site. */
div#container {
	background: #FFFFFF url(images/contentbg.gif) repeat-y;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	border: 8px solid #FFFFFF;
}
/* Creates the div for the nav or sidebar */
div#nav {
	float: left;
	width: 167px;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
}
/* Creates the div for the content */
div#content {
	float: right;
	margin: 0px;
	padding: 0px;
	width: 565px;
}

div#content img {
	padding: 2px;
	margin: 0px 40px 20px 0px;
	border: 1px solid #CCCCCC;
	text-align: left;
}

div#content img.right {
	float: right;
	clear: both;
	margin-left: 20px;
}
/* Creates the div container for the footer. */
div#footer {
	clear: both;
	margin: 0px auto;
	padding: 5px 0px 0px;
	width: 770px;
	height: 15px;
	background-image: url(images/footer.gif);
	background-repeat: no-repeat;
	background-position: bottom;
}

/* Styles the copyright div */
div#copyright {
	text-align: center;
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #999999;
	margin: 20px auto;
	padding: 0px;
	text-transform: capitalize;
}
div#copyright a {
	font-size: 9px;
	color: #999999;
	text-decoration: underline;
	font-weight: normal;
}

ul {
	font-size: 10px;
	color: #666666;
	margin-left: 60px;
	margin-bottom: 20px;
	margin-right: 80px;
}

ul li {
	font-size: 11px;
	margin-bottom: 5px;
	list-style-type: none;
	list-style-image: url(images/bullet.gif);
}

div#clear {
clear: both;
}
