body  {
	font: 100% "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
	background: #6f7c7d;
	/*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: #000000;
	margin:0 auto;
}
ul {text-align:left;font-size:12px; font-weight:normal; color:#6f7c7d; margin:0px 10px; list-style: url(images/bullet.gif) }

h4 {font-weight: normal;}
#container { 
	width: 900px;  /* this will create a container 80% of the browser width */
	margin: 0 auto 30px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */

} 

form table{ padding:5px; border-top: solid 1px #6f7c7d;border-bottom: solid 1px #6f7c7d; background-color: #CCCCCC}
#header { 
	background: #6f7c7d; 
	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. */
	border-bottom: #b9b27c 4px solid;
} 
#header p {
	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: 40px 0 4px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align:right;
	color: #c8d0bf;
	font-weight: bold;
	text-transform:uppercase;
	font-size:11px;
}
#header .last { border-right:1px solid #c8d0bf; }
#header p a { color: #c8d0bf; text-decoration:none; padding:2px 5px 4px 5px; margin:0; border-top:1px solid #c8d0bf; border-left:2px solid #c8d0bf; background-color:#82989a}
#header p a:hover { color: #e3d884; text-decoration:none; background-color:#666600; }

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#columns { 	background-image: url(images/bg.gif); background-repeat:repeat-y; background-color:#FFFFFF; width:900px; margin:0 auto;

}
#columns2 { background-image: url(images/bg.gif); background-repeat:repeat-y; background-color:#FFFFFF;width:900px; height:auto; padding-bottom:20px 
}
#logos { width:900px; height:90px; background-color:#FFFFFF; 
}
#logos img { padding: 5px 10px; float:right;
}
#gallerythumbs { width:210px; height: 585px; padding:0px; float:left; overflow: auto; border-top:1px #333333 solid;border-bottom:1px #333333 solid;}
#gallerythumbs img { border:1px solid #6f7c7d}
#gallerythumbs .imgbox { width:170px; text-align:center; vertical-align:middle; padding:5px ; font-size:10px; color:#6f7c7d}
#gallery {float:left; width: 650px; text-align:center}

#gallery img { border:1px solid #6f7c7d; text-align:center; vertical-align:middle; padding:10px; margin-top:20px }
#gallery h1 { text-align:left; font-size:16px; font-weight:normal; color:#6f7c7d; margin:3px 10px;}
#gallery p { font-size:12px; font-weight:normal; color:#6f7c7d; margin:15px; text-align:left;}
#gallery ul {text-align:left;font-size:12px; font-weight:normal; color:#6f7c7d; margin:0px 15px 0 40px; list-style:none }
#photobox {width:500px; height:500px; background-color:#00CC33; position:relative;}

#gallery2 {float:left; width: 650px; text-align:center; padding:10px}
#gallery2 img { border:1px solid #6f7c7d; text-align:center; vertical-align:middle; margin:5px; padding:0 }
#gallery2 img.noborder { border:none }
#gallery2 p { text-align:left; font-size:12px; color:474f50; margin-bottom:0}
#gallery2 h3 { text-align:left; color:#653600; margin-bottom:0; margin-top:0}
#gallery2 h4 { text-align:left; color:#653600; margin-bottom:0; margin-top:10px}
#gallery2 h5 { text-align:left; font-size:12px; color:474f50; margin-bottom:0; margin-top:0; padding-top:0; font-weight:normal;}



#sidebar1 {
	float: left; 
	width: 330px; /* since this element is floated, a width must be given */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin:0;
	border-right: #b9b27c solid 1px;

}
#sidebar1 img { margin:5px 0 0 15px}
#mainContent h3, #mainContent p, #sidebar1 p {
	margin-left: 5px; 
	margin-right: 10px;}
#mainContent ul {margin: 0 15px 0 30px}
#mainContent h3 { margin-top:4px; margin-bottom:4px;}
#mainContent h3, #columns2 h3, #sidebar1 h3 {color:#653600}
#mainContent h4 { margin-top:0px; margin-bottom:10px; padding:0 0 0 20px; font-size:14px; font-weight:normal}

#mainContent a:link,  #mainContent a:visited {color:#653600; text-decoration:none}
#mainContent a:hover {color:#904d00; text-decoration:underline}
#mainContent p, #sidebar1 p { font-size:13px; color:#474f50}
#mainContent a:link,  #mainContent a:visited, #sidebar1 a:link, #sidebar1 a:visited { font-size:12px; color:#486d72; text-decoration: underline}
#mainContent a:hover, #sidebar1 a:hover { font-size:12px; color:#6e7248; text-decoration:underline;}


/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
 #mainContent { 
 	float:left;
	width:309px;
	margin: 0 ; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 20px;
	border-top: 20px solid #b9b27c;
} 
 #rightcontent { 
	float:right;
	width:220px;
	margin:0;
	padding:0;
}
#rightcontent p{ font-size:12px; color:#495758; padding:25px 10px 10px 18px; margin-bottom:0;}
 #rightcontent2 { 
	float:right;
	width:220px;
	margin:0;
	padding:0 ;
	text-align:center;
	font-size:10px; color:#6f7c7d
}
#rightcontent2 h4 { text-align:left; font-size:13px; color:#333333; padding-left:10px; padding-right:10px; font-weight:normal}
#rightcontent2 img { border: 1px solid #6f7c7d}
#splash {
 margin: 20px auto 10px auto;
 width: 198px;
 height: 500px;
 padding-left:10px
 }
#bottom-left { width: 680px; float:left; /*border-top:1px solid #b9b27c;*/ background-image:url(images/border.gif); background-repeat:repeat-x; background-position:top;}
#bottom-left h3, #bottom-left p {
	margin-left: 5px; 
	margin-right: 10px;
}
 #bottom-left h3 {color:#486d72; margin-bottom:0; margin-top:8px; font-size: 16px; font-weight:normal;}
 #bottom-left a:link,  #bottom-left a:visited {color:#653600; text-decoration:none}
 #bottom-left a:hover {color:#904d00; text-decoration:underline}
 #bottom-left p, #bottom-left li { font-size:13px; color:#474f50}
 #bottom-left a:link,  #bottom-left a:visited { font-size:12px; color:#486d72; text-decoration: none}
 #bottom-left a:hover { font-size:12px; color:#486d72; text-decoration:underline;}
 #bottom-left ul { margin-top:0; list-style-image: url(images/bullet.gif) ; }
 

#bottom-right{ width: 220px; float:left;  }

 #footer { 
	padding: 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear:both;
	border-top: 10px solid #b9b27c;
	
} 
#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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:12px;
	font-stretch:120%;
	letter-spacing:10%;
	color:#c8d0bf;
	width:60%;
	float:left;
}
#footer h4 {
	margin:0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	float:right;
	text-align:right;
	font-weight:normal;
		font-size:9px;
	color:#c8d0bf;
	width:35%;
}
#footer h4 a {
	color:#c8d0bf;
	text-decoration:none;
	font-weight:normal;
}
#footer h4 a:hover {
	color:#c8d0bf;
	text-decoration:underline;
	font-weight:normal;
}
#footer a {
	color:#c8d0bf; text-decoration:none;
	font-weight:normal;
}
#footer a:hover {
	color:#c8d0bf; text-decoration:underline;
	font-weight:normal;
}

/* Miscellaneous classes for reuse */
.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;
}
#open { border:1px solid #82989a; background-color:#edf6f7}

#open h3 { margin-bottom:0; padding-bottom:0;}
#open p { margin-top:0; padding:0 0 5px 15px;}


<!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
#sidebar1 { padding-top: 30px; }
#mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->


