@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: #3E3E24;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #5A5A36;
	font-size: 11px;
	line-height: 16px;
}
p {
	font-size: 11px;
	line-height: 19px;
	margin: 0px 0px 15px;
	padding: 0px;
}


#container  {
	width: 800px;
	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. */
	background-color: #F4F2E6;
	background-repeat: repeat;
	background-position: right top;
} 


#wrapper   {
	position: relative;
	margin: 0px;
	padding: 0px;
	border-top: 5px solid #333;
	background-repeat: repeat-y;
	background-image: url(images/bg_content.jpg);
}
#inside {
	background-image: url(images/bg_content_inside.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}


#wrapper ul{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #5A5A36;
	list-style-type: square;
}
#wrapper  li{
	padding-bottom: 5px;
}

#header  {
	background-color: #DDDDDD;
	background-image: url(images/masthead_bg.gif);
	background-repeat: repeat;
} 
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 292px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	position: absolute;
	top: 0px;
	right: 0px;
	margin-right: 10px;
}
#sidebar-inside {
	float: right; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	position: absolute;
	top: 0px;
	right: 0px;
	margin-right: 15px;
	text-align: right;
	color: #454529;
}
#mainContent  {
	width: 425px;
	padding: 0px 10px 10px;
	margin: 160px 0px 0px 10px;
} 
#mainContent #flash   {
	width: 431px;
	position: absolute;
	left: 0px;
	top: 0px;
	margin: 0px;
	padding: 0px;
	height: 145px;
}

#mainContentInside  {
	width: 530px;
	padding: 0px 10px 10px;
	margin: 0px 0px 0px 10px;
} 
#sidebar1 ul , #sidebar2 ul{
	list-style-image: none;
	list-style-type: none;
	margin: 0px 0px 0px 17%;
	padding: 5px 0px 0px;
	width: 80%;
}
#sidebar1 ul li , #sidebar2 ul li{
	padding: 10px;
	background-color: #E1E1D9;
	border-bottom: 10px solid #F4F2E6;
}
#sidebar2  {
	position: absolute;
	width: 200px;
	right: 9px;
	top: 0px;
	margin: 0px;
	padding: 0px;
}

#wrapper a{
	color: #D26900;
	text-decoration: none;
	border-bottom: 1px dotted #F90;
	font-weight: bold;
}
h1 {
	font-size: 21px;
	color: #5A5A36;
	margin-top: 25px;
	margin-bottom: 25px;

}
#hours table td {
	color: #F4F2E6;
	font-size: 11px;
	background-color: #828F78;
	font-weight: bold;
}

h2  {
	margin: 0px 0px 8px;
	padding: 8px 0px 0px;
	color: #5A5A36;
	font-size: 15px;
	line-height: 20px;
}
.section {
	padding-top: 25px;
	width: 75%;
	border-top: 2px solid #BCB89E;
}

#footer  {
	background-color: #CFCFAE;
} 
#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: 25px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
/*------- ROUND BOX CSS ------------------*/

.roundBox{
	background-image: url(images/bg_content_bottom.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	width: 408px;
	padding: 0px 0px 10px;
	margin: 0px 0px 25px;
}
.roundBox h1 {
	background-image: url(images/bg_content_top.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px 0px 10px;
	padding: 20px 15px 0px 20px;
	font-size: 18px;
}
.roundBox h3 {
	background-image: url(images/bg_content_top.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px 0px 10px;
	padding: 15px 15px 0px 20px;
}
.roundBox p{
	line-height: 1.4em;
	margin: 0px 0px 25px;
	padding: 0px 10px 0px 20px;
}
.roundBox ul{
	background-image: url(images/bg_content_top.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0px;
	padding-top: 25px;

}
.roundBox li{

}





/*------- END ROUND BOX CSS ------------------*/



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