@charset "utf-8";
/* CSS Document */

<!--
body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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: #000000;
	background-image:url(/images/bg.jpg);
	height:100%; /* this is the key! */
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	width: 982px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	height:100%; /* works only if parent container is assigned a height value */
}

.oneColElsCtrHdr #header { 
	background: #FFFFFF; 
	margin:0px;
	margin-left:8px;
	margin-right:8px;
	padding:0px;
	background-image:url(images/bottom_stripe.jpg);
	background-position:bottom;
	background-repeat:repeat-y;
}

 
.oneColElsCtrHdr #header div {
	margin: 0px; /* 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 */
}

.oneColElsCtrHdr #mainContent {
	margin:0px 8px 0px 8px;
	/*padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFFFFF;
	background-image:url(/images/main_bg.jpg);
	background-repeat:repeat-y;		
	font-size:11px;
	color:#888888;
	min-height:300px;
}

.oneColElsCtrHdr #mainContent h1{
	font-size:13px;
	font-weight:bold;
	color:#155c79;
	margin-top:30px;
}

.oneColElsCtrHdr #mainContent #left {
	float:left;
	padding:0px 20px 0px 20px;
	width: 150px;
	_width: 190px;
}

.oneColElsCtrHdr #mainContent #left ul{
	padding:10px 0px 0px 0px;
	margin:0px;
}

.oneColElsCtrHdr #mainContent #left li{
	border-top:1px dotted #666666;	
	list-style:none;
	padding-top:4px;
	padding-bottom:4px;
	font-weight:bold;
	font-size:10px;
	padding-left:10px;
}

.oneColElsCtrHdr #mainContent #left li:last-child, .oneColElsCtrHdr #mainContent #left li.lastchild {
	border-top:1px dotted #666666;	
	border-bottom:1px dotted #666666;	
	list-style:none;
}

.oneColElsCtrHdr #mainContent #left li a:link {
	color:#824646;
	text-decoration:none;
}

.oneColElsCtrHdr #mainContent #left li a:hover {
	color:#155c79;
}

.oneColElsCtrHdr #mainContent #left li a:visited {
	color:#824646;
}

.oneColElsCtrHdr #mainContent p{
	margin: 0;
	padding:5px 0px 5px 0px;
}

.oneColElsCtrHdr #mainContent p b, .oneColElsCtrHdr #mainContent p strong{
	color:black;
	font-weight:bold;
	font-size:12px;
}


.oneColElsCtrHdr #mainContent #right {
	float:left;	
	width:760px;
}

.oneColElsCtrHdr #mainContent #right a:link {
	color:#824646;
	text-decoration:none;
}

.oneColElsCtrHdr #mainContent #right a:hover {
	color:#155c79;
}

.oneColElsCtrHdr #mainContent #right a:visited {
	color:#824646;
}

.oneColElsCtrHdr #footer { 
	margin:0px 8px 0px 8px;
	/*padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background-image:url(images/footer.jpg);
	background-repeat:no-repeat;
	_height:61px;
	min-height:61px;
	
} 

.oneColElsCtrHdr #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 */
	text-align:center;
	padding-top:24px;
	font-size:9px;
	color:#7c7771;
}

.oneColElsCtrHdr #footer a:hover {
	color:#824646;
}

.oneColElsCtrHdr #footer a:link, .oneColElsCtrHdr #footer a:visited {
	color:#824646;
	text-decoration:none;
}

.oneColElsCtrHdr #footer bold {
	color:#155c79;
}

-->
.photos {
	border:10px solid #f2ecde;
	margin:10px;
}

.contact_label {font-family:Arial, "Times New Roman", Times, serif; font-size:11px; text-align:right;}
.contact_textbox { text-align:left;}
.textbox {font-family:Arial, "Times New Roman", Times, serif; font-size:13px; border:1px solid #F3E8C2;  background-color:#ffffff; height:20px; width:300px;}
textarea {font-family:Arial, "Times New Roman", Times, serif; font-size:13px; border:1px solid #F3E8C2; background-color:#ffffff; width:300px;}
.btnSubmit {background-color:#ffffff; color:#155c79;  font-size:13px; border:1px solid #F3E8C2; padding:5px; font-family:Arial, "Times New Roman", Times, serif;}

/*messages*/

error { display:block; font-size:14px; color:red; margin:20px 0px 20px 0px; }

success{ display:block; font-size:14px; color:green; margin:20px 0px 20px 0px; }

.LV_invalid_field{ border:1px solid red; }
.LV_invalid{ color:red; }