/*
Company:	The Cliff House at Pikes Peak
File:		main.css - This contains all the main styles for the website.

Global Browser Reset - this is handled by the reset-fonts.css file from YUI
HTML, Body - for the html and body tags
Layout - styles that define the layout of the site
Modules - styles for content modules
Common Text Styles - Styles for text
Default Headings - headings like h1, h2, etc
Default Lists - unordered and ordered lists
Nav - navigation bar
Forms - html forms
Default Links - links
Special Classes - anything that doesn't fit elsewhere
*/

/* @group HTML, Body */

html {
	background: url(/css/page-bkg.gif) repeat-x 0 0 #000;
}

body {
	background: url(/css/body-fade-bkg.png) repeat-y 50% 0;
}

/* @group Layout */

div#wrap {
	padding: 25px 0 0 0;
}

/* Head */

div#hd {
	background: url(/css/hd-bkg.png) repeat 0 0;
	width: 974px;
	border: 2px solid #e8d7c1;
	margin-left: auto;
	margin-right: auto;
	padding: 12px;
	margin-bottom: 15px;
}

/* Body */

div#bd-top {
	width: 1002px;
	height: 5px;
	overflow: hidden;
	background: url(/css/bd-top.png) no-repeat 0 0;
	margin-left: auto;
	margin-right: auto;
}

div#bd-btm {
	width: 1002px;
	height: 5px;
	overflow: hidden;
	background: url(/css/bd-btm.png) no-repeat 0 0;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

div#bd {
	width: 1002px;
	margin-left: auto;
	margin-right: auto;
	background: url(/css/bd-bkg.png) repeat-y 0 0;
	overflow: hidden;
}

/* @group Modules */

/* Logo */

div#logo {
	width: 321px;
	height: 106px;
	background: url(/css/cliff-house-logo.png) no-repeat 0 0;
	text-indent: -9000px;
	margin: 0 0 5px 0;
}

div#logo a {
	display: block;
	height: 100%;
}

/* Head Left */

div.hd-left {
	width: 321px;
	float: left;
	display: inline;
}

/* Head Right */

div.hd-right {
	width: 640px;
	float: right;
	display: inline;
}

div.hd-slideshow {
	overflow: hidden;
	width: 640px;
	height: 300px;
}

/* Head Top */

div.hd-top {
	margin: 0 0 10px 0;
}

/* Reservations */

div.reservations {
	background: url(/css/reservations-bkg.png) repeat 0 0;
	padding: 0 0 2px 0;
}

div.reservations h2 {
	font-size: 140%;
	color: #fff;
	font-weight: normal;
	letter-spacing: 3px;
	width: 286px;
	text-align: left;
	margin: 0;
	padding: 10px 0 6px 47px;
	float: left;
	display: inline;
}

div.reservations div.res-checkin {
	width: 180px;
	float: left;
	display: inline;
}

div.reservations div.res-checkin select {
	width: 83%;
	vertical-align: top;
	margin: 10px 0 0 0;

}

div.reservations div.res-checkin img {
	vertical-align: top;
	position: absolute;
	float: right;
	padding: 2px 0 0 3px;
}

div.reservations div.res-nights, div.reservations div.res-adults, div.reservations div.res-children {
	width: 80px;
	float: left;
	display: inline;
}

div.reservations select {
	width: 88%;
	margin-top: 1px;
}

div.reservations label {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	display: block;
	padding: 2px 0 1px 0;
}

div.reservations input.btn {
	font-size: 100%;
	color: #fff;
	border: none;
	background-color: transparent;
	letter-spacing: 2px;
	text-decoration: underline;
	display: block;
	width: 218px;
	padding: 15px 0 6px 0;
	float: left;
	display: inline;
}

div.reservations input.btn:hover {
	text-decoration: none;
	cursor: pointer;
}

/* Callout Scroller */

div.callout-scroller-wrap {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	height: 140px;
	overflow: hidden;
	margin-bottom: 15px;
}

div.callout-scroller {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	height: 140px;
	overflow: hidden;
}

a.scroller-nav-prev, a.scroller-nav-next {
	display: block;
	width: 10px;
	height: 140px;
	position: absolute;
	z-index: 500;
	background: url(/css/scroller-left-arrow.png) no-repeat 0 50%;
	text-indent: -9000px;
}

a.scroller-nav-next {
	background: url(/css/scroller-right-arrow.png) no-repeat 0 50%;
	margin-left: 990px;
}

div.callout-scroller div.scroller-items {
	width: 2000px;
	height: 136px;
	overflow: hidden;
	margin-left: 17px;
}

div.callout-scroller div.scroller-item {
	width: 286px;
	height: 126px;
	margin: 0 39px 0 0;
	padding: 5px;
	background: url(/css/scroller-item-bkg.png) repeat 0 0;
	float: left;
	display: inline;
}

div.callout-scroller div.scroller-item img {
	margin: 3px 10px 0 3px;
	float: left;
	display: inline;
}

div.callout-scroller h3 {
	font-size: 100%;
	margin: 0 0 5px 0;
	padding: 3px 0 0 0;
	letter-spacing: 2px;
	font-weight: normal;
}

div.callout-scroller h3 a:link, div.callout-scroller h3 a:visited {
	color: #fbfbfb;
	text-decoration: none;
}

div.callout-scroller h3 a:hover {
	text-decoration: none;
}

div.callout-scroller p {
	color: #fbfbfb;
	font-size: 75%;
	line-height: 140%;
}

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 

div.callout-scroller {
    /* required settings */ 
    position:relative;
    overflow:hidden;
}

/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 

div.callout-scroller div.scroller-items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
}

/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 

div.callout-scroller div.scroller-items div.scroller-item { 
    float:left; 
}

/* active items */ 

div.scroller-items div.active { 
    
}

/* Body Left */

div.bd-left {
	width: 634px;
	float: left;
	display: inline;
}

/* Main */

div.main {
	width: 580px;
	margin: 0 0 0 54px;
	padding: 20px 0 30px 0;
}

/* Side */

div.side {
	width: 283px;
	padding: 5px 9px 0 0;
	float: right;
	display: inline;
}
div.side h2 {
	font-size: 115%;
	color: #fdfdfc;
	margin: 0 0 18px 0;
	background: url(/css/reservations-bkg.png) repeat 0 0;
	font-weight: normal;
	padding: 8px 0 8px 8px;
	letter-spacing: 3px;
}
div.side ul {
	font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0 0 10px 14px;
}
div.side ul li {
	list-style: none;
	padding: 0 0 12px 0;
	font-size: 70%;
}

div.side p {
	font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 70%;
	padding-left: 14px;
	line-height: 150%;
}

div.side a:link, div.side a:visited {
	color: #fff;
	text-decoration: none;
}

div.side a:hover {
	text-decoration: underline;
}

div.side ul.subnav {
	padding: 40px 0 0 0;
}

div.side ul.subnav li {
	padding: 3px 0 3px 14px;
	font-size: 70%;
}
div.side ul.subnav li.rss {
	background: url(/css/rss-icon.png) no-repeat 0 50%;
	margin-left: 14px;
}	

div.side p.credits {
	padding: 10px 0 30px 0; 
	border-top: 1px dotted #675f56;
	padding-top: 20px;
	font-size: 65%;
}

/* HR */

div.main-content-hr {
	width: 100%;
	height: 13px;
	overflow: hidden;
	background: url(/css/main-content-hr.png) no-repeat 0 0;
	clear: both;
	margin: 10px 0 10px 0;
}

/* @group Common Text Styles =================================== */

div.main {
	color: #121212;
}

div.main ul ol {
	margin: 0;
	padding: 12px 0 6px 60px;
}
div.main ul li {
	padding: 0 0 3px 0;
	font-size: 78%;
}

div.main p {
	font-size: 78%;
	line-height: 150%;
}

div.main p.byline {
	color: #e8d7c2;
	margin: 0;
}

div.main p.byline span.date {
	margin-left: 25px;
}

div.main p.comments {
	color: #e8d7c2;
}

div.main p.comments span {
	color: #004524;
	margin-left: 5px;
	font-weight: bold;
}

div.main td {
	font-size: 100%;
	line-height: 150%;
	padding: 2px 5px 3px 0;
}


/* @group Default Headings ======================================= */

/* Page Head */

div.main h1 {
	font-size: 150%;
	margin: 15px 0 10px 0;
	padding: 0 0 10px 0;
	font-weight: normal;
	line-height: 1.5;
	color: #fff;
	text-shadow: 0 1px 2px #121212;
}

div.main h1 a:link, div.main h1 a:visited {
	color: #fff;
	text-decoration: underline;
}

div.main h1 a:hover {
	text-decoration: none;
}

div.main h2 {
	font-size: 120%;
	margin: 15px 0 5px 0;
	padding: 0 0 5px 0;
	font-weight: normal;
	line-height: 1.5;
	color: #fff;
	text-shadow: 0 1px 1px #333;

}

div.main h2 a:link, div.main h2 a:visited {
	color: #fff;
	text-decoration: none;
}

div.main h2 a:hover {
	text-decoration: none;
}

div.main h3 {
	font-size: 100%;
	font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
	margin: 5px 0 5px 0;
	padding: 0 0 5px 0;
	font-weight: normal;
	color: #ffe9cc;
	font-style: italic;
	text-shadow: 0 1px 1px #333;
}

div.main h3 a {
	color: #ffe9cc;
	text-decoration: none;
}

div.main h3 a:hover {
	color: #fff;
	text-decoration: none;
}

h2.latest {
	color: #fff;
	font-size: 161.6%;
	margin: 3px 0 15px 8px;
	background: url(/css/reservations-bkg.png) repeat 0 0;
	padding: 8px 0;
	width: 345px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 3px;
}

div.menu-left {
	float: left;
	width: 252px;
	vertical-align: top;
	border-right: 1px solid #aba092;
	padding-right: 39px;
}

div.menu-left h2 {
	font-size: 120%;
	margin: 10px 0 5px 0;
	padding: 0 0 3px 0;
	font-weight: normal;
	line-height: 1;
	color: #ffe9cc;
	text-shadow: 0 1px 1px #333;

}

div.menu-left h3 {
	font-size: 100%;
	font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
	margin: 6px 0 2px 0;
	padding: 0 0 6px 0;
	font-weight: normal;
	color: #000;
	border-bottom: 1px solid #aba092;
	text-align: center;
	text-shadow: none;
}

div.menu-right {
	float: right;
	vertical-align: top;
	width: 252px;
}

div.menu-right h2 {
	font-size: 120%;
	margin: 10px 0 5px 0;
	padding: 0 0 3px 0;
	font-weight: normal;
	line-height: 1;
	color: #ffe9cc;
	text-shadow: 0 1px 1px #333;
}

div.menu-right h3 {
	font-size: 100%;
	font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
	margin: 6px 0 2px 0;
	padding: 0 0 6px 0;
	font-weight: normal;
	color: #000;
	border-bottom: 1px solid #aba092;
	text-align: center;
	text-shadow: none;
}

div.menu-footer {
	clear: both;
	padding-top: 20px;
	margin-top: 20px;
}	

/* @group Navigation =================================================== */

div#nav ul {
	margin: 0;
	padding: 0;
}

div#nav ul li {
	list-style: none;
	background: url(/css/nav-div.png) no-repeat 0 0;
}

div#nav ul li:first-child {
	background: none;
}

div#nav ul li a {
	display: block;
	padding: 6px 0 6px 50px;
	font-size: 90%;
	font-variant: small-caps;
	letter-spacing: 3px;
}

div#nav ul a:link, div#nav ul a:visited {
	color: #fefefd;
	text-decoration: none;
}

div#nav ul a:hover, div#nav ul a.active {
	text-decoration: none;
	background: url(/css/nav-icon.png) no-repeat 0 50%;
	text-shadow: 0 0 6px #fff;
}

/* @group Default Links - link visited hover active ================= */

a:link, a:visited {
	color: #005730;
	text-decoration: underline;
}

a:hover {
	color: #6f5034;
	text-decoration: none;
}

/* Images */

.pic-left {
	margin: 0 15px 10px 0;
	float: left;
	display: inline;
}
.pic-right {
	margin: 0 0 10px 15px;
	float: right;
	display: inline;
}

.inset-home-1 {
    background: transparent url(/css/bg-inset.png) no-repeat;
	float: left;
    padding: 13px;
	margin: 20px 0 40px 25px;
}

.inset-home-2 {
    background: transparent url(/css/bg-inset.png) no-repeat;
	float: left;
    padding: 13px;
	margin: 20px 0 40px 25px;
}

.inset-home-3 {
    background: transparent url(/css/bg-inset.png) no-repeat;
	float: left;
    padding: 13px;
	margin: 20px 0 40px 25px;
}

.inset {
	background: transparent url(/css/bg-inset.png) no-repeat;
	padding: 13px;
	float: right;
	margin: 1px 0 0 12px;
}

.inset-thumb {
	background: transparent url(/css/bg-inset-thumb.png) no-repeat;
	padding: 13px;
	float: right;
	margin: 1px 0 12px 12px;
}

/* @group Special Classes =========================================== */

.dropcap {
	float: left;
	color: #6f5034;
	font-size: 80px;
	line-height: 60px;
	padding: 2px 7px 5px 0;
}	

.fineprint {
	color: #d9cab7;
	border-top: 1px solid #aba092;
	margin: 40px 0 10px 0;
	padding: 0 0 15px 0;
}	

.video {
	border: 2px solid #ecddcb; 
	background: #000; 
	padding: 5px; 
	margin: 20px 0 20px 0;
}

.req {
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	color: #660000;
}	
	
.clear {
	clear: both;
}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-block;}

/* Hides from IE-mac \*/

* html .clearfix {height: 1%;}
.clearfix {display: block;}

/* End hide from IE-mac */

/* Open Table CSS */


/* @end */
