/* =============== RESET TAG SELECTORS =============== */
* { /*strips all elements to these specs as a base */
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style:normal;
	text-align: left;
	vertical-align:top;
	margin: 0;
	padding: 0;
	color:#000000;
	border: none;
	

}

body {
	margin: 0 auto; /* Sets body to center everything.Always set margins to 0. Some browsers automatically apply them. */
	padding: 0;
	background-image: url(images/bg-wrapper.jpg);
	background-repeat:repeat-x;
	background-color: #171310;
	text-align: center;
	font-size:62.5%; /*using ems on all selectors below -  for example, 1em is 10px, 2em is 20px, 1.6 is 16px, .8em is 8px, etc;*/
}

/* define basic structure for basic set of selectors */

p {
	color: #000;
	font-size: 1.3em;
	line-height: 1.8em;
	padding-right: 26px;
	margin-bottom: 1.2em;
}

/* define basic structure for H tags*/
h1, h2, h3, h4, h5  {
	text-align:left;
	text-transform: capitalize;
	width: 660px;
	margin-bottom: 0.4em;
	margin-top: 0.04em;
	display: block;
	font-family: Georgia, "Times New Roman", Times, serif;
}

/* defines attributes for H1 tags */
h1 {
	color: #43372B;
	font-size: 3.2em;
	line-height: 1.3em;
	font-style: italic;
}

/* defines attributes for H2 tags */
h2 {
	color: #65544A;
	font-size: 1.8em;
	line-height: 1.8em;
	margin-top: 1.7em;
	font-style: italic;
}

/* defines attributes for H3 tags */
h3 {
	color: #000;
	font-size: 1.7em;
	line-height: 1.4em;
	font-weight: bold;
}

/* defines attributes for H4 tags */
h4 {
	color: #000;
	font-size: 1.5em;
	line-height: 1.7em;
}

/* defines attributes for H5 tags */
h5 { 
	color: #000;
	font-size: 1.3em;
	line-height: 1.5em;
}


/*  -------------- general links for paragraph tags ----------- */
a {font-weight: bold; text-decoration: underline; outline:none;} /*outline removes firefox imposed outline*/
a:link {
	color: #635445;
}
a:visited {
	color: #635445;
}
a:hover {
	color: #996600;
}
a:active {
	color: #635445;
}
a:focus{
	outline:1px dotted invert
}

/*  Address: formatting for any element inside the address tag ===========================*/

address {
	color: #FFFFFF;
	font-size:1.2em;
	line-height: 1.3em;
	left: 30px;
	top: 9px;
	display:block;
	width: 190px;
	position: absolute;
}


address strong {
font-size: 1.1em;
color: #FFFFCC;

}

address img {
margin-top: 8px;
margin-bottom: 8px;
}

address a:link {
	color: #dfc57c;
}
address a:visited {
	color: #dfc57c;
}
address a:hover {
	color:#CCCCCC;
}


/*============================================== LISTS FORMATS for UL's and OL's,  ==================================*/

ul, ol { /* changes the following elements on all ul's and ol's except the navigation */
margin-bottom: 16px;
padding-bottom: 5px;
float: left;
display:block;
margin: 3px 0 3px 0px;
}

ol{list-style:decimal}
ul{list-style:disc}

li { /* changes margin on ANY li in any list, except the navigation*/
	margin: 0px 0 0px 27px;
	font-size: 1.3em;
	line-height: 1.8em;
	vertical-align: baseline;
}


hr {
	height:1px;
	border: 1px solid #999;
	border-bottom-style: hidden;
	width: 650px;
	clear: both;
	position: relative;
}

address li {
	font-size: 1.1em;
}


/*  NETOPIA IFRAMES ==========================*/

iframe.netopia {
	position: relative;
}

/*  TABLES ==========================*/

table, th, tr, td  {	
	border-collapse: collapse;
	border-spacing: 0;
	vertical-align: top;
	text-align:left;
	vertical-align:top;
}

table {
width: 600px;
}

td  {
	padding: 10px;
	/*border: 1px solid #999;*/
	margin:0px auto;
	font-size: 1.3em;
	
}

tr.datainfotitle {
background-color:#009933;
font-weight: bold;
font-size: 1.4em;
}

/*------- wrapper for entire site content */
#wrapper {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
	background-image: url(images/bg-wrapper.jpg);
	background-repeat: no-repeat;
	position: relative;
	z-index:1
}


/* ------------------------- HORIZONTAL NAVIGATION ----------------------------- */
/* Removes container 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: 958px;
	height:37px;
	position:absolute;
	top: 139px;
	left: 2px;
}

/* 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 {
	float: left;
	list-style: none;
	height: 37px;
	margin-left: 2px;

}

ul#mainnav li a {
	font-size: 1.1em;
	line-height: 1.8em;
	height: 1.4em;
	color: #fff;
	text-decoration: none;
	padding: 0px 8px 0px 8px;
	display:block;
	display: inline-block;
	font-weight: normal;
	text-transform: capitalize;
	/*border-right: 1px solid #d6d6d6;*/
	margin-top: 6px;
	float: left;
}

/* OFF - This creates the style for our links. */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	color: #996633;
}
/* 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: #FFFFFF;
}

/* HOVER - Creates the hover status style, which can be applied directly to a single link. */
ul#mainnav li a:hover {
	color: #DAB692;
}

div#header {
	position:relative;
	padding: 0;
	margin: 0;
	width:960px;
	height: 450px;
	float:left;
	background-image: url(images/bg-header.jpg);
	background-repeat: no-repeat;
	z-index: 10000;
}

/*  PAGE LAYOUT ===========================*/

div#leftcol, div#rightcol, div#container, ul#footernav {
	display: inline;
	float: left;
	position:relative;
	/*margin-left: 10px;
	margin-right: 10px;
*/}

div#leftcol {
	width: 270px;
	font-size: 1.1em;
}

div#rightcol {
	width: 680px;
	float: right;
}

div#container {
	width: 960px;
	background-image: url(images/bg-container.jpg);
	background-repeat:repeat-y;
}

div#footer {
	background-image:url(images/bg-footer.jpg);
	background-repeat:no-repeat;
	display:block;
	height: 84px;
	width:960px;
	position: relative;
	clear: both;
}

/* ------------------------- FOOTER NAVIGATION ----------------------------- */

ul#footernav {
	text-align:left;
	position:absolute;
	display:block;
	left: 23px;
	top: 43px;
	width: 907px;
}

ul#footernav li {
	border-right: 1px solid #d6d6d6;
	list-style: none;
	text-align: center;
	margin: 0 auto;
	display: inline-block;
	float:left;
	padding-left: 4px;
	padding-right: 4px;
}

ul#footernav li a {
	font-size: .9em;
	width:auto;
	text-decoration: none;
	display:block;
	font-weight:lighter;
	text-decoration:none;
	text-align: center;
	vertical-align:middle;
}

/* OFF */
ul#footernav li a:link, ul#footernav li a:visited, ul#footernav li a:active {
	display: block;
	color: #5F4534;
}
/* ON */
ul#footernav li a.current:link, ul#footernav li a.current:visited {
	color: #524B41;
	display: block;
	text-decoration:underline;
}

/* HOVER */
ul#footernav li a:hover {
	color: #524B41;
	display: block;
	text-decoration:underline;
}



/*  ADMIN SIGN ===========================*/

div#signin {
	text-align:center;
	clear:both;
	margin: 15px 0px 15px 0px;
}

div#signin a{
	color:#996600;
	font-size:1.1em;
	font-weight:bold;
	text-decoration:none;
	text-transform:uppercase;
}

/*  COPYRIGHTS ===========================*/

div#copyright {
	text-align:center;
	font-size: 1em;
	padding: 5px 0px 5px 0px;
	width: 940px;
	height: 50px;
	color:#996600;
	line-height: 19px;
	margin: 10px 0px 10px 0px;
	
}

div#copyright a {
	font-size: 1em;
	font-weight: normal;
	color: #996633;
}

div#copyright img {
margin-top: 10px;
margin-bottom: 10px;
}



/* --------------------------- text classes ------------------------ */

.centered {
text-align:center;
}


.emphasize { /*use emphasize to 'brighten' up words in content */
	color:#FF0000;
	font-weight: bold;
}

.emphasizeslant { /*use emphasize to 'brighten' up words in content */
	color:#3d362d;
	font-weight: normal;
	font-style:italic;
	font-size:20px;
	font-family:Georgia, "Times New Roman", Times, serif;
}

.strong {
	color:#51251E;
	font-weight:bold;
}

.italicized {
font-style:italic
}

.emphasize {
font-style:size: 14px;
}

.disclaimer {
color:#333333;
font-size:10px;
}

.disclaimer strong {
color: #990000;
font-weight:bold;

}

/* --------------------------- UL and OL CLASS widths - can apply to any ul or ol --------------------------- */

ul.contentshort, ol.contentshort {/*use for bulleted list with short text burst, that are longer than columns senteneces*/
	width:300px;
}

ul.contentmed, ol.contentmed {/*use for bulleted list with mid-sized senteneces*/
	width:450px;
}


ul.contentlong, ol.contentlong { /*use for bulleted list with long senteneces*/
	width:600px;
}

ul.columnlists, ol.columnlists { /*use for 2 columns bulleted list*/
	width:185px;
}
	ul.columnlists li {
		font-size: 1.4em;
		font-weight:bold;
	}

ul.columnlistsnostyle li, ol.columnlistsnostyle li { /* removes bullet points or numbers from any li in an ol or ul*/
	list-style-type:none;
}


li.newtype { /*use to change the list style type in any li element - must place "ol " or "ul " before this class and then define in the {}*/
}

.colorbgmain {
	background-color:#FFFFD2;

}

/*=========================== CLEAR STUFF* - knocks down content after this class has been applied========================= */

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
    }



  .clearfix {
	zoom: 1;
	margin-bottom: 1em;
    } 



/* ======================= SPECIAL EFFECTS - apply to any element on the site and this effect will render to it ================  */
/*GREAT FOR ON THE FLY AUGMENTATION TO PAGE ELEMENTS LIKE DIVS AND ULs!*/


/* ---------------------------- shadow classes for any element on page ----------------------------  */
.shadow {
		-moz-box-shadow: 0px 0px 3px #ccc;
		-webkit-box-shadow: 0px 0px 3px #ccc;
		
		filter: 
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=0,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=90,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=180,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=270,strength=3);
}

.shadow_normal {
	padding: 3px;
	border: 1px solid #ccc;
	-moz-box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;
		
		filter: 
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=0,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=90,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=180,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=270,strength=3);
}


.shadow_floatright {
	float: right;
	margin: 0px 0px 20px 20px;
	border: 1px solid #ccc;
	padding: 10px;
	clear: both;
	-moz-box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;

		
		filter: 
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=0,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=90,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=180,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=270,strength=3);
}

.shadow_floatleft {
	float: left;
	margin: 0px 20px 20px 0px;
	border: 1px solid #ccc;
	padding: 10px;
	clear: both;
	-moz-box-shadow: 0px 0px 3px #ccc;
	-webkit-box-shadow: 0px 0px 3px #ccc;

		
		filter: 
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=0,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=90,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=180,strength=3)
        progid:DXImageTransform.Microsoft.Shadow(color=#eeeeee,direction=270,strength=3);
}

/* ---------------------------- dotted borders for any element on page ----------------------------  */
.border_all_dotted {border: 1px dotted #ccc;}
.border_top_dotted {border-top: 1px dotted #ccc;}
.border_bottom_dotted {border-bottom: 1px dotted #ccc;}
.border_left_dotted {border-left: 1px dotted #ccc;}
.border_right_dotted {border-right: 1px dotted #ccc;}


/* ---------------------------- solid borders for any element on page ----------------------------  */
.border_all_solid {border: 2px solid #ccc;}
.border_top_solid {border-top: 2px solid #ccc;}
.border_bottom_solid{border-bottom: 1px solid #ccc;}
.border_left_solid {border-left: 1px solid #ccc;}
.border_right_solid {border-right: 1px solid #ccc;}


/* ---------------------------- padding for any element on page ----------------------------  */
.padding_all5 {padding: 5px;}
.padding_all10 {padding: 10px;}

.padding_top10 {padding-top: 10px;}
.padding_top20 {padding-top: 20px;}

.padding_bottom10 {padding-bottom: 10px;}
.padding_bottom20 {padding-bottom: 20px;}

.padding_left10 {padding-left: 10px;}
.padding_left20 {padding-left: 20px;}

.padding_right10 {padding-right: 10px;}
.padding_right20 {padding-right: 20px;}

/* ---------------------------- margins for any element on page ----------------------------  */
.margin_top10 {margin-top: 10px;}
.margin_top20 {margin-top: 20px;}

.margin_bottom10 {margin-bottom: 10px;}
.margin_bottom20 {margin-bottom: 20px;}

.margin_bottom-5 {margin-bottom: -5px}
.margin_bottom-10 {margin-bottom: -10px;}

.margin_top-5 {margin-top: -5px}
.margin_top-10 {margin-top: -10px;}


.margin_left10 {margin-left: 10px;}
.margin_left20 {margin-left: 20px;}

.margin_right10 {margin-right: 10px;}
.margin_right20 {margin-right: 20px;}

.margin_right-5 {margin-right: -5px}
.margin_right-10 {margin-right: -10px;}

.margin_left-5 {margin-left: -5px}
.margin_left-10 {margin-left: -10px;}


/*  IMAGE CLASSES and ID's for content area ===========================*/

img.floatleft {
float: left;
}
img.floatright {
float: right;
}

img.border {
border: 2px solid #efefef;
padding: 4px;
}

/*   Widths to apply to any element */

.width50percent {
	width: 50%;
}
.width70percent {
width: 70%;
}

.width80percent {
width: 80%;
}

.width90percent {
width: 90%;
}

.width95percent {
width: 95%;
}

/*  WEB AUDIO ===========================*/

applet.webaudio {
	position: absolute;
	top: 47px;
	right: 388px;
	width: 111px;
	height: 20px;
	background:none;
}


/*  GOOGLE MAPS ===========================*/

div.googlemap {
	padding: 5px;
	border: 1px solid #e8e8e8;
	width: 650px;
	margin-left: 265px;
	margin-bottom: 20px;
}


/* NAVIGATION CONTAINER */
a#homelink {
	position: absolute;
	display: block;
	z-index: 10009;
}

div#flash {
	z-index: 20000;
}

.reduce{ padding:0; margin:-40px 0 -40px 0;
			}