/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0 auto; /* Sets body to center everything.Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	background-color: #EAEAEA;
	scrollbar-face-color: #ffffff;
	scrollbar-shadow-color: #ffffff;
	scrollbar-highlight-color: #FFFFFF;
	scrollbar-3dlight-color: #000000;
	scrollbar-darkshadow-color: #000000;
	scrollbar-track-color: #e6e6e6;
	scrollbar-arrow-color: #FFFFFF;
	background-image: url(images/bodybg.jpg);
	background-repeat: repeat-x;
}

/*  CONTENT  ===========================*/

p,
a,
ul,
li,
ol,
td,
div,
textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-style:normal;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}

p {
	font-size: 15px;
	margin-left: 50px;
	color: #000;
	line-height: 19px;
}

.emphasize { /*use emphasize to 'brighten' up words in content */ color:#FF0000; font-size:16px font-weight: bold;
}

h1,
h2,
h3,
h4,
h5 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:lighter;
	text-align:left;
}

h1 {
	font-size: 35px;
	color: #000;
	line-height: 45px;
	margin: 0px 0px 0px 50px;
	padding: 0px 0px 0px 0px;
	border-bottom: 1px dotted #222;
	width: 85%;
}

h2 {
	font-size: 25px;
	color: #5900AA;
	line-height: 35px;
	margin: 0px 0px 0px 50px;
	padding: 0px 0px 0px 0px;
	border-bottom: 1px dotted #333;
	width: 45%;
}

h3 {
	font-size: 20px;
	color: #000;
	line-height: 30px;
	margin: 0px 0px 0px 50px;
	padding: 0px 0px 0px 0px;
}

h4 { /* use for internal content ctas */
	font-size: 20px;
	color: #990000;
	font-style:italic;
	font-weight:bold;
	line-height: 28px;
	margin: 0px 0px 0px 30px;
	padding: 0px 0px 0px 0px;
}

h5 { /* use for box disclaimers */
	font-size: 13px;
	line-height: 18px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	margin: 0px 0px 0px 30px;
	padding: 8px;
	background-color: #e6e6e6;
	border: 1px solid #999;
	width: 500px;
}

a { /* Creates the general link style for the site. This is not the main navigation.  */
	font-size: 13px;
	font-weight: bold;
	color: #000;
	text-decoration: underline;
}

/*------------------ LISTS FORMATS --------------------------*/

ol,
li { /* strips all ul's, ol's, and li' from padding or margins unless defined in classes below*/
	margin:  0px 10px 0px 10px;
	padding: 0px 10px 0px 25px;
	background:url(images/bullet.gif) no-repeat;
	list-style: none;
}

ul.columnlists {
	margin: 0;
	float:left;
	margin: 0px 20px 10px 0px;
	padding: 0 0px 5px 0px;
	display: block;
	width:220px;
}

ul.columnlists li {
	margin: 3px 0px 3px 0px;
	padding: 0px 0px 15px 30px;
	line-height: 18px;
}

div#wrapper {
	display: block;
	margin-left: 60px;
	float:left;
}

div#clear { clear: both; }

/* ------------------------- MAIN NAVIGATION ----------------------------- */
/* Removes all margins and padding except bottom padding, which provides room to put our border. This serves as the resting place for our tabs. */

ul#mainnav {
	width: 203px;
	position: absolute;
	left: 35px;
	top: 101px;
	margin: 0px 0px 0px 0px;
	padding:  0px 0px 0px 0px;
}

/* This creates the tabs. We set a height for each tab, give it a border and place 2 pixels of space between each tab. We float them left on the navbar and remove the bullets. */

ul#mainnav li {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style:none;
	height: 20px;
}

ul#mainnav li a {
	font-family:"Trebuchet MS";
	display: block;
	margin: 0px 0px 0px 0px;
 padding: 0px width: 203px;
	height: 20px;
	font-size: 13px;
	text-decoration: none;
	background: #25a81b;
	border-top: 1px dotted #e6e6e6;
	text-align:left;
	font-weight:normal;
	line-height: 18px;
	text-indent: 20px;
}

/* OFF - This creates the style for our links. */
ul#mainnav li a:link,
ul#mainnav li a:visited,
ul#mainnav li a:active {
	display: block;
	color: #b5f0b0;
	background-color: #00954A;
}

/* ON - Creates the "on" status style, which can be applied directly to a single link. */
ul#mainnav li a.current:link,
ul#mainnav li a.current:visited {
	color: #b5f0b0;
	display: block;
	background-color: #008080;
}

/* HOVER - Creates the hover status style, which can be applied directly to a single link. */
ul#mainnav li a:hover {
	color: #b5f0b0;
	background-color:#008080;
}

/*  PAGE LAYOUT ===========================*/

div#all { /* Holds the entire web page from the beginning body tag to the end body tag */
	width:990px;
	text-align:left;
	margin: 0 auto;
	padding: 0px;
	background:none;
}

div#header {
	position:relative;
	padding: 0;
	margin: 0;
	width:990px;
	height: 335px;
	text-align:left;
	float:left;
}

div#maincontent {
	border: 0px;
	width:990px;
	height: auto;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	background-color:#fff;
	background-image: url(images/contentbg.jpg);
	background-repeat: repeat-y;
	float:left;
	display:block;
	clear:both;
	position:relative;
}

/*  FOOTER ===========================*/

div#footer {
	width: 990px;
	height: 190px;
	padding: 60px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	clear:both;
	background-image:url(images/footer.jpg);
	background-repeat:no-repeat;
	font-size: 12px;
	text-align:center;
	position: relative;
	color: #FFFFFF;
}

div#footer a {
	font-size: 13px;
	font-style: normal;
	line-height: 15px;
	font-weight: normal;
	color: #000;
	text-decoration: underline;
}

div#util-nav {
	position: absolute;
	left: 97px;
	top: 186px;
}

div#util-nav a {
	font-size: 11px;
	font-style: normal;
	line-height: 15px;
	font-weight: normal;
	color: #FFF;
	text-decoration: underline;
}

a.green:link,
a.green:visited,
a.green:hover,
a.green:active {
	font-size: 10px;
	font-style: normal;
	line-height: 15px;
	font-weight: normal;
	color: #501535;
	background: #2a6e2a;
	text-decoration: underline;
	padding: 2px 2px 2px 2px;
}

/*  ADDRESS ===========================*/

address {
	vertical-align:top;
	font-size:14px;
	font-style:normal;
	margin: 0px 0px 11px 0px;
	padding:0px 0px 0px 0px;
	color: #000000;
	text-align: center;
	line-height: 18px;
	display:block;
	text-align: center;
}

address a { font-size: 36px; }

.hours { font-size: 14px; }

/*
address a:link {
font-size:14px;
font-style:normal;
color: #FFF;
text-align: center;
line-height: 16px;
					
}*/


/*  IMAGE CLASSES and ID's for content area ===========================*/

img.left {
	float: left;
	margin: 5px 10px 5px 0px;
	border: 2px solid #efefef;
}

img.right {
	float: right;
	margin: 5px 5px 5px 5px;
	padding: 4px;
}

img.border {
	border: 2px solid #efefef;
	padding: 4px;
}

/*  WEB AUDIO ===========================*/

div#webaudio {
	position: absolute;
	bottom: 38px;
	right: 50px;
	width: 212px;
	height: 21px;
}

div#webaudio img { border: none; }

div#webaudiopopup {
	width: 100%;
	height: 100px;
	background-image:url(images/webaudiobg.gif);
	background-repeat:no-repeat;
	background-position:center;
	background-color:#747474;
}

div#soundapplet {
	width:100%;
	text-align:center;
	height: 30px;
	position:relative;
	top: 49px;
}

/*  ADMIN SIGN ===========================*/

div#signin {
	text-align:center;
	clear:both;
}

div#signin a {
	color:#000;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
	text-transform:uppercase;
}

/*  PAYMENTS ===========================*/

div#payments {
	width: 990px;
	height: 30px;
	text-align:center;
	background-image:none;
	background-repeat:no-repeat;
	padding-top: 4px;
	padding-bottom: 4px;
	clear: both;
}

/*  COPYRIGHTS ===========================*/

div#copyright {
	text-align:center;
	font-size: 9px;
	padding: 3px 0px 3px 0px;
	width: 990px;
	height: 50px;
	color:#000;
	line-height: 19px;
	margin: 0 auto;
}

div#copyright a {
	font-size: 9px;
	font-weight: normal;
	color: #000;
	text-decoration: underline;
}

/*  GOOGLE MAPS ===========================*/

div#map {
	padding: 5px;
	border: 1px solid #e8e8e8;
	width: 750px;
	margin-left: 90px;
	margin-bottom: 20px;
}

.clear { clear:both; }

/* LEFT CONTENT */

div#leftcontent { width:900px; }

/* SIDEBAR */

div#sidebar {
	width:270px;
	float:right;
	padding-top:30px;
}

div#video {
	float: right;
	padding: 0px 10px 20px 10px;
}

div#mapviewer {
	margin-left: 220px;
}

