body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px auto;
	background-color:#FFFFFF;
}

p {
font-size: 14px;
line-height: 15px;
text-align: left;
}

h1 {
	font-size: 24px;
	font-weight: bold;
	color: #FF2811;
}

h2 {
	font-size: 16px;
	color:#5775BE;
}

h3 {
	font-size: 14px;
	color: #000000;
	font-weight:bold;
}


h4 {
font-size: 12px;
}

.quote {
	width:175px;
	font-size:12px;
	color:#FFFFFF;
	text-align:center;
}

.address {
	font-size:16px;
	line-height:18px;
	font-weight:400;
}

/***** Containers ******/

#container {
	width: 697px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: white;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #FFBE00;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	background: #DDDDDD;
	padding: 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. */
} 

#sidebar1 {
	float: left;
	width: 150px; /* since this element is floated, a width must be given */
	min-height: 300px;
	background: #FFBE00; /* the background color will be displayed for the length of the content in the column, but no further */
	padding:0px;
	margin-right:10px;
}

#sidebar2 {
	float: right;
	width: 200px; /* since this element is floated, a width must be given */
	/*background: #97A5C3; * */
	background-color:#3f83c4;
	padding: 0; /* top and bottom padding create visual space within this div */
	position:relative;
	top:-45px;
	margin-left:10px;
	height: 500px;
}
	
#sidebar2 p, h3 {
padding:5px;
line-height:14px;
}

#mainContent {
padding:5px;
}

#mainContent li {
font-size: 14px;
margin-left:20px} 

#footer {
	padding: 0 10px;
} 

#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 */
	text-align:center;
	font-size:10px
}
/**** Menu CSS ****/

#navlist
{
padding-left: 0;
margin-left: 0;
border-bottom: 1px solid gray;
width: 150px;}

#navlist li
{
	font-size:14px;
	list-style: none;
	margin: 0;
	padding: 0.25em;
	font-weight: bold;
	text-align: center;}

#navlist .on{
	background-color:#9C7400;
	color:white;
}

#navlist li a { color:#000000;
text-decoration: none; }


/* Miscellaneous classes for reuse */
.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;
}
