/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline;  }
table { border-collapse:collapse; border-spacing:0; }
input, select { vertical-align:middle; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; }
a:hover, a:active { outline: none; }
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline;}
.ie6 input { vertical-align: text-bottom; }
label, input[type=button], input[type=submit], button { cursor: pointer; }
button { width: auto; overflow: visible; }
a {	margin:0; padding:0; font-size:100%; vertical-align:baseline; outline:none;	cursor:pointer; outline-width:0px; zoom:1; }
.clear{ float:left;clear:both; width:100%; display:block;}
.noDisplay { display:none; visibility:hidden;}
form{ display:inline;}
/*------WIDGET LANGUAGE---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#languages {
	position: static;
	clear: left;
	padding: 0px;
}
#languages.hideonload {
	display: none;
}
#pulsarflaglist {
	background-color: transparent;
	overflow: hidden;
	padding: 10px;
	padding-bottom: 20px;
	float: left;
	clear: both;
}
ul#flag_menu {
	*padding-bottom: 15px;
	margin: 0px;
	margin-left: 15px;
	overflow: hidden;
}
ul#flag_menu li {
	list-style: none;
	float: left;
	margin: 0px 12px 24px 12px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #f2f2f2; /* fallback color */
	border: 1px #e6e6e6 solid;
	padding: 5px;
}
ul#flag_menu a {
	width: 100px;
	height: 24px;
	padding: 0px 0px 0px 35px;
	line-height: auto;
	display: block;
	line-height: 24px;
	font-size: 14px;
	text-decoration: none;
	color: #888888;
	text-shadow: 0 1px 0 #ffffff;
}
ul#flag_menu a:hover {
	color: #444444;
}
.big_flag_en {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left 0 no-repeat;
}
.big_flag_fr {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -25px no-repeat;
}
.big_flag_it {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -50px no-repeat;
}
.big_flag_ja {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -75px no-repeat;
}
.big_flag_es {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -100px no-repeat;
}
.big_flag_pt {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -125px no-repeat;
}

.big_flag_de {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -150px no-repeat;
}
.big_flag_sv {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -175px no-repeat;
}
.big_flag_da {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -200px no-repeat;
}
.big_flag_ru {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -225px no-repeat;
}
.big_flag_no {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -250px no-repeat;
}
.big_flag_zh-tw {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -275px no-repeat;
}
.big_flag_zh-cn {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -275px no-repeat;
}
.big_flag_nl {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -300px no-repeat;
}
.big_flag_po {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -325px no-repeat;
}
.big_flag_he {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_2.png") left -350px no-repeat;
}

.big_flag_ca {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -375px no-repeat;
}
.big_flag_ar {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -400px no-repeat;
}
.big_flag_th {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -425px no-repeat;
}
.big_flag_cs {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -450px no-repeat;
}
.big_flag_tr {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -473px no-repeat;
}

.big_flag_fi {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -500px no-repeat;
}
.big_flag_is {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_0_7.png") left -524px no-repeat;
}
.big_flag_ko {
	background: url("http://novablink.com/commons/nova_languages/img/flags_24_ko.png") left 0 no-repeat;
}


/*----------NOVA HTML SLIDER-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.novahtmlslider_controls .controlleft 	{display:none; text-indent:-999999px;}

.novahtmlslider_controls .controlright  {display:none;text-indent:-999999px;} 

.novahtmlslider_container{
	position:relative;
	top:0;
	left:0;
}

.novahtmlslider_controls{
	display:none;
	position:absolute;	
	z-index:50;
	left:0px;
	top:49%;
	width:100%;
}

.novaslider{
	width:100%;
	height:100%;
	position:relative;
}

.novaslider_customhtml{
	position:absolute;
	top:0%;
	left:0%;
}

.novaslider_bgimagediv img{
	position:absolute;
	top:0;
	left:0;
}

/*IE Animation performance trick for the slider*/
.novaslider{
	filter:progid:DXImageTransform.Microsoft.MotionBlur(strength=0, direction=0);	
}
.novahtmlslider_container{-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	-o-user-select: none;	user-select: none;}
 

/*----------NOVA BOX-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.novaboxcontrols{ display:none;}


.novabox_caption{																								
	position: absolute;
	left: 15px;
	bottom : 15px;
	color:white;
	background:url("http://novablink.com/commons/nova_box/img/caption_bg.png") ;
}
.novabox_captiontext{
	font:11px Arial;
	padding: 10px;
	color:#c1c1c1;
}	

.novabox_imagepreloader{
	background:url("http://novablink.com/commons/nova_box/img/ajax-loader.gif") center center no-repeat;	
	position:absolute;
	display:none;
	top: 0;
	left: 0;
	width:20%;
	height:20%;
	
}
.novabox_close{
	position:absolute;
	top : 15px;
	right : 15px;
	width:96px;	
	height:96px;
	cursor:pointer;
	background:url("http://novablink.com/commons/nova_box/img/close.png") no-repeat right top;
	
}
.novabox_item_next{
		background:url("http://novablink.com/commons/nova_box/img/right-cursor.png") no-repeat right center;
		width:38px;
		height:38px;
		position:absolute;
		top:-29px;
		right:10px;
	}

.novabox_item_prev{
		background:url("http://novablink.com/commons/nova_box/img/left-cursor.png") no-repeat right center;
		width:38px;
		height:38px;
		position:absolute;
		top:-29px;
		left:10px;
	}
	


.novaboxoverlay{
	background:#000000;
	display : none;
	position :absolute;
	top:0px;
	left:0px;
	z-index:10000;
	
}

.novabox_wrapper{
	position: absolute;
	display: none;
	z-index:10001;
	-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	-o-user-select: none;	user-select: none;
	overflow:hidden;
}


.novabox_image{
	align : center;
	overflow:hidden;
}

.novabox_image img{
	display : block;
	position : absolute;
	-ms-interpolation-mode: bicubic;
}

.novabox_contain_prev{
	position:absolute;
	left:0px;
	top:0px;
	width:50%;
	height:100%;
	background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAAAAAA6fptVAAAACXZwQWcAAAABAAAAAQDHlV/tAAAAAnRSTlMA/1uRIrUAAAAKSURBVAjXY/gPAAEBAQAbtu5WAAAAAElFTkSuQmCC');
	*background-image:url("http://novablink.com/commons/nova_box/img/ie_onepixel.gif");
	cursor: url("http://novablink.com/commons/nova_box/img/left-cursor.png"),  url("http://novablink.com/commons/nova_box/img/left-cursor.cur"), pointer;

}
	/*contained in novabox_contain_prev*/
.novabox_wrapper_prev{
		position:relative;
		top:50%;
		
	}
.novabox_wrapper2_prev{
		position:relative;
		top:-50%;	
	}
	/*contained in novabox_wrapper_prev*/

.novabox_contain_next{
	/*will be automatically positioned and size on the right half of the pic*/
	position:absolute;
	left:50%;
	top:0px;
	width:50%;
	height:100%;
	background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAAAAAA6fptVAAAACXZwQWcAAAABAAAAAQDHlV/tAAAAAnRSTlMA/1uRIrUAAAAKSURBVAjXY/gPAAEBAQAbtu5WAAAAAElFTkSuQmCC');
	*background-image:url("http://novablink.com/commons/nova_box/img/ie_onepixel.gif");
	cursor: url("http://novablink.com/commons/nova_box/img/right-cursor.png"), url("http://novablink.com/commons/nova_box/img/right-cursor.cur"),  pointer;

}

/*contained in novabox_contain_next*/
.novabox_wrapper_next{
		position:relative;
		top:50%;
		text-align:right;
	}
.novabox_wrapper2_next{
		position:relative;
		text-align:right;
		top:-50%;	
	}
/*contained in novabox_wrapper_next*/
.novabox_image_captionposition{
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
}
.novabox_image_imageonly{
	position:absolute;
}
.novabox_image_viewportwidth{
	position:absolute;
	width:100%;
}
.novabox_image_viewportheight{
	position:absolute;
	height:100%;
}
.novabox_image_fullviewport{
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;	
}

/*GALLERY END ------------------------------------------------------------------------*/
/*----------NOVA MONTAGE-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.novaboxcontrols{ display:none;}



.mynovamontage_wrap {
	padding:0px 0px 0px 0px;
 	background-color:#000000;
	 
}

#mynovamontage a { 
	text-decoration:none; 
}

 
.novahover_overlay{
 	display:none;
	top:-1000px;	
	left:-1000px;
 	background:url('/_img/zoom_icon.png') 10px 10px no-repeat;
  	
}

.novahover_text_wrap{
 	display:none; 
 	top:0;
	left:0;
	width:100%;
	height:100%;
 	background:#000000;
  	overflow:hidden;
}

 
.novahover_text { 
	 
 
	color:#ddd; 
 	font-size:12px; 
  	line-height:normal; 
   	margin:13px 15px 12px 15px; 
    padding-left:40px;   
 }


/*
 * jQuery UI CSS Framework 1.8.17
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden { display: none; }
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
.ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
.ui-helper-clearfix:after { clear: both; }
.ui-helper-clearfix { zoom: 1; }
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and /_css/z_load/images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/*
 * jQuery UI CSS Framework 1.8.17
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=2px&bgColorHeader=cccccc&bgTextureHeader=01_flat.png&bgImgOpacityHeader=100&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=100&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=01_flat.png&bgImgOpacityDefault=100&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=01_flat.png&bgImgOpacityHover=100&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=01_flat.png&bgImgOpacityActive=100&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=100&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=01_flat.png&bgImgOpacityError=100&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=000000&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=80&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
 */



/* Component containers
----------------------------------*/
.ui-widget { font-family: Arial,sans-serif; font-size: 11px; }
.ui-widget .ui-widget { font-size: 11px; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 11px; }
.ui-widget-content { border: 0px solid #c2c2c2; background: #FFFFFF; color: #444444; }
.ui-widget-content a { color: #222222; }
.ui-widget-header { border: 0px solid #aaaaaa; background: #444444; color: #FFFFFF; font-weight: bold;  font-size: 14px;}
.ui-widget-header a { color: #999999; }

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default
{ border: 2px solid #fbfbfb; background: #AFCFAA; font-weight: normal; color: #ffffff; text-align:center; }

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited
{ color: #ffffff; text-decoration: none; font-weight:normal;-webkit-transition:all .2s;-moz-transition:all .2s; transition:all .2s; }

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight
{border: 2px solid #fbfbfb; background: #AFCFAA ; color: #fbfbfb; }

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus
{background-color:#444444; color: #fbfbfb; }

.ui-state-hover a,
.ui-state-hover a:hover
{ color: #fbfbfb;  background: #161616; text-decoration: none;  }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active
{ background: #AFCFAA !important; color: #fbfbfb; }

a.ui-state-active:hover
{ color: #fbfbfb !important;;  background: #161616 !important;; text-decoration: none;  }

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited
{ color: #212121; text-decoration: none;}

.ui-widget :active { outline: none; }


/* Interaction Cues
----------------------------------*/


.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec; color: #cd0a0a; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary,  .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35;  background-image: none; }

/* Icons
----------------------------------*/

/* states and /_css/z_load/images */
.ui-icon { width: 16px; height: 16px; background-image: url("http://novablink.com/commons/jquery/img/ui-icons_222222_256x240.png"); }


/* positioning */
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-off { background-position: -96px -144px; }
.ui-icon-radio-on { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 2px; -webkit-border-top-left-radius: 2px; -khtml-border-top-left-radius: 2px; border-top-left-radius: 2px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 2px; -webkit-border-top-right-radius: 2px; -khtml-border-top-right-radius: 2px; border-top-right-radius: 2px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 2px; -webkit-border-bottom-left-radius: 2px; -khtml-border-bottom-left-radius: 2px; border-bottom-left-radius: 2px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 2px; -webkit-border-bottom-right-radius: 2px; -khtml-border-bottom-right-radius: 2px; border-bottom-right-radius: 2px; }

/* Overlays */
.ui-widget-overlay { background: #000000 ; opacity: .80;filter:Alpha(Opacity=80); }
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url("http://novablink.com/commons/jquery/img/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*
 * jQuery UI Dialog 1.8.17
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog { position: absolute; padding: 0px; width: 300px;   }
.ui-dialog .ui-dialog-titlebar { padding:10px; position: relative; height:20px;   }
.ui-dialog .ui-dialog-title { float: left; margin:0; display:none;}
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: 0px; top: 0px; width: 19px;  height: 18px; padding: 10px;}
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 10px; background:transparent!important;   }
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding:0px; background: none; overflow:auto; zoom: 1; }
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
.ui-draggable .ui-dialog-titlebar { cursor: move; }
.ui-dialog .ui-widget-header { background: transparent;}


/*
 * jQuery UI Datepicker 1.8.17
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
	width: 510px !important;
	height:270px;
	background:#fbfbfb;
	padding: 12px;
	display: none;
	font-size:11px;
	z-index:99000 !important;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-border-radius:2px 2px 2px 2px;
	-moz-border-radius:2px 2px 2px 2px;
	border-radius:2px 2px 2px 2px;
	-webkit-box-shadow: 0 0px 5px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0px 5px rgba(0,0,0,0.3);
	box-shadow: 0 0px 5px rgba(0,0,0,0.3);
	border:1px solid #ddd\9;
}

.ui-datepicker-arrow {background:url("http://novablink.com/commons/jquery/img/cal_arrow.png") 0px 0px no-repeat; width:20px; height:40px; left:-20px; top:122px; position:absolute; }
.ui-datepicker .ui-datepicker-header { position:relative; padding:0px; height:36px; margin-bottom:5px; }
.ui-datepicker .ui-icon { background: url("http://novablink.com/commons/jquery/img/cal_months_nav.png") 0 0 no-repeat;}
.ui-datepicker .ui-icon-circle-triangle-e {background-position: 0px 0px; }
.ui-datepicker .ui-icon-circle-triangle-w {background-position: 0px -50px; }




.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 4px; width: 28px; height: 28px; -webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	-o-user-select: none;	user-select: none;}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 4px; background:transparent; }
.ui-datepicker .ui-datepicker-prev { left:2px; padding-left:5px; }
.ui-datepicker .ui-datepicker-next { right:2px;padding-right:5px;}
.ui-datepicker .ui-datepicker-prev-hover { left:2px;  }
.ui-datepicker .ui-datepicker-next-hover { right:2px; }
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -6px; height: 28px; top: 0px;  }
.ui-datepicker .ui-datepicker-title { margin: 0 ; line-height: normal; text-align: center; font-size:14px; line-height:26pt; }
.ui-datepicker .ui-datepicker-title select { margin:1px 0; }
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year { width: 49%; font-size:14px;}
.ui-datepicker table {width: 100%;   border-collapse: collapse; margin:0 0 0 0; }

.ui-datepicker th { padding: 3px 3px; text-align: center; font-weight: bold; border: 0;  }
.ui-datepicker td { border: 0; padding: 0px 0; margin:0px; vertical-align:center; }

.ui-datepicker td span, .ui-datepicker td a { display: block; height:100%; padding:3px 0px; text-align: center; text-decoration: none; }
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; width:100%; height:70px; overflow:hidden; margin: 0 0 0 0; padding:0px; border-top:0; border-left: 0; border-right: 0; border-bottom: 0; position:absolute; bottom:1px; left:1px; }
.ui-datepicker .ui-datepicker-buttonpane button { width:100%; height:45px; background:#f4f4f4; margin:0; cursor: pointer; padding:0; display:block; width:0 auto; overflow:visible; }
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:100%; margin:0;  }
.ui-datepicker-multi .ui-datepicker-group-first { border-right:1px solid #e8e8e8; padding-right:5px;}

.ui-datepicker-multi .ui-datepicker-group table thead{ height:36px;  color:#acacac;}
.ui-datepicker-multi .ui-datepicker-group table tbody{ border-top:10px solid #fbfbfb;}
.ui-datepicker-multi .ui-datepicker-calendar { }
.ui-datepicker-multi-2 .ui-datepicker-group { width:249px; }
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
.ui-datepicker-multi .ui-datepicker-group-last {padding-left:5px;}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

.ui-datepicker-current { display:none !important;opacity:1;filter: Alpha(Opacity=1);}
td.ui-state-datestart span.ui-state-default { background: #161616 !important ; color: #ffffff !important; }
td.ui-state-datestart { opacity:1 !important;filter: none!important;}

td.ui-state-datefull {background: #D9ACB1 !important; opacity:1 !important;filter: none !important;}
td.ui-state-datefull span, td.ui-state-datefull a {background: #D9ACB1 !important;}

td.ui-state-datefull-disabled {background: #AFCFAA !important;}


/* RTL support */
.ui-datepicker-rtl { direction: rtl; }
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:0px; }
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:0px; }

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 200px; /*must have*/
    height: 200px; /*must have*/
}

.ncms, .ui-widget-content{
 -webkit-box-sizing: initial !important;
 -moz-box-sizing: initial !important;
 box-sizing: initial !important;
}
/* ========================================================================== */
/* FONTS
/* ========================================================================== */

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: auto;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
.icon-plus:before { content: '\2b'; } /* '+' */
.icon-mail:before { content: '\2709'; } /* '✉' */
.icon-export:before { content: '\e715'; } /* '' */
.icon-location:before { content: '\e724'; } /* '' */
.icon-share:before { content: '\e73c'; } /* '' */
.icon-down-open:before { content: '\e800'; } /* '' */
.icon-left-open:before { content: '\e801'; } /* '' */
.icon-right-open:before { content: '\e802'; } /* '' */
.icon-up-open:before { content: '\e803'; } /* '' */
.icon-facebook:before { content: '\e804'; } /* '' */
.icon-twitter:before { content: '\e805'; } /* '' */
.icon-gplus:before { content: '\e806'; } /* '' */
.icon-down-open-mini:before { content: '\e807'; } /* '' */
.icon-globe:before { content: '\e808'; } /* '' */
.icon-left-open-mini:before { content: '\e809'; } /* '' */
.icon-right-open-mini:before { content: '\e80a'; } /* '' */
.icon-up-open-mini:before { content: '\e80b'; } /* '' */
.icon-camera:before { content: '\e80c'; } /* '' */
.icon-down-open-big:before { content: '\e80d'; } /* '' */
.icon-left-open-big:before { content: '\e80e'; } /* '' */
.icon-right-open-big:before { content: '\e80f'; } /* '' */
.icon-up-open-big:before { content: '\e810'; } /* '' */
.icon-down-dir:before { content: '\e811'; } /* '' */
.icon-left-dir:before { content: '\e812'; } /* '' */
.icon-dot:before { content: '\e813'; } /* '' */
.icon-right-dir:before { content: '\e814'; } /* '' */
.icon-up-dir:before { content: '\e815'; } /* '' */
.icon-forward:before { content: '\e816'; } /* '' */
.icon-flight:before { content: '\e817'; } /* '' */
.icon-paper-plane:before { content: '\e818'; } /* '' */
.icon-tag:before { content: '\e819'; } /* '' */
.icon-instagram:before { content: '\e81a'; } /* '' */
.icon-cancel:before { content: '\e81b'; } /* '' */
.icon-minus:before { content: '\e81c'; } /* '' */
.icon-picture:before { content: '\e81d'; } /* '' */
.icon-phone:before { content: '\e81e'; } /* '' */
.icon-menu:before { content: '\e81f'; } /* '' */
.icon-search:before { content: '\e820'; } /* '' */
.icon-newspaper:before { content: '\e821'; } /* '' */
.icon-doc-text-inv:before { content: '\e822'; } /* '' */
.icon-download:before { content: '\e823'; } /* '' */
.icon-down-circled:before { content: '\e824'; } /* '' */
.icon-right:before { content: '\e825'; } /* '' */
.icon-facebook-squared:before { content: '\e826'; } /* '' */
.icon-youtube-play:before { content: '\e827'; } /* '' */
.icon-doc-text:before { content: '\e828'; } /* '' */
.icon-pinterest:before { content: '\e829'; } /* '' */
.icon-calendar:before { content: '\e82a'; } /* '' */
.icon-youtube:before { content: '\e82b'; } /* '' */
.icon-camera-1:before { content: '\e82c'; } /* '' */
.icon-chat:before { content: '\e82d'; } /* '' */
.icon-home:before { content: '\e82e'; } /* '' */
.icon-check:before { content: '\e82f'; } /* '' */
.icon-user:before { content: '\e830'; } /* '' */
.icon-soundcloud:before { content: '\e831'; } /* '' */
.icon-users:before { content: '\e832'; } /* '' */
.icon-flag:before { content: '\e833'; } /* '' */
.icon-star:before { content: '\e834'; } /* '' */
.icon-calendar-1:before { content: '\e835'; } /* '' */
.icon-gift-1:before { content: '\e838'; } /* '' */
.icon-linkedin:before { content: '\e83c'; } /* '' */
.icon-food:before { content: '\f0f5'; } /* '' */
.icon-bed-2:before { content: '\f236'; } /* '' */
.icon-tripadvisor:before { content: '\f262'; } /* '' */

/* ========================================================================== */
/* TYPOGRAPHY
/* ========================================================================== */

body{
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    margin-bottom: 15px;
    font:normal 23px/1.3 Georgia, serif;
    color: #222;
}

.centered{
    text-align: center;
}

a           { text-decoration: none; }

a:link,      
a:visited,
a:active    { color: #666; }
a:hover     { color: #666; }

a.cms-editable{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

a.cms-editable[editablelink="yes"]{
    height: 40px;
    padding: 5px 10px;
    background-color: #f00;
    color: #fff;
    text-indent: 0;
    top: auto;
    bottom: 0;
    z-index: 100;
}

a.cms-editable[editablelink="yes"]:before{
    font-family: 'fontello';
    content: "\e715";
    margin-right: 10px;
}

p { 
    margin: 0 0 10px 0; 
}

li, ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    list-style-position: inside;
}

/* ========================================================================== */
/* GENERAL LAYOUT
/* ========================================================================== */

body {
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #fff;
}  

img { 
    display: block; 
}

.logo img,
.post-img img{
    width: 100%;
    height: auto;
    float: left;
}

.wrapper {
    width: calc(100% - 40px);
    margin: 0 auto;
    position: relative;
    overflow: hidden;       
}

.p-wrap {
    clear: both;
}

#ggmap{
    height: 300px;
    height: calc( 100vh - 75px );
}

.video-frame{
    width: 100%;
    height: 50vw;
    max-height: 600px;
}

/* ========================================================================== */
/* CLEAR ME
/* ========================================================================== */

.mobile-nav,
.footer-main,
.main{
    clear: both;
}

/* ========================================================================== */
/* BOX SIZING
/* ========================================================================== */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/*resets box sizing for google map elements*/
#ggmap div{
    -webkit-box-sizing: initial !important;
    -moz-box-sizing: initial !important;
    box-sizing: initial !important;
}

/* ========================================================================== */
/* HEADER
/* ========================================================================== */

.header-main{ 
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    background-color: #fff;
    border-bottom: 1px solid #e1e1e1;
}

.header-main .wrapper{
    height: 75px;
}

.header-links{
    display: none;
}

/* ========================================================================== */
/* BANNER
/* ========================================================================== */

.page-banner{
    position: relative;
    width: 100%;
    float: left;
    overflow: hidden;
    z-index: 1;
}

#home .page-banner{
    display: none;
}

/* ========================================================================== */
/* LOGO
/* ========================================================================== */

.logo {
    display: inline-block;
    position: absolute; 
    left: 52%;
    top: 50%;
    width: 150px;
    height: auto;
    z-index: 999;

    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.logo-mobile{
    display: inline-block;
}

.menu,
.logo-desktop{
    display: none;
}

.hide-mobile{
    display: none !important;
}

/* ========================================================================== */
/* MOBILE INSIDE PAGES NAVIGATION
/* ========================================================================== */

.navigation-secondary{
    position: fixed;
    top: 75px;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 40px;
    background-color: rgba(0,0,0,0.7);
    display: none;
}

.navigation-secondary-wrapper{
    max-width: 1200px;
    margin: 0 auto;

    overflow-x:auto;
    overflow-y:hidden; 
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; 
}

.submenu{
    width: auto;
    display: none;
    padding-left: 10px;
}

.submenu li,
.submenu a,
.submenu{
    height: 40px;
}

.submenu li{
    display: inline;
}

.submenu a{
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
    line-height: 40px;
    color: #fff !important;
    text-transform: uppercase;
}

/* ========================================================================== */
/* SUBNAV
/* ========================================================================== */

.subnav{
    display: none;
    position: absolute;
}

/* ========================================================================== */
/* SLIDESHOW
/* ========================================================================== */

.slideshow,
#slideshow,
.myslider {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
}

.myslider { 
    z-index: 1;
}

.slideshow,
#slideshow {
    height: 64vw;
    z-index: 0;
}

.novaslider img {
    position: absolute;
    left: -2000%;
}

.myslider,
.slideshow-banner{
    height: 100% !important;
}

/* ========================================================================== */
/* LAYOUT
/* ========================================================================== */

.main {
    clear: both;
    margin-top: 75px;
}

.home-content{
    width: 100%;
    clear: both;
    display: none;
    overflow: hidden;
    float: left;
}

/* ========================================================================== */
/* POST
/* ========================================================================== */
.post-repeat .inner,
.post {
    width: 100%;
    position: relative;
    overflow: hidden;  
}

.post {
    margin: 0 auto;
}

.main:after,
.post:after {
  content: "";
  display: table;
  clear: both;
}

.post-repeat{
    padding: 20px;
}

.post-left,
.post-right,
.post-content,
.post-img{
    position: relative;
    overflow: hidden;
}

.post-left,
.post-img{
    margin-bottom: 30px;
}

.post .btn{
    clear: both;
}

/* ========================================================================== */
/* LISTS
/* ========================================================================== */

.address {
    float: left;
    margin-bottom: 30px;
}

.address,
.address li{
    width: 100%;
    overflow: hidden;
}

/* ========================================================================== */
/* ROOMS ELEMENTS
/* ========================================================================== */

.img-hover { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/_img/zoom-icon.png') center center no-repeat;
    opacity: 0;
}

.img-hover.hovered{
    opacity: 1;
}

.room-basic-info {
    float: left;
    clear: both;
    margin-bottom: 20px;
}

.room-basic-info li {
    overflow: hidden;
    line-height: 25px;
}

.noDisplay,
.show-less {
    display: none;
}

a.read-more,
.yesAppear {
    display: inline-block;
}

a.read-more,
.more-content{
    clear: both;
}

a.read-more {
    float: left;
    margin-top: 20px;
}

.more-content {
    overflow: hidden;
    padding: 20px 0 0 0;
}

/* ========================================================================== */
/* ALT LIST
/* ========================================================================== */

.alt-list {
    clear: both;
    margin-bottom: 10px;
    margin-left: 18px;
}

.alt-list.reset {
    margin-bottom: 20px;
    margin-left: 0;
    margin-top: 30px;
}

.alt-list li{
    list-style: disc outside none;
    padding-left: 0;
    line-height: 1.5;
    margin-bottom: 8px;
}

.alt-list.reset li{
    list-style: none;
    padding: 5px 15px;  
    margin-bottom: 0;
}

.alt-list li:nth-child(odd) { 
    background-color: #transparent;
}

/* ========================================================================== */
/* ACCORDION
/* ========================================================================== */

.accordion-list li,
.accordion-list,
.accordion-info,
.accordion li,
.accordion{
    width: 100%;
    float: left;
    overflow: hidden;
}

.accordion > li{
    position: relative;
    padding: 22px 50px 20px 15px;
    border-top: 1px solid #d9d9d9;
}

.accordion-title{
    font-size: 16px;
    line-height: 1;
    color: #595959;
    text-transform: uppercase;
    margin-bottom: 0;
}

.accordion-icon{
    position: absolute;
    top: 20px;
    right: 10px;
    width: 20px;
    height: 20px;
}

.accordion-icon:before{
    content: "\2b";
    font-family: 'fontello';
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: #f4c22e;
}

.accordion > li.open .accordion-icon:before{
    content: "\e81c";
    color: #191919;
}

.accordion-list{
    font-size: 16px;
    color: #2d2d2d;
}

/* ========================================================================== */
/* MAIN FOOTER
/* ========================================================================== */
.footer-main,
.footer-main .wrapper{
    overflow: hidden;
}

.footer-main{
    position: relative;
    padding: 0;
    z-index: 1;
}

a.footer-btn{
    display: inline-block;
    width: 100%;
    float: left;
    text-align: center;
}

#home a.footer-btn{
    display: none;
}

.footer-top,
.footer-bottom{
    width: 100%;
    float: left;
    display: none;
    overflow: hidden;
}

/* ========================================================================== */
/* CONTACT FORM
/* ========================================================================== */

.email-wrap {
    width: 100%;
    overflow: hidden;
    text-align: left;
}

#myform {
    display: block;
}

.form-message,
#myform input,
#myform input:focus{
    margin-bottom: 15px;
    padding: 15px;
    width: 100%;
    outline: none;
    border: 1px solid #e1e1e1;
    background-color: #f2f2f2;
    color: #666;
    font-size: 12px;
    cursor: pointer;

    border-radius: 0;

    -moz-box-shadow: none; 
    -webkit-box-shadow: none; 
    box-shadow: none;

    -webkit-appearance: none;
}

#mysubmit {
    float: left;
    margin-top: 0;
    margin-right: 0;
    cursor: pointer;
}

.form-message {
    overflow: auto;
    padding: 10px;
    height: 270px;
}

.novaformprogress {
    position: absolute;
    display: none;
    background: url('http://novablink.com/commons/nova_form/pics/sendprogress2C3C3C3.gif') #C3C3C3 no-repeat center center;
    opacity: .8;
    filter: Alpha(opacity=80);
    -moz-opacity: .8;
}

.novaformconfirm { display: none; }

#myform input.error-form-highlight-field {
    background-color:#efe0e0 !important;
    border: 1px solid #FF6666 !important;
}

#myform select.error-form-highlight-field {
    border: 1px solid #FF6666 !important;
}

select,
textarea,
input {
    font-size: initial !important;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

/* ========================================================================== */
/* LANGUAGE WIDGET
/* ========================================================================== */

a.lang-btn {
    position: relative;
    float: left;
    width: auto;
    height: 14px;
    display: inline-block;  
    padding: 0 0 0 22px;
    z-index: 999;
    font-size: inherit;
    line-height: 1;
}

.lang-btn:hover{
    color: #fff;
}

.sidebar-info .lang-btn{
    display: inline-block;
    width: auto;
    height: auto;
}

.lang-btn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;

    opacity: 0.8;
    background: url("/_img/flags_14_circles_updated.png") left  0  no-repeat;
}

.lang-btn:hover:before{
    opacity: 1;
}

/*FLAGS*/
body.en .lang-btn:before {
    background-position: left 0;
}

body.fr .lang-btn:before {
    background-position: left -15px;
}

body.it .lang-btn:before {
    background-position: left -30px;
}

body.ja .lang-btn:before {
    background-position: left -45px;
}

body.es .lang-btn:before {
    background-position: left -60px;
}

body.pt .lang-btn:before {
    background-position: left -75px;
}

body.de .lang-btn:before {
    background-position: left -90px;
}

body.sv .lang-btn:before {
    background-position: left -105px;
}

body.da .lang-btn:before {
    background-position: left -120px;
}

body.ru .lang-btn:before {
    background-position: left -135px;
}

body.no .lang-btn:before {
    background-position: left -150px;
}

body.zh-tw .lang-btn:before {
    background-position: left -165px;
}

body.zh-cn .lang-btn:before {
    background-position: left -165px;
}

body.nl .lang-btn:before {
    background-position: left -180px;
}

body.po .lang-btn:before {
    background-position: left -195px;
}

body.ar .lang-btn:before {
    background-position: left -285px;
}

body.el .lang-btn:before {
    background-position: left -300px;
}

/* ========================================================================== */
/* NOVABOX
/* ========================================================================== */

.novaboxcontrols {
    display:none;
}

.mynovamontage_wrap {
    width: 100%;
    padding:0px 0px 0 0px;
    background-color: transparent;
}

#mynovamontage a {
    text-decoration:none;
}

.novahover_overlay  {
    display:none;
    top:-1000px;
    left:-1000px;
    background: none;
    background-color: rgba(0,0,0,0.4);
}

.novahover_overlay:before{
    content: "\e820";
    font-family: 'fontello';
    
    font-size: 40px;
    color: #fff;

    position: absolute;
    top: 50%;
    left: 50%;

    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);

}

.novahover_text_wrap {
    display:none; 
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000000;
    overflow:hidden;
}

.novahover_text {
    color:#ddd;
    font-size:12px;
    line-height:normal;
    margin:13px 15px 12px 15px; 
    padding-left:40px;
}

/* NOVA BOX  */
.novabox_captiontext { 
    font-size: 12px;
    padding:10px 20px; 
    text-shadow:none; 
    color:#fbfbfb;
}

.novabox_caption{
    background: #161616;
}

/*Arrows on mobile for gallery*/
.novabox_contain_next,
.novabox_contain_prev{
        cursor: pointer;
}


.novabox_contain_next:before,
.novabox_contain_prev:before{
        color: #ffffff;
        display: inline-block;
        width: 1em;
        text-align: center;
        text-decoration: inherit;
        text-transform: none;
        font-weight: normal;
        font-style: normal;
        font-variant: normal;
        font-family: 'fontello';
        font-size: 40px;
        speak: none;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.novabox_contain_next:before {
        content: '\e80a';
        right: 0;
}
.novabox_contain_prev:before {
        content: '\e809';
        left: 0;
}

.novaboxoverlay{
    height: 200vh !important;
}

/* ========================================================================== */
/* JS LOADER
/* ========================================================================== */

#jsloader {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0px;
    zoom: 1;
    z-index: 0;

    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#gallery #jsloader{
    top: 220px;
    left: 51%;
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
}

#jsloader div {
    float: left;
    margin: 1px;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background-color: #701e1a;
    opacity: 0;
    zoom: 1;
}

/* ========================================================================== */
/* TABLE
/* ========================================================================== */

.box-table-a{
    width: 100%;
    border: 1px solid #d2d2d2;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    color: #6a6a6c;
}

.table-head{
    display: none;
}

.box-table-a td{
    display: none !important;
}

.box-table-a td.name-left{
    position: relative;
    display: table-cell !important;
    font-weight: bold;
    color:#6a6a6c;
    padding: 20px 10px 15px 15px;
}

.box-table-a tr{
    border-top: 1px solid #d2d2d2;
}

.box-table-a tr:nth-of-type(1){
    border-top: none;
}

.box-table-a td.name-left span{
    display: inline-block;
    height: 15px;
    line-height: 20px;
    float: left;
    white-space: nowrap;
}

.box-table-a td.name-left a:hover{
    color: #9e9683;
}

a.pdf-link{
    position: relative;
    float: right;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    
    color: #d2d2d2;
    text-indent: -9999px;

    background-color: transparent !important;
}

a.pdf-link:hover{
    color: #9e9683;
}

a.galeria-link{
    width: 30px;
}

a.pdf-link:before{
    font-family: 'fontello';
    font-size: 12px;
    font-weight: normal;
    

    text-align: center;
    line-height: 20px;

    text-indent: 0;

    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    color: #444;
}

a.pdf-link:before{
    content: '\e823';
    font-size: 15px;
}


/* ========================================================================== */
/* MAP PAGE
/* ========================================================================== */

ul.g_options li a {
    margin-right: 15px;
    color: #CCCCCC;
    font-size: 12px;
}

.gm-style a {
    color: #CCCCCC;
    font-size: 12px;
}

ul.g_hotelinfo_wrap{
    width: calc( 100% - 40px ) !important;
    max-width: 300px;
    padding-right: 40px !important;
    padding-bottom: 0 !important;
    margin-right: 40px;
    margin-bottom: 40px;
}

ul.g_options{
    display: none;
}

ul.g_options li a.g_showaround,
ul.g_options li a.g_getdirections {
    background: none;
    padding-left: 0;
    line-height: 20pt;
}

/* ========================================================================== */
/* CMS RESET
/* ========================================================================== */

.ncms p{
    margin-top: 0 !important;
}

.ncms, .ui-widget-content{
    -webkit-box-sizing: initial !important;
    -moz-box-sizing: initial !important;
    box-sizing: initial !important;
}

.ui-dialog .ui-dialog-titlebar-close{
    right: 10px !important;
    top: 10px !important
}

/* ========================================================================== */
/* HAMBURGER BTN - DO  NOT TOUCH
/* ========================================================================== */

.menu-btn{
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 999;
}

.menu-icon{
    display: inline-block;   
    width: 18px;
    height: 18px;
    position: relative;
    left: 50%;
    top: 50%;

    border-top: 2px solid #161616;
    border-bottom: 2px solid #161616;

    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.menu-icon:before{
    content: "";
    width: 100%;
    height: 2px;
    background-color: #161616;
}

.menu-btn,
.menu-icon:before{
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* ========================================================================== */
/* SIDEBAR NAVIGATION
/* ========================================================================== */
a.sidebar-btn,
.sidebar-menu ul a,
.sidebar-menu a,
.sidebar-info a,
.home-navigation a{
    font-family: Arial, sans-serif;
}

.sidebar-navigation{
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    z-index: 99999;
    width: 270px;
    height: 100%;
    padding: 0 40px 50px 40px;
    background-color: #161616;

    overflow: scroll;
    -webkit-overflow-scrolling: touch; 

    -webkit-transition: left 0.1s ease-in-out;  
    -moz-transition: left 0.1s ease-in-out; 
    -o-transition: left 0.1s ease-in-out;
    transition: left 0.1s ease-in-out;
}

.sidebar-navigation.open{
    left: 0;
}

.sidebar-menu,
.sidebar-menu li,
.sidebar-menu a{
    width: 100%;
    overflow: visible;
}

.sidebar-menu{
    float: left;
    margin-bottom: 45px;
}

.sidebar-menu > li{
    border-bottom: 1px solid #434343;
}

.sidebar-menu .spacer{
    display: none;
}

.sidebar-menu ul > li{
    border-top: 1px solid #434343;
}

.sidebar-menu a{
    position: relative;
    display: block;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;

    color: #fff !important;
}

a.sidebar-btn,
.sidebar-menu ul a,
.sidebar-menu a{
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.sidebar-menu ul a,
.sidebar-menu a{
    padding-top: 15px;
    padding-bottom: 15px;
}

a.sidebar-btn{
    line-height: 1;
    color: #fff !important;
}

.home-navigation a:hover,
.sidebar-info a:hover,
.sidebar-info a:active,
.sidebar-info a:focus,
.sidebar-menu a:active,
.sidebar-menu a:focus,
.sidebar-menu a:hover{
    color: #911a4a;
}

.sidebar-menu > li > a:before{
    content: "";
    width: 4px;
    height: 50px;
    position: absolute;
    top: 0;
    left: -40px;
    background-color: #911a4a;
}

.sidebar-menu .hideme{
    display: none !important;
}

.sidebar-navigation li.hide-desktop{
    display: inline-block;
}

.sidebar-menu ul{
    background-color: #262626;
    margin: 0;
}

.sidebar-menu ul a,
.home-navigation ul a{
    padding-left: 20px;
    padding-right: 10px;
}

a.close-menu{
    position: relative;
    right: -40px;
    float: right;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 20px;
}

a.close-menu:active,
a.close-menu:focus,
a.close-menu:hover{
    color: #9e9683;
}

a.sidebar-btn{
    display: inline-block;
    padding: 20px 5px 17px 5px;
    border: 2px solid #fff;
    margin-bottom: 15px;

    color: #fff; 
    text-align: center;
}

a.sidebar-btn.alt{
    background-color: #a99b68;
    border-color: #a99b68;
    margin-bottom: 15px;
}

a.sidebar-btn.alt.two {
    background-color: #a99b68;
    border-color: #a99b68;
    margin-bottom: 25px;
}

.sidebar-info li,
.sidebar-info{
    width: 100%;
    clear: both;
}

.sidebar-info li{
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-info a{
    font-size: 13px;
    line-height: 1;
    color: #939393; 
}

.sidebar-info li:first-child a{
    display: inline-block;
    width: 100%;
    font-size: 20px;
    line-height: 1;
}

.sidebar-info li:nth-of-type(4){
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #434343;
}

a.sidebar-btn,
.home-navigation a,
.home-navigation ul li,
.home-navigation ul,
.home-navigation{
    width: 100%;
}

.home-navigation{
    margin-bottom: 0;
}

.sidebar-menu > li > a:before,
.sidebar-menu ul,
.home-navigation a.drop-btn:before,
.home-navigation ul,
.home-navigation .spacer,
.hideme{
    display: none;
}

.home-navigation .hideme,
.home-navigation li.hide-desktop{
    display: block;
}

.home-navigation > li{
    border-bottom: 1px solid #d9d9d9;
}

.home-navigation li:first-child{
    padding-top: 1px;
}

.home-navigation a{
    position: relative;
    display: block;

    font-size: 14px;
    line-height: 1;
    color: #444 !important; 

    text-transform: uppercase;
}

.home-navigation a:after{
    content: "\e802";
    position: absolute;
    top: 50%;
    right: 10px;

    font-family: 'fontello';
    font-size: 14px;
    color: #777;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-navigation a.drop-btn.open:after{
    content: "\e800";
}

.home-navigation ul{
    background-color: #f3f3f3;
    margin: 0;
}

.home-navigation ul li:first-child,
.home-navigation ul li{
    border-top: 1px solid #d9d9d9;
    border-bottom: none;
}

.mobile-seo{
    padding: 40px 0;
}

/* =============================================== */
/* CALENDAR
/* =============================================== */

.ui-datepicker {
    width: 230px !important;
    height:245px;
    background:#fbfbfb;
    padding: 12px;
    display: none;
    font-size:11px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-border-radius:2px 2px 2px 2px;
    -moz-border-radius:2px 2px 2px 2px;
    border-radius:2px 2px 2px 2px;
    -webkit-box-shadow: 0 0px 5px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0px 5px rgba(0,0,0,0.3);
    box-shadow: 0 0px 5px rgba(0,0,0,0.3);
    border:1px solid #ddd\9;
    z-index: 99999 !important;
}

/* =============================================== */
/* GALLERY ARROWS
/* =============================================== */

.novabox_contain_next{
    background-image: none;
    cursor: url('http://novablink.com/commons/nova_box/img/right-cursor.png'), url('http://novablink.com/commons/nova_box/img/right-cursor.cur'), pointer;
}

.novabox_contain_prev{
    background-image: none;
    cursor: url('http://novablink.com/commons/nova_box/img/left-cursor.png'), url('http://novablink.com/commons/nova_box/img/left-cursor.cur'), pointer;
}
/* ========================================================================== */
/* FONTS
/* ========================================================================== */

@font-face {
	font-family: "fontello";
	src: url(/fonts/fontello3.eot);
	src: url(/fonts/fontello3.eot#iefix) format("embedded-opentype"), url(/fonts/fontello3.woff2) format("woff2"), url(/fonts/fontello3.woff) format("woff"),
		url(/fonts/fontello3.ttf) format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "ProximaNova";
	src: url(/fonts/ProximaNova-Regular.eot);
	src: url(/fonts/ProximaNova-Regular.eot?#iefix) format("embedded-opentype"), url(/fonts/ProximaNova-Regular.woff) format("woff"), url(/fonts/ProximaNova-Regular.ttf) format("truetype");

	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "ProximaNova";
	src: url(/fonts/ProximaNova-Semibold.eot);
	src: url(/fonts/ProximaNova-Semibold.eot?#iefix) format("embedded-opentype"), url(/fonts/ProximaNova-Semibold.woff) format("woff"), url(/fonts/ProximaNova-Semibold.ttf) format("truetype");

	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "MinionPro";
	src: url("/fonts/MinionPro-Regular.eot");
	src: url("/fonts/MinionPro-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/MinionPro-Regular.woff") format("woff"), url("/fonts/MinionPro-Regular.ttf") format("truetype");

	font-style: normal;
	font-weight: 400;
}

/* ========================================================================== */
/* TYPOGRAPHY
/* ========================================================================== */

body {
	font: 14px/1.7 "ProximaNova", Arial, sans-serif;
	color: #787878;
}

h1,
h2,
h3,
h4,
h5 {
	float: left;
	font: 35px/1.2 "MinionPro", Georgia, serif;
	color: #7ba0b8;
	margin-bottom: 20px;
}

h2 {
	font-size: 27px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 20px;
}

.page-title {
	position: absolute;
	top: calc(50% - 35px);
	left: 0;
	z-index: 10;

	width: 100%;
	text-align: center;
	font-size: 53px;
	line-height: 1;
	color: #fff;
	margin: 0;

	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);

	display: none;
}

.page-subtitle {
	width: 100%;
	text-align: center;
	font-size: 34px;
	line-height: 1;
	margin-bottom: 40px;
}

a:link,
a:visited,
a:active {
	color: #989898;
}
a:hover {
	color: #989898;
}

p {
	margin: 0 0 10px 0;
}

.centerme {
	width: 100%;
	text-align: center;
}

.wrapper.bg {
	max-width: 1240px;
	position: relative;
	left: 50%;
	padding: 40px 20px 20px 20px;
	background-color: #fff;
	z-index: 2;
	float: left;
	margin-top: -80px;
	overflow: hidden;

	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);

	border-radius: 2px 2px 0 0;
}

.push {
	margin-bottom: 80px;
}
/* ========================================================================== */
/* GENERAL LAYOUT
/* ========================================================================== */

body {
	position: relative;
	background-color: #fff;
}

.header-main {
	background-color: #fff;
	border: none;
}

.header-links {
	position: absolute;
	top: 50px;
	right: 0;
}

.header-links li {
	height: 18px;
	float: left;
	border-left: 1px solid #f8f7f4;
}

.header-links li:first-child {
	border: none;
}

.header-links li,
.header-links a {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: #7ba0b8;
	text-transform: uppercase;
}

.header-links a,
.header-links span {
	line-height: 18px;
}

.header-links li:last-child a {
	padding-right: 0;
}

.header-links a:hover {
	color: #556e7f;
}

.header-main.second-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;

	-webkit-transform: translate3d(0, -150px, 0);
	-moz-transform: translate3d(0, -150px, 0);
	-ms-transform: translate3d(0, -150px, 0);
	-o-transform: translate3d(0, -150px, 0);
	transform: translate3d(0, -150px, 0);

	-webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ========================================================================== */
/* BTN
/* ========================================================================== */

a.btn,
.btn {
	display: inline-block;
	height: 44px;
	float: left;
	clear: both;
	margin-top: 30px;
	padding: 16px 35px 15px 35px;
	border-radius: 2px;

	font-family: "ProximaNova", Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 14px;
	color: #7ba0b8;
	text-align: center;
	text-transform: uppercase;

	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a.btn:hover,
.btn:hover {
	color: #fff;
	background-color: #7ba0b8;
}

div.btn-book,
div.menu-book.hide-desktop {
	color: #fff;
	box-shadow: none;
	padding: 0 15px 0 0;
	line-height: 42px;
	overflow: hidden;
}

div.btn-book {
	background-color: #7ba0b8;
	margin-top: -2px;
	padding: 0 0 0 15px;
}

div.menu-book.hide-desktop {
	background-color: transparent;
	padding: 0 15px 0 0;
}

div.btn-book span {
	margin-right: 10px;
}

div.btn-book a {
	display: inline-block;
	height: auto;
	margin: 0;

	padding: 0 15px;

	background-color: #fff;
	color: #7ba0b8;

	font-size: 18px;
	border-top: 1px solid #7ba0b8;
	border-bottom: 1px solid #7ba0b8;
	border-right: 1px solid #7ba0b8;
}

div.btn-book.hide-desktop a {
	border-left: 1px solid #7ba0b8;
	padding: 0 15px;
}

a.icon-bed {
	border-right: 1px solid #7ba0b8;
}

div.btn-book a:hover {
	background-color: #7ba0b8;
	color: #fff;
}

a.btn-alt {
	border: 1px solid #7ba0b8;
	color: #7ba0b8;
	background-color: transparent;
	float: none;
	box-shadow: none;
	margin-top: 0;
	margin-bottom: 50px;
}

a.btn-alt:hover {
	color: #fff;
	background-color: #7ba0b8;
}

.menu-book.hide-desktop {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 12px;
	justify-content: center;
	margin-top: 30px;
}

.buttons .btn {
	margin-top: 0;
}

.buttons .nova_editablelisting {
	display: none;
}

/* ========================================================================== */
/* LOGO
/* ========================================================================== */

.logo {
	top: 50%;
	left: 50%;
	width: 90px;

	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.logo-relais {
	display: none;
}

/* ========================================================================== */
/* VIDEO
/* ========================================================================== */
/*.video{
    width: 100%;
    position: relative;
    overflow: hidden;
}*/

.page-banner,
#home .page-banner {
	height: calc(56.25vw);
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.preload {
	opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

#slideshow.video {
	height: auto;
}

.video-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.video-container > video {
	object-fit: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.video-container > video::-webkit-media-controls {
	display: none !important;
}

.video:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;

	background-color: #151515;
	opacity: 0.3;
}

.mobile-bg {
	margin-top: 75px;
	display: block;
	position: relative;
	z-index: 10;
	width: 100%;
	height: calc(56.25vw);
	background: url("/_img/mobile-bg.jpg") left center no-repeat;
	background-size: cover;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a.mute-btn {
	width: 39px;
	height: 39px;
	display: inline-block;
	position: absolute;
	right: 0px;
	bottom: 50px;
	z-index: 998;

	font-size: 30px;
	line-height: 39px;
	text-align: center;
	color: #132a4a;
	background-color: rgba(255, 255, 255, 0.5);

	display: none;
}

a.mute-btn:hover {
	color: #fbfbfb;
	background-color: #b6986e;
}

a.mute-btn {
	bottom: 20px;
	right: 20px;
	border-radius: 4px;
}

a.mute-btn.muted:before,
a.mute-btn:before {
	content: "\e82d";
	font-family: "fontello";
	font-size: 20px;
	position: relative;
	top: -5px;
}

a.mute-btn.muted:before {
	content: "\e82a";
}

/* ========================================================================== */
/* USP
/* ========================================================================== */

.usp {
	width: 100%;
	height: 70px;
	position: absolute;
	bottom: 35px;
	left: 0;
	z-index: 2;
	display: none;
}

.usp-wrapper {
	max-width: 1080px;
	padding: 25px 60px 30px 60px;
	background-color: rgba(255, 255, 249, 0.8);
	position: relative;
	margin: 0 auto;
	float: left;

	left: 50%;

	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.usp h1 {
	font-size: 20px;
	color: #444444;
	text-align: center;
	margin-bottom: 0;
}

a.btn-scroll {
	display: inline-block;
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	margin-left: -15px;
	z-index: 999999;

	font-size: 35px;
	line-height: 30px;
	text-align: center;
	color: #fff;

	display: none;
}

a.btn-scroll:hover {
	color: #556e7f;
}

/* ========================================================================== */
/* BANNER
/* ========================================================================== */

.page-banner {
	height: 200px;
	background: #444444;
}

.mynovamontage_wrap {
	float: left;
}

/* ========================================================================== */
/* MENU
/* ========================================================================== */

.menu {
	position: absolute;
	top: 80px;
	right: 0;
	display: none;
}

.menu > li {
	height: 45px;
	position: relative;
	margin-left: 15px;
	float: left;
}

.menu > li:first-child {
	margin-left: 0;
}

.menu > li:last-child {
	margin-left: 30px;
}

.menu > li > a:not(.btn) {
	display: inline-block;
	font-family: "ProximaNova", Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 14px;
	color: #989898;
	text-transform: uppercase;
	padding-top: 16px;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
}

.menu > li > a:not(.btn):hover,
#rooms .menu a.rooms,
#offers .menu a.offers,
#hotel .menu a.hotel,
#tour .menu a.tour,
#restaurant .menu a.restaurant,
#map .menu a.map,
#press .menu a.press,
#press.int .menu a.press-int,
#gallery .menu a.gallery {
	border-bottom: 2px solid #7ba0b8;
}

.subnav {
	position: absolute;
	top: 36px;
	left: 60px;
	display: none;
}

.subnav > li {
	margin-right: 25px;
	float: left;
}
.subnav a {
	display: inline-block;
	font-family: "ProximaNova", Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 13px;
	color: #7ba0b8;
	text-transform: uppercase;
	padding-top: 0;
	padding-bottom: 10px;
	border-bottom: 2px solid transparent;
}

.subnav a.btn {
	position: relative;
	top: -10px;
	color: #fff;

	padding: 16px 35px 15px 35px;

	line-height: 14px;
}

#press.press .subnav a.press,
#press.toiras-press-kit .subnav a.toiras-press-kit,
#press.villa-clarisse-press-kit .subnav a.villa-clarisse-press-kit,
#press.int .subnav a.press-int,
#hotel.hotel .subnav a.hotel,
#hotel.wellbeing .subnav a.wellbeing,
#hotel.meeting .subnav a.meeting,
#hotel.villa-clarisse .subnav a.villa-clarisse,
#hotel.concierge .subnav a.concierge,
#hotel.reviews .subnav a.reviews,
#gallery.gallery-full .subnav a.photos,
#gallery.videos .subnav a.videos,
#offers.hcm-offers .subnav a.hcm-offers,
#offers.christmas .subnav a.christmas,
#offers.romantic-offers .subnav a.romantic-offers,
#offers.leisure .subnav a.leisure,
#offers.family .subnav a.family,
#offers.xmas .subnav a.xmas,
#offers.villa-and-private-home .subnav a.villa-and-private-home,
#offers.meeting-and-private-event .subnav a.meeting-and-private-event,
#restaurant.la-table-dOlivia .subnav a.la-table-dOlivia,
#restaurant.chef .subnav a.chef,
#restaurant.blue-note-bar .subnav a.blue-note-bar,
#restaurant.basket-market .subnav a.basket-market,
#restaurant.carte-of-la-villa .subnav a.carte-of-la-villa,
#restaurant.philosophy-and-engagements .subnav a.philosophy-and-engagements,
#restaurant.harbour .subnav a.harbour,
#restaurant.patio .subnav a.patio,
#restaurant.garden .subnav a.garden,
#restaurant.salon-dolivia .subnav a.salon-dolivia,
#restaurant.clarisse .subnav a.clarisse,
#map.mapA .subnav a.mapA,
#map.mapB .subnav a.mapB,
#map.mapC .subnav a.mapC,
#map.mapD .subnav a.mapD,
#map.mapE .subnav a.mapE,
#map.mapF .subnav a.mapF,
#tour.tourA .subnav a.tourA,
#tour.tourB .subnav a.tourB,
#tour.tourC .subnav a.tourC,
#tour.tourD .subnav a.tourD,
#tour.tourE .subnav a.tourE,
#rooms.decoration .subnav a.decoration,
#rooms.suites .subnav a.suites,
#rooms.rooms .subnav a.rooms,
.subnav a:hover {
	border-bottom: 2px solid #7ba0b8;
}

#gallery .navigation-secondary,
#gallery .submenu-gallery,
#press .navigation-secondary,
#press .submenu-press,
#offers .navigation-secondary,
#offers .submenu-offers,
#hotel .navigation-secondary,
#hotel .submenu-hotel,
#restaurant .navigation-secondary,
#restaurant .submenu-restaurant,
#rooms .navigation-secondary,
#rooms .submenu-rooms,
#map .navigation-secondary,
#map .submenu-map,
#tour .navigation-secondary,
#tour .submenu-lie {
	display: inline-block;
}

/* ========================================================================== */
/* DROP MENU
/* ========================================================================== */

/*.menu > li > a.selected:before{
    content: "\e815";
    font-family: 'fontello';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 10px;
    font-size: 18px;
    line-height: 10px;
    text-align: center;
    color: #f4c22e;
    
}*/

.menu ul {
	display: none;
	min-width: 200px;
	position: absolute;
	top: 43px;
	left: 0;
	border-radius: 2px;
	z-index: 999;
	padding: 25px 0;
	background-color: #fff;

	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.menu ul li {
	width: 100%;
}

.menu ul a {
	display: inline-block;
	width: 100%;
	padding: 15px 30px 13px 30px;
	font-size: 14px;
	line-height: 1;
	color: #666666;
	text-align: left;
	text-transform: none;

	white-space: nowrap;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.menu ul a:hover {
	background: #f0f0f0;
}

/* ========================================================================== */
/* LAYOUT
/* ========================================================================== */

.main {
	padding: 0 0 100px 0;
	overflow: visible;
	position: relative;
	z-index: 0;
}

#history .main {
	padding-bottom: 0;
}

#home .main {
	padding: 0;
}

.container-wrap {
	width: 100%;
	float: left;
	padding: 95px 0;
	background-color: #f6f6f6;
	margin-top: 60px;
}

#home .container-wrap {
	margin-top: 0;
	padding-top: 0;
}

.secondary {
	width: 100%;
	float: left;
	overflow: hidden;
}

.card {
	width: 100%;
	float: left;
}

.card img {
	width: 100%;
	height: auto;
	float: left;

	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;

	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.card:hover img {
	-webkit-transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	-o-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}

.card .caption {
	width: 100%;
	float: left;
	overflow: hidden;
	padding: 50px 10px;
	text-align: center;
	font-size: 15px;
	line-height: 15px;
	color: #7ba0b8;
	text-transform: uppercase;
}

.img-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.hideme {
	display: none;
}

/* ========================================================================== */
/* POST
/* ========================================================================== */
.post {
	max-width: 1120px;
}

.post-repeat {
	padding: 40px;
	margin-top: 40px;
	overflow: hidden;
	background-color: #f6f6f6;
	overflow: visible;
	border-radius: 2px;
}

.post-repeat .inner {
	overflow: visible;
}

.post-repeat:nth-of-type(1) {
	margin-top: 0;
}

.post-left,
.post-right {
	width: 100%;
	float: left;

	overflow: visible;
}

.post-content,
.post-img {
	overflow: hidden;
}

.post-content {
	padding-top: 0px;
	overflow: visible;
}

.post-img {
	margin-bottom: 30px;
}

.post-intro {
	max-width: 1120px;
	float: none;
	margin: 0 auto;
	text-align: center;
	padding: 30px;
	background-color: #f6f6f6;
	margin-bottom: 40px;
	border-radius: 2px;
}

#home .post-intro {
	padding: 25px 20px 70px 20px;
	background-color: transparent;
	max-width: 980px;
	margin-bottom: 40px;
}

.home-content {
	display: inline-block !important;
}

/* ========================================================================== */
/* LISTS
/* ========================================================================== */

.address {
	margin-bottom: 30px;
}

.address li {
	line-height: 1.8;
}

/* ========================================================================== */
/* THUMBS
/* ========================================================================== */

.thumbs li,
.thumbs {
	display: inline-block;
	overflow: hidden;
}

.thumbs {
	width: calc(100% + 5px);
	margin-bottom: 70px;
}

.thumbs li {
	float: left;
	width: calc(20% - 5px);
	margin-right: 5px;
}

.thumbs img {
	width: 100%;
	height: auto;
	float: left;
}

.container-wrap {
	text-align: center;
}

.container-wrap .btn {
	float: none;
	margin: 0 10px;
}

.container-wrap .wrapper {
	overflow: visible;
}

/* ========================================================================== */
/* PRESS
/* ========================================================================== */

.press-listing {
	width: 100%;
}

.press-listing li {
	width: 100%;
	float: left;
	border: 1px solid #e1e1e1;
	display: inline-block;
	margin-right: 25px;
	margin-bottom: 25px;
	overflow: hidden;
	position: relative;
}

.press-listing img {
	width: 100%;
	height: auto;
}

/* .press-listing a{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(0,0,0,0.4);

    font-size: 14px;
    color: #fff;
    padding-top: calc(50% + 20px);
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;

    opacity: 0;
} */

.press-listing a {
	display: block;
	width: 100%;
	color: #fff;
	/*	background-color: #333;*/
	padding: 10px 15px;
	margin-bottom: 2px;
}

.press-listing a.two {
	color: #888;
	background-color: #e8e8e8;
	margin-bottom: 0;
}

.press-listing li a:hover {
	background-color: #7ba0b8;
	color: #fff;
	opacity: 0.3;
}

/* ========================================================================== */
/* REVIEWS
/* ========================================================================== */

.survey-content {
	width: 95%;
}

.survey-content p {
	margin-bottom: 0;
}

.survey-author {
	text-transform: none;

	font-size: 20px;
	color: #444444;
}

.survey-date {
	font-size: 12px;
	font-weight: bold;
	color: #444444;
	padding-bottom: 5px;
}

.survey-score {
	padding-top: 5px;
	font-size: 18px;
	color: #9e634d;
	font-weight: bold;
}

.survey-score span {
	font-size: 10px;
	display: inline-block;
	margin-right: 5px;
}

/* ========================================================================== */
/* MAIN FOOTER
/* ========================================================================== */

.footer-main {
	display: inline-block;
}

a.footer-btn {
	font: 16px/1 Arial, sans-serif;
	color: #fff;
	padding: 20px 0 18px 0;
	background-color: #7ba0b8;
}

.footer-top {
	padding: 75px 0 80px 0;
	background-color: #fff;
}

.footer-bottom {
	padding: 50px 0;
	background-color: #b1b1b1;
}

.footer-extra {
	width: 100%;
	float: left;
	padding: 10px 0;
	background-color: #b1b1b1;
}

.footer-main h3 {
	font-size: 25px;
	color: #556e7f;
	margin-bottom: 20px;
}

.footer-links {
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 40px;
}

.footer-links li {
	width: 100%;
	display: inline-block;
}

.footer-links li,
.footer-links a {
	font-family: Arial, sans-serif;
	font-size: 13px;
	color: #989898;
}

.footer-links li:first-child {
	font-size: 12px;
	font-weight: 700;
	color: #bdcfdb;
	margin-bottom: 20px;
}

.footer-links a {
	width: 100%;
	display: inline-block;
}

.footer-links a:hover {
	color: #556e7f;
}

.footer-legal {
	width: 100%;
	float: left;
	text-align: center;
}

.footer-legal li {
	display: inline-block;
	margin: 0 30px;
}

.footer-legal li,
.footer-legal a {
	text-transform: uppercase;
	font-size: 13px;
	color: #fff;
}

.footer-legal a:hover {
	color: #556e7f;
}

.footer-links li.divider,
.footer-legal li.divider {
	padding-left: 5px;
	padding-right: 5px;
}

.footer-column {
	float: left;
	padding-top: 10px;
}

.social {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.header-main .social {
	position: absolute;
	top: 0;
	right: 0;

	width: auto;

	display: none;
}

.social li {
	display: inline-block;
}

a.sharethis {
	display: inline-block;
}

.social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 0 2px;
	border-radius: 50%;
	margin: 0 2px;
	color: #ffffff;
	background-color: #e8e8e8;

	text-align: center;
}

.social a:hover {
	color: #fff;
	background-color: #bdcfdb;
}

.social a span {
	display: inline-block;
	font-size: 22px;
	line-height: 42px;
}

.header-main .social a {
	width: 32px;
	height: 32px;
	border-radius: 0;
	margin: 0 1px;
}

.header-main .social a span {
	font-size: 16px;
	line-height: 32px;
}

.header-main a.lang-btn {
	display: none;
	float: none;
	position: absolute;
	top: 10px;
	right: 165px;

	color: #989898260px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.header-main a.lang-btn:hover {
	color: #556e7f;
}

.header-main a.lang-btn:before {
	top: -2px;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-logos {
	position: relative;
	width: 100%;
	float: left;
	text-align: center;
}

.footer-logos li {
	display: inline-block;
	margin: 0 30px;
	vertical-align: middle;
}

.pull-fix {
	position: relative;
	top: -15px;
}

.footer-bg {
	width: 100%;
	float: left;
	padding: 150px 0 120px 0;
	overflow: hidden;
	text-align: center;
	background: url(/_img/bg-footer.jpg) center center no-repeat;
	background-size: cover;
}

.footer-bg img {
	display: inline-block;
	margin-bottom: 20px;
}

a.btn-footer {
	display: inline-block;
	padding: 15px 30px 13px 30px;
	border-radius: 2px;
	border: 1px solid #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	color: #fff;
	margin-top: 0;
	text-transform: uppercase;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a.btn-footer:hover {
	background-color: #fff;
	color: #787878;
}

/* ========================================================================== */
/* ROOMS ELEMENTS
/* ========================================================================== */

.img-hover {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 100;
	display: block;
	opacity: 1;

	background: none;
	background-color: #fff;

	font-size: 24px;
	line-height: 44px;
	text-align: center;
	color: #7ba0b8;
}

a.rooms-gallery:hover .img-hover {
	opacity: 1;
	color: #fff;
	background-color: #7ba0b8;
}

.room-basic-info {
	margin-bottom: 15px;
}

/* ========================================================================== */
/* READ MORE
/* ========================================================================== */

.nice-link,
a.nice-link,
a.read-more {
	position: relative;
	float: left;
	clear: both;
	margin-top: 40px;
	font-family: "ProximaNova", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	padding-bottom: 2px;
	color: #7ba0b8;
	border-bottom: 1px solid transparent;
	display: block;
	text-transform: uppercase;
}

a.nice-link:after,
.show-more:after {
	position: relative;
	top: 0;
	content: " +";
}

.show-less:after {
	position: relative;
	top: 0;
	content: " -";
}

a.nice-link:hover,
a.read-more:hover {
	color: #556e7f;
	border-color: transparent;
}

/* ========================================================================== */
/* ALT LIST
/* ========================================================================== */

.more-content {
	padding: 10px 0 0 0;
}

.more-content .p-wrap {
	margin-bottom: 10px;
	font-size: 14px;
}

.more-content .alt-list {
	margin-bottom: 0;
	font-size: 14px;
}

#rooms .more-content {
	width: 100%;
	padding-top: 40px;
}

/* ========================================================================== */
/* CONTACT FORM
/* ========================================================================== */

.form-message,
#myform select,
#myform input,
#myform input:focus {
	border: 1px solid #fff !important;
	background-color: #fff !important;
	color: #777 !important;
	font-size: 12px;
	border-radius: 3px;
}

.form-message {
	height: 180px;
}

[placeholder]::-webkit-input-placeholder {
	color: #777;
}

#myform .form-checkbox:focus,
#myform .form-checkbox:hover,
#myform .form-checkbox {
	width: 15px !important;
	height: 15px !important;
	padding: 0;
	margin: 0;
	margin-right: 10px;
	border: 1px solid #fff;
	background-color: #fff;

	-webkit-appearance: checkbox;
}

.email-wrap {
	padding-bottom: 50px;
}

.email-wrap label {
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
	text-align: left;
	line-height: 1;
}

.form-row.border {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #ead8c3;
}

#myform select {
	width: 100%;
}

.form-title {
	display: inline-block;
	font-size: 12px;
	color: #6a6a6c;
}

.be-iframe {
	position: absolute;
	top: -75px;
	left: 0;
	width: 100%;
	height: 2500px;
	min-height: 100vh;
	background-color: transparent;
	z-index: 1001;

	background-color: rgba(0, 0, 0, 0.6);

	display: none;
}

.close-be-widget {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: -64px;
	right: 6px;
	z-index: 1002;
	font-size: 26px;
	font-weight: 700;
	line-height: 44px;
	text-align: center;
	color: #b1b1b1 !important;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);

	display: none;
}

@media only screen and (min-width: 1024px) {
	.be-iframe {
		top: 0px;
	}

	.close-be-widget {
		top: 11px;
		right: 5px;
	}
}

/* ========================================================================== */
/* JS LOADER
/* ========================================================================== */

#jsloader div {
	background-color: #7ba0b8;
}

/* ========================================================================== */
/* SIDEBAR GLOBAL
/* ========================================================================== */
a.sidebar-btn,
.sidebar-menu ul a,
.sidebar-menu a,
/*.sidebar-info a,*/
.home-navigation a {
	font-family: "ProximaNova", Arial, sans-serif;
}

.sidebar-menu ul {
	background-color: #262626;
}

.sidebar-menu ul li {
	border: none !important;
}

.sidebar-menu ul a {
	color: #e1e1e1 !important;
	text-transform: none !important;
}

.sidebar-menu ul a:hover {
	color: #556e7f !important;
}

a.sidebar-btn {
	padding: 20px 5px 18px 5px;
	border-color: #7ba0b8;
	background-color: #7ba0b8;

	color: #fff !important;
	text-transform: capitalize !important;
}

.sidebar-menu ul a,
.sidebar-menu a {
	padding-top: 18px;
	padding-bottom: 18px;
}

.sidebar-menu > li > a {
	color: #e1e1e1 !important;
	text-transform: uppercase !important;
}

.sidebar-menu > li > a:before {
	z-index: 100;
}

.home-navigation a:hover,
.sidebar-info a:hover,
.sidebar-info a:active,
.sidebar-info a:focus,
.sidebar-menu a:active,
.sidebar-menu a:focus,
.sidebar-menu a:hover {
	color: #7ba0b8 !important;
}

.sidebar-menu > li > a:before {
	background-color: #7ba0b8 !important;
}

#contact .sidebar-menu a.contact:before,
#rooms .sidebar-menu a.rooms:before,
#offers .sidebar-menu a.offers:before,
#hotel .sidebar-menu a.hotel:before,
#restaurant .sidebar-menu a.restaurant:before,
#map .sidebar-menu a.map:before,
#gallery .sidebar-menu a.gallery:before {
	display: inline-block;
}

.sidebar-info li:first-child a {
	font-size: 20px;
}

a.close-menu,
.sidebar-info a {
	color: #565656;
}

.sidebar-info a {
	display: inline-block;
	width: 100%;
	color: #999 !important;
}

.sidebar-info li:last-child a {
	margin-bottom: 30px;
}

.sidebar-navigation {
	background-color: #161616;
}

.sidebar-menu > li {
	border-bottom: 1px solid #333333;
}

.sidebar-info li:nth-of-type(4) {
	margin-bottom: 30px;
}

.sidebar-info li:nth-of-type(5) {
	padding-top: 40px;
}

.sidebar-info li:nth-of-type(4),
.sidebar-info li:nth-of-type(5) {
	border-top: 1px solid #333333;
}

.sidebar-info a {
	line-height: 1.3;
}

.sidebar-info .social {
	margin-bottom: 0;
	padding-top: 30px;
}

.sidebar-info .social a {
	border-radius: 50%;
	display: inline-block;
	height: 26px;
	margin-right: 7px;
	text-align: center;
	width: 26px;
}

.sidebar-info .social a span {
	font-size: 14px;
	line-height: 26px;
}

.menu-icon {
	border-top: 2px solid #212121;
	border-bottom: 2px solid #212121;
}

.menu-icon:before {
	background-color: #212121;
}

.home-navigation a {
	padding-top: 24px;
	padding-bottom: 22px;
	color: #565656 !important;
}

.home-navigation a:hover {
	color: #565656 !important;
}

.home-navigation > li {
	border-bottom: 1px solid #d1d1d1;
}

/*.home-navigation li:last-child{
    border:none;
}*/

.home-navigation ul {
	background-color: #f1f1f1;
}

.home-navigation ul li {
	border: none !important;
}

.home-navigation a:after {
	color: #565656;
}

.mobile-nav {
	background-color: #fff;
}

.mobile-seo {
	background-color: #fff;
}

.mobile-seo h1 {
	color: #7ba0b8;
}

.mobile-seo p {
	color: #777;
}

.gds-codes {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
}

.gds-codes li {
	display: inline-block;
}

.gds-codes li:nth-of-type(1):after,
.gds-codes li:nth-of-type(2):after,
.gds-codes li:nth-of-type(3):after,
.gds-codes li:nth-of-type(4):after {
	content: "|";
	padding: 5px;
}

/* SPECIAL BANNERS */
.special-banner {
	position: absolute;
	bottom: 0;
	left: 25px;

	display: none;
	flex-direction: row;

	min-height: 200px;
	background-color: #fffffb;

	z-index: 999;
}

.special-banner .wrap {
	padding: 20px 25px 0px;
	max-width: 350px;
}

.special-banner h2 {
	font-size: 28px;
}

.special-banner a {
	display: inline-block;

	font-family: "ZonaProSemiBold";
	font-size: 13px;

	color: #a99b68;
	padding-bottom: 1px;
	border-bottom: 1px dotted #a99b68;
}

.special-banner a:hover {
	color: #000;
	border-color: transparent;
}

.relais-mobile {
	position: absolute;
	right: 0px;
	top: 8px;
}

.relais-mobile img {
	max-width: 54px;
}

.logo-text {
	display: none;
}

.footer-links a.btn {
	width: auto;
	float: none;

	color: #fff;
	background-color: #7ba0b8;
	border: 1px solid #7ba0b8;
	box-shadow: none;
}

.footer-links a.btn:hover {
	color: #7ba0b8;
	background-color: #fff;
}

.footer-links .electric {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 40px;
}

.footer-links .electric img {
	height: auto;
	opacity: 0.6;
	width: 40px;
}

.modal-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.footer-links .footer-links-logos {
	margin-top: 30px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}

.footer-links-logos a,
.footer-links-logos a img {
	width: 200px;
}

.heloise-logo {
	margin: 0 auto 20px;
}

.heloise-logo img {
	margin: 0 auto;
}

a.book-btn {
	background-color: #7ba0b8;
	color: #fff;
}

a.book-btn:hover {
	background-color: #fff;
	color: #7ba0b8;
}

.hcm-offers .inner > .alt-list li {
	list-style: none;
}

#leafletmap {
	height: calc(100vh - 75px);
	min-height: 350px;
	max-height: 700px;
	z-index: 0;
}

.map-address {
	font-size: 14px;
}

#leafletmap .map-address .point-name {
	font-size: 16px;
}
#leafletmap .map-address .point-button {
	margin-top: 2rem;
}

.map-settings {
	padding-top: 100px;
	padding-bottom: 100px;

	background-color: #fff;

	position: relative;
	z-index: 3;
}

.map-settings .map-default {
	margin-bottom: 5rem;
}

.map-settings .point-info::before {
	display: inline-block;
	background-color: #f00;
	color: #fff;
	margin-right: 10px;
	padding: 5px;
	min-width: 150px;
}

.map-settings .default-lat::before {
	content: "map center lat:";
}

.map-settings .default-lng::before {
	content: "map center lng:";
}

.map-settings .default-zoom::before {
	content: "map intial zoom:";
}

.map-settings .point-lat::before {
	content: "point lat:";
}

.map-settings .point-lon::before {
	content: "point lng:";
}

.map-settings .point-zoom::before {
	content: "point zoom:";
}

.map-settings .point-icon::before {
	content: "point icon:";
}

.map-settings .point-type::before {
	content: "point type:";
}

.map-settings .map-address li::before {
	display: inline-block;
	background-color: #f00;
	color: #fff;
	margin-right: 10px;
	padding: 5px;
	min-width: 150px;
}

.map-settings .map-address .point-name::before {
	content: "point name:";
}
.map-settings .map-address .point-address::before {
	content: "point address:";
}
.map-settings .map-address .point-phone::before {
	content: "point phone:";
}
.map-settings .map-address .point-email::before {
	content: "point email:";
}
.map-settings .map-address .point-button::before {
	content: "point link:";
}

.map-points {
	margin-bottom: 70px;
}

.huge-logo {
	padding: 20px 0;
}

.modal-close .close-x:before,
.modal-close .close-x:after {
	background-color: var(--modal-color_brand-primary) !important;
}
/* ========================================================================== */
/* MEDIA QUERIES
/* ========================================================================== */

@media only screen and (min-width: 480px) {

    .menu-btn{
        width: 74px;
        height: 74px;
    }

    .menu-icon{
        width: 22px;
        height: 18px;
    }

    .menu-icon:before{
        width: 22px;
    }

}  

@media only screen and (min-width: 680px) {
    .main{
        margin-top: 95px;
    }

    .navigation-secondary{
        top: 95px;
    }
    
    .mobile-seo,
    .home-navigation{
        display: none;
    }

    #ggmap,
    .slideshow,
    #slideshow{
        height: 64vw;
    }

    .header-main,
    .header-main .wrapper{
        height: 95px;
    }

    .post-repeat{
        padding: 40px;
    }
    
    .post-img,
    .post-content{
        width: 50%;
    }

    .post-content{
        float: right;
        padding-left: 40px;
    }

    .post-img{
        float: left;
        margin: 0;
    }

    .footer-main{
        background-color: transparent;
        padding: 0;
    }
    
    .footer-top,
    .footer-bottom,
    .home-content,
    .footer-main .wrapper{
        display: block;
    }

    ul.g_options{
        display: inline-block;
    }

    a.footer-btn{
        display: none;
    }  

    .half{
        width: calc( 50% - 10px );
        float: left;
    }

    .half.rt{
        float: right;
    }
}  

@media only screen and (min-width: 800px){
     ul.g_options li{
        float: left;
        white-space: nowrap;
    }
    
    ul.g_options li a.g_showaround,
    ul.g_options li a.g_getdirections {
        background: url('http://novablink.com/commons/nova_ggmap/img/gmap_nova_icons.png') 0px -90px no-repeat;
        padding-left: 30px;
    }

    ul.g_options li a.g_showaround {
        background: url('http://novablink.com/commons/nova_ggmap/img/gmap_nova_icons.png') 0px -0px no-repeat;
    }


    ul.g_hotelinfo_wrap{
        margin-right: 100px;
        margin-bottom: 10px;
    }
}


@media only screen and (min-width: 1025px){
    .slideshow,
    #slideshow{
        height: 100vh;
    }

    .header-main{
        position: relative;
        border-bottom: none;
    }

    .main{
        margin-top: 0;
    }

    .post-repeat{
        padding: 50px;
    }
    
    .post-content{
        width: 60%;
    }
    
    .post-img{
        width: 40%;
    }

    .post-left{
        width: 40%;
        padding-right: 50px;
    }
    
    .post-right{
        width: 60%;

    }

    select,
    textarea,
    input {
        font-size: 12px !important;
    }

    .novabox_contain_next:before,
    .novabox_contain_prev:before,
    .logo-mobile,
    .menu-btn,
    .mobile-seo,
    .mobile-nav{
       display: none;
    }
    
    .header-links,
    .logo-desktop,
    a.btn-book,
    a.btn-header,
    .header-links,
    .usp,
    .menu{
       display: inline-block; 
    }

    .hide-mobile{
        display: block !important;
    }

    .hide-desktop{
        display: none !important;
    }

    .box-table-a {
        width: 100%;
        position: relative;
        float: left;
        clear: both;
        border-collapse: collapse;
        
    }

    .table-head{
        width: 100%;
        display: table-row;
        background-color: #f6f6f6;
    }

    .box-table-a th {
        padding: 25px 5px;
        text-align: center;
        vertical-align: middle;
        font-weight: normal;
        color: #6a6a6c;
        

        border-bottom: 1px solid #d2d2d2;
        border-left: 1px solid #d2d2d2;
    }

    .box-table-a th:first-child{
        border-left: none;
    }

    .box-table-a .name-cell{
        padding-top: 25px;
        padding-bottom: 25px;
        white-space: nowrap;
        text-align: center;
    }

    .box-table-a .name-cell img{
        display: block;
        width: auto;
        height: 30px;
        margin-bottom: 0;
        float: none;
        margin: 0 auto;
    }

    .box-table-a .name-cell.title{
        text-align: left;
        width: auto;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 74px;
        font-weight: bold;
        padding-left: 20px;
    }

    .box-table-a td {
        display: table-cell !important;
        padding: 25px 0;
        border-top: 1px solid #d2d2d2;
        
        color: #69625d;
        text-align: center;
        vertical-align: middle;
    }

    .box-table-a tr td {
        border-left: 1px solid #d2d2d2;
    }

    .box-table-a tr td:first-child {
        border-left: none;
    }
    
    .box-table-a td.name-left{
        display: table-cell;
        text-align: center;
        background-color: #f2f2f2;
    }

    .subnav{
        display: inline-block;
    }

    .post-half{
        width: 50%;
    }

    .post-half:nth-of-type(1){
        float: left;
        padding-right: 40px;
    }

    .post-half:nth-of-type(2){
        float: right;
        padding-left: 40px;
    }

    #myform select{
        margin-bottom: 15px;
        padding: 15px;
        width: 100%;
        outline: none;
        border: 1px solid #e1e1e1;
        background-color: #f2f2f2;
        color: #999;
        font-size: 12px;
        cursor: pointer;

        -moz-box-shadow: none; 
        -webkit-box-shadow: none; 
        box-shadow: none;

        -webkit-appearance: none;
    }

    .select-wrap{
        position: relative;
    }

    .select-wrap:after{
        content: "\e800";
        font-family: 'fontello';
        position: absolute;
        top: 13px;
        right: 20px;
        font-size: 14px;
        color: #999;
    }

    .navigation-secondary,
    .submenu{
        display: none !important;
    }

}

@media only screen and (max-width: 1023px){
    .ui-dialog{
        max-width: calc(100% - 40px);
    }

    ul#flag_menu{
        text-align: center;
        margin-left: 0;
    }

    ul#flag_menu li{
        float: none;
        display: inline-block;
        text-align: left;
    }

    .ui-widget-overlay{
        display: none !important;
    }
}

@media only screen and (min-width: 1180px) {
    .wrapper{
        width: 1240px;
        padding: 0;
    }
}


/*HACK FOR IOS 7 AND 6 OLD IPHONES*/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2/3) {
    .slideshow,
    #slideshow {
        height: 250px;
    }
}

@media screen and (device-aspect-ratio: 40/71) {
    .slideshow,
    #slideshow {
        height: 250px;
    }
}
/* ========================================================================== */
/* MEDIA QUERIES
/* ========================================================================== */  
@media only screen and (min-width: 400px){
    .logo{
        width: 140px;
    }
    
}
/* For general tablets layouts */
@media only screen and (min-width: 680px) {

    .logo{
        width: 108px;
    }

    .footer-main{
        background-color: transparent;
    }
    
    .post-content{
        padding-left: 40px;
    }

    .page-banner{
        height:300px;
    }

    .wrapper.bg{
        padding: 60px;
    }

    .main{
        padding-bottom: 0;
    }
    
    a.btn-scroll,
    .footer-extra,
    .footer-bg,
    .page-title{
        display: inline-block;
    }

    .pos-fix {
        position: relative;
        display: inline-block;
    }

    .pos-link {
        display: block;
        position: absolute;
        top: 0;
        right: auto;
        left: 80px;
        background-color: pink;
        opacity: .8;
        height: 110px;
        width: 100px;
    }

    .press-listing {
        width: calc( 100% + 25px );
    }

    .press-listing li{
        width: calc( 25% - 25px );
    }

    .card{
        width: calc( 100%/3 );
    }

    .hideme{
        display: inline-block;
    }

} 

@media only screen and (min-width: 1025px) {

    .relais-mobile {
        display: none
    }

    .preload {
        display: block;
    }

    #home .post-intro {
        padding-top: 120px;
    }

    #jsloader {
        display: block;
    }

    .special-banner {
        display: flex;
    }

    .mobile-bg{
        display: none;
    }

    .header-main .social,
    .header-main a.lang-btn {
        display: inline-block;
    }
    
    #ggmap{
        max-height: 800px;
    }
    
    #home .page-banner{
        height: calc( 100vh - 180px );
    }

    #slideshow{
        height: calc( 100vh - 180px );
    }

    .slideshow-banner .overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(/_img/bg-overlay.png) center center no-repeat;
        z-index: 2;
    }

    .logo-text {
        padding-top: 4px;
        display: block;
        clear: both;
        text-align: center;
        font-family: 'ProximaNova', Arial, sans-serif;
        font-size: 13px;
        font-weight: 700;
        line-height: 14px;
        color: #989898;
    }

    .header-main,
    .header-main > .wrapper{
        overflow: visible;
        height: 145px;
    }

    .header-main > .wrapper{
        max-width: 1400px;
    }

    .header-main{
        position: relative;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    
    .second-header.show{
/*        -webkit-transform: translate3d(0, -58px, 0);
        -moz-transform:    translate3d(0, -58px, 0);
        -ms-transform:     translate3d(0, -58px, 0);
        -o-transform:      translate3d(0, -58px, 0);
        transform:         translate3d(0, -58px, 0);*/

        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform:    translate3d(0, 0, 0);
        -ms-transform:     translate3d(0, 0, 0);
        -o-transform:      translate3d(0, 0, 0);
        transform:         translate3d(0, 0, 0);
    }
    
    .logo{
        width: 200px;
        top: 20px;
        left: 0;
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        transform: translate(0,0);
    }

    .post-img{
        width: 50%;
    }

    .post-content{
        width: 50%;
        padding-left: 40px;
    }

    #rooms .post-img{
        width: 60%;
    }

    #rooms .post-content{
        width: 40%;
        padding-left: 60px;
    }
    
    .subnav,
    .usp,
    a.btn-book,
    .header-top{
        display: inline-block;
    }

    div.btn-book a:first-child {
		margin-right: 10px;

		background: none;
		border: none;
		padding: 0;
        font-size: 100%;

		color: #fff;
	}

	div.btn-book a:not(:first-child) {
		display: inline-block;
		height: auto;
		margin: 0;

		padding: 0 15px;

		background-color: #fff;
		color: #7ba0b8;

		font-size: 18px;
		border-top: 1px solid #7ba0b8;
		border-bottom: 1px solid #7ba0b8;
		border-right: 1px solid #7ba0b8;
	}

    .press-listing li{
        width: calc( 25% - 25px );
    }

    .page-banner{
        height:425px;
    }

    #press .wrapper.bg,
    #map .wrapper.bg,
    #tour .wrapper.bg,
    #gallery .wrapper.bg,
    #hotel .wrapper.bg,
    #offers .wrapper.bg,
    #restaurant .wrapper.bg,
    #rooms .wrapper.bg{
        padding-top: 140px;
    }

    #gallery .navigation-secondary,
    #gallery .submenu-gallery,
    #press .navigation-secondary,
    #press .submenu-press,

    #map .navigation-secondary,
    #map .submenu-map,
    
    #tour .navigation-secondary,
    #tour .submenu-tour,

    #offers .navigation-secondary,
    #offers .submenu-offers,
    #hotel .navigation-secondary,
    #hotel .submenu-hotel,
    #restaurant .navigation-secondary,
    #restaurant .submenu-restaurant,
    #rooms .navigation-secondary,
    #rooms .submenu-rooms{
        display: none;
    }

    .logo-relais {
        width: 260px;
        height: 15px;
        position: absolute;
        top: 25px;
        left: 50%;


        display: inline-block;

        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .logo-relais img {
        width: 100%;
        height: auto;
    }

    #rooms .more-content .p-wrap{
        width: 60%;
        float: left;
    }

    #rooms .more-content .alt-list{
        width: calc( 40% - 75px );
        float: right;
        clear: none;
    }
    .post-intro{
            padding: 50px 130px 70px 130px;
    }

}

@media only screen and (min-width: 1180px) {
    .header-main .wrapper{
        width: calc( 100% - 80px );
    }


}



@media only screen and (min-width: 1280px) {
    .menu > li{
        margin-left: 20px;
    }
    .menu > li:last-child{
        margin-left: 30px;
    }
}
