/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background:#FFFFFF url(images/body-bkg.gif) top left repeat-x;
	font: 11px Verdana, Tahoma, Arial, Helvetica, sans-serif;
	z-index:10;
}
/* 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, form, input, legend, select, option, address {
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Sets the line-height for these tags */
p, td {
	line-height: 18px;
}
li {
	line-height: 16px;
}
address {
	line-height: 14px;
	font-style: normal;
}
/* Styles A links */
a img {
	border: 0px;
}
a:link {
	text-decoration: underline;
	color: #544e4b;
}
a:visited {
	text-decoration: underline;
	color: #372f2c;
}
a:hover {
	text-decoration: none;
	color: #544e4b;
}
a:active, a.selected {
	text-decoration: none;
	color: #463e3b;
}
/* Style ordered and unordered lists */
ul, ol {
	margin-top: 0px;
	margin-left: 0px;
	padding: 0px;
	vertical-align:middle;
	list-style:none;
}

ul li {
	background:url(images/bullet.gif) no-repeat 0 50%;
	padding-left:20px;
	padding-bottom:2px;
}
body>ul.leftul, body>div#leftpara, body>ul.rightul, body>div#rightpara, ul.leftul, div#leftpara, ul.rightul, div#rightpara {
	list-style: url(images/bullet.gif);
}
/* CLASSES to create columns for unordered lists in IE. */
ul.leftul, div#leftpara {
	float: left;
	width: 220px;
	margin-left: 20px;
}
ul.rightul, div#rightpara {
	float: left;
	width: 220px;
	margin-left: 20px;
}
/* Class to stop items from floating right or left */
.clear {
	clear: both;
}
/* Class to center text and images */
.center {
	text-align: center;
}
/* Class to underline text */
.underline {
	text-decoration: underline;
}
/* Styles h1, h2, h3, h4, h5 tags */
h1, h2, h3, h4, h5 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #372f2c;
	font-weight: normal;
}
h1 {
	font-size: 24px;
	padding: 0;
	margin: 0px 0px 10px;
	border-bottom: 1px solid #696563;
}
h2 {
	font-size: 18px;
	padding: 0;
	margin: 0px 0px 8px;
}
h3 {
	font-size: 16px;
	padding: 0;
	margin: 0px 0px 6px;
}
h4 {
	font-size: 14px;
	padding: 0;
	margin: 0px 0px 4px;
}
h5 {
	font-size: 12px;
	padding: 0;
	margin: 0px 0px 2px;
}
/* ----------------- 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: 790px;
	margin: 0px auto;
	background: #ffffff url(images/content-repeat.gif) repeat-y;
}
div#bkg {
	background:url(images/content.gif) top left no-repeat;
}
/* Creates DIV container for header. */
div#header {
	width: 790px;
	margin: 0px auto;
}
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 210px;
	float: left;
	clear: left;
	padding: 0px 0px 0px 10px;
	color: #26201d;
}
div#sidebar .businessname {
	font-size: 12px;
}
div#sidebar a {
	color: #26201d;
}
div#sidebar address {
	padding: 10px 0px 10px 15px;
}
/* Creates DIV container for main content */ 
div#content {
	width: 550px;
	float: right;
	padding: 10px 10px 10px 0px;
}
div#content p, h1, h2, h3, h4, h5, table {
	margin-left: 15px;
	margin-right: 15px;
}
div#content ol, ul {
	margin-left: 15px;
	margin-right: 15px;
}
/* Styles DIV container for Google map */
div#map  { padding-top:15px;}
div#map iframe {
	border: 1px solid #000;
	text-align: center;
	margin: 10px auto 5px;
	
}
/* Creates DIV container for footer content*/ 
div#footer {
	font-size: 10px;
	width: 790px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	padding: 0px;
	background:url(images/footer-bkg.gif) top left no-repeat;
	width:790px;
	height:95px;
	color: #ffffff;
}
div#footer a {
	color: #ffffff;
	font-weight: bold;
}
/* Creates DIV container for sub-navigation */
div#subnav {
	font-size: 10px;
	margin:0 auto;
	padding: 60px 0px 10px 0px;
}
div#subnav a {
	color:#333333;
}
/* Creates DIV container for copyright statement */
div#copyrght {
	font-size: 9px;
	margin:0 auto;
	padding:10px 0px 5px;
}
/* ----------------- MAIN NAVIGATION ----------------- */

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	margin:0px 10px 0px 10px;
	padding: 5px 0px 5px 30px;
	width: 740px;
	height: 25px;
	background:#FFFFFF url(images/nanbkg.gif) top left no-repeat;
}
/* 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:#000000;
	display: block;
	float: left;
	font-size: 10px;
	font-weight: bold;
	padding: 4px 10px 5px;
	text-decoration: none;
	text-transform:uppercase;
	border:#666666 1px solid;
	background:#FFFFFF;
}
/* Creates hover status. */
ul#mainnav li a:hover {
	background: #312927;
	color: #ffffff;
	width: auto;
}
ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #2a2221;
	color: #ffffff;
	width: auto;
}
ul#mainnav li {
	background:none;
	margin:0px;
	padding:0px;
}
address#contactinfo {
	padding-left:15px;
}
/* Create CLASSES to float images and groups of images in SPAN tags */
div#logoset img{ margin:5px; border: 1px solid #696563;}

div#logoset img.noborder { border:0px;}

div#rtfloat {
	float: right;
	margin: 10px 15px 10px 10px;
}
div#lftfloat {
	float: left;
	margin: 10px 10px 10px 15px;
}
img.rt {
	float: right;
	margin: 10px 15px 5px 5px;
}
img.rtborder {
	border: 1px solid #696563;
	float: right;
	margin: 10px 15px 5px 10px;
}
