@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;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
	background-color: #FFF;
}
#container  {
	width: 780px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: center; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	background-image: url(../images/sidebar_background.gif);
	background-repeat: 1;
	margin: auto;
} 
#header  {
	background-color: #FFF;
	width: 780px;
	height: 110px;
	text-align: left;
} 
#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 */
}
h1 {
	color: #739074;
	font-size: 1.5em;
}
h3 {
	color: #FFF;
	font-size: .85em;
}
h4 {
	color: #739074;
	font-size: 1.5em;
	font-variant: small-caps;
}
h5 {
	color: #739074;
	font-size: 1.25em;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 93px; /* padding keeps the content of the div away from the edges */
	background-color: #1D321E;
	height: auto;
}
#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 93px; /* padding keeps the content of the div away from the edges */
	background-color: #29412A;
	height: auto;
}
#mainContent  {
	margin-left: 93px;
	margin-right: 93px;
} 
#navbar {
	background-color: #888;
	height: 30px;
	width: 594px;
}
#leftcontent {
	width: 400px;
}
#contentleft {
	float: left;
	height: auto;
	width: 400px;
}
#contentright {
	height: 1000px;
	width: 194px;
	float: right;
	background-color: #888;
	text-align: left;
	color: #FFF;
}
#toprightgraphic {
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #2B3328;
	height: 25px;
	width: 194px;
	color: #FFF;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 0.1em;
	font-size: 0.95em;
	padding-top: 20px;
}
#maincontentleft {
	height: auto;
	width: 380px;
	text-align: left;
	margin: 10px;
}
#maincontentright {
	height: auto;
	width: 180px;
	padding-left: 10px;
}
#insidecontent {
	height: auto;
	width: 529px;
	text-align: left;
	margin-top: 15px;
	margin-left: 110px;
}
#insidenav {
	height: auto;
	width: 120px;
	float: left;
	padding-top: 40px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-align: left;
}
#insidenavtext {
	height: auto;
	width: 430px;
	float: right;
	text-align: left;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#footer  {
	background-color: #1A301C;
	clear: both;
} 
#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 */
	color: #FFF;
}
.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:0px;
	font-size: 1px;
	line-height: normal;
}
#header img {
	padding-top: 10px;
	padding-left: 75px;
}

