@charset "utf-8";

/* Two Column, One Header: This style sheet is primarily for a 2-column format with a header and footer that spans the width of an 800 pixel wide page */
body  {
	background: #000000;
	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; /* default color, font-family, font-size for document */
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
}

	a:link {color:#000;}
	a:visited {color:#333333;}
	a:hover {color:#990000;}
	a:active {color:#990000;}
	
.twoColOneHdr #container { /* base container */
	width: 800px;  /* this will create a container 800 px wide */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element; content will be left-justified */
	} 

.twoColOneHdr #header { 
	background: #000000; 
	padding: 5px 0;  /* set up for a graphic with 5px padding at the top and none on the sides */
} 

/* did not use this */
.twoColOneHdr #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 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}  
.twoColOneHdr #buttonbar {
	background: #663300;
	height: 70px;
	width: 800px;
	border: 1px;
	border-color: #000;
	padding: 0;
	}
/* This isn't working...
#buttonbar button1 {
	left: auto;
	}
#buttonbar a:link {
	display: block;
	width: 200px;
	height: 35px;
	background-image: url(images/button-home-off.gif);
	background-repeat: no-repeat;
	background-position: left;
}
#buttonbar a:hover {
	display: block;
	width: 200px;
	height: 35px;
	background-image: url(images/button-home-on.gif);
	background-repeat: no-repeat;
	background-position: left;
}
#buttonbar a:active {
	display: block;
	width: 200px;
	height: 35px;
	background-image: url(images/button-home-on.gif);
	background-repeat: no-repeat;
	background-position: left;
}
#buttonbar a:visited {
	display: block;
	width: 200px;
	height: 35px;
	background-image: url(images/button-home-off.gif);
	background-repeat: no-repeat;
	background-position: left;
}
#buttonbar button2 {
}
#buttonbar button3 {
}
#buttonbar button4 {
}
*/
.twoColOneHdr #mainContent {
	/* margin: 0;
	padding-left: 10px; */
	/*width: 760px; */
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 10px;
	/* display: inline-block; this didn't make any diff. w/ IE */
} 
.twoColOneHdr #mainContent h2 { /* H2 */
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: bold;
}
.twoColOneHdr #sidebar {
	float: right;
	width: 380px; 
	background: #fff; 
	height: auto; /* height of sidebar equals the sidebar content; then, mainContent flows around it */
	padding: 10px;
	margin-left: 10px;
	/*position: relative; */
	text-align: center; /* everything in the sidebar is centered */
	border-left: 1px solid #000;
}
.twoColOneHdr #sidebar h3, .twoColOneHdr #sidebar p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.notice {
	color: #990000;
	font-size: 24px;
	font-weight: bold;
	}
.phone {
	color: #000000;
	font-size: 20px;
	font-weight: normal;
	}
.twoColOneHdr #footer { 
	clear: both;
	/*padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 1em;
	border: 1px solid #000;
	background:#663300;
	text-align: center;
	color: #fff;
	font-size: 14px;	
} 
.twoColOneHdr #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 */
}
#footer a:link {color:#fff;}
#footer a:visited {color:#fff;}
#footer a:hover {color:#ffffcc;}
#footer a:active {color:#ffffcc;}
	
/* Miscellaneous classes for reuse */

.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;
}
