@charset "utf-8";
body  {
	background: #1b1a52;
	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: 100%;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	color: #FFFFFF;
}
h1, h2, h3, h4 {
	color: #FF9F00;
	font-weight: normal;
}
h1 {
	font-size: 225%;
}
h2 {
	font-size: 175%;
}
h3 {
	font-size: 150%;
}
h4 {
	font-size: 135%;
}

 #container {
	width: 100%;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 80%;
} 
 #header {
	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. */
	background-color: #FFFFFF;
	background-image: url(images/logo_background.gif);
	background-repeat: no-repeat;
	background-position: right top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9290BF;
} 
#header ul {
	margin: 0px;
	list-style-type: none;
	background-color: #FFAD00;
	background-image: url(images/nav_bar_back.jpg);
	background-repeat: repeat-x;
	float: left;
	width: 100%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #575691;
}





#header li {
	float: left;
	font-size: 110%;
}


#header li#living {
	padding-left: 28px;
}

#header li a {
	display: block;
	float: left;
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 12px;
	padding-left: 12px;
	padding-top: 8px;
	padding-bottom: 8px;
}

#header li a:hover, #header li a:active, #header li a:focus {
	color: #1B1A52;
}



#header img {
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 31px;
	margin-left: 40px;
}


/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the " #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
 #sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 23%; /* top and bottom padding create visual space within this div  */
	background-image: url(images/side1_back.jpg);
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
	background-repeat: no-repeat;
	background-position: right top;
	min-height: 200px;
}
 #sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 23%; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	min-height: 145px;
	background-image: url(images/side2_back.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}
#mainWrap {
	background-color: #403E8A;
	background-image: url(images/main_back.jpg);
	background-repeat: repeat-x;
	padding-bottom: 20px;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #36357D;
}
#sidebar2  p,  #sidebar2  h3       {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 30px;
}
#sidebar1  ul   {
	font-size: 105%;
	padding: 0px;
	list-style-type: none;
	margin-top: 15px;
	margin-right: 35px;
	margin-bottom: 0px;
	margin-left: 0px;

}
#sidebar1 li a {
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 40px;
}
#sidebar1 li a:hover, #sidebar1 li a:active, #sidebar1 li a:focus {
	color: #FF9F00;	
}

.visiting #visiting a, .moving #moving a, .maplocator #maplocator a, .directory #directory a {
	background: url(images/arrow.gif) no-repeat left center;
	color: #FF9F00;
}





/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
 #mainContent {
	margin-top: 0;
	margin-right: 24%;
	margin-bottom: 0;
	margin-left: 23.5%;
	padding-top: 10px;
	background-image: url(images/content_back.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding-right: 100px;
}

#mainContent ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#mainContent li {
	background: url(images/arrow.gif) no-repeat left center;
	padding-left: 15px;
}
 #footer {
	padding: 0 30px 0 40px;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #2D2D70;
} 
 #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #5C5A99;
	width: 59%;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#footer ul {
	margin: 0px;
	padding: 0px;
	float: right;
	width: 39%;
	list-style-type: none;
}
#footer li {
	float: right;
}
#footer li a:hover, #footer li a:active, footer li a:focus {
	color: #FF9F00;
}

#footer li a {
	display: block;
	padding: 10px;
	color: #5c5A99;
	text-decoration: none;
}

.living #living a, .business #business a, .chamber #chamber a {
	color: #1B1A52;
	font-weight: bold;
}



a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	color: #666666;
}


/* 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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
