@charset "utf-8";
body  {
	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: #000;
	width: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border: thin none #FFF;
	background-color: #fff;
	line-height: 140%;
}
.twoColFixLtHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: justify;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	padding: 20px;
} 
#nav {
	position: absolute;
	left: 243px;
	top: 0px;
	width: 721px;
	height: 21px;
}

.twoColFixLtHdr #header {
	padding: 0;  /* 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. */
	position: relative;
} 
#contact {
	position: absolute;
	left: 687px;
	top: 194px;
	width: 229px;
	height: 49px;
}
.boldbullets {
	font-weight: bold;
	color: #333;
}


.twoColFixLtHdr #mainContent 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 */
	color: #333;
	text-align: left;
	font-size: 16px;
}
.twoColFixLtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 360px;
	background-color: #FFf;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 30px;
}


.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 11px;
	padding: 0;
} 

#form_container {
	font-family: Arial, Helvetica, sans-serif, "Microsoft Sans Serif";
	font-size: 9px;
	line-height: 100%;
	text-transform: none;
	color: #0d2e60;
	background-image: url(images/contactbox.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	font-weight: normal;
	text-align: center;
	padding: 25px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#form_containerlong {
	font-family: Arial, Helvetica, sans-serif, "Microsoft Sans Serif";
	font-size: 9px;
	line-height: 100%;
	font-weight: normal;
	color: 0d2e60;
	background-image: url(images/contactbox_longyellow.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;
	padding: 20px;
}


.twoColFixLtHdr #footer {
	padding: 12;
	background-image: url(images/banner-foot.jpg);
	margin: 10px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	line-height: 140%;
	text-align: center;
	white-space: pre;
	padding-top: 10px;
	padding-right: 10;
	padding-bottom: 0px;
	padding-left: 20;
	font-weight: bold;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.italics {
	font-family: Verdana, Geneva, sans-serif;
	font-style: italic;
	color: #333;
	text-align: right;
}

.centertext {
	font-weight: bold;
	text-align: center;
}
.smalltxt {
	font-size: 85%;
}

/* from here to end of the file are ths styles needed for lightbox image handler */

#lightbox{
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
	}

#lightbox a img{ border: none; }

#outerImageContainer{
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	}

#imageContainer{
	padding: 10px;
	}

#loading{
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#hoverNav{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
	width: 49%;
	height: 100%;
	background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }


#imageDataContainer{
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	}

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em;	}	
		
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	background-color: #000;
	}
	

/* Min-Width */
.lbWidth { /* most browsers */
	position: absolute;
	top: 0px; left: 0px;
	width: 100%;
	min-width: 790px;
	}

* html .lbContent { /* IE6 */
	margin-left: -790px;
	position:relative;
	}

* html .lbMinWidth { /* IE6 */
	padding-left: 790px;
	}
	
	
/* Clearfix */	
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */ 
	

.contact_large {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	line-height: 100%;
	border: medium outset #fefc9c;
	background-color: fefc9c;
}

.contact_medium {
	font-family: Arial, Helvetica, sans-serif, "Microsoft Sans Serif";
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	line-height: 125%;
	font-variant: small-caps;
}
.form_label {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	font-variant: normal;
	color: #FFF;
	background-color: #0d2e60;
	margin: 10px;
	padding: 5px;
}
