/* bcg.css copyright 2007 
   this file enables positioning and styling of the
   html content in the pages that use it */
   
/* general page style */
BODY { 
	padding:0;
	margin:0;
	font: small Trebuchet, Verdana, Arial, sans-serif;
	color: black;
	text-align: center; /* needed to center the wrapper div in IE */
}

/* the wrapping div that everything sits in */
#wrapper {
	color: white;
	position: relative;
	top: 20px;
	width:740px;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	margin:0px auto;
	background-color: #ffffff;
	text-align:left; /* wrapper is centered - need this to left justify */
}

/* the top bit of each page */
#masthead{
	height: 115px;
	background-color: #224455;
	background: url(../images/sunset.jpg);
	border: 1px solid black;
}
/* float the logo left in the masthead */
#logo{
	float: left;
}
/* float the options right and style them a bit */
#options{
	float: left;
	height: 150%;
	text-align:left;
	font-size: 100%;
	padding: 0 ;	
	text-transform: uppercase;
}
#options li
{
	list-style-type: none;
	padding-right: 30px;
	padding-bottom: 5px;
}

/* the main content of the page 
   including background image */
#main{	
	line-height: 1.2;
	background-color: #224455;
	padding: 10px;
	padding-top: 0px;
	color: white;
	margin: 0px
}
#main h2 {
	text-transform: uppercase;
	font-size: 110%;
	padding: 0 0;
	margin:0 auto;
}



/* this is put after a floated element to put following
   elements down the pages - otherwise they overlap */
.separator{
	clear:both;
	height: 0;
}


