@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	}
	

html, body {
	height: 100%;
}

	
/* LAYOUT RELATED STYLES */

#container { 
	min-height: 100%;
	height: auto !important; /* IE 6 hack for sticky footer*/
	height: 100%;
	margin: 0 auto -35px; /* the auto margins (in conjunction with a width) center the page left and right */
	width: 740px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
/*	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */

} 
#header { 
	background: #DDDDDD; 
	padding: 0 0px 0px 0px;  /* 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. */
	margin-bottom: 0px;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 300px; /* 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: 20px 10px 15px 10px;
}
#frontContent { 
	margin: 0 0 0 320px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent { 
	margin: 0 0 0 0px; /* 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 */
} 
.floatright { /* 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: 10px;
	max-width: 330px;
	background: #DDD3AB;
	margin-right: -10px;
}
.floatleft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	max-width: 300px;
	background: #DDD3AB;
}
.column-in { /* this class is used to give left and right padding to an element */
	padding: 5px 8px 5px 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;
}

#bottomlayer { /* contents of this div, such as an image, will serve as a backdrop for the contents of "toplayer" */
	float: left;
	position: relative;
	left: 0;
	top: 0;
	z-index: 2;
}

#toplayer {
	position: absolute;
	left: 75px;
	top: 47px;
	z-index: 3;
}

/* BEGIN CSS for SUCKERTREE MENU */
/* the horizontal navigational menu in the header */
/* the original suckertreemenu has options for sublevels that expand below each item - not included here */

.suckertreemenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top Level Menu items style */
.suckertreemenu ul li{ 
	position: relative;
	display: inline;
	float: left;
	/*background-color: #d8d8d8; /*overall menu background color*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	text-align: center;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: 100px; /*Width of menu link items*/
		height: 14px;

	padding: 3px 0px;
	text-decoration: none;
	color: #003366;

}

/*Top level menu link first item style - use if need to be different than rest of list*/
.suckertreemenu ul li a.longer {
	display: block;
	width: 150px; /*Width of top level menu link items*/
	padding: 3px 0px;
	text-decoration: none;
}

.suckertreemenu ul li a:hover{
	background-color: #8dc1dc;
	color: white;
}

	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */

/* END CSS for SUCKERTREE MENU */


/* BEGIN CSS for CONTENT SLIDER */


.sliderwrapper{
	position: relative; /*leave as is*/
	overflow: hidden; /*leave as is*/
	border: 1px solid #B8AA73;
	border-bottom-width: 1px;
	width: 298px; /*inner width of featured content slider*/
	height: 240px;
}
.sliderwrapper .contentdiv{
	visibility: hidden; /*leave as is*/
	position: absolute; /*leave as is*/
	left: 0;  /*leave as is*/
	top: 0;  /*leave as is*/
	padding: 0px;
	background: #fff;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	width: 298px; /*width of content DIVs within slider. This width plus 2xpadding should equal slider's inner width (298+0+0=298) */
	height: 100%;
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
.pagination{
	width: 292px; /*Width of pagination DIV. This width plus 2xpadding below should equal sliderwrapper's outer width (292+4+4=298+1+1)*/
	text-align: left;
	font-size: 0.8em;
	padding: 5px 4px;
}
.pagination a{
	padding: 0 5px;
	text-decoration: none; 
	color: #B8AA73;
	background: #F1EEBA;
	font-weight:bold;
}
.pagination a:hover, .pagination a.selected{
	color: #fff;
	background-color: #8dc1dc;
}
#bottomslide { /* contents of this div, such as an image, will serve as a backdrop for the contents of "topslide" */
	float: left;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 298px;
	height: 240px;
}
#topslide {
	position: absolute;
	left: 5px;
	top: 0;
	z-index: 3;
	text-align: center;
	width: 288px;
	height: 100%;
}

.contentdiv p {
	color: black;
	padding: 0 15px;
	font: 1.3em Verdana, Arial, Helvetica, sans-serif;
}

/*END CSS for CONTENT SLIDER */


/* sticky footer */
		
#footer, #push {
	height: 35px; /* must match the negative margin set in #container */
	width: 740px;  /* should match container width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
#footer {
	background: #B8AA73;
}

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