@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFCB2;
	margin: 20; /* 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: #981F23;
	}

#container  {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFCB2;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
	padding: 5px;
	}

#navBottom {
	padding: 0px;
	top: 100px;
	}

h1 {
	font-family: Tahoma, Geneva, sans-serif;
	color: #981F23;
	}
	
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 185px; /* 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: #FFFCB2 url(../images/navbacktile.gif); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 0px 0px;
	text-align: center;
	}

#mainContent  {
	float: left;
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 799px;
	} 

#content {
	float: left;
	margin: 10px 0 0 0;
	width: 795px;
	}

#contentRight2 {
	float: right;
	width: 270px;
	margin: 0 10px 0 0px;
	top: 0px;
	}

#paperRtSide {
	margin: 0px;
	padding: 0px;
	float: right;
	width: 20px;
	top: 20px;
	}

.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;
	}

#header {
	float: left;
	margin: 20px;
	}

#header2{
	float: left;
	margin: 0 100px;
	}

#headShout1{
	float: left;
	margin: 0 0 0 00px;
	}

#headerShout2{
	float: right;
	width: 300px;
	text-align: center;
	}

#contentCenter {
	float: left;
	width: 500px;
	}

#paperTop {
	background-image: url(../images/paperTop.gif);
	width: 500px;
	height: 20px;
	}

#paperBottom {
	background-image: url(../images/paperBot.gif);
	width: 500px;
	height: 20px;
	}

#paperContent {
	background: #FFFDCE;
	width: 500px;
	float: left;
	background-image: url(../images/paperMid.gif);
	}

#phone1 {
	width: 150px;
	float: left;
	font-size: 1.2em;
	}

#phone2 {
	width: 150px;
	float: right;
	font-size: 1.2em;
	}

#paperText {
	margin: -10px 30px 0px 20px;
	padding: 0px;
	}
	
#bottomNav {
	width: 850px;
	margin: 0 auto;
	height: 150px;
	}

#bottomNav2 {
	width: 650px;
	margin: 0 auto;
	}

.bottomNavLink {
	padding: 0px 8px;
	width: auto;
	float: left;
	}

#footer {
	margin: 0 auto;
	padding: 30px 0 0 0;
	width: 1000px;
	text-align: left;
	}

.privacy{
	font-size: .7em;
	}

.bigYellowText{
	color: #FFD000;
	font-size: 16px;
	}

.alignCenter{
	text-align: center;
	}
