/* ----------------- redefines the tag selectors ----------------- */

body {
	padding: 0px;
	text-align: center;
	font-family: arial, helvetica, sans-serif;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}


/* 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 {
	text-align: left; /* not necessary if not using text-align center in body tag for older ie browsers. */
	text-decoration: none;
}
/* Style unordered lists and colmuns of text */
ul, body>ul.leftul, body>div#leftpara, body>ul.rightul, body>div#rightpara, ul.leftul, div#leftpara, ul.rightul, div#rightpara {
	list-style: none;
	padding-left: 0px;
	font-size: 12px;
	color: #000;
	
/* redefines the p tag */
}
p {
	font-size: 12px;
	color: #000;
	text-transform: none;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	line-height: 22px;
}
/* Styles h1, h2, h3, h4, h5 tags */
h1, h2, h3, h4, h5 {
	color: #000;
	margin-left: 5px;
	margin-right: 15px;
	text-transform: uppercase;
	font-family: Georgia, "Times New Roman", Times, serif;
	}
h1 {
	font-weight: normal;
	font-size: 30px;
	border-bottom: 1px solid #000;
	padding: 10px 0px;
	margin-bottom: 10px;
}
h2 {
	font-size: 16px;
	padding-bottom: 5px;
	padding-top: 5px;
	margin-bottom: 5px;
}
h3 {
	font-size: 16px;
	padding-bottom: 5px;
	padding-top: 10px;
}
h4 {
	font-size: 12px;
}
h5 {
	font-size: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
}

address {
	font-style: normal;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: left;
	padding: 20px 20px 20px 20px;
	border: 1px solid #000;
	margin: 10px 0px 20px 0px;
	width: 150px;
}

address a:link, address a:visited {
	color: #ffffff;
	font-size: 11px;
	margin: 0px;
	padding: 0px;
}
address a:hover {
	text-decoration: none;
	color: #7200c5;
}

/* creates the general link style for the site. this is not the main navigation.  */
a:link, a:visited {
	color: #333333;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
	color: #7B0909;
}

/* ----------------- page layout elements ----------------- */

/* creates div container for header. setting the left and right margins to auto will center div. */
div#header {
	height: 244px;
	background-image: url(images/header.gif);
	background-repeat: no-repeat;
	background-position: left top;
	position: relative;
	margin: 0px;
}

/* creates the div container for the site. */
div#container {
	width: 875px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/content.gif);
	background-repeat: repeat-y;
	height: auto;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

/* creates the div for the content */
div#content {
	margin: 0px;
	padding: 0px 45px 25px 20px;
	width: 510px;
	float: left;

}
div#content ol, div#content ul {
	line-height: 18px;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-right: 15px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000;
}
div#content ul li{
	padding-left: 20px;
	list-style: none;
	background: url(images/bullet.gif) no-repeat;
	padding-top: 5px;
	padding-bottom: 5px;
} 

/* creates the div for the sidebar */
div#sidebar{
	margin-top: 0px;
	margin-bottom: 0px;
	float: left;
	width: 215px;
	padding-left: 70px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}

/* creates the div container for the footer. */
div#footer {
	clear: both;
	width: 875px;
	color: #000;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-size: 9px;
	text-align: center;
	height: 83px;
	background-image: url(images/footer.gif);
	background-repeat: no-repeat;
	background-position: top;
	padding: 0px;
}

div#footer a:link, div#footer a:visited {
	color: #000;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	padding-right: 10px;
	padding-left: 10px;
}

div#footer a:hover {
	color: #CCCCCC;
}

/* styles the copyright div */
div#copyright {
	text-align: center;
	color: #000;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 9px;
	padding: 0px;
}

div#copyright a {
	font-size: 9px;
	color: #000000;
	font-weight: bold;
	text-align: center;
}

/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	width: 521px;
	position: absolute;
	z-index: 2;
	right: 79px;
	bottom: 17px;
	height: 27px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	color: #000;
	display: block;
	float: left;
	font: bold 11px Arial, Helvetica, sans-serif;
	padding: 6px 25px;
	text-decoration: none;
	text-transform: uppercase;
	border-right: 1px solid #000;
	border-left: 1px dotted #333;
}

/* Creates our hover status. */
ul#mainnav li a:hover {
	color: #fff;
	width: auto;
	background: #000;
}

/* Creates our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	color: #fff;
	width: auto;
	background: #000;
}


/* CLASSES to create columns for unordered lists. */
ul.leftul {
	float: left;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
	padding-right: 10px;
	width: 210px;
}
ul.rightul{
	float: left;
	font-size: 12px;
	font-weight: bold;
	padding-left: 10px;
	width: 210px;
}
/* DIVs to create columns for paragraphs. */
div#leftpara {
	float: left;
	width: 220px;
	padding-left: 30px;
}
div#rightpara {
	float: left;
	width: 260px;
}



.clear {
	clear: both;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}



.rightimg {
	float: right;
	border: 1px solid #999999;
	margin: 10px 20px 10px 10px;
	clear: right;
}

.leftimg {
	float: left;
	border: 1px solid #4D4D4D;
	margin: 10px 10px 10px 10px;
	
}
.middleimg {
	float: left;
	border: 1px solid #4D4D4D;
	margin: 10px 10px 10px 15px;
	
}
.textcenter {
	text-align: center;
}
