#container {
	width: 840px;
	margin: auto;
	background-color: #E2E2CF;
	background:url(images/container_bg.gif) center repeat-y;
}
#header {
	border-top-color: #000000;
	border-top-style: solid;
	border-top-width: 20px;
	width: 800px;
	margin-left: 20px;
}
#footer {
	width: 800px;
	border-bottom-width: 40px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	background-image: url(images/footer_bg.gif) bottom;
	height: 34px;
	background-repeat: no-repeat;
	width: 800px;
	margin: auto;
	clear: both;
}
#footer p {
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #E1E6C1;
	padding-top: 14px;
	padding-left: 10px;
}
#homeHeader {
	width: 800px;
	border-top-color: #000000;
	border-top-style: solid;
	border-top-width: 20px;
	padding-left: 20px;
}
#homeLeft {
	width: 354px;
	float: left;
	padding-left: 20px;
}
#homeRight {
	width: 446px;
	float: right;
	padding-right: 20px;
}
#homeFooter {
	clear: both;
	border-bottom-width: 40px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	padding-bottom: 3px;
	background-image: url(images/footer_bg.gif);
	height: 34px;
	background-repeat: no-repeat;
	padding-left: 20px;
	width: 800px;
}
#homeFooter p {
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #E1E6C1;
	padding-top: 14px;
	padding-left: 10px;
}
#homeText {
	width: 443px;
	height: 203px;
	background-color: #E2E2CF;
}
#homeText .content { 
	padding: 15px;
}
#homeTest .content p { 
	font-size: 70%;
	padding: 0; 
	margin: 5px 0; 
}
#homeText .content h2 {
	font-size: 80%;
	margin: 0;
}
#content {
	width: 65%;
	background-color: #E2E2CF;
	float: left;
	margin-left: 20px;
}
#content .text {
	padding-left: 18px;
	padding-top: 10px;
}
#content .text p {
}

#sidebar {
	width: 30%;
	float: right;
	background-color: #E2E2CF;
	margin-right: 20px;
}
#sidebar .padding {
	padding-top: 10px;
	padding-right: 25px;
}


/*********** NAVIGATION ***********/
#navcontainer {  /*div surrounding menu*/
	background-color: #A9AB67;  /*background of menu "bar"*/
	border-bottom: 3px solid #ac7233;  /*orange bar below navigation*/
	display: block;
	height: 1.35em;  /*set height, based on default height*/
	margin: 0;
	padding: 0 0 0 39px;  /*"centers" the menu*/
}
#navcontainer a {
	color: #000;
	display: block;
	float: left;  /*sets menu items horizontally*/
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	padding: 4px 15px;  /*sets "size" of menu items for top-level menu*/
	text-decoration: none;
}
#navcontainer a:hover {
	background: url("includes/navBarBgHover.gif") repeat-x 24px #A9AB67;  /*background image for hover*/
	color: #fff;
	text-decoration: none;
}
#navcontainer ul {
	background-color: #A9AB67;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
#navcontainer li {
	float: left;  /*duplicate of float for link, needed for compliance with all browsers*/
	margin: 0;
	padding: 0;
	position: relative;  /*allows submenus to locate next to "parent" menus*/
}

/* 2nd level */
#navcontainer ul ul {
	background: url('includes/newnav/submenu_footer.gif') bottom right no-repeat;  /*footer image of submenu*/
	border-top: 2px solid #ac7233;
	left: -999em;  /*hides submenus when page is loaded*/
	padding: 0 0 25px 0;  /*allows for footer image on submenus*/
	position: absolute;
	top: 22px;  /*drops submenus below top-level menus*/
	width: 200px;
	z-index: 200;
}
#navcontainer ul ul li {
	background: #A9AB67;
	border-color: #384e25;
	border-style: solid;
	border-width: 0 0 1px 0;  /*puts divider between menu items of submenus*/
	float: none;  /*allow IE to display submenus*/
	margin: 0;
	padding: 0;
}
#navcontainer ul ul li a {
	background-color: #A9AB67;
	color: #000;
	float: none;  /*allow IE to display submenus*/
	height: auto;
	margin: 0;
	padding: 5px 10px;
	text-align: left;
	text-decoration: none;
	width: 180px;  /*width is 200 due to padding being added on*/
}
#navcontainer ul ul li a.parent {
	background: url('includes/newnav/submenu.gif') 97% center no-repeat;
}
#navcontainer ul ul li a:hover.parent {
	background: url("includes/navBarBgHover.gif") repeat-x 24px #666633;
}
#navcontainer ul ul li a:hover {
	text-decoration: none;
}

/* 3rd level */
#navcontainer ul ul ul {
	background: url('includes/newnav/submenu_footer.gif') bottom right no-repeat;
	border-top: none;
	display: block;
	margin: 0 0 0 200px;  /*moves third-level menu to right of second-level menu*/
	padding: 0 0 25px 0;
	position: absolute;
	top: 0;
	z-index: 300;
}
#navcontainer ul ul ul li {
	/*border-left: 1px solid #e2e2cf;*/
	float: none;
}
#navcontainer ul ul ul li a {
	float: none;
	/*width: 179px;*/
	width: 180px;
}

/* make 'em fly */
#navcontainer li:hover ul ul, #navcontainer li:hover ul ul ul, 
#navcontainer li.sfhover ul ul, #navcontainer li.sfhover ul ul ul {
	left: -999em;  /*hides submenus when not hovered over*/
}
#navcontainer li:hover ul, #navcontainer li li:hover ul, #navcontainer li li li:hover ul,
#navcontainer li.sfhover ul, #navcontainer li li.sfhover ul, #navcontainer li li li.sfhover ul {
	left: 0;  /*displays submenus*/
}
/*********** END NAVIGATION ***********/

#smallnavtop {
	background-color: #A9AB67;
	overflow: hidden;
}
#smallnavtop ul
{
padding: 0px;
margin: 0px;
list-style-type: none;
background-color: #A9AB67;
color: #000;
width: 100%;
font: normal 80%/30px "Trebuchet MS", Arial, Helvetica, sans-serif;
text-align: center;
line-height: 20px;
}

#smallnavtop li { display: inline; }

#smallnavtop li a
{
text-decoration: none;
padding: 2px 12px;
background-color: #A9AB67;
color: #000;
}
#smallnavtop li a:hover
{
background-color: #666633;
color: #fff;
background: url("includes/navBarBgHover.gif") repeat-x 18px;
}

#smallnavcontainer {
	background-color: #A9AB67;
	overflow: hidden;
}
#smallnavcontainer ul
{
padding: 0px;
margin: 0px;
list-style-type: none;
background-color: #A9AB67;
color: #000;
width: 100%;
font: normal 80%/30px "Trebuchet MS", Arial, Helvetica, sans-serif;
text-align: center;
line-height: 20px;
}

#smallnavcontainer li { display: inline; }

#smallnavcontainer li a
{
text-decoration: none;

padding: 2px 12px;

background-color: #666633;
color: #fff;
background: url("includes/navBarBgHover.gif") repeat-x 18px;


}

#smallnavcontainer li a:hover
{
background-color: #A9AB67;
color: #000;
background: url("includes/navBarBgHover.gif") repeat-x 18px;
}

/* html tags*/

body {
	margin: 0px;
	background-color: #384E25;
	font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
}
h1 {
	margin-top: 20px;
	font-size: 21px;
	color: #364B23;
}
h2 {
	font-size: 13px;
	color: #364B23;
}
h3 {
	font-size: 13px;
	color: #364B25;
	padding-bottom: 0px;
}
h4 {
	font-size: 16px;
	color: #364B25;
	padding-bottom: 0px;
}
h5 {
	font-size: 16px;
	color: #993300;
	padding-bottom: 0px;
}

p {
	font-size: 11px;
	color: #333333;
	line-height: 18px;
}
.footerText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
}
.introText {
	font-size: 13px;
}
.tableText {
	font-size: 11px;
	color: #333333;
}

td.sidebar img
{
    display:block;
}

ul {
	font-size: 11px;
	line-height: 14px;
	color: #384E25;
	list-style-type: square;
}
a:link {
	color: #384E25;
}
a:visited {
	color: #425C2B;
}
a:hover {
	color: #AC7233;
	text-decoration: none;
	background-color: #D1D1B5;
}
a:active {
	color: #993300;
	text-decoration: none;
}
a.grey {
	color: #999999;
}
img.floatLeft { 
    float: left; 
    margin: 4px; 
}
img.floatRight { 
    float: right; 
    margin: 4px; 
}

#ammenities li{
font-size:20px;
}


/* BEGIN KANE'S SIDEBAR ADDITIONS */
.style17 {
	font-size: 16px;
	font-weight: bold;
	color: #993300;
}
.style18 {color: #993300}
.style19 {
	font-size: 18px;
	color: #993300;
	font-weight: bold;
}
.sidebar-header {
	font-family:Arial;
	font-size: 16px;
	color: #993300;
	font-weight: bold;
}

table.email-subscribe {
	border:1px solid #B6B4A1;
	}
td.email-subscribe{
	border-top:1px solid #B6B4A1;
	}
	
.style-privacy {
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	color: #993300;
}

/* END KANE'S SIDEBAR ADDITIONS */