@charset "UTF-8";


/***********************************
          LAYOUT STYLES
***********************************/

body  {
	background: #c90;
	margin: 0; /* zero margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* center the container in IE 5* browsers */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
#container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #fff;
	background-image: url(../images/sidebar.gif);
	background-repeat: repeat-y;
} 
#header {
	background: url(../images/header.jpg) no-repeat;
	height: 130px;
	background-color: #fff;
} 
#header h1 {
	margin: 0; /* prevent margin collapse */
	text-indent: -1000px; /* move off-screen */ 
}
#header h2 {
	text-indent: -1000px; /* move off-screen */ 
}
#sidebar {
	float: left;
	width: 190px; /* accommodate graphics */
	background: #373f47;
}
#sideTop {
	height: 120px;
	background-image: url(../images/sidebar_Top.jpg);
	background-repeat: no-repeat;
}
#sideTop p {
	margin: 0; /* prevent margin collapse */
	text-indent: -1000px; /* move off-screen */ 
}
#sideBottom {
	height: 160px;
	background: url(../images/sidebar_Bottom.jpg) no-repeat;
}
#sideBottom p {
	text-indent: -1000px; /* move off-screen */ 
}
#mainContent {
	margin: 0 0 0 190px; /* left margin for sidebar area */
	padding: 0 0px 0 0px;
} 
#mainContent h1,p {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
}
#footer {
	border-top: thin dotted #373f47;
	padding: 8px 10px 10px;
	margin-top: 15px;
} 
#footer p {
	margin: 0; /* prevent margin collapse */
	font-size: 0.9em;
} 
#footer span {
	margin-right: 200px;
}

/***** STANDARD FLOAT ELEMENTS *****/
.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;
}

/***********************************
        PRESENTATION STYLES
***********************************/

/***** Note: left margin set in header styles to match #contentBackground p *****/
/***** h tags in serif face to coordinate with font in header graphic *****/
h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.75em;
	font-weight: bold;
	color: #CC9900;
	margin-left: 10px;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #CC9900;
	margin-left: 10px;
	font-style: italic;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #333;
	margin-left: 10px;
	margin-bottom: 0;
}
h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #333;
	font-style: italic;
	margin-left: 10px;
	margin-bottom: 0;
}
p {
	font-size: 1em;
	line-height: 1.2em;
	color: #333333;
	text-align: left;
}
#mainContent p {
	margin-right: 10px;
	margin-left: 10px;
	padding-top: 10px;
}
li {
	list-style-image: url(../images/bullet.png);
	font-size: 1em;
	line-height: 1.2em;
	color: #333;
}

/***** NAVIGATION *****/
a:link {
	text-decoration: none;
	color: #405d79;
}
a:visited {
	text-decoration: none;
	color: #405d79;
}
a:hover {
	color: #CC9900;
	text-decoration: underline;
}

/***** NAVIGATION ROLLOVERS *****/
/* Graphics use "Pixy" technique, repositioning for rollover states. Use current class on respective pages to display graphic indicating current page active with default mouse */
#navHome a {
	background: url(../images/navHome.jpg) no-repeat;
	height: 38px;
	display: block;
}
#navHome a:hover {
	background-position: -190px 0px;
}
#navHome a.current {
	background-position: -380px 0px;
	cursor:default;  
}
#navPhotos a {
	background-image: url(../images/navPhotos.jpg);
	height: 38px;
	display: block;
}
#navPhotos a:hover {
	background-position: -190px 0px;
}
#navPhotos a.current {
	background-position: -380px 0px;
	cursor:default;  
}
#navFeatures a {
	background-image: url(../images/navFeatures.jpg);
	height: 38px;
	display: block;
}
#navFeatures a:hover {
	background-position: -190px 0px;
}
#navFeatures a.current {
	background-position: -380px 0px;
	cursor:default;  
}
#navAmenities a {
	background-image: url(../images/navAmenities.jpg);
	height: 38px;
	display: block;
}
#navAmenities a:hover {
	background-position: -190px 0px;
}
#navAmenities a.current {
	background-position: -380px 0px;
	cursor:default;  
}
#navContact a {
	background-image: url(../images/navContact.jpg);
	height: 38px;
	display: block;
}
#navContact a:hover {
	background-position: -190px 0px;
}
#navContact a.current {
	background-position: -380px 0px;
	cursor:default;  
}
#navHome,#navPhotos,#navFeatures,#navAmenities,#navContact p {
	text-indent: -1000px; /* move text links off-screen */ 
}

