/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0 auto;
	padding: 0;
	text-align: center;
	background: #ceccb3;
	font: 12px Verdana, Tahoma, Geneva, Arial, sans-serif;
	color: #333333;
}
/* Sets the margin and padding to zero */
dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, p, fieldset, address, blockquote, th, td {
	 margin: 0;
	 padding: 0;
	 text-align: left;  /* Not necessary if not using text-align center in body tag for older IE browsers. */
}

/* Removes borders for images and fieldsets */
img {
	border-width: 0px;
	border-style: none;

}

/* Removes borders for tables and table cells */
table, td {
	border-collapse: collapse;
	vertical-align: top;
}

/* Styles h1, h2, h3, h4, h5 tags */
h1, h2, h3, h4 {
	margin: 5px 20px 10px;
	}
/* Styles h1, h2, h3, h4, h5 tags */
h1, h2, h3, h4 {
	margin: 5px 20px 10px;
	}
h1 {
	font-weight: normal;
	color: #716c52;
	font-size: 26px;
	border-bottom: 1px solid #dadada;
	font-family: Georgia, "Times New Roman", Times, serif;
}
h2, h3, h4 {
	color: #222222;
	}
h2 {
	font-size: 18px;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 16px;
	text-align: center;
}

/* Sets the line-height for the p, td, and address tags */
p {
	line-height: 20px;
	margin: 5px 20px 10px;
}

li {
	margin: 5px 0px 5px 40px;
}


address {
	font-size: 11px;
	line-height: 14px;
	font-style: normal;
	}
	
/* Styles A links */
a:link {
	text-decoration: underline;
	color: #43554f;
	}
a:visited {
	text-decoration: underline;
	color: #43554f;
 }
a:hover {
	text-decoration: none;
	color: #95a671;
	}
a:active, a.selected {
	text-decoration: none;
	color: #43554f;
	}
	
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Styles the DIV that serves as the container for the layout. Setting the left and right margins to auto will center DIV. */
div#container {
	width: 960px;
	margin: 0px auto;
	background: #716c52; /* Faux column bg for page */
}

/* Creates DIV container for header. */
div#header {
	width: 960px;
	height: 100px;
	margin: 0px auto;
	background-color: #000;
	}
	
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 270px;
	float: left;
	clear: left;
	padding: 0px;
	color: #94afc5;
	border: 5px solid #716c52;
}
#bg {
	background: #FFFFFF;
	height: 100px;
	width: 100%;
	position: absolute;
	z-index: -1;
	left: 0px;
	top: 0px;
}

div#sidebar a {
	color: #565656;
	font-weight: bold;
}
div#sidebar address {
	padding: 5px 20px 10px;
}

/* Creates DIV container for main content */ 
div#content {
	width: 675px;
	float: right;
	padding: 0;
	background: #FFFFFF;
	height: 370px;
	border-top: 5px solid #716c52;
	border-right: 5px solid #716c52;
	border-bottom: 5px solid #716c52;
}
div#content a {
	font-weight: bold;
}

/* Creates DIV container for call to action */ 
div#cta {
	background: #0E609C no-repeat;
	width: 670px;
	padding: 0;
	margin: 0;
	height: 185px;
	border: 5px solid #1A6DAF;
}
h5 {
	font: italic bold 40px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	margin-top: 40px;
	margin-left: 10px;
}


/* Creates DIV container for footer content*/ 
div#footer {
	font-size: 10px;
	width: 930px;
	margin: 0px auto;
	text-align: left;
	clear: both;
	padding: 0px 15px;
	background: #716c52;
	color: #ffffff;
}
div#footer a {
	color: #ffffff;
	font-weight: bold;
}

/* Creates DIV container for sub-navigation */
div#subnav {
	font-size: 10px;
	margin: 0px auto;
	padding: 15px 0px 5px;
}
div#subnav img {
	float: right;
	margin-top: 0px;
}

/* Creates DIV container for copyright statement */
div#copyright {
	font-size: 9px;
	margin: 0px auto;
	padding: 5px 0px 10px;
}
div#copyright img {
	float: right;
	margin-top: -25px;
}

/* ----------------- 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 {
	font: bold 11px Georgia, "Times New Roman", Times, serif;
	background-color: #0c0c0c;
	width: 960px;
	height: 35px;
}

/* 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: #ffffff;
	display: block;
	float: left;
	padding: 9px 20px 12px;
	text-decoration: none;
}

/* Creates our hover status. */
ul#mainnav li a:hover {
	background-color: #ceccb3;
	color: #000;
	width: auto;
}

/* 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 {
	background-color: #716c52;
	color: #ffffff;
	width: auto;
}
img.rt {
	float: right;
	margin: 10px 20px 5px 15px;
	border: 2px solid #555555;
}
img.ctr {
	text-align: center;
	margin: 5px auto;
}

/* Class to stop items from floating right or left */
.clear {
	clear: both;
}

/* Class to center text and images */
.center {
	text-align: center;
}

/* Class to make text one pixel/point larger for the business name */
.businessname {
	font-size: 12px;
	font-weight: bold;
}

/* Class to bold text for emphasis */
.emphasis {
	font-weight: bold;
}
img.border {
	border: 2px solid #555555;
	margin-top: 5px;
}

applet {
float: right;
clear: both;
}
