@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: #FFFFFF;
	background-color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(../images/_pagebg.gif);
	background-repeat: repeat-y;
	background-position: 0px 0px;
}
.seahaven #container {
	position: relative;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	padding: 0px;
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.seahaven #header {
	height: 87px;
	background-image: url(../images/nav_ver02_03.gif);
	background-repeat: repeat-x;
} 
.seahaven #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.seahaven #sidebar1 {
	position: absolute;
	top: 87px;
	left: 0;
	width: 146px;
}
.seahaven #sidebar2 {
	position: absolute;
	top: 4px;
	right: 0;
	width: 200px; /* padding keeps the content of the div away from the edges */
	background-image: url(../images/_bg_shellgrit.jpg);
	background-repeat: repeat;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
}
.seahaven #mainContent {
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 146px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
}
.seahaven #mainContent h1 {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 28px;
	font-weight: bold;
	color: #FF9900;
}
.seahaven #mainContent h2 {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: normal;
	color: #FF9900;
	margin-top: 3px;
}
.seahaven #mainContent h3 {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #FF9900;
	margin-top: 3px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #FF9900;
	text-decoration: underline;
}
.seahaven #mainContent h4 {
	color: #FF9900;
	font-weight: bolder;
	font-size: 16px;
	font-family: "Comic Sans MS";
}
.seahaven #mainContent p {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	padding-left: 10px;
	padding-right: 40px;
	font-size: 15px;
	font-weight: normal;
}
.seahaven #mainContent ul {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	line-height: 24px;
	font-size: 15px;
	font-weight: normal;
}
.seahaven #mainContent table {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	line-height: 24px;
	font-size: 14px;
	font-weight: normal;
	border: 1px solid #FFFFFF;
	width: 100%;
}
.seahaven #mainContent td {
	padding-left: 10px;
	border: 1px solid #FFFFFF;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-top: 3px;
}
.seahaven #mainContent a:link, #mainContent a:visited {color:#ffffff; background-color:transparent;}
.seahaven #mainContent a:hover, #mainContent a:focus, #mainContent a:active {
	color:#FF6600;
	background-color:transparent;
}
.seahaven #accomBox {
	border: 1px solid #FF9900;
	padding-left: 10px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	margin-right: 10px;
}
.seahaven #accomBox h3 {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #FF9900;
	margin-top: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FF9900;
	display: block;
	width: 300px;
	padding-bottom: 5px;
	text-decoration: none;
}
.seahaven #accomBox p {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	line-height: 24px;
	font-size: 15px;
	font-weight: normal;
}
.seahaven #accomBox ul {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	line-height: 22px;
	font-size: 15px;
	font-weight: normal;
	list-style-position: outside;
	list-style-type: disc;
	margin-right: 2em;
	margin-bottom: 40px;
	padding-bottom: 30px;
}
.seahaven #cottageRight {
	float: right;
	margin-left: 10px;
	text-align: center;
	width: 249px;
	padding-top: 10px;
	padding-right: 10px;
	display: block;
}
.seahaven #bookNow {
	height: auto;
	padding-top: 5px;
	vertical-align: middle;
	float: left;
}
.seahaven #bookNow a:link, #bookNow a:visited {
	color:#FF7D10;
	background-color:transparent;
	font-weight: bold;
	text-decoration: none;
}
.seahaven #bookNow a:hover, #bookNow a:focus, #bookNow a:active {
	color:#FFFFFF;
	background-color:transparent;
	font-weight: bold;
}
.seahaven #bookNow img {
	vertical-align: middle;
	padding-left: 5px;
	margin: 0px;
}
.seahaven #bookTarriff {
	height: auto;
	padding-top: 5px;
	vertical-align: middle;
	float: left;
}
.seahaven #bookTarriff a:link, #bookTarriff a:visited {
	color:#FFFFFF;
	background-color:transparent;
	font-weight: bold;
	text-decoration: none;
}
.seahaven #bookTarriff a:hover, #bookTarriff a:focus, #bookTarriff a:active {
	color:#666666;
	background-color:transparent;
	font-weight: bold;
}
.seahaven #bookTarriff img {
	vertical-align: middle;
	padding-left: 5px;
	margin: 0px;
}
.seahaven #bookContact {
	padding-top: 5px;
	vertical-align: middle;
	padding-left: 20px;
	padding-right: 20px;
}
.seahaven #bookContact a:link, #bookContact a:visited {
	color:#FF7D10;
	background-color:transparent;
	font-weight: bold;
	text-decoration: none;
}
.seahaven #bookContact a:hover, #bookContact a:focus, #bookContact a:active {
	color:#FFFFFF;
	background-color:transparent;
	font-weight: bold;
}
.seahaven #bookContact img {
	vertical-align: middle;
	padding-left: 5px;
	margin: 0px;
}
.seahaven #intro {
	border: 1px solid #FF9900;
	padding-left: 10px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	padding-right: 60px;
	margin-right: 10px;
}
.seahaven #intro ul {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	line-height: 24px;
	font-size: 15px;
	font-weight: normal;
}
.seahaven #contact {
}
.seahaven #contact table {
	border: 3px none #FF9900;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.seahaven #contact td {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.seahaven #contactAddress {
	border: 1px solid #FF9900;
	margin-bottom: 20px;
	padding-bottom: 30px;
	background-color: #CCCCCC;
	color: #000000;
	padding-top: 30px;
}
.seahaven #contactAddress table {
	border: 1px solid #FF9900;
	background-color: #FFFFFF;
	width: auto;
}
.seahaven #contactAddress td {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 8px;
	padding-bottom: 8px;
}
.seahaven #contactAddress a:link, #contactAddress a:visited {color:#000000; background-color:transparent;}
.seahaven #contactAddress a:hover, #contactAddress a:focus, #contactAddress a:active {
	color:#FF6600;
	background-color:transparent;
}
.seahaven #contactForm {
	background-color: #6898FF;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 35px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
}
.seahaven #contactForm h1 {
	background-image: url(../beaches/images/beach_map_nav2.gif);
	background-repeat: repeat-y;
	width: 100%;
}
.seahaven #contactForm h2 {
	background-image: url(../beaches/images/beach_map_nav2.gif);
	background-repeat: repeat-x;
	width: 100%;
	display: block;
	margin: 0px;
	height: 34px;
	color: #FFFFFF;
	font-size: 22px;
	padding: 0px;
}.seahaven #contactForm table {
	width: auto;
	margin-right: auto;
	margin-left: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #6898FF;
}
.seahaven #packages {
	border: 1px solid #FF9900;
	margin-bottom: 20px;
	padding-bottom: 10px;
	padding-right: 60px;
	margin-right: 10px;
	background-color: #CCCCCC;
	color: #000000;
	padding-left: 10px;
}
.seahaven #packages h1 {
	font-size: 20px;
	font-weight: bold;
	color: #333333;
}
.seahaven #packages h2 {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.seahaven #packages h3 {
	font-size: 16px;
	font-weight: bold;
	color: #333333;
}
.seahaven #packages p {
	font-size: 16px;
	font-weight: normal;
	color: #333333;
	padding-left: 45px;
}
.seahaven #packages ul {
	font-size: .9em;
	font-family: Arial, Helvetica, sans-serif;
	border: 1px solid #666666;
	background-color: #FFFFFF;
	list-style-position: outside;
	list-style-type: disc;
	padding-top: 12px;
	padding-left: 24px;
	margin-left: 45px;
	padding-right: 20px;
	padding-bottom: 24px;
	margin-top: 40px;
}
.seahaven #galleryIndex {
	margin-right: 20px;
}
.seahaven #galleryIndex table {
	margin-right: auto;
	margin-left: auto;
	width: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.seahaven #galleryIndex td {
	text-align: center;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 15px;
}
.seahaven #gallery {
	background-color: #CCCCCC;
	border: 2px solid #FF9900;
	padding-top: 20px;
	padding-bottom: 30px;
	text-align: center;
	color: #000000;
}
.seahaven #gallery table {
	text-align: center;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: auto;
	margin-right: auto;
	margin-left: auto;
}
.seahaven #gallery td {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.seahaven #gallery p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
}
.seahaven #gallery a:link, #gallery a:visited {
	background-color:transparent;
	font-family: Arial, Helvetica, sans-serif;
	color: #FF7D10;
	font-weight: bold;
	text-decoration: none;
}
.seahaven #gallery a:hover, #gallery a:focus, #gallery a:active {
	color:#666666;
	background-color:transparent;
}
.seahaven #gallery img {
	border: 3px solid #999999;
}
.seahaven #linksBox {
	margin-left: 20px;
	margin-right: 40px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-bottom: 15px;
}
.seahaven #linksBox h1 {
	font-size: 20px;
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FF9900;
}
.seahaven #linksBox h2{
}
.seahaven #linksBox p {
	font-size: .9em;
	line-height: 18px;
	padding: 0px;
	margin-top: 8px;
	margin-right: 80px;
	margin-bottom: 0px;
	margin-left: 10px;
}
.seahaven #beachesNav {
	text-align: center;
	background-image: url(../beaches/images/beach_map_nav2.gif);
	background-repeat: repeat-x;
	font-size: 10px;
	line-height: 34px;
	background-color: #CC9900;
	top: 0px;
}
.seahaven #beachesNav p {
	text-align: center;
	font-size: 10px;
	line-height: 34px;
	margin: 0px;
	padding: 0px;
}
.seahaven #beaches {
	background-image: url(../beaches/images/beaches_map.gif);
	background-repeat: no-repeat;
	background-color: #6699FF;
	background-position: 0px 34px;
}
.seahaven #beaches p {
	padding-left: 34px;
}
.seahaven #beaches h1 {
	padding-left: 34px;
	font-size: 1.4em;
	color: #FFFFFF;
	padding-top: 250px;
}
.seahaven #beaches h2 {
	padding-left: 34px;
	font-size: 1em;
	color: #FFFFFF;
}
.seahaven #beaches h3 {
	font-size: 0.8em;
	color: #FFFFFF;
	background-image: url(../beaches/images/beach_map_nav2.gif);
	background-repeat: repeat-x;
	text-align: center;
	height: 34px;
	font-weight: normal;
	text-decoration: none;
	line-height: 28px;
}
.seahaven #beaches ul {
	padding-left: 75px;
}
.seahaven #beaches table {
	text-align: center;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: auto;
	margin-right: auto;
	margin-left: auto;
}
.seahaven #beaches td {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 12px;
}
.seahaven #wrecksImg {
	width: 211px;
	float: left;
	background-image: url(../beaches/images/ships_graveyard.gif);
	background-repeat: no-repeat;
	height: 188px;
	margin: 0px;
	padding: 0px;
}
.seahaven #note {
	background-color: #C8C4C8;
	padding: 10px;
	border: 2px solid #FF9900;
	color: #000000;
}
.seahaven #note p {
	font-weight: bold;
}
.seahaven #note ul {
	font-size: 0.9em;
	font-weight: normal;
}
.cottageTxt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
	line-height: 20px;
	background-color: #FF9900;
}
.cottageTxt-grey {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: #000000;
	line-height: 20px;
	background-color: #C8C4C8;
}
.cottageTxt-darkgrey {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #000000;
	line-height: 20px;
	background-color: #989898;
}
.blackTxt {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #000000;
	line-height: 20px;
}
.boldblackTxt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
}
.orangeTxt {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #FF6600;
	line-height: 20px;
}
.orangeTxtbold {
	font-family: "Comic Sans MS", Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FF9900;
}
.seahaven #bottomLinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	text-align: center;
}
.seahaven #bottomLinks a:link, #bottomLinks a:visited {color:#ffffff; background-color:transparent;}
.seahaven #bottomLinks a:hover, #bottomLinks a:focus, #bottomLinks a:active {
	color:#FF6600;
	background-color:transparent;
}
.seahaven #footer {
	padding-top: 0;
	padding-right: 200px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.seahaven #footerTopimg {
	width: 134px;
	float: left;
	padding-right: 20px;
} 
.seahaven #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}
.seahaven #footer a:link, #footer a:visited {color:#ffffff; background-color:transparent;}
.seahaven #footer a:hover, #footer a:focus, #footer a:active {
	color:#FF6600;
	background-color:transparent;
}
.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;
}
.corntrt { /* 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: 0px;
	padding: 0px;
}
.cornlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}
