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

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background-color: #f4f5ba;
	background-image: url(images/body_bg.jpg);
	background-repeat: 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, ol, 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. */
}
/* Redefines the p tag */
p {
	font-size: 12px;
	line-height: 16px;
	color: #645a4a;
	margin: 0 10px 10px 25px;
	text-transform: none;
	padding: 0px;
}

.header {
	font-size: 16px;
	line-height: 16px;
	color: #000;
	margin: 5px 35px 10px 35px;
	font-weight: bold;
	padding: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
}

ul {
	font-size: 11px;
	line-height: 16px;
	color: #645a4a;
	margin: 0 15px 0 35px;
	padding: 0;
	}

li {
	font-size: 11px;
	line-height: 16px;
	color: #645a4a;
	margin: 0 25px 0 20px;
	}
	
ul.left {
	float: left;
	margin: 0 0 0 5px;
	list-style-type: circle;
	width: 250px;
	}

ul.right{
	float: right;
	margin: 0 5px 0 0; 
	list-style-type: circle;
	width: 250px;
	}

h1 {
	font: bold 13px Arial, Helvetica, sans-serif;
	color: #645a4a;
	padding: 5px;
	margin-right: 30px;
	margin-bottom: 5px;
	margin-left: 5px;
	text-transform: uppercase;
	text-indent: 5px;
	margin-top: 0px;
}
h2 {
	font: bold 13px Arial, Helvetica, sans-serif;
	color: #000;
	padding: 5px;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 0px;
	text-transform: uppercase;
	text-align: center;
	margin-top: 5px;
}


/* Creates the general link style for the site. This is not the main navigation.  */


a:link {
	text-decoration: none;
	color: #1b517b;
	}

a:hover {
	text-decoration: underline;
	color: #f1921a;
	}

a:visited {
	text-decoration: none;
	color: #1b517b;
	}



/* =Address
------------------------------------*/
address {
	float: right;
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #fff;
	padding: 0px;
	margin: 10px 0px 0 0;
	text-align: center;
	width: 230px;
	}
	
	address a:link{
		float: right;
	font: normal 12px Arial, Helvetica, sans-serif;
	color: #fff;
	padding: 0px;
	margin: 0px 0px 0 0;
	text-align: center;
	width: 230px;
	}
	
	
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates the div container for the site. */
div#container {
	width: 800px;
	margin: 0px auto 0px auto;
	padding: 0;
	}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#logo {
	width: 800px;
	margin: 0px;
	padding: 0px;;
	background-image: url(images/logo.jpg);
	background-repeat: no-repeat;
	height: 200px;
		}
		
div#header {
	width: 800px;
	margin: 1px 0 0 0;
	padding: 0px;
	background-image: url(images/header.jpg); 
	background-repeat: no-repeat;
	height: 300px;
		}	
		
div#maincontent {
	width: 800px;
	margin: 0px;
	padding: 0px;
	background-image: url(images/content.jpg);
	background-repeat: no-repeat;
	height: 192px;
		}			
					
/* Creates the div for the content */
div#content {
	float: left;
	margin: 18px 0 0 10px ;
	padding: 0px;
	width: 320px;
	height: 255px;
	}
	
/* Creates the div for the content */
div#content_left {
	float: left;
	margin: 20px 0 0 19px;
	padding: 0px;
	width: 380px;
	}	

/* Creates the div for the content */
div#content_right {
	float: right;
	margin: 20px 28px 0 0;
	padding: 0px 0 0 0;
	width: 360px;
	}


/* Styles the copyright div */
div#copyright {
	text-align: center;
	width: 800px;
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #666735;
	margin: 15px auto 0 auto;
	padding: 0px 0 0 0px;
	}
div#copyright a {
	font-size: 9px;
	color: #666735;
	text-decoration: none;
	font-weight: bold;
}
/*  =Main Navigation
---------------------------------------------*/
#mainnav {
float: right;
width:500px;
height:35px;
margin: 166px 0px 0px 0px;
padding:0px 0 0 0;
font: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
}

ul#nav {
margin:0;
padding:0;
list-style-type:none;
}

ul#nav li {
float:left;
margin:0 auto;
padding:0;
display:inline;
}

ul#nav li a:link, ul#nav li a:visited, ul#nav li a:active {
margin:0  0 0px 42px;
padding:0px 0px 9px 3px;
display:run-in;
width: 100px;
line-height:35px;
font-size:16px;
font-weight: bold;
text-decoration:none;
text-align:center;
color:#010101;
}

ul#nav li a:hover, ul#nav li a#current:link, ul#nav li a#current:visited {
background-image: url(images/nav_on.jpg);
background-position: bottom;
background-repeat: no-repeat;
border: none;
height: 17px;

}
	
/* ----------------- CUSTOM CLASSES ----------------- */

.bold {
	font-weight:bold;
	}
	
#clear {
		clear:both;}
			
	
.imgright {
	float: right;
	margin: 1px 0px 0 0 ;
	padding:0px; 
	border: none;	
	}
	
.cta {
	margin: 0px 8px 0 0 ;
	padding:0px;
	border: none;	 
	}	
	
.imgside {
	margin: -5px 10px 0px 0px;
	padding:0px;
	border: none;	
	}
	
.imgside2 {
	margin: 20px 10px 0px 0px;
	padding:0px;
	border: none;	
	}	

