@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}
a:link {
	color: #728F26;
	text-decoration: underline;
}
a:visited {
	color: #D87919;
	text-decoration: none;
}
a:hover {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #728F26;
}
h1 {
	color: #728F26;
}
h2 {
	color: #D87919;
}
h3 {
	color: #728F26;
}
h4 {
	color: #D87919;
}
h5 {
	color: #728F26;
}
#container  {
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 950px;
} 
#content {
	font-size: 0.85em;
	margin-right: 5px;
}
#content2 {
	font-size: 0.85em;
	margin: 0px 10px 0px 10px;
}
#sidebar/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. 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 ".twoColHybLtHdr #sidebar1 p" rule.
*/
  {
	float: left;
	width: 230px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* top and bottom padding create visual space within this div  */
	font-size: .8em;
	line-height: 1.4em;
}
#sidebar  h5, #sidebar h4, #sidebar p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#sidebar h5, #sidebar h4 {
	font-size: 1em;
}
#mainContent {
	margin: 0 0 0 230px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	min-width: 500px;
}
#mainContent2 {
	min-width: 500px;
	margin: 0px;
}
#hours {
	background-color: #d87919;
	background-image: url(../images/sunHead.jpg);
	background-repeat: no-repeat;
	background-position: center;
	height: 63px;
	color: #FFFFFF;
	font-size: 16 px;
	font-weight: bold;
	text-align: right;
	vertical-align: middle;
	padding-right: 20px;
	padding-top: 5px;
}
#navigation {
	border-top-width: 6px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-bottom-width: 6px;
	border-top-color: #000000;
	border-bottom-color: #000000;
	height: 24px;
	padding-top: 4px;
	padding-left: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
}
#quote {
	display: block;
	text-aligh: justify;
	width: 380px;
	position: relative;
	font-size: .85em;
	background-image: url(../images/dq1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#quote div {
	background-image: url(../images/dq2.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#quote  div p {
	padding: 5px 0px 0px 8px;
}
#quote  div p .cite {
	color: #666666;
}
#footer  {
	padding: 0 10px;
	background-color: #728F26;
	background-image: url(../images/footer.jpg);
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0.7em;
	height: 100px;
}
#footer a:link {
	color: #E7D61F;
	text-decoration: underline;
}
#footer  a:visited {
	color: #A2BB5F;
}
#footer a:hover {
	background-color: #E7D61F;
	color: #333333;
	text-decoration: none;
}
.design {
	float: left;
	padding: 20px 0 0 0;
	width: 20%;
	min-width: 200px;
}
.middle {
	float: left;
	padding: 20px 0 0 0;
	width: 30%;
	min-width: 250px;
}
.right {
	float: right;
	padding: 20px 10px 0 10px;
	min-width: 250px;
	text-align: left;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

/* 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;
}
.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;
}
.dots {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #D97B1B;
}
.bold {
	font-weight: bold;
}
