﻿/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 5;
	border: 0;
	outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

html {
	font-family: Arial, Helvetica, sans-serif;
	font-size:  76%;
	height: 100%;
}
body {
	color: #000;
	margin: 0 0 0 0;
/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */padding: 0 0 0 0;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */text-align: center; /* Centers the page content container in IE 5 browsers. */;
/*	background: #FFFFCC url(images/page-bg.jpg) repeat-x top;*/
	background-image:url('../images/DSCN3817-sm.png');
}


}
/* Sets the style for unvisited links. */
a, a:link {
	color: #06C;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #000;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #666;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
}
.clear {
	clear: both;
	background-color: #606060;
}
.right {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.left {
	float: left;
	margin-right: 10px;
	margin-bottom: 5px;
}

.ybgallery {
	margin: 10px 50px;
	}
	
.ybgallery {
	transition: 1s;
	padding: 15px;
	}
	
.ybgallery img {
	margin: 5px 5px;
	}
	
.ybgallery img:hover {
	filter: grayscale(100%);
	transform: scale(1.1);
	}
	
.galleryleft {
	float:cente;
	border:solid 5px #000;
	margin:10px 10px 0 0;
}	
.arrow {
	background: url(images/arrow.gif) no-repeat left top;
	display: block;
	padding-left: 15px;
	margin-top: 8px;
}
/* ---------- Page Structure CSS ---------- */

#header {
	background: #C0C0C0;
	text-align: left;
	height: 75px;
	padding-left: 30px;
	font-size: large;
}
#headlinks {
	float:right;
	width:300px;
	text-align:right;
	padding:30px 30px 0 0;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #FFFFFF;
/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */text-align: left; /* Redefines the text alignment defined by the body element. */;
	width: 920px;
	margin-left: 100px;
}
#threeColumns { /* This sets the id for a 3 column layout */
	overflow: hidden;
}
#threeColumns #leftColumn {
	float: left;
	padding: 15px 10px 10px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
#threeColumns #rightColumn {
	float: right;
	padding: 15px 15px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#threeColumns #content {
	margin: 0 205px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 480px;
}
#twoColumnleft { /* This sets the id for a 2 column layout with a left column only */
	overflow: hidden;
}
#twoColumnleft #content, #twoColumnright #content {
	width:700px;
}
#twoColumnleft #leftColumn {
	float: left;
	padding: 15px 10px 10px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
#twoColumnleft #rightColumn {
	display:none;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#twoColumnleft #content {
	margin: 0 15px 0 285px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#twoColumnright { /* This sets the id for a 2 column layout with a right column only */
	overflow: hidden;
}
#twoColumnright #leftColumn {
	display:none;
}
#twoColumnright #rightColumn {
	float:right;
	margin: 10px 15px 0 0;
	padding: 10px 15px 10px 20px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 210px;
	background-color: #CCCCCC;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#twoColumnright #content {
	/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	/*border: medium #008080 solid;*/
	background: #CCFFCC;
	margin: 10px 200px 0 10px;
	padding: 10px 10px 30px;
}
#counter{
	padding: 15px 10px 10px 30px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */background: url(images/footer.gif) no-repeat left top;
	height: 38px;
	color: #FFF;
	clear: both;
}
#footer {
	padding: 15px 10px 10px 30px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */background: url(images/footer.gif) no-repeat left top;
	height: 38px;
	color: #FFF;
	clear: both;
	background-color: #000000;
}
/* ---------- Navigation CSS ---------- */

#navcontainer {
	background: #066F38;
	position: relative;
	height: 40px;
	width: 100%;
	font-family: Helvetica, Arial, Verdana, sans-serif;
}
#nav {
	position:relative;
	height:40px;
	font-size:11px;
	text-transform:uppercase;
	font-weight:bold;
	background:url(images/nav-container-bg.gif) no-repeat left top;
	padding:0 0 0 23px;
}
#nav ul {
	margin:0;
	padding:0;
	list-style-type:none;
	width:auto;
	float:left;
}
#nav ul li {
	display:block;
	float:left;
	margin:0px;
}
#nav ul li a {
	background: #066F38;
	display: block;
	float: left;
	color: #FFF;
	text-decoration: none;
	padding: 0 0 0 20px;
	height: 40px;
}
#nav ul li a span {
	padding:12px 20px 0 0;
	height:28px;
	float:left;
}
#nav ul li a:hover {
	color: #fff;
	background: transparent url(images/nav-bg-over.gif) repeat-x left bottom;
	background-color: #808080;
}
#nav ul li a:hover span {
	display:block;
	width:auto;
	cursor:pointer;
}
#nav ul li a.current, #nav ul li a.current:hover {
	color: #fff;
	background: #066F38 url(images/nav-left-on.gif) no-repeat left
top;
	line-height: 325%;
}
#nav ul li a.current span {
	display: block;
	padding: 0 20px 0 0;
	width: auto;
	background: #066F38 url(images/nav-right-on.gif) no-repeat right
top;
	height: 40px;
}
/* ---------- Typography CSS ---------- */

h1 {
	font-size: 2.0em;
	font-weight: normal;
	margin-top: 0em;
	margin-bottom: 0em;
	margin-left: 5px;
}
h2 {
	font-size: 1.7em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: normal;
	color: #06C;
}
h3 {
	font-size: 1.4em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}
h4 {
	font-size: 1.2em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}
h5 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}
h6 {
	font-size: 0.8em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}
img {
	border: 0;
}
.spaced ol, .spaced ul, .spaced li {
	font-size: 1.0em;
	line-height: 1.8em;
	margin-top: 0.2em;
	margin-bottom: 0.1em;
}
p {
	font-size: 1.0em;
	line-height: 1.5em;
	margin: 1.2em 0em 1.2em 0em;
	margin-left: 5px;
}
li > p {
	margin-top: 0.2em;
	margin-left:0.5em;
}
pre {
	font-family: monospace;
	font-size: 1.2em;
	background: #F4F4F4;
	margin: 15px;
	padding: 10px;
	border: 1px dotted #CCC;
}
.narrow1 {
	line-height:1.1em;
}
#footer a, #footer a:link, #footer a:visited, #footer a:active {
	color: #fff;
}
#footer a:hover {
	color: #ccc;
}
/* ---------- Two Column CSS ---------- */

.csscolumns {
	overflow:hidden;
	width: 100%;
}
/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_2 {
	margin: 0;
	float: left;
	width:48%;
}
#col_two_2 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:48%;
}
/* ---------- Three Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_3 {
	margin: 0;
	float: left;
	width:31%;
}
#col_two_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
#col_three_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
/* ---------- Four Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_4 {
	margin: 0;
	float: left;
	width:23%;
}
#col_two_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_three_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_four_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
/* ---------- Side column menu styles ---------- */

.styledmenu {
	width: 100%; /*width of menu*/
}
.styledmenu .headerbar {
	font: bold 13px Verdana;
	color: white;
	background: #606060 url(images/downarrow.gif) no-repeat 8px 6px; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 31px; /*31px is left indentation of header text*/
}
.styledmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0; /*bottom spacing between each UL and rest of content*/
}
.styledmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
	margin: 0px;
}
.styledmenu ul li a {
	color: black;
	background: #E9E9E9;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 8px; /*link text is indented 8px*/
	text-decoration: none;
}
.styledmenu ul li a:visited {
	color: black;
}
.styledmenu ul li a:hover { /*hover state CSS*/
	color: white;
	background: black;
}
.simplemenu {
	width: 100%; /*width of menu*/
}
.simplemenu .headerbar {
	font: bold 13px Verdana;
	color: #000; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 0px; /*31px is left indentation of header text*/
}
.simplemenu ul {
	list-style-type: none;
	padding: 0 0 20px; /*bottom spacing between each UL and rest of content*/
	margin: 0;
}
.simplemenu ul li {
	margin: 0px;
	padding-bottom: 2px;
}
.simplemenu ul li a {
	font: normal 12px Arial;
	color: black;
	background: #FFF;
	display: block;
	padding: 4px 0 4px 5px;
	line-height: 17px; /*link text is indented 8px*/
	text-decoration: none;
	border-bottom: 1px solid #E9E9E9;
}
.simplemenu ul li a:visited {
	color: black;
}
.simplemenu ul li a:hover { /*hover state CSS*/
	color: #000;
	background: #EAEAEA;
}
/* ---------- Common styles shared between both left and right columns ---------- */

.sidebarlt {
	padding: 6px;
	border: 1px solid #CECECE;
	background-color: #E9E9E9;
}
.sidebardk {
	color: #FFFFFF;
	border: 1px solid #333;
	padding: 6px;
	background-color: #606060;
}
.sidebardk a, .sidebardk a:hover, .sidebardk a:visited, sidebardk a:active {
	color: #FFFFFF;
	text-decoration:underline;
}
/* ---------- Stylings for hierarchical Sitemap ---------- */

.sitemap span.none, .sitemap span.vert, .sitemap span.last, .sitemap span.midd {
	background:transparent 0px 0px no-repeat;
	width: 24px;
	height: 18px;
	display: block;
	float: left;
	margin-left: 1em;
}
.sitemap li {
	line-height: 1.65em;
}
.sitemap span.vert {
	background-image: url(images/map_vert.gif);
}
.sitemap span.last {
	background-image: url(images/map_last.gif);
}
.sitemap span.midd {
	background-image: url(images/map_midd.gif);
}
.sitemap, .sitemap ul, .sitemap li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* ---------- Stylings for homepage jQuery slider ---------- */

#slider ul, #slider li {
	margin:80;
	padding:0;
	list-style:none;
	margin-left: 5px; /* Moves each slide away from left margin */
}
#slider li {
	width: 800px;
	height: 500px;
	overflow: hidden;
	margin-left: 5px; /* Moves each slide away from left margin */
}
#prevBtn, #nextBtn,
	#slider1next, #slider1prev{ 
		display:block;
		width:30px;
		height:77px;
		position:absolute;
		left:65px; /*was -30 in original - controls left position of prev button*/
		top:350px; /* was 71 in original */
		z-index:1000;
		}	
	#nextBtn, #slider1next{ 
		left:1025px; /*changes distance between prev/next */
		}														
	#prevBtn a, #nextBtn a,
	#slider1next a, #slider1prev a{  
		display:block;
		position:relative;
		width:30px;
		height:127px; /* was 77 */
		background:url(../images/btn_prev.gif) no-repeat 0 0;	
		}	
	#nextBtn a, #slider1next a{ 
		background:url(../images/btn_next.gif) no-repeat 0 0;	
		}
/* ---------- These are the styles for the contact form ---------- */
Label {
}
.inputValue {
	width:50%;
	margin-top:5px;
}
.inputText {
	width:85%;
	height:180px;
	margin-top:5px;
}
.inputButton {
}
.required {
	font-size:9px;
	color:#C00;
}

/* ---------- These are the styles for the data detail table ---------- */

#detail {
	margin-top: 20px;
}
#detail h3 {
	margin: 8px 0px 0px;
	padding: 0px;	
}
#detail p {
	line-height:normal;	
}
#detail a {
	font-weight:bold;	
}
#detail td.uline {
	border-bottom:1px solid #ccc;	
}
