/*******************************************************************
  HTML, BODY, CONTAINER
*******************************************************************/

html {
	height: 100%;
	background: #313131;
}

body {
	position: relative;
	min-height: 100% !important;
	height: auto !important;
	padding-bottom: 200px;
	font: 14px/22px Open Sans, Myriad Pro, Arial, sans-serif;
	color: #fff;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/*******************************************************************
  FULLSCREEN BACKGROUND
*******************************************************************/

#backstretch {
	position: fixed;
	/*z-index: -1; this was causing the bg photos to cover the mobile menu dropdown in iOS */
	height: 100%;
	width: 100%;
	z-index: -1;
}

#jx-uhid-con-id {
	z-index: 100000000000;
}

/*******************************************************************
  HEADINGS
*******************************************************************/

h1,h2,h3,h4,h5,h6 {
	font-family: Open Sans, Verdana, Arial, sans-serif;
	margin: 0 0 10px 0;
	line-height: normal;
	font-weight: 300;
	position: relative;
	color: #fff;
}

h1 {
	font-size: 30px;
	margin: 0 0  15px 0;

}

h2 {
	margin: 25px 0 10px 0;
	font-size: 18px;
}

h1 + h2 {
	margin-top: 0;
}

/* Reduces margin for titles adjacent to lists or paragraphs*/
h2 + p, h3 + p, h4 + p, h3 + ul {
	margin-top: 0;
}

/*******************************************************************
	ICONS
*******************************************************************/

@font-face {
	font-family: 'Icons';
	src: url('fonts/fontawesome-webfont.eot?v=3.2.1');
	src: url('fonts/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('fonts/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('fonts/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
	font-weight: normal;
	font-style: normal;
}

.icon {
	font-style: normal;
	font-family: 'Icons';
}

/*******************************************************************
  TEXT & OTHER GENERAL PAGE ELEMENTS
*******************************************************************/

.required {color: #ff0000}

p {margin: 10px 0}

hr {
	background: #646464;
	border: none;
	height: 1px;
	margin: 20px 0;
}

.photoborder {
	float: right;
	margin: 0px 0 20px 20px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
	line-height: 0;
}

.photoborder.left {
	float: left;
	margin: 0 20px 20px 0;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

.photoborder.noshadow {
	box-shadow: none;
	margin: 0;
}

blockquote {
	padding-left: 5px;
	margin-left: 0;
	font-style: italic;
}

label {
	font-weight: normal;
}

li {
	/* list-style-position: inside; */
}

dt {
	font-weight: bold;
}

ul {
	padding-left: 20px;
}

ul ul {
	padding-left: 40px;
}

img {
	max-width: 100%;
}

/*******************************************************************
  GLOBAL LINKS
*******************************************************************/

a:link, a:visited {
	color: #c6093b;
	text-decoration: none;
}

a:hover {
	color: #616161;
	text-decoration: underline;
}

/* buttons */
#content a:link.button,
#content a:visited.button,
#content strong em a:link,
#content strong em a:visited,
#content em strong a:link,
#content em strong a:visited {
	display: inline-block;
	padding: 7px 15px;
	background: #c6093b; 
	font: 16px 'Open Sans', Myriad Pro, sans-serif;
	color: #fff;
	border-radius: 2px;
}

#content a.button:hover,
#content strong em a:hover,
#content em strong a:hover {
	background: #fff; 
	color: #c6093b;
	box-shadow:  inset 0px 1px 1px 0px rgba(255,255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0, 0, 0.2);
	text-decoration: none;
}

/*******************************************************************
	BOOKING ENGINE
*******************************************************************/

#booking {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0;
	text-align: right;
}

#booking .inputs {
	display: inline-block;
}

#booking .container {
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
	font-size: 17px;
}

#booking .arrival.container {
	margin-left: 0;
}

#booking input[type="text"]{
	max-width: 105px;
	height: 35px;
	padding: 0 5px;
	border-style: none;
	background: #fff;
	font-size: 12px;
	color: #36393d;
	vertical-align: middle;
	border-radius: 2px;
	text-transform: uppercase;
	box-shadow: inset 0px 1px 1px 0px rgba(0,0, 0, 0.5);
}

#booking .calendar {
	vertical-align: middle;
	margin: 0 5px;
}

#booking #submit_booking {
	display: inline-block;
	padding: 0px 30px;
	background: #c6093b; 
	font: 600 15px/35px Open Sans, Myriad Pro, Arial, sans-serif;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

#booking #submit_booking:hover {
	background: #fff; 
	color: #c6093b;
	box-shadow:  inset 0px 1px 1px 0px rgba(255,255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0, 0, 0.2);
	text-decoration: none;
}

#ui-datepicker-div {
	z-index: 99999 !important;
}
/*******************************************************************
  GALLERY
*******************************************************************/

.theme-default .pagination .prev {
    background-image: url("../images/thumbnail-arrows.png") !important;
    left: 0 !important;
    z-index: 1000;
}

.theme-default .pagination .next {
    background-image: url("../images/thumbnail-arrows.png") !important;
    right: 0 !important;
    z-index: 10000;
}

/*******************************************************************
  HEADER
*******************************************************************/

header {
	position: relative;
	z-index: 1000;
	background: none;
}

header > .stack {
	padding: 15px 10px;
	margin: 0 auto;
	max-width: 1024px;
}

header .logo a {
	display: block;
	max-width: 355px;
	height: 44px;
	background: url(../images/logo.png) no-repeat;
	background-size: contain;
	text-indent: -9999px;
}

/*******************************************************************
  NAVIGATION
*******************************************************************/

#navigation {
	border-top: 1px solid rgba(255,255,255,0.25);
	padding: 0;
	background: #313131;
	list-style-type: none;
	font-size: 0;
	text-align: center;
}

#navigation li {
	position: relative;
	display: inline-block;
	white-space: nowrap;
}

#navigation a:link, #navigation a:visited {
	display: inline-block;
	padding: 0 25px;
	font: 300 17px/45px Open Sans, Myriad Pro, sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

#navigation a:hover, #navigation > li:hover > a {
	color: #c6093b;
	background: #fff;
	text-decoration: none;
	text-shadow: none;
}

#navigation ul {
	min-width: 100%;
	background: #fff;
	display: none;
	position: absolute;
	right: 0;
	padding-left: 0;
	z-index: 1000;
	text-align: right;

	box-shadow: 0 3px 3px rgba(0,0,0,0.25);
}

#navigation > li:hover > ul {
	display: block;
}

#navigation li li {
	display: block;
	border-right: none;
}

#navigation ul a:link, #navigation ul a:visited {
	display: block;
	height: auto;
	padding: 8px 15px;
	background: #fff;
	color: #c6093b;
	text-shadow: none;
}

#navigation ul a:hover {
	background: #c6093b;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

/*******************************************************************
	MOBILE NAVIGATION
*******************************************************************/

#mobile-navigation {
	display: none;
	position: fixed;
	z-index: 10000000000;
	width: 100%;
	top: 0;
	left: 0;
	font-family: Open Sans, Myriad Pro, Arial, sans-serif;
	text-transform: uppercase;
}

#mobile-navigation > ul {
	position: absolute;
	top: 34px;
	right: 10px;
	height: 0;
	overflow: hidden;
	margin: 0;
}

/* Mobile menu display class, expands to full height*/
#mobile-navigation .show {
	height:auto;
}

/* Menu button*/
#mobile-navigation .menu {
	position: absolute;
	top: 0px;
	right: 10px;
	padding: 10px 20px;
	background: #fff;
	font-size: 14px;
	line-height: 14px;
	color: #c6093b;
	cursor: pointer;
}

#mobile-navigation .menu:hover {
	text-decoration: none;
	background: #c6093b;
	color: #fff;
}

#mobile-navigation  li {
	position: relative;
	min-width: 240px;
	padding: 0;
	margin: 0;
	background: #fff;
	list-style-type: none; 
	white-space: nowrap;
}

#mobile-navigation li a {
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding: 7px 10px 7px 20px;
	text-decoration: none;
	color: #c6093b;
}

#mobile-navigation a:hover {
	text-decoration: none;
	background: #c6093b;
	color: #fff;
}

/* Submenus*/
#mobile-navigation li .icon {		/* This icon displays to the right of a menu if it a dropdown*/
	position: absolute;
	display: block;
	right: 0px;
	top: 0;
	overflow: hidden;
	height: 35px;
	width: 40px;
	padding: 6px 30px 7px 10px;
	content: '/u+229E';
	font-family: "Icons";
	font-size: 1.5em;
	line-height:1;
	text-align: center;
}

#mobile-navigation li .icon:hover {
	color: #c6093b;
}

#mobile-navigation ul ul {
	display: block;
	height: 0;
	margin-left: 0;
	padding-left: 0;
	background: #c6093b;
}

#mobile-navigation li li a {
	padding-left: 40px;
	background: #c6093b;
	color: #fff;
}

/*******************************************************************
	CONTENT
*******************************************************************/
#content {
	padding: 20px 10px;
	background-color: #313131;
}

.homepage #content {
	padding: 100px 10px;
	background: none;
	line-height: 22px;
	text-align: center;
}

.homepage #content h1 {
	display: none;

}

.homepage #content .logo {
	max-width: 100%;
}

#content .stack  {
	max-width: 1000px;
	margin: 0 auto;
}

#content .news {
	margin-top: 5px;
	padding-left: 35px;
	/* background: url(../images/ico-ribbon.png) no-repeat top left; */
}

#content .news h2 {
	margin-top: 0;
}

#content .news ul {
	list-style-type: none;
	padding: 0;
}

#content .news li {
	margin: 10px 0;
}

#masthead {
	position: relative;
	width: 100%;
	height: 450px;
}

#masthead .stack {
	height: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

#masthead span {
	background: rgba(0, 0, 0, 0.5);
	bottom: 0;
	color: #FFFFFF;
	font: 700 23px Open Sans, Myriad Pro, Arial, sans-serif;
	letter-spacing: 1px;
	padding: 10px;
	position: absolute;
	right: 10px;
	text-shadow: 1px 1px 0px #000000;
	text-transform: uppercase;
}

/*******************************************************************
  SIDEBAR
*******************************************************************/

.sidebar {
	padding-left: 50px;
}

.sidebar ul {
	list-style-type: none;
}

.sidebar blockquote {
	font-style: normal;
	margin-right: 0;
}

.sidebar .quotes {
	background: url(../images/five-stars.png) no-repeat center top;
	border-bottom: 1px solid #646464;
	margin-bottom: 20px;
	padding: 20px 0 10px 0;
}

.sidebar .from {
	font: 600 18px Open Sans, Verdana, Arial, sans-serif;
	color: #c6093b;
}

.sidebar .more {
	text-align: center;
}

.sidebar #tripadvisor {
	border-bottom: 1px solid #646464;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.sidebar #CDSWIDCOE {
	margin: 0 auto;
}

.sidebar #extra {
	text-align: center;
}

.sidebar #extra img {
	background: #FFFFFF;
	border: 1px solid #646464;
	margin: 0 0 10px 0;
	padding: 3px;
}

/*******************************************************************
  FOOTER
*******************************************************************/

footer {
	position: absolute;
	z-index: 1000;
	bottom: 0;
	width: 100%;
	min-height: 75px;
	padding: 10px 10px 10px 10px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,1), 2px 2px 2px rgba(0,0,0,0.75);
	font: 15px/16px Open Sans, Myriad Pro, Arial, sans-serif;
	text-align: right;
	text-transform: uppercase;
}

footer a:link, footer a:visited {
	color: #fff;
}

footer a:hover {
	color: #fff;
	text-decoration: underline;
}

footer h4 {
	color: #fff;
}

footer p {
	margin: 5px 0;
}

/*******************************************************************
  MEDIA QUERIES
*******************************************************************/


@media handheld, only screen and (max-width: 1024px) {
	#masthead .stack {
		display: none;
	}
	

	header .logo a {
		margin: 0 auto;
	}
	

	#navigation {
		display: none;
	}

	#mobile-navigation {
		display: block;
	}

	#booking {
		position: relative;
		top: auto;
		right: auto;
		text-align: center;
		padding: 10px 0;
	}

	#booking .submit {
		max-width: 200px;
	}

	#booking .rewards.container {
		display: none;
	}


	#social {
		display: none;
	}

	#masthead {
		height: 300px;
	}

	.homepage #content {
		padding: 75px 0;
	}

	#bottomBarLET {
		display: none;
	}

	footer {
		text-align: center;
	}
}

@media handheld, only screen and (max-width: 520px) {
	#booking .calendar {
		display: none;
	}


	#booking input[type="text"] {
		max-width: 80px
	}

#booking #submit_booking {
		font-size: 14px;
		padding: 0px 15px;
	}

	
	#booking .departure.container,
	#booking .submit.container {
		margin-left: 5px;
	}
}

@media handheld, only screen and (max-width: 420px) {
	#masthead {
		height: 250px;
	}

	header {
		padding-top: 25px;
	}
}