@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #87968d;
	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;
}
a {
	outline: none;
}
.twoColElsLtHdr #container { 
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-y;
	width: 1000px;
	margin: auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsLtHdr #header { 
	background-image: url(../images/banner.jpg);
	background-repeat: no-repeat;
	height: 155px;
} 
.twoColElsLtHdr #header h1 {
	margin: 0;
	padding: 0;
}
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 190px;
	padding-left: 10px;
	text-align: center;
}
.twoColElsLtHdr #sidebar1 img {
	margin-left: auto;
	margin-right: auto;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.twoColElsLtHdr #mainContent {
	padding: 0;
	margin: 0 25px 0 210px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 
.twoColElsLtHdr #mainContent h1{
	font-size: 1.6em;
	text-align: center;
	padding-top: 0;
}
.twoColElsLtHdr #mainContent p{
	padding: 0;
	padding-bottom: 10px;
	margin: 0;
}
.twoColElsLtHdr #mainContent a{
	color: blue;
	text-decoration: underline;
}
.twoColElsLtHdr #mainContent img{
	float: right;
	margin-left: 5px;
}
.twoColElsLtHdr #mainContent img.left{
	float: left;
	margin-right: 5px;
}
.twoColElsLtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background-image: url(../images/footer.jpg);
	height: 50px;
} 
.twoColElsLtHdr #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 */
	text-align: center;
	color:#FFFFFF;
	padding-top: 20px;
	font-size: 12px;
}
.twoColElsLtHdr #footer a{
	color: #FFFFFF;
	text-decoration: underline;
}
/* 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;
}
#navi {
	border: 0;
	float: left;
	padding: 0;
	width: 180px;
	margin: 0;
	text-align: left;
}
#navi ul {
	border: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 5px;
}
#navi li {
	border: 0;
	margin: 0;
	padding: 0;
	width: 180px;
	background-color: #437453;
	border-bottom: 1px solid #1d512e;
}
#navi li a {
	border: 0;
	display: block;
}
#navi a {
	padding-left: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
	color: #FFFFFF;
	text-decoration: none;
}
#navi a:hover{
	color: #FFFF77;
}
#Gallery {
	padding-right: 80px;
	padding-left: 80px;
}
#Gallery img {
	border: 2px solid #1d512d;
}
#GalleryText {
}
#GalleryControls {
	clear: right;
	text-align: center;
}
#GalleryControls a.enabled {
	text-decoration: none;
	cursor: pointer;
}
#GalleryControls a.disabled {
	color: #666666;
	cursor: default;
	text-decoration: none;
}