/* ----------------- 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: Verdana, Arial, Helvetica, sans-serif;

	
}
/* Redefines the p tag */
p {
	margin-top: 0px;
	margin-right: 35px;
	margin-bottom: 0px;
	margin-left: 35px;
	font-size: 12px;
	padding: 0px;
}
/* for page titles tag */
h {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;

}
h1 {
	font-size: 16px;
	color: #000000;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	padding-left: 10px;
	
}
h2 {
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	text-decoration: underline;
	color: #000099;
}
a:visited {
	text-decoration: underline;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: underline;
}
li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 45px;
	list-style-type: disc;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */



/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */

div#container{
	width: 770px;
	margin: 3px auto;
	padding: 0px;
	background-image: url(images/bgd.gif);
}
div#header {
	width: 770px;
	height: 144px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
}


div#content {
	width: 770px;
	margin: 0px;
	padding: 0px;
	position: relative;
	text-align: left;
	background-image: url(images/bgd.gif);
	background-repeat: repeat-y;
}
div#contentright {
	width: 170px;
	margin: 0px;
	padding: 0px;
	position: relative;
	text-align: center;
	float: right;

}

div#contentleft {
	width: 550px;
	margin: 0px;
	padding: 0px;
	position: relative;
	text-align: left;
	float: left;
}

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

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
	width: 770px;
	height: 46px;
	margin: 0px;
	padding: 0px;
	position: relative;
	background-repeat: no-repeat;
	background-image: url(images/navbar.gif);
}
/* Removes any default margins or padding applied to lists. Floats the list to the left, which incorporates the child elements (i.e. the links) and provides a full-length background color that extends past the links.*/

ul#mainnav {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	border: 0px 0 0;
	list-style-image: none;
	width: 770px;
	position: relative;
	}

/* Lists, by default, are block level elements, so the applying the inline style removes the line breaks of a block level element and causes the links to line up next to one another. We float the items left as some browsers have difficulty displaying the inline property correctly in this fashion. We remove all margins and padding and the bullet by setting the list style type to none.*/

ul#mainnav li {
	display: inline;
	float: left;
	margin: 0px auto;
	padding: 2px 0px 0px;
}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	text-decoration: none;
	text-align: left;
	display: block;
	width: auto;
	padding: 12px 18px 14px;
	margin: 0px;
	color: #FFFFFF;
	font-weight: bold;
	list-style-type: none;
	border-right-color: #999999;
	text-transform: uppercase;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	border-right-width: 1px;
	border-right-style: solid;
}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	color: #FFCC00;
}

/* Creates the div container for the footer. */

div#footer {
	clear: both;
	width: 770px;
	margin: 0px;
	padding: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
	background-color: #FFFFFF;
}
div#footer p {
	text-align: center;
	font-size: 12px;
}
div#footer a:link, a:visited, a:active{
	color: #000033;
	text-decoration: none;
	font-size: 10px;
	text-transform: uppercase;
}

div#footer a:hover {
	color: #000000;
text-decoration: none;
	font-size: 10px;
	text-transform: uppercase;
}
/* -----------------copyright stuff-------------- */

div#copyright {
	font-size: 10px;
	text-align: center;
	height: 20px;
	width: 770px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
}
div#copyright a:link {

	color: #000033;
	text-decoration: none;
	font-size: 10px;
	text-transform: capitalize;
}
/* ----------------- to position copyright text ----------------- */
.copyright {
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}


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

img.left {
	float: left;
}
img.right {
	float: right;
	margin: 5px;
	padding: 5px;
	border: 1px dashed #666666;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */
address {
	font-size: 10px;
	font-style: normal;
	color: #000000;
	bottom: 5px;
	right: 5px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;

}

div.clear {
	clear: both;
	line-height: 0px;
}

ul#column2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	margin: 0px;
	width: 300px;
	float: right;
}
ul#column1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}



/* ----------------- unused  CLASSES ----------------- */

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
	width: 700px;
}

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
}
/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {
	border-collapse: collapse;
	float: left;
	text-align: center;
	background-position: center;
	margin-left: 25px;
}
.centeredtext {
	text-align: center;
}
