@charset "utf-8";
body {
	font: 18px Tahoma, Verdana, Arial, Helvetica, sans-serif;
	background: #011832;
	background-image: url(images/background.jpg);
	background-repeat: repeat-x;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #cccccc;
	line-height: 170%;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid white;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: transparent; 
	padding: 0px 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font: 16px;
}
.oneColFixCtrHdr #mainContent {
	padding: 20px 140px 20px 140px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColFixCtrHdr #mainContent img {
	margin: 20px;
}
.oneColFixCtrHdr #mainContentImage {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColFixCtrHdr #mainContentImage .galleryone {
	text-align: center;
}
.oneColFixCtrHdr #mainContentImage .galleryone img {
	margin: 0 0 40px 0;
	border: 1px solid #cc9900;
}
.oneColFixCtrHdr #mainContentImage .gallerytwo img {
	margin: 0 0 40px 0;
	border: 1px solid #cc9900;
	width: 100px;
	height: 100px;
}
.oneColFixCtrHdr #mainContentImage .gallerythree img {
	margin: 0 20px 20px 0;
	border: 1px solid #cc9900;
}
.galleryfour img {
	margin: 0 0 40px 0;
	border: 0px solid #cc9900;
}
body .gallerythree {
	font: 12px Tahoma, Verdana, Arial, Helvetica, sans-serif;
}

.oneColFixCtrHdr #footer {
	padding: 0px 10px 0px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: transparent;
	font: 11px Tahoma, Verdana, Arial, Helvetica, sans-serif;
	color: #1a4572;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/******************************** Menu */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 150%;
}

#nav a {
	display: block;
/*	width: auto;*/
}

#nav li { /* all list items */
	float: left;
	padding: 0 20px 5px 10px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-image: url(images/backgroundmenu.jpg);
	background-repeat: repeat-y;
	background-color: #011832;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding: 0 20px 0 10px;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


A:link {
	background-color : transparent;
	color : white;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: underline;
}

A:visited {
	background-color : transparent;
	color : white;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: underline;
}

A:hover {
	background-color : transparent;
	color : #3399cc;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

A:active {
	background-color : transparent;
	color : #3399cc;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

A:link.on {
	background-color : transparent;
	color : #9fe8ff;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

A:visited.on {
	background-color : transparent;
	color : #9fe8ff;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

A:hover.on {
	background-color : transparent;
	color : #3399cc;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: underline;
}

A:active.on {
	background-color : transparent;
	color : #3399cc;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: underline;
}


A:link.gl {
	background-color : transparent;
	color : white;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

A:visited.gl {
	background-color : transparent;
	color : white;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

A:hover.gl {
	background-color : transparent;
	color : #3399cc;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

A:active.gl {
	background-color : transparent;
	color : #3399cc;
	font-family : Tahoma, Arial, Helvetica, sans-serif;
	text-decoration: none;
}



/*************************** Gallery enlarger */
.gallerycontainer{
position: relative;
height: 200px;
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 230px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
