@charset "UTF-8";
body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	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(assets/images/background.jpg);
}


/* Formatting for the Layout */

.twoColFixRtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto 25px auto;
	text-align: left;
} 
.twoColFixRtHdr #header { 
	background: #DDDDDD;
	background-image: url(assets/images/masthead.jpg);
	padding: 0 0 0 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. */
} 

.twoColFixRtHdr #navbar {
	background: #DDDDDD;
	padding: 0 0 0 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. */
	background-image: url(assets/images/navbar_logo.jpg);
	height: 33px;
} 

.twoColFixRtHdr #navbar p {  /* this one formats anything written on the navigation bar (links). */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	color:#FFFFFF;
	text-align:right;
	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 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.twoColFixRtHdr #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 */
	height: 130px;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	width: 225px;
	padding: 15px 7px;
	border-left: 1px dotted #888;
}

.twoColFixRtHdr #mainContent {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 400px
} 
.twoColFixRtHdr #footer { /* this one formats anything written on the footer. */
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background-image:url(assets/images/footer_orangesquare.jpg);
	height: 36px;
	border-top: 1px dotted#888888;
} 
.twoColFixRtHdr #footer p { 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#FFFFFF;
	text-align:center;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#secondary_nav {
	border-bottom: 1px dotted #888888;
	padding-bottom: 5px;
	margin-bottom: 10px;
	}
	
/*FOrmatting for picture frames */

#aboutpic {
	width: 500px;
	height: 185px;
	background-repeat:no-repeat
	}
	
#coachpic {
	width: 175px;
	height: 200px;
	background-repeat:no-repeat;
	float: left;
	margin-right: 10px;
	}

#assistpic {
	width: 175px;
	height: 200px;
	background-repeat:no-repeat;
	float: left;
	margin-right: 10px;
	}

#officerspic {
	width: 500px;
	height: 185px;
	background-repeat:no-repeat;
	}
	
#historypic {
	width: 500px;
	height:185px;
	background-repeat:no-repeat;
	}	

#prospectpic {
	width: 500px;
	height: 185px;
	background-repeat:no-repeat;
	}	
	
#donatepic {
	width: 500px;
	height: 185px;
	background-repeat:no-repeat;
	}
	
#historypic4 {
	width: 256px;
	height:185px;
	background-repeat:no-repeat;
	}			

/* Formatting for the Twitter announcements. */

#twitter_update_list
{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color:#FFFFFF;
list-style:none;
text-align:left;
list-style-position:inside;
margin: 0px;
}


/* Don't mess with these. */

.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-top: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	width: 500px;
	position: relative;
	height: 275px;
	margin: 0px 0 20px 0;
}
.b { /* 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;
}


/* Formatting for Links with a White font color */

a.white:link {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration:none;
	color:#FFFFFF;
	}

a.white:visited {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration:none;
	color:#E8E8E8;
	}

a.white:hover {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration:underline;
	color:#FFFFFF;
	}

/* Formatting for Links with an Orange font color (NOTE: THIS IS THE DEFAULT FOR ALL THE WEBSITE'S LINKS */

a:link {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration:none;
	font-size:10px;
	color:#FF6600;
	}

a:visited {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration:none;
	font-size:10px;
	color:#FF6600;
	}

a:hover {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration:underline;
	font-size:10px;
	color:#D05101;
	}

/* Formatting for the Site's default font ans well as the Main headers (h1) and secondary headers (h2) */

td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	color: #000000;
}

a {
	font-size: 10px;
}

h1 {
	font-size: 14px;
	color: #FF6600;
}

h2 {
	font-size: 12px;
	color: #666666;
}


p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	color: #000000;
	text-align:justify;
	}

.score_font {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#FFFFFF;
	}

.location_font {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #ff6600;
	font-size: 10px;
}


/* Formatting for all tables in the website */

table.style {
	width: 100%;
	padding: 10px 10px;
	border:0;
	margin:0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	background-color:#FFFFFF;
	text-align:center;
	color: #FFF;
	}

.orange {
	background-color:#FF6600;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	color:#FFFFFF;
	padding: 2px 5px
	}

td.odd {
	background-color:#FFFFFF;
	padding: 5px 5px;
	}

td.even {
	background-color:#CCCCCC;
	padding: 5px 5px;
	}
	
.tabletop{
	background-color:#ff6600;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	text-align:left;
	color:#FFFFFF;
	}

/* Formatting for the Contact Forms */

.label {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	background-color:#CCCCCC;
	float:left;
	width:15em;
	text-align: right;
	clear:left;
	margin-right:10px;
	}

input#send {
	margin-left: 200px;
	}
	
input#comments, input#experience {
	width: 300px;
	margin-top: -2px;
	}
	
