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

body {
	margin: 10px auto 0px;
	padding: 0px;
	text-align: center;
	background: #E5E6E6 url(images/bg_site.jpg) repeat-x;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	color:#232323;
}

/* 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, address {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p, li and address tags */
p, li {
	font-size: 12px;
	line-height: 18px;
}

address {
	font-style:normal;
	font-size: 12px;
	line-height: 16px;
}
p.center {
	text-align:center;
}

h1 {
	font-size: 16px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	color:#585757;
}
.subheading {
	font-size: 14px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: normal;
	color:#232323;
}
.emphasize {color:#585757;}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Create styles to float images and groups of images.*/
.right {
	float: right;
	margin: 0px 0px 10px 10px;
}
img.rightimage{
	border:1px solid #DADDDD;
}
/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 750px;
	margin: 0px auto;
	}

/* Styles the div that serves as the container for the content and sidebar navigation.*/
div#container {
	width: 750px;
	margin: 0px auto;
	background: #F7F8F8 url(images/layout.gif) repeat-y; /* Faux column bg for page */
	border: 1px solid #8F9194;
}
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 180px;
	float: left;
	padding: 10px;
	clear: left;
	color: #373636;
}
/* Creates DIV container for content */ 
div#content {
	width: 530px;
	float: right;
	padding:10px 10px 0px;
}

div#content a:link {
	color:#808282;
	}
div#content a:visited {
	color:#414242;
	}
div#content a:hover {
	color:#808282;
	text-decoration:none;
	}
div#content a:active {
	color:#5E6060;
	}
/* Creates DIV container for interactvie Google map */ 
div#maps {
	height:300px;
	width: 528px;
	margin:0px auto;
	border:1px solid #DADDDD;
}
div#maps iframe{
	overflow:hidden;
}
/* Creates DIV container for text links */ 
div#subnav {
	clear: both;
	text-align:center;
	padding:10px 0px;
	font-size:11px;
}
div#copyright {
	font-size: 10px;
	width: 730px;
	margin: 0px auto;
	text-align: right;
	clear: both;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	padding:10px;
	background: #717273;
	color: #BDBEBE;
}
div#copyright a {
	color: #EBEDED;
	text-decoration: underline;
}
/* ----------------- 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 {
	margin: 0px;
	padding:0px;
	list-style-type: none;
	text-align: left;
	height:28px;
	background: #7F8183 url(images/linkbg.jpg);
}

/* Removes the default bullets. */
ul#mainnav li {
	display: block; /* Redefined here only to remove stray padding. */
	text-align: center;
	padding: 0px;
	margin: 0px;
	float:left;
}

/* 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 {
	font-size: 12px;
	color: #EFF2F8;
	text-decoration: none;
	display: block;
	width: 100px;
	padding: 5px 0px 5px;
	margin: 0px;
	text-align: center;
	border-right:1px solid #4B4C4D;
	text-transform: uppercase;
	font-weight: bold;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #5A5B5C url(images/currentlinkbg.jpg) no-repeat;
	color: #FFFFFF;
	width: 100px;
}
