@charset "utf-8";
/* CSS Document */
body {
	behavior:url(../includes/csshover.htc); 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #FFFFFF url(../images/bckgrnd.png);
	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:link {
	color: #003366;
}
a:visited {
	color: #003366;
}
a:hover {
	color: #7f6600;
}
a:active {
	color: #003366;
}
.twoColFixLtHdr #container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px 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. */
	border-bottom-style:ridge;
	border-bottom-color:#FFCC00;
	border-top-style:ridge;
	border-top-color:#FFCC00;
} 
.twoColFixLtHdr #header { 
	background: #ffffff; 
	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-style:ridge;
	border-bottom-color:#FFCC00;
} 
.twoColFixLtHdr #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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	margin-top: 0px;
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	
	}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 195px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
} 
.hr {
width: 700px;
background-color:#BE9900;
color:#BE9900;
height: 1px;
padding: 0;
position:relative;
margin: 15px auto;

}
 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the element in the divs that appear above it. */
	background:#336699; 
	font-size: 9px;
	color: #ffffff;	
	border-top-style:ridge;
	border-top-color:#FFCC00;
	text-align:center;
} 
.footer a:link {
	color:#FFFFFF;
	text-decoration:underline;
	font-weight:bold;
}
.footer a:visited {
	color:#FFFFFF;
	text-decoration:underline;
	font-weight:bold;
}
.footer a:hover {
	color:#003366;
	text-decoration:underline;
	font-weight:bold;
}
.footer a:active {
	color:#003366;
	text-decoration:underline;
	font-weight:bold;
}
.twoColFixLtHdr #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 */
}
.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;
}
leftnav{
}/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/
.leftnav a:link {
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
	font-size: 13px;
}
.leftnav a:visited {
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
	font-size: 13px;
}
.leftnav a:hover {
	color:#ffffff;
	text-decoration:none;
	font-weight:bold;
	font-size: 13px;
}
.leftnav a:active {
	color:#ffffff;
	text-decoration:none;
	font-weight:bold;
	font-size: 13px;
}
ul#leftnav {
list-style:none; /* Remove the bullets */
margin:0;
padding:0px;
width:180px; /* Menu width */
background-color:#003366;
}


ul#leftnav li {
display:block; /* Make a menu item a block (height 100%, width 100%) */
height:100%;
width:100%;
position:relative;
float:left; /* Make sure (in IE) there is no margin between the menu items */
border-bottom:1px solid #FFFFFF;

}
ul#leftnav li a{
display:block; /* When rollover the menu item, the whole item will be seen as link. */
background:#003366;
padding:5px;
}
ul#leftnav li a:hover {
padding:0;
background:#7f6600;
padding:5px;
}
ul#leftnav ul {
position:absolute;
top:0;
display:none; /* Display nothing when not 'hovered' */

}
ul#leftnav li ul li{
	height:100%;
	width:120px;
	background:#003366;
	border-bottom:1px solid #FFFFFF;
	}
ul#leftnav li ul li a:hover{	
	background:#7f6600;

}
ul#leftnav li:hover ul{
display:block; /* Make sure the submenu is displayed as blocks as well. */
left:150px; /* Your menu width. The submenu appears there, when you hover a menu item. */
 background:#7f6600;
}
ul#leftnav li.current a{
	background:#7f6600;
	color:#FFffff;
	}

ul#leftnav li.current a:hover{
	background:#7f6600;
}
.searchbutton {
vertical-align:bottom;
}

/*	=====================================================================
	SLIDESHOW SLIDESHOW SLIDESHOW SLIDESHOW SLIDESHOW SLIDESHOW SLIDESHOW 
	=====================================================================  */ 

#banner {

	width: 750px;
	}

.slideshow {
	width: 750px;
	height: 360px;
	overflow:hidden;
	position:relative;
	}
	
.slide-show-item {
	width: 750px;
	height: 360px;
	background-color:#003366;
	font-size:20px;
	color:#ffffff;
	overflow:hidden;
	text-align:center;
	
			}

.slide-show-item-img {
	margin-right:0px;
	float:left;
	}
	
#nav-slide {
	width: 750px;
	padding: 8px 0;
	display: block;
	background: #7f6600;

	}

#nav-slide a {
	background: #fff;
	font-weight: bold;
	text-decoration: none;
	margin: 0 2px;
	padding: 3px 5px;
	position: relative;
	left: 525px;
	color: #000000;
	}

#nav-slide a:hover {
	background: #ccc;
	}

#nav-slide a.activeSlide {
	color: #fff;
	background: #336699;
 }
#nav-slide a:focus { outline: none; 
}
.headertable {
width: 100%;
border:0;
}
.headertableTD3 {
white-space:nowrap;
text-align:right;
}
.willylogo {
padding: 5px;
}
.linkedimage {
border: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.linkedimagedefault {
border: 0;
display: block;
float:left;
}
.overland {
padding-top:40px;
padding-bottom: 40px;
text-align:left;
}
.homepagebanner {
color: #000000;
}
.divcenter {
text-align:center;
margin:auto;
}
.iframecenter {
display: block;
    width: 420px;
    height: 315px;
    margin: 0 auto;
    border: 0;
}
.searchtable {
background-color:#FFFFFF;
}
.searchTD {
border-style:none;
}
.searchbutton {
text-align: right;

}
.pageheader {
color:#003366;
text-transform:uppercase;
font-size:18px;
font-weight:bold;
}
.headerText{
color:#003366;
text-transform:uppercase;
font-size:16px;
font-weight:bold;
}
.headerTextRed{
color:#990000;
text-transform:uppercase;
font-size:16px;
font-weight:bold;
}

.shadow {
	-moz-box-shadow: 7px 7px 8px #000;
	-webkit-box-shadow: 7px 7px 8px #000;
	box-shadow: 7px 7px 8px #000;
	/* For IE 8 */
	-ms-filter: progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=135, Color='#003366');
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=135, Color='#003366');
	border: 0;
	display:block;
margin-left: auto;
margin-right: auto;
text-align:center;

}

.textaligncenter {
margin: 0 auto;
text-align:center;

}
.clubtable {
width: 80%;
margin: auto;
}
.clubTD1{
width:60%;
}
.clubTD2 {
width: 40%;
}
.red {
color: #990000;
font-weight: bold;
font-size:14px;
}
.gallerycontenttable {
width: 110px;
vertical-align:top;
float:left;
}
.gallerycontenttableWide {
width: 220px;
vertical-align:top;
float:left;
}
.galleryImage{
float:right;
margin-right: 50px;
border:none;
margin-top: 15px;
}
.galleryImageWide{
float:right;
margin-right: 0px;
border:none;
margin-top: 15px;
}
.contenttable {
width: 100%;
vertical-align:top;
margin-right: 10px;
}
.contenttabletd1 {
padding-left: 10px
padding-right: 10px;
}
.contenttabletd2 {
width: 1px;
background-repeat:repeat-y;
}
.restoreshowtable {
text-align:center;
margin-left:auto;
margin-right:auto;

}
.zoom_button {
vertical-align: bottom;
}
