@charset "utf-8";
/* ~~ Element/tag selectors ~~ */

* {
	-webkit-box-sizing:border-box;
     box-sizing:border-box;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}
body {
	width: 100%;
	min-width: 336px;
	position: relative;
	background-color: #f1f1f1;
	color: #333;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 300;
	font-style: normal;
	line-height: 1.5;
}

p {
	padding: 0 6px 8px 6px;
	margin-top: 10px; 
	line-height: 1.5em;
}
	
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    margin: 10px 0;
	padding-right: 15px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	text-align: center;
	
}
h1 {
	font-size: 2.0em;
	margin-top: 0px;
}
h2 {
	font-size: 1.5em;
	margin-top: 12px;
	margin-bottom: 6px;
}
h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 12px;
	margin-bottom: 6px;
}
h4 {
	font-size: 1.2em;
	margin-top: 12px;
	margin-bottom: 6px;
}
h5 {
	font-size: 1.0em;
	margin: 0px 0px 4px 0px;
	font-weight: bold;
	text-align: left;
}
h6 {
	font-size: 0.9em;
	margin: 0px 0px 4px 0px;
	font-weight: bold;
	text-align: left;
}

hr {
    border: 0;
    border-top: 1px solid #333;
    margin: 20px 0;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align:middle;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */


a {
	text-decoration: none;
}

a:link {
	color:#414958;
	text-decoration: underline;   /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline; 
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0; 
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 3; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
#container {
	width: 100%;
	max-width: 1000px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 336px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	margin: 0 auto ; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the #container's width to 100%. */
	position: relative;
}

#noscript {
	width: 80%;
	margin: 10px auto;
	padding: 10px;
	font-size: 1.5em;
	font-weight: bold;
	color: #FF0000;
	text-align: center;
}

#pagebody { /* #pagebody appears below #navbanner and #hero, and above #footer; it occupies the full width of #container. */
	position: relative;
	border-left: 1px solid #333;
	border-right: 1px solid #333;
	z-index: 1;
}

#content {
	/* min-height:460px; */   /* To ensure that #sidebar is displayed in full even when the page content (#content) is very little */
	background-color:#f1f1f1;
	z-index:1;
}

/* ~~ This grouped selector gives the lists in the #content area space ~~ */
#content ul, 
#content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

#sidebar {
	position: fixed;
	top: 60px;
	right: 0px;
	display: none;
	width: 200px;
	z-index: 5;
}

#sidebar a, 
#sidebar a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 10px 5px 10px 15px;
	display: block;
	width: 100%; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	text-align:left;
	background-color: #333;
	color: #fff;
}
#sidebar a:hover, 
#sidebar a:active, 
#sidebar a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #555;
}



/* ~~ The footer ~~ */
#footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the #container to understand where the columns end and contain them */
	text-align: center;
	padding: 5px 10px;
	color: #333;
	border-top: 2px solid #333;
	border-bottom: 2px solid #333;
	border-left: 1px solid #333;
	border-right: 1px solid #333;
	background-color: #f1f1f1;
	z-index: 1;
}

.copyright {
	font-size: 0.7em;
	text-align:center;
	padding: 5px 10px;
	margin:0;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.style-hidden {
	display: none;
}
.style-nomargin-top {
	margin-top: 0px !important;	
}
.style-nomargin-bottom {
	margin-bottom: 0px !important;	
}
.style-nomargins {
	margin: 0;
}
.style-nopadding {
	padding: 0;
}
.style-left {
	text-align:left;
}
.style-centre,
.style-center {
	text-align:center;
}
.style-right {
	text-align:right;
}
.style-line {
	display: block;
	border-bottom: 1px solid #333;
}
.style-border {
	border: 1px solid #333;	
}
.style-topborder {
	border-top: 1px solid #333;
}
.style-noborder {
	border:	none !important;
}
.style-hide {
	display: none;
}
.resp-image {
    max-width: 100%;
    height: auto;
}
.resp-container {
    padding: 0.01em 16px;
}

.resp-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.resp-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.resp-button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.resp-container:after,
.resp-container:before,
.resp-row:after,
.resp-row:before,
.resp-row-padding:before,
.resp-clear:after,
.resp-clear:before {
    content: "";
    display: table;
    clear: both;
}

.resp-col,
.resp-half,
.resp-half-right,
.resp-third,
.resp-third-right,
.resp-twothird,
.resp-threequarter,
.resp-quarter {
    float: left;
    width: 100%;
	overflow:hidden;
}
.resp-half-right,
.resp-third-right {
	float:right;	
}
.resp-center {
    text-align: center!important;
}
.resp-col {
    float: left;
    width: 100%;
}
.bbresp-1-2-4 {
    float: left;
    width: 100%;
}
.bbresp-1-3-3 {
    float: left;
    width: 100%;
}
.bbresp-2-3-3 {
    float: left;
    width: 49.99%;
}
.bbresp-2-2-2 {
    float: left;
    width: 49.99%;
}
.bbresp-3-3-3 {
	float: left;
	width: 33.33%;	
}
.bbresp-2-4-4 {
	float: left;
	width: 49.9%;	
}
.resp-rest {
	foat: left;
    overflow: hidden;
}
.relative {
	position: relative;
}
.fixed {
	position: fixed;
}
.enlarge {
	position: relative;
/*	top: -35px; */
}
.overlay-small {
	max-width:100%;
	position: absolute;
	bottom: 0px;
	opacity: 1.0;
}
.overlay-left {
	left: 0px;
}
.overlay-right {
	right: 0px;
	left: auto;
}
img.overlay-small:hover {
	opacity: 0.4;
}
.image-stretch {
	width: 100%;
	height: auto;
	max-width: none;	
}
.left-margin {
	margin-left: 8px;	
}
.right-margin {
	margin-right: 8px;	
}
.big-margin {
	margin-top: 0px;
}
.push-right {
	margin-left: 0px;
}
.listing-row {
	width: 100%;
	overflow: hidden;
	position: relative;
	clear: both;
	padding: 5px 0;
	border-bottom: 1px solid #333;
}
.listing-row a {
	font-size: 0.85em;
}
.listing-imagecol-left,
.listing-imagecol-right {
    position: relative;
	float: left;
    width: 25%;
	overflow: hidden;
	height: 100%;
	text-align: center;
	padding: 5px;
	margin-right: 5px;
}
.listing-imagecol-right {
	float: right;
	margin-left: 5px;
}
.listing-imagecol-left img,
.listing-imagecol-right img {
	width: 100%;
	max-width: 100%;
}
.listing-textcol {
	overflow: hidden;
	height: 100%;
}
/*
.style-link-text a,
.listing-imagecol-left a,
.listing-imagecol-right a,
.listing-textcol a {
	font-size: 0.8em;
	color: blue;
	text-decoration:underline;
}
*/
/*
.listing-imagecol-left  a img:hover,
.listing-imagecol-right  a img:hover,
.listing-textcol a img:hover {
	opacity: 0.7;
}
*/
/*
.style-link-text a:hover,
.listing-imagecol-left a:hover,
.listing-imagecol-right a:hover,
.listing-textcol a:hover {
	text-decoration:none;
}
*/

/* Style the a tag that wraps several elements */
/* Used on the "Listings pages, e.g. Accommodation, Attractions, Eat & Drink, etc */
a.link-wrapper {
	background-color: #f1f1f1;
	padding: 0px;
	overflow: hidden;
	display: block;
	height: 100%;
	border: 1px solid #f1f1f1;
	font-size: 1.0em;
}
a.link-wrapper:link,
a.link-wrapper:visited,
a.link-wrapper:hover,
a.link-wrapper:active {
	text-decoration: none;
	font-size: 1.0em;
}
a.link-wrapper:hover {
 	background-color: #e1e1e1;
	border: 1px solid #333;
}
a.link-wrapper:hover img{
	opacity: 0.7;
}

@media (max-width:600px) {  /* Small screens */
	#content {
		margin-left: 0;
	}
	.style-rightcol {
		display: none;
	}
	.resp-hide-small {
		display: none;	
	}
	#sidebar {
		top: 50px;
	}
	#sidebar a {
		padding-top: 4px;
		padding-bottom: 4px;
	}
	.listing-imagecol-left,
	.listing-imagecol-right {
		display: none;
	}
	.listing-textcol {
		width: 100%;
	}
	.resp-profile-pic {
		float: right;
		display: block;
		width: 100%;
		margin-bottom: 15px;
	}
}

@media (max-width:450px) {  /* Small screens */
	#content {
		margin-left: 0;
	}
	.style-rightcol {
		display: none;
	}
	.resp-hide-small {
		display: none;	
	}
	#sidebar {
		top: 36px;
	}
	#sidebar a {
		padding-top: 4px;
		padding-bottom: 4px;
	}
}

@media (min-width:601px) {
    .resp-quarter {
        width: 24.99999%;
    }
    .resp-third,
	.resp-third-right {
        width: 33.33333%;
    }
    .resp-half,
	.resp-half-right {
        width: 49.99999%;
    }
    .resp-twothird {
        width: 66.66666%;
    }
    .resp-threequarter {
        width: 74.99999%;
    }
	.bbresp-1-2-4 {
		float: left;
		width: 24.99%;
	}
	.bbresp-1-3-3 {
		float: left;
		width: 33.33%;
	}
	.bbresp-2-3-3 {
		float: left;
		width: 33.33%;
	}
	.bbresp-3-3-3 {
		float: left;
		width: 33.33%;
	}
	.bbresp-2-4-4 {
		float: left;
		width: 24.99%;	
	}
}

@media (max-width: 992px) and (min-width: 601px) {  /* Medium Screens */
	#content {
		margin-left: 0px;
	}
	.bbresp-1-2-4 {
		float: left;
		width: 49.99%;
	}
	.resp-hide-medium {
		display: none;	
	}
}
@media (min-width:993px) { /* Large Screens */
	#content {
		/* margin-left: 200px;*/
	}
	.resp-hide-large {
		display: none;
	}
}

.resp-round-small {
    border-radius: 2px;
}

.resp-round,
.resp-round-medium {
    border-radius: 4px;
}

.resp-round-large {
    border-radius: 8px;
}

.resp-round-xlarge {
    border-radius: 16px;
}

.resp-round-xxlarge {
    border-radius: 32px;
}

.resp-row-padding,
.resp-row-padding>.resp-half,
.resp-row-padding>.resp-half-right,
.resp-row-padding>.resp-third,
.resp-row-padding>.resp-third-right,
.resp-row-padding>.resp-twothird,
.resp-row-padding>.resp-threequarter,
.resp-row-padding>.resp-quarter,
.resp-row-padding>.resp-col {
    padding: 0 8px;
}

.resp-padding-small {
    padding: 4px 8px!important;
}

.resp-button:hover {
    color: #000!important;
    background-color: #ccc!important;
}

.resp-grey,
.resp-hover-grey:hover,
.resp-gray,
.resp-hover-gray:hover {
    color: #000!important;
    background-color: #9e9e9e!important;
}

.button-link,
a.button-link,
a.button-link:visited {
	color:#fff ; 
	background-color:#333;
	/* background-color:#333; */
	margin: 2px;
	border-radius: 8px;
	border: 1px solid #333;
	/* border: 1px solid #333; */
    display: block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

a.button-link:hover,
a.button-link:active,
a.button-link:focus {
	color: #333 !important;
	/* color: #fff !important; */
	text-decoration: none !important;	
	background-color: #bdc99c !important; 
	/* background-color:#555 !important; */
	border: 1px solid #333 !important;
	/* border: 1px solid #333 !important; */
}

.button-show-more,
a.button-show-more,
a.button-show-more:visited {
	color:#333 ; 
	background-color:#bdc99c;
	margin: 2px;
	border-radius: 8px;
	border: 1px solid #333;
	display: inline-block !important; 
	min-width:30%;	
    padding: 4px 8px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

a.button-show-more:hover,
a.button-show-more:active,
a.button-show-more:focus {
	color: #333 !important;
	text-decoration: none !important;	
	background-color: #555 !important; 
	border: 1px solid #333 !important;
}

.button-show-less,
a.button-show-less,
a.button-show-less:visited {
	color:#333 ; 
	background-color:#bdc99c;
	margin: 2px;
	border-radius: 8px;
	border: 1px solid #333;
	display: inline-block !important; 
	min-width:30%;	
    padding: 4px 8px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

a.button-show-less:hover,
a.button-show-less:active,
a.button-show-less:focus {
	color: #333 !important;
	text-decoration: none !important;	
	background-color: #555 !important; 
	border: 1px solid #333 !important;
}

.single-button,
a.single-button,
a.single-button:visited {
	color:#333 ; 
	background-color:#bdc99c;
	margin: 2px;
	border-radius: 8px;
	border: 1px solid #333;
	display: inline-block !important; 
	min-width:30%;	
    padding: 4px 8px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

a.single-button:hover,
a.single-button:active,
a.single-button:focus {
	color: #333 !important;
	text-decoration: none !important;	
	background-color: #555 !important; 
	border: 1px solid #333 !important;
}

.style-margin-2 {
	margin: 2px;	
}
.div-centered {
	margin-left: auto;	
	margin-right: auto;	
}
.div-quarter {
	width: 24.9%;	
}.div-third {
	width: 33.3%;	
}.div-half {
	width: 49.9%;	
}.div-twothird {
	width: 66.6%;	
}.div-threequarter {
	width: 74.9%;	
}
.div-full {
	width: 100%;
	position: relative;	
}
.style-nofloat {
	/* cler: both !important; */
	float: none !important;	
}