@charset "UTF-8";
*{
padding: 0;
margin: 0;
}
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #e3e9eb;
	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;
}
#container { 
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: none;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #ffffff; 
	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. */
} 
#photos {
}
#gallery {
float: right;
}
#hours {
background-repeat: no-repeat;
text-align: right;
font-size: 70%;
color: 10313f;
padding: 10px 20px 10px 10px;
height: 30px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* 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: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	font-size: 75%;
	text-align: right;
	letter-spacing: .2em;
}
#sidebar1 ul {
	list-style: none;
	line-height: 2.5em;
	padding: 0;
	margin: 0;
	}
#sidebar1 a{
	color: #000;
	display: block;
	text-decoration: none;
	}
#sidebar1 a:hover{
	text-decoration: none;
	color: #fff;
	}
#sidebar1 ul ul {
position: absolute;
top: 0;
left: 0;
}
#sidebar1 li {
	position: relative;
	}
#sidebar1 ul ul {
position: absolute;
top: 0;
left: 100%;
width: 100%;
background-color: #e3e9eb;
}
div#sidebar1 ul ul,
div#sidebar1 ul li:hover ul ul {
display: none;
}
div#sidebar1 ul li:hover ul,
div#sidebar1 ul ul li:hover ul {
display: block;
text-align: left;
padding: 10px 0 10px 20px;
}

#mainContent { 
	background-image: url(images/water_fade_bkgd.jpg);
	background-repeat: no-repeat;
	padding: 0 0 25px 0; /* 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. */
} 
#mainContent p{
	color: #224b5c;
	font: 80% Georgia, "Times New Roman", Times, serif;
	line-height: 1.8em;
	padding-bottom: 10px;
}
#mainContent h1{
	margin-top: .5em;
}
#mainContent a{
	text-decoration: none;
	font-weight: bold;
	color: #57777c;
}
#mainContent a:hover{
	color: #8ca5a9;
}

.clear{
	clear: both;
	}
#mainContent p a{
	text-decoration: underline;
		color: #224b5c;
	}
#mainContent p a:hover {
color: #fff;
}
#mainContent h1{
	font: Arial, Helvetica, sans-serif;
	font-size: 95%;
	letter-spacing: .2em;
	color: #000;
	font-weight: normal;
	padding-bottom: 10px;
	line-height: 1.5em;
}	
#mainContent h2{
	font-size: 90%;
	color: #224b5c;
	padding-bottom: 10px;
	}
	#mainContent h2 a{
	color: #224b5c;
	font-weight: normal;
	font: 100% Georgia, "Times New Roman", Times, serif;
	}
	#mainContent h2 a:hover{
	color: #000;
	}
#mainContent h1, h2, p{
	padding-left: 200px;
	padding-right: 20px;

	}
	#mainContent img{
	float: left;
	margin: 0 20px 20px 0;
	border: none;

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










/*Blog*/
.published-on{
	margin-top: 20px;
	font-size: 0.75em;
	color: #999;
	text-align: left;
	padding-left: 200px;
}
.the-date{
	color: #000;
}
#blog-main h1 a{
	color: #000;
}
#blog-main hr:first-child{
	border: none;
	margin: 0;
}
#blog-main hr{
	margin: 30px 0;
	border: 1px dashed #666;
}
