@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;
	background-image: url(../images/bg_green.jpg);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
div#container {
	position: relative;
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 10px solid #E3DAD1;
	text-align: left; /* this overrides the text-align: center on the body element. */
}



/*HEADER*/
 
div#header {
	height: 170px;
	background-image: url(../images/logo.gif);
	background-repeat: no-repeat;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333366;
} 

div#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 */
}
div#header h1 {
	text-indent: -9999px;
	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 */
}
div#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -9999px;
}


/*GLOBAL NAVIGATION*/

div#globalnav {
	height: 38px;
	left: 8px;
	top: 134px;
	border-bottom: 1px dotted #767252;
	background-color: #F6F6F6;
}



/*LEFT SIDEBAR*/

div#sidebar_left {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-right: 1px dotted #767252;
	min-height: 600px;
}
div#sidebar_left h1 {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	word-spacing: 0.15em;
	color: #666600;
	font-size: 110%;
	margin-bottom: 5px;
}
div#sidebar_left h2 {
	text-transform: capitalize;
	letter-spacing: 0.15em;
	word-spacing: 0.15em;
	color: #993300;
	border-top: 1px dotted #CCCCCC;
	font-size: 100%;
	margin-top: 30px;
}
div#sidebar_left h3 {
	font-family: "Trebuchet MS", Tahoma, Verdana;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
	color: #990000;
	text-align: center;
	border: 1px solid #CCCCCC;
	letter-spacing: 0.2em;
	background-color: #FFFFFF;
}
div#sidebar_left p {
	font-size: 80%;
}
div#sidebar_left ul {
	margin: 0;
	padding: 0 0 30px 0;
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
}
div#sidebar_left li {
	list-style-type: none;
	padding: 0 0 5px 0;
	margin: 0 7px 0 7px;
	border-bottom: solid 1px #cccccc;
}
div#sidebar_left a:link {
	display: block;
	color: #996600;
	text-decoration: none;
}
div#sidebar_left a:visited {
	text-decoration: none;
	color: #ac9144;
}
div#sidebar_left a:hover {
	text-decoration: underline;
}


/*MAIN CONTENT*/

div#mainContent {
	margin: 27px 30px 0px 220px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
div#mainContent h1 {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	word-spacing: 0.15em;
	color: #666600;
	font-size: 110%;
	margin-bottom: 5px;
}
div#mainContent h2 {
	text-transform: capitalize;
	letter-spacing: 0.15em;
	word-spacing: 0.15em;
	color: #993300;
	border-top: 1px dotted #CCCCCC;
	font-size: 100%;
	margin-top: 30px;
}
div#mainContent h3 {
	word-spacing: 0.15em;
	letter-spacing: 0.12em;
	color: #993300;
	border-top: 1px dotted #CCCCCC;
	font-size: 90%;
	text-transform: capitalize;
	margin-top: 20px;
}
div#mainContent p {
	font-size: 90%;
}
div#mainContent ul {
	margin: 0 7px 0 35px;
	padding: 0 0 30px 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 85%;
}
div#mainContent li {
	list-style-type: none;
	list-style-image: url(../images/bullet.gif);
	padding: 0 0 5px 0;
	margin: 0;
}



/*MAIN CONTENT LINKS*/

div#mainContent a:link {
	color:#B3800D;
	text-decoration: none;
}
div#mainContent a:visited {
	text-decoration: none;
	color: #ac9144;
}
div#mainContent a:hover {
	text-decoration: underline;
}
div#mainContent a:active {
	text-decoration: none;
}



/*BACK TO TOP*/

div#backtotop {
	background-image: url(../images/backtotop.gif);
	display: block;
	height: 9px;
	width: 9px;
	margin-left: 25px;	
}


/*BANNERS ETC.*/
div#banner {
	position: absolute;
	background-image: url(../events/caught.gif);
	display: block;
	width: 264px;
	height: 222px;
	left: 107px;
	top: 225px;
}


/*FOOTER*/
 
div#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#F6F6F6;
	border-top: 1px dotted #666666;
} 
div#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: 70%;
}


/*IMAGES*/

div.imgflt_left  {
	float: left;
	margin: 0px 10px 0px 0px;
}
.imgflt_left img {
	
	padding: 0px 5px 5px 0px;
}



/*FLOATS*/

.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;
}
