/* ################################################################

-------------------------TABLE OF CONTENTS-------------------------

	1) HTML, BODY, CONTAINER
	2) HEADINGS
	3) TEXT & OTHER GENERAL PAGE ELEMENTS
	4) GLOBAL LINKS
	5) HEADER
	6) NAVIGATION
	7) MASTHEAD AND SLIDER/IMAGE BACKGROUND
	8) BOOKING/RESERVATIONS
	9) CALLOUTS
	10) PAGE CONTENT
	11) SIDEBAR
	12) GALLERY
	13) FOOTER
	14) SPECIALS AND OTHER EXTRA FORMATTING
	15) MEDIA QUERIES

################################################################# */



/*******************************************************************
  HTML, BODY, CONTAINER
*******************************************************************/

html {
	height: 100%;
	background: url(bknd0000.jpg);
}

body {
	min-height: 100%;			/*Sets minimum body height to browser height*/
	height: auto !important;
	height: 100%;
	position: relative;			/*Required for absolute positioning to correspond */
	font-family: "Myriad Pro", Arial, sans-serif;
	font-size: 15px;
	line-height: 20px;
	color: #1c1100;
}

/*******************************************************************
  HEADINGS
*******************************************************************/

h1 {
	font-weight: normal;
	font-family: "Georgia", "Times New Roman", "Times", serif;
	font-size: 185.7%;
	line-height: 100%;
	margin: 0 0 10px 0;
}

h2 {
	font-weight: normal;
	font-family: "Georgia", "Times New Roman", "Times", serif;
	font-size: 171.4%;
	margin: 10px 0;
	line-height: 100%;
}

h3 {
	font-weight: normal;
	font-family: "Georgia", "Times New Roman", "Times", serif;
	font-size: 142.8%;
	margin: 10px 0;
	line-height: 100%;
}

/*******************************************************************
  TEXT & OTHER GENERAL PAGE ELEMENTS
*******************************************************************/

p {margin-bottom: 10px}



/*******************************************************************
  GLOBAL LINKS
*******************************************************************/

a:link, a:visited {
	color: #1c1100;
}

a:hover, a:focus {
	text-decoration:none;
}

/*******************************************************************
  HEADER
*******************************************************************/

#header {
	height: 140px;
	margin-top: 15px;
}

#header .row { position: relative }

#header a.logo {
	display: block;
	width: 438px;
	height: 138px;
	margin: 0 auto;
	background:url(../logo/logo01.png)no-repeat;
	text-indent: -9999px;
}

#header .weather {
	position: absolute;
	top: 10px;
	left: 0;
	font-size: 70%;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background-image: none;
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 43px;
}

#header .navigation-top {
	position: absolute;
	top: 52px;
	right: 25px;
	text-align: right;
	font-size: 92.6%;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

#header .navigation-top li:first-child {margin-left: 0}
#header .navigation-top li {
	display: inline;
	margin-left: 10px;
}

#header .navigation-top .reservations {
	background: url(ico-bell.png) no-repeat top right;
	padding: 2px 35px 13px 0;
}

#header .navigation-top .phone {
	background: url(ico-phon.png) no-repeat top right;
	padding: 4px 22px 10px 0;
}

#header .navigation-top .extendedLiving {
	display: block;
	padding: 30px 22px 0 0;
}

#header a:link, #header a:visited {
	text-decoration: none;
}	

#header a:hover {
	text-decoration: underline;
}

/*******************************************************************
  NAVIGATION
*******************************************************************/

#navigation {
	background: #351f0c;
	background: -moz-linear-gradient(top,  #351f0c 0%, #5b3a1e 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#351f0c), color-stop(100%,#5b3a1e));
	background: -webkit-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: -o-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: -ms-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: linear-gradient(to bottom,  #351f0c 0%,#5b3a1e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#351f0c', endColorstr='#5b3a1e',GradientType=0 );
	border-bottom: 1px solid #d3a462;
	height: 60px;
	text-align: center;
}

#navigation ul {
	margin: 0;
	padding: 0;
}

#navigation > ul > li {
	display: inline-block;
	list-style: none;
}

#navigation ul li a {
	color: #f4b85f;
	display: block;
	height: 100%;
	line-height: 60px;
	font-family: "Georgia", "Times New Roman", "Times", serif;
	font-size: 130%;
	padding: 0 18px;
	text-align: center;
	text-decoration: none;
}
#navigation > ul > li:hover {
	background-color: #C88727;
}
#navigation > ul > li > a:hover {
	background-color: #C88727;
	color: #FFFFFF;
}

#navigation ul li ul {
	background-color: #351F0C;
	display: none;
	min-width: 140px;
	position: absolute;
	text-transform: none;
	z-index: 999;
	list-style-type: none;
}

#navigation ul li ul li {
	float: none;
	width: 100%;
}

#navigation ul li ul li a {
	border-bottom: 1px solid #000000;
	line-height: 1;
	min-height: 100%;
	padding: 15px 18px;
	text-align: left;
}
#navigation ul li ul li a:hover {
	background-color: #C88727;
	color: #FFFFFF;
}

#navigation ul li:hover ul {
	display: block;
}

/*******************************************************************
  MASTHEAD AND SLIDER/IMAGE BACKGROUND
*******************************************************************/

#masthead {
	width: 100%;
	height: 400px;
	margin: 20px auto 0 auto;
	box-shadow: 3px 3px 8px rgba(44,22,2,0.33), 3px -3px 8px rgba(44,22,2,0.33), -3px 3px 8px rgba(44,22,2,0.33), -3px -3px 8px rgba(44,22,2,0.33);
}

#masthead .image-background {
	float: left;
	background-size: cover;
	width: 705px;
	height: 100%;
}

#masthead .image-background.wide {
	width: 1000px;
}

#masthead .image-background img {
	width: 100%;
}

#masthead .pagination, #masthead .nivo-controlNav {display: none}
.theme-default .nivoSlider {margin-bottom: 0 !important}

/*******************************************************************
  BOOKING/RESERVATIONS
*******************************************************************/

#booking {
	background: #351f0c;
	background: -moz-linear-gradient(top,  #351f0c 0%, #5b3a1e 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#351f0c), color-stop(100%,#5b3a1e));
	background: -webkit-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: -o-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: -ms-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: linear-gradient(to bottom,  #351f0c 0%,#5b3a1e 100%);
	float: left;
	padding: 40px 18px 0 23px;
	width: 254px;
	height: 100%;
	color: #dc9d47;
}

#booking h3 {
	text-align: center;
	font-size: 157%;
	margin-bottom: 20px;
}

#booking form	 {
	font-size: 78.5%;
	text-transform: uppercase;
}

#booking .arrival {
	float: left;
	width: 49%;
}

#booking .deparature {
	float: right;
	width: 49%;
}

#booking .arrival input, #booking .deparature input, #booking .promotional input {
	width: 95px;
	height: 18px;
	padding: 1px 0;
	margin-bottom: 30px;
	font-size: 90%;
}

#booking .adults {
	clear: left;
	margin-right: 16px;
	float: left;
}

#booking .children {
	float: left;
	margin-right: 16px;
}

#booking .promotional {
	float: left;
}

#booking .submit {
	clear: both;
	display: block;
	margin: 0 auto;
}

#booking label {display: block}

#booking select {
	width: 50px;
	height: 22px;
	padding: 2px 0;
}

img#arrivaldateselect, img#departuredateselect {
	margin-left: 3px;
	vertical-align: top;
}

#booking .info {
	text-align: left;
	margin-top: 35px;
	
}
.info img {
	margin-bottom:8px;
}
.info a {
	color:#ffffff;
	text-decoration:none;
}
.info a:hover {
	text-decoration:underline;
}

/*******************************************************************
  CALLOUTS
*******************************************************************/

#callouts {
	clear: both;
	overflow: hidden;
	margin: 20px auto 30px auto;
}

#callouts li {
	float: left;
	width: 195px;
	height: 136px;
	position: relative;
	margin-right: 6px;
	list-style:none;
}

#callouts .callout_01 {background-image: url(http://www.greenmountainsuites.com/images/callout-01.png)}
#callouts .callout_02 {background-image: url(http://www.greenmountainsuites.com/images/callout-02.png)}
#callouts .callout_03 {background-image: url(http://www.greenmountainsuites.com/images/callout-03.png)}
#callouts .callout_04 {background-image: url(http://www.greenmountainsuites.com/images/callout-04.png)}
#callouts .callout_05 {background-image: url(http://www.greenmountainsuites.com/images/callout-05.png); margin-right: 0}

#callouts li:hover {background-position: 0 -136px; text-shadow: none}

#callouts a {
	display: block;
	height: 100%;
	width: 100%;
}

#callouts span {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-transform: uppercase;
	font-size: 92.8%;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-shadow: 1px 1px 1px #000;
	text-align: center;
}


/*******************************************************************
  PAGE CONTENT
*******************************************************************/

#content {
	background: url(http://www.greenmountainsuites.com/images/1x1.png); /* ie */
	background: rgba(255, 255, 255, 0.3);
	
	padding-bottom: 180px;
}

.content {
	padding-top: 40px;
	padding-right: 5;
	padding-bottom: 40px;
	padding-left: 0;
}

#content li {
	list-style:square;
}

#content ul {
	margin-left:20px;
}

#content .left,
#content .right {
	float:left;
	margin:0 auto;
	width:50%;
}

#content .content .wide {
	padding: 20px;
}

.contentInside {
	padding-right: 40px;
}

#boxMainPageLists ul {
	margin: 0 0 10px 0;
	list-style-type: none;
}

#boxMainPageLists a:link,
#boxMainPageLists  a:visited {
	text-decoration: none;
}

#boxMainPageLists a:hover {
	text-decoration: underline;
}

.row .noSide {
	padding: 20px;
	width: auto;
}

.contentColumns {
	margin: 0 0 15px 0;
}

/*******************************************************************
  SIDEBAR
*******************************************************************/

#content .side .sub_hdr,
#content .textsmall strong,
#boxMainPageLists strong,
.info h2 {
	display: block;
	padding-bottom: 5px;
	border-bottom: 1px solid #aba8a3;
	font-weight: normal;
	font-size: 107%;
	text-align:center;
	text-transform: uppercase;
	font-family: "Myriad Pro", Arial, sans-serif;
}

#content .side #displayFeaturedSpecial {
	width: 255px;
}

#displayFeaturedSpecial p:first-child {
	display: none;
}

#content .side .signUp {
	padding: 0 0 0 20px;
}

/*******************************************************************
  GALLERY
*******************************************************************/

/* condense nivo prev/next controls */
div.theme-default div.pagination span.prev {
	left: 0px;
}
div.theme-default div.pagination span.next {
	right: 0px;
}

/*******************************************************************
  FOOTER
*******************************************************************/

#footer {
	background: url(drama000.png) bottom repeat-x #351f0c;
	bottom: -3px;
	color: #ffffff;
	font-size: 85.7%;
	padding: 0 0 30px 0;
	position: absolute;
	width: 100%;
	left: 950px;
}
#footer .fourcol {
	padding-top: 40px;
}

#footer a:link, #footer a:visited {
	color: #ffffff;
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;
}

/*******************************************************************
  SPECIALS AND OTHER EXTRA FORMATTING
*******************************************************************/

#content p.photoborder {
	box-shadow: 3px 3px 8px rgba(44,22,2,0.33), 3px -3px 8px rgba(44,22,2,0.33), -3px 3px 8px rgba(44,22,2,0.33), -3px -3px 8px rgba(44,22,2,0.33);
	float: right;
	margin: 0 20px 20px 20px;
	padding: 0;
}

.noborder {
	float: right;
	margin: 0 20px 20px;
}

.photos {
	margin: 20px;
	box-shadow: 3px 3px 8px rgba(44,22,2,0.33), 3px -3px 8px rgba(44,22,2,0.33), -3px 3px 8px rgba(44,22,2,0.33), -3px -3px 8px rgba(44,22,2,0.33);
}

.theme-default .pagination .next { background-image: url (images/thumbnail-arrows.png); }

hr {
	background: #a37b42;
	display:block;
	clear:both;
	border: none;
	height: 1px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
}

/* specials page OLD
#specialsContainer {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	color: #FFF;
}
#specialsContainer a {
	color:#ffffff !important;
}
.specialsOneCol,
.specialsTwoCol {
	margin: 0 0 8px 0;
}

.specialsTwoCol {
	overflow: hidden;
}

.specialsTwoCol .specialsItem img,
.specialsOneCol .specialsItem img {
	border: 1px solid #532414;
	padding: 1px;
}

.specialsTwoCol .specialsItem {
	float: left;
	height: 185px;
	width: 276px;
}

.specialsTwoCol .specialsItem:first-child {
	margin: 0 8px 0 0;
}

.specialsOneCol .specialsItem {
	height: 235px;
	width: 560px;
}

.specialsItem {
	position: relative;
}

div#content-bottom .specialsItem a:link,
div#content-bottom .specialsItem a:active,
div#content-bottom .specialsItem a:visited {
	color: #FFFFFF !important;
}

.specialsItem div {
	bottom: 15px;
	font-size: 22px;
	letter-spacing: 2px;
	position: absolute;
	right: 15px;
	text-shadow: -2px -2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, 2px 2px 0 #000000;
	-webkit-transition: bottom .2s ease-in-out;
	-moz-transition: bottom .2s ease-in-out;
	-o-transition: bottom .2s ease-in-out;
	-ms-transition: bottom .2s ease-in-out;
	transition: bottom .2s ease-in-out;
}

.specialsItem:hover div {
	bottom: 22px;
}

form#icpsignup371 {
	margin: 40px 0 0 40px;
}

form#icpsignup371 input[type="text"] {
	border: 1px solid #351F0C;
	color: #6d6d6d;
	padding: 5px;
	width: 140px;
}

form#icpsignup371 input[type="text"]:focus {
	color: #000000;
}

form#icpsignup371 input[type="submit"] {
	background: #C37F2A;
	border: 1px solid #351F0C;
	color: #FFFFFF;
	padding: 5px;
}

form#icpsignup371 input[type="submit"]:hover {
	background: #A2661B;
	cursor: pointer;
}
*/


.specialItem {
	border: 1px solid #351F0C;
	margin: 0 0 20px 0;
	padding: 2px;
	position: relative;
	width: 950px;
}

.specialItem h2 {
	color: #FFFFFF;
	font-size: 36px;
	left: 20px;
	letter-spacing: 2px;
	position: absolute;
	text-shadow: -2px -2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, 2px 2px 0 #000000;
	top: 0;
	-webkit-transition: top .2s ease-in-out;
	-moz-transition: top .2s ease-in-out;
	-o-transition: top .2s ease-in-out;
	-ms-transition: top .2s ease-in-out;
	transition: top .2s ease-in-out;
}

.specialItem:hover h2 {
	top: 5px;
}

.specialItem.blackText h2 {
	color: #000000;
	text-shadow: none;
}

.specialBox {
	overflow: hidden;
}

.specialBoxItem {
	border-bottom: 1px solid #351F0C;
	float: left;
	margin-bottom: 30px;
	padding-bottom: 60px;
	position: relative;
	min-height: 450px;
	width: 450px;
}

.specialBox .specialBoxItem:first-child {
	margin-right: 40px;
}

.specialBox .specialBoxItem img {
	margin: 0 0 20px 120px;
}

a.bookNow {
	background: #351f0c;
	background: -moz-linear-gradient(top,  #351f0c 0%, #5b3a1e 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#351f0c), color-stop(100%,#5b3a1e));
	background: -webkit-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: -o-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: -ms-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
	background: linear-gradient(to bottom,  #351f0c 0%,#5b3a1e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#351f0c', endColorstr='#5b3a1e',GradientType=0 );
	border-bottom: 1px solid #D3A462;
	color: #FFFFFF;
	display: block;
	margin: 10px 0 0 0;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	width: 100px;
}

/*******************************************************************
  MEDIA QUERIES
*******************************************************************/

@media handheld, only screen and (max-width: 1060px) {
	.container {
		padding: 0;
	}
}

@media handheld, only screen and (max-width: 1024px) {
	#booking, #masthead .image-background {
		clear: both;
		width: 100%;
	}

	#booking {
		background: #351f0c;
		background: -moz-linear-gradient(top,  #351f0c 0%, #5b3a1e 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#351f0c), color-stop(100%,#5b3a1e));
		background: -webkit-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
		background: -o-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
		background: -ms-linear-gradient(top,  #351f0c 0%,#5b3a1e 100%);
		background: linear-gradient(to bottom,  #351f0c 0%,#5b3a1e 100%);
	}

	#masthead {
		height: auto;
	}

	#callouts {
		display: none;
	}

	#booking {
		padding: 10px 0;
		text-align: center;
		background-position: bottom center;
	}

	#booking .arrival, #booking .deparature, #booking .adults, #booking .children, #booking .promotional {
		display: inline-block;
		float: none;
		clear: none;
		width: auto;
		margin-right: 15px;
	}

	#booking .arrival input, #booking .deparature input, #booking .promotional input {
		margin-bottom: 10px;
	}

	#booking .adults {
		clear: none;
	}

	#booking h3 {
		margin-bottom: 10px;
	}

	#booking .info {
		margin: 5px auto 0 auto;
		text-align: center;
		width: 50%;
	}

	#booking .info img {
		display: block;
		margin: 0 auto 10px auto;
	}

	#booking .info br {
		display: none;
	}
	
	.side {
		display: none;
	}
	
	#content {
		padding-bottom: 0;
	}
	
	.row .content {
		padding: 40px;
		width: auto;
	}
	
	#content p {
		padding: 0;
	}
	
	#footer {
		bottom: auto;
		padding: 0 0 50px 0;
	}
	
	#footer .fourcol,
	#footer .eightcol p {
		text-align: center;
	}
}

@media handheld, only screen and (max-width: 1015px) {

	#navigation ul li a {
	font-size: 120%;
	}

}

@media handheld, only screen and (max-width: 920px) {

	#navigation {
	margin-top: 10px;
	}

	#navigation ul li a {
	padding: 0 10px;
	}
	
	#navigation ul li ul li a {
	padding: 5px 10px;
	}

}

@media handheld, only screen and (max-width: 800px) {
	#content, #content p {
		text-align: center;
	}

	#content ul li {
		list-style: none;
	}

	#content .side #displayFeaturedSpecial {
		width: 100%;
	}

	#header .logo {
		float: left;
		margin: 0 20px 0 10px;
	}

	#header .weather {
		position: relative;
		clear: right;
		float: right;
		margin: 0 10px 10px 0;
	}

	#header .navigation-top {
		position: relative;
		clear: right;
		float: right;
		margin: 0 10px 10px 0;
	}

}

@media handheld, only screen and (max-width: 767px) {
	
	#navigation {
	height: auto;

	}

	#navigation ul li ul li a {
	font-size: 100%;
	padding: 15px 10px;
	}

	#navigation > ul > li > a:hover {
	background-color: #351F0C;
	}
	
	#navigation ul li:hover {
	background-color: #351F0C;
	}
	
	#navigation ul li ul {
	background-color: #351F0C;
	}
	
	#navigation ul li ul li a:hover {
	background-color: #C88727;
	}
	
}

@media handheld, only screen and (max-width: 700px) {
	#header {
		height: 164px;
	}

	#header .weather {
		display: none;
	}

	#header a.logo {
		float: none;
		width:385px;
	}

	#header .navigation-top {
		float: none;
		height: 53px;
		margin: 0;
		text-align: center;
	}

	#bottomBarLET {
		display: none;
	}
}

@media handheld, only screen and (max-width: 420px) {
	#header a.logo {
		background-size: 90%;
	}
}
