@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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #000;
}
#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	background-color: #000;
	background-image: url(../images/banner.gif);
	background-repeat: no-repeat;
	height: 111px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#menu {
	border: 1px solid #000;
	background-color: #000;
	height: 40px;
}
#topMenu {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#menu #topMenu li {
	margin: 0px;
	float: left;
	display: block;
}
#photo_slideshow {
	padding-left: 35px;
	position: relative;
}

#menu #topMenu li ul {
	position: absolute;
	width: 202px;
	background-color: #000;
	list-style-type: none;
	visibility: hidden;
}
#menu #topMenu li ul li {
	float: none;
}
#menu #topMenu li a:link {
	display: block;
	margin: 0;
	color: #FFF;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-left: 20px;
	text-decoration: none;
}
#menu #topMenu li a:visited {
	display: block;
	margin: 0;
	padding: 10px 20px;
	color: #FFF;
	text-decoration: none;
}
#menu #topMenu li a:hover {
	display: block;
	margin: 0;
	padding: 10px 20px;
	color: #FFF;
	background-color: #006;
	text-decoration: none;
}
#menu #topMenu li #eventsSubMenu {
	padding-left: 0px;
	width: 140px;
	position: absolute;
	z-index: 99;
}
#menu #topMenu li #eventsSubMenu li ul {
	margin-left: 140px;
	margin-top: -38px;
	width: 250px;
	padding-left: 0px;
}
#menu #topMenu li #eventsSubMenu li a:link {
}
#menu #topMenu li #eventsSubMenu li a:visited {
}
#menu #topMenu li #eventsSubMenu li a:hover {
	background-color: #006;
	color: #FFF;
}
#menu #topMenu li #memberSubMenu {
	padding-left: 0px;
	width: 140px;
	position: absolute;
	z-index: 99;
}

#menu #topMenu li #memberSubMenu li ul {
	margin-left: 140px;
	margin-top: -38px;
	width: 100px;
	padding-left: 0px;
}
#menu #topMenu li #memberSubMenu li a:link {




}
#menu #topMenu li #memberSubMenu li a:visited {

}
#menu #topMenu li #memberSubMenu li a:hover {
	background-color: #006;
	color: #FFF;
}
#menu #topMenu li #aboutSubMenu {
	padding-left: 0px;
	width: 180px;
	position: absolute;
	z-index: 99;
}
#menu #topMenu li #aboutSubMenu li ul {
	margin-left: 140px;
	margin-top: -38px;
	width: 250px;
	padding-left: 0px;
}
#menu #topMenu li #aboutSubMenu li a:link {
}
#menu #topMenu li #aboutSubMenu li a:visited {
}
#menu #topMenu li #aboutSubMenu li a:hover {
	background-color: #006;
	color: #FFF;
}
#meetingMarquee {
	background-color: #000;
	color: #FFF;
	font-size: 70%;
}






#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 */
}

#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 225px;
	background-color: #FFF;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}

#forcenetNews {
	height: 445px;
	width: 200px;
}
#getBoardPosts {
	height: 430px;
	width: 225px;
	overflow: hidden;
	border: 1px solid #000;
}

#getBoardPosts iframe {
	height: 445px;
	width: 225px;
	display: block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	overflow: hidden;
}
#indexSlideshow {
	float: right;
	padding-left: 20px;
	z-index: -1;
}
#mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#footer {
	padding: 0 10px 0 20px;
	background-color: #000;
} 
#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 */
	font-size: 75%;
	color: #FFF;
	text-align: center;
	font-style: italic;
}
.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;
}
.menuPlaceholder {
	color: #FFF;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

.menuBorderLeftRight {
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #006;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #006;
}
.menuBorderTopRight {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #006;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #006;
}

.menuBorderBottom {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #006;
}
.menuBorderLeftRightBottom {
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #006;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #006;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #006;
}
.floatRight {
	float: right;
	padding-left: 20px;
}
.photo_list td {
	text-align: center;
	width: 350px;
	vertical-align: middle;
}
.photo_list img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-bottom: 5px;
}

.member_list_left {
	width: 250px;
	text-align: center;
	padding-bottom: 15px;
	padding-top: 15px;
}
.member_list_right {
	width: 445px;
	font-size: small;
	vertical-align: top;
	padding-top: 15px;
}
#facebook_icon {
	position: relative;
	left: 940px;
	top: 53px;
	width: 43px;
	height: 41px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.member_list td {
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
