*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body 
{
    width: 100%;
    height: 100%;
}

body
{
	font-size: 100%;
	font-weight: 300;
	font-family: 'Catamaran', sans-serif;
	color: #000;
	background-color: #fff;
	line-height: 1.5em;
}

#logo
{
	width: 160px;
	height: 160px;
	position: absolute;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	left: 30px;
}

#logo img
{
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#navigation ul
{
	text-align: right;
}

#navigation ul li 
{
	display: inline-block;
	text-transform: uppercase;
	font-weight: 500;
	margin-left: -4px;
}

#navigation ul li ul 
{
	display: none;
	background-color: #169eff;
	position: absolute;
	text-align: left;
}

#navigation ul li ul li
{
	display: block;
	text-transform: none;
	margin-left: 0px;
}

#navigation ul li ul li a
{
	color: #fff;
	white-space: nowrap;
	padding: 10px 30px;
}

#navigation ul li a
{
	display: block;
	padding: 40px 30px;
	color: #fff;
	text-decoration: none;
	position: relative;
}

#navigation ul li.active
{
	font-weight: 800;
	background-color: #169eff;
}

#navigation ul li.active a
{
	color: #fff;
}

#header
{
	background-color: rgba(255, 255, 255, 0.2);
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
	z-index: 999;
	transition: background-color 0.2s;
}

#header.scrolled
{
	background-color: #fff;
}

#header.scrolled #navigation ul li a
{
	color: #000;
}

#headerInner
{
	max-width: 1200px;
	display: block;
	margin: auto;
	position: relative;
}

#opener
{
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center;
	position: relative;
}

#placeholder
{
	width: 100%;
	height: 380px;
}

.text
{
	margin: 80px 0px;
}

.text.withLivecams
{
	margin-bottom: 0px!important;
}

.text.noMargin
{
	margin: -55px auto -60px;
}

.wrappedUp
{
	width: 100%;
	max-width: 1200px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 30px;
}

.text.wrappedUp.withLivecams
{
	padding: 0px 25px;
}

.buttoned
{
	padding: 0px 30px;
}

.inner
{
	max-width: 900px;
	display: block;
	margin: auto;
}

.centered
{
	text-align: center;
}

h1
{
	font-size: 3em;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	color: #169eff;
	line-height: 1.2em;
}

h2
{
	font-size: 2.1em;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	color: #169eff;
	line-height: 1.3em;
	margin-bottom: 0.9em;
}

.col2
{
	width: calc(50% - 10px);
	height: 260px;
	float: left;
	margin-right: 10px;
	position: relative;
	overflow: hidden;
}

.col2.last
{
	margin-left: 10px;
	margin-right: 0px;
}

.col2 .colTitle
{
	background-color: #169eff;
	color: #fff;
	font-size: 1.2em;
	font-weight: 500;
	text-transform: uppercase;
	position: absolute;
	top: 0px;
	right: 0px;
	display: block;
	padding: 0.5em;
	text-align: right;
}

.colInner
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background-size: cover;
	background-position: center;
	transition: transform 0.2s;
}

.col1:hover .colInner, .col2:hover .colInner, .fullScreenImage:hover .colInner
{
	transform: translate(-50%, -50%) scale(1.1);
}

.clear
{
	clear: both;
}

.divider
{
	width: 100%;
	height: 40px;
	background-image: url(divider.svg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center;
	margin: -20px 0px -10px;
}

.colored .divider
{
	background-image: url(divider_white.svg);
}

#feed
{
	width: 100%;
	height: 430px;
	overflow: hidden;
	display: block;
	margin: auto;
	background-color: #f6f7f9;
	position: relative;
}

#feedInner
{
	width: 498px;
	height: 430px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

#feed iframe
{
	position: absolute;
	top: -70px;
	left: 50%;
	transform: translateX(-50%);
}

.text a
{
	color: #169eff;
	transition: color 0.2s;
	font-weight: 500;
	text-decoration: none;
}

.text a:hover
{
	color: #118ae0;
	text-decoration: underline;
}

.text a.button:hover
{
	text-decoration: none;
}

.text strong
{
	font-weight: 600;
}

.colored .text strong
{
	font-weight: 600;
}

.button, button
{
	display: block;
	margin: auto;
	max-width: 380px;
	padding: 0.8em;
	text-align: center;
	color: #169eff;
	text-decoration: none;
	border: 3px solid #169eff;
	font-weight: 500;
	text-transform: uppercase;
	position: relative;
	transition: color 0.2s;
	margin-top: -65px;
	z-index: 100;
}

button
{
	margin-top: 0px;
	max-width: 100%;
}

#form
{
	width: 100%;
	max-width: 380px;
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.first .button
{
	margin-top: -40px;
}

.colored .button
{
	border: 3px solid #fff;
	color: #fff;
	z-index: 0;
}

.button:after, button:after
{
	content: "";
	width: 0%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: #169eff;
	transition: width 0.2s;
	z-index: -1;
}

.colored .button:after
{
	content: "";
	width: 0%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: #fff;
	transition: width 0.2s;
	z-index: -1;
}

.button:hover:after, button:hover:after
{
	width: 100%;
}

.button:hover, button:hover
{
	color: #fff!important;
}

.colored .button:hover
{
	color: #169eff!important;
}

#footer
{
	padding: 30px 0px;
	background-color: #169eff;
	color: #fff;
}

.mobile
{
	display: none;
}

.desktop
{
	visibility: visible;
}

#footer a
{
	color: #fff;
	text-decoration: none;
}

#footer strong, .max
{
	font-weight: 600;
}

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

.countdown
{
	display: block;
	font-size: 1.2em;
	margin: 1em 0em;
}

.text ul, .text ol
{
	margin-left: 1em;
}

.text ul li
{
	list-style: none;
	position: relative;
}

.text ul li:before
{
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 10px;
	background-color: #000;
	position: absolute;
	left: -1em;
	top: 0.5em;
}

.colored
{
	background-color: #169eff;
	color: #fff;
	padding: 1px 0px;
	font-size: 1.15em;
}

.colored h2
{
	color: #fff;
}

#fbMobile, #fbDesktopBig
{
	display: none;
}

.text.withFeed
{
	margin-bottom: 0px!important;
}

.text img.pano
{
	width: 100%;
	display: block;
	margin: auto;
}

.mobile
{
	display: none!important;
}

.fullScreenImage
{
	width: 100%;
	padding-bottom: 0%;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	display: block;
	margin: auto;
	cursor: zoom-in;
}

.fancybox
{
	cursor: zoom-in;
}

.liveCam
{
	width: 33%;
	display: inline-block;
	padding: 5px;
	vertical-align: top;
}

.liveCam img
{
	width: 100%;
}

#liveCams
{
	text-align: center;
}

.small
{
	font-size: 0.8em;
	font-weight: 300!important;
	text-transform: none;
	margin-top: 0.2em;
	display: block;
}

.countdown .small
{
	display: inline-block;
	font-weight: 600!important;
	font-size: 1em;
	margin-top: 0em!important;
}

.videoDescription
{
	font-weight: 600;
	margin-top: 1em;
	text-transform: uppercase;
	line-height: 1.2em;
}

.videoDescription a
{
	color: #000!important;
	font-weight: 300!important;
}

.fancybox-iframe
{
	background-color: #fff;
}

.iframe
{
	cursor: zoom-in;
}

#currentBubble
{
	text-align: center;
	background-color: #169eff;
	width: 200px;
	height: 200px;
	border-radius: 200px;
	display: block;
	margin: auto;
	position: relative;
	color: #fff;
}

#currentInner
{
	position: relative;
}

#current
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#weatherCurrent
{
	padding-top: 15px;
}

#weatherCurrent i
{
	font-size: 5em;
	color: #fff;
}

#weatherCurrent .temp
{
	font-size: 1.2em;
	margin-top: 1.5em;
	font-weight: 600;
	display: block;
}

#weatherForecast
{
	text-align: center;
}

#weatherForecast i
{
	color: #fff;
	font-size: 2em;
}

.forecast
{
	text-align: center;
	display: inline-block;
	padding: 15px 12px 15px;
}

.weatherIcon
{
	width: 125px;
	height: 125px;
	border-radius: 100px;
	background-color: #169eff;
	color: #fff;
	position: relative;
}

.weatherIconInner
{
	position: absolute;
	top: 54%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.weatherIconInner .day
{
	font-size: 0.8em;
	margin-top: 0.8em;
}

.forecast .day
{
	font-weight: 600;
	display: block;
	margin-bottom: 0.8em;
}

.forecast .small
{
	display: block;
	margin-top: -0.5em;
	margin-bottom: 1em;
}

.today
{
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: calc(50% + 240px);
	width: 200px;
}

.today .small
{
	font-size: 0.7em;
}

.today strong
{
	font-weight: 600;
	font-size: 1.5em;
	margin-bottom: -0.6em;
	display: block;
}

.cam, .imageHover
{
	overflow: hidden;
	position: relative;
}

.cam img, .imageHover img
{
	transition: transform 0.2s;
	float: left;
}

.cam img:hover, .imageHover img:hover
{
	transform: scale(1.1);
}

.gallery a
{
	width: 33.33333%;
	display: inline-block;
	vertical-align: middle;
	margin-right: -4px;
}

.gallery img
{
	width: 100%;
	float: left;
}

.copy
{
	position: absolute;
	width: 100%;
	bottom: 0px;
	right: 0px;
	padding: 5px 10px;
	text-align: right;
	z-index: 100;
	color: #fff;
	font-size: 0.8em;
	text-shadow: 0px 0px 5px #000;
}

#fullPage
{
	width: 100%;
	border: none;
}

#fullPage
{
	margin-top: 80px;
	margin-bottom: -6px;
}

.fullScreen img
{
	width: 100%;
}

.bigGallery .inner
{
	width: 25%;
	float: left;
}

.bigGallery img
{
	width: 100%;
}

#form
{
	padding-top: 130px;
	margin-top: -130px;
}

input, textarea, button
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	box-shadow: none;
   	width: 100%;
   	font-size: 1em;
   	font-family: 'Catamaran', sans-serif;
}

input, textarea
{
	border: 1px solid #000;
	margin-bottom: 1.3em;
	font-weight: 300;
	padding: 8px;
}

textarea
{
	height: 180px;
	resize: none;
}

button
{
	cursor: pointer;
	background-color: transparent;
}

label
{
	display: block;
	font-weight: 600;
	margin-bottom: 0.3em;
}

textarea:focus, input:focus, select:focus
{
	box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
}

select::-ms-expand 
{
	display:none;
}

select 
{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	border: 1px solid #000;
	margin-bottom: 1.3em;
	font-weight: 300;
	padding: 8px;
	box-shadow: none;
	background-image:url(select.svg);
	background-size: auto 7px;
	background-position: right 20px center;
	background-repeat: no-repeat;
	font-family: 'Catamaran';
	color: #000;
	cursor: pointer;
	font-size: 1em;
	font-weight: 300;
}

@-moz-document url-prefix() {
    select {
       padding: 0px 8px;
    }
}

option 
{
	background: #fff;
	padding: 8px;
	color: #000;
	font-family: 'Catamaran';
	font-size: 1em;
	font-weight: 300;
}

.alert
{
	display: none;
}

.has-error label
{
	color: red;
}

.has-error input, .has-error textarea
{
	border: 1px solid red;
}

@media all and (max-width: 480px){
	.bigGallery .inner
	{
		width: 50%!important;
		float: left;
	}
}

@media all and (max-width: 550px){
	h1
	{
		font-size: 2em!important;
	}

	.col1
	{
		width: 100%;
		height: 145px;
	}

	.col2
	{
		width: 100%;
		height: 150px;
		margin-top: 0px;
		margin-left: 0px!important;
	}

	.col2.last
	{
		margin-top: 10px;
	}

	.col1 span, .col2 span
	{
		font-size: 1em;
		padding: 0.3em;
	}

	#fbMobile
	{
		display: block;
	}

	#fbDesktop
	{
		display: none;
	}

	#feed, #feedInner
	{
		height: 330px;
	}

	#feedInner
	{
		width: 278px;
	}

	#logo
	{
		width: 95px!important;
		height: 95px!important;
	}

	#header
	{
		height: 58px!important;
	}

	#navigation
	{
		padding-top: 58px!important;
	}

	.gallery a
	{
		width: 100%;
	}

	#placeholder
	{
		height: 210px!important;
	}

	#opener
	{
		height: 250px!important;
	}
}

@media all and (min-width: 551px) and (max-width: 700px){
	.col2
	{
		height: 180px;
	}
}

@media all and (max-width: 600px){
	.liveCam
	{
		width: 100%!important;
		padding: 8px 5px;
	}

	.text.wrappedUp.withLivecams
	{
		padding: 0px 20px!important;
	}
}

@media all and (max-width: 650px){
	.today
	{
		position: relative;
		left: 0;
		top: 0;
		transform: none;
		text-align: center;
		margin-top: 2em;
		width: 100%;
	}

	#currentBubble
	{
		width: 150px;
		height: 150px;
	}

	#weatherCurrent i
	{
		font-size: 3em;
		color: #fff;
	}

	#weatherCurrent .temp
	{
		font-size: 1.1em;
		margin-top: 1.3em;
		font-weight: 600;
		display: block;
	}

	#placeholder
	{
		height: 240px;
	}

	.desktopView
	{
		display: none!important;
	}

	.mobile
	{
		display: block!important;
	}
}

@media all and (min-width: 651px) and (max-width: 750px){
	.today
	{
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		left: calc(50% + 190px);
		width: 180px;
	}

	#currentBubble
	{
		width: 150px;
		height: 150px;
	}

	#weatherCurrent i
	{
		font-size: 7em;
		color: #fff;
	}

	#weatherCurrent .temp
	{
		font-size: 1.1em;
		margin-top: 1.3em;
		font-weight: 600;
		display: block;
	}
}

@media all and (min-width: 701px) and (max-width: 800px){
	.col2
	{
		height: 220px;
	}
}

@media all and (max-width: 700px){
	.bigGallery .inner
	{
		width: 33.3%;
		float: left;
	}
}

@media all and (max-width: 900px){
	body
	{
		font-size: 95%;
	}

	h1
	{
		font-size: 2.2em;
	}

	h2
	{
		font-size: 1.6em;
	}

	.liveCam
	{
		width: calc(33% - 2px);
	}

	#navigation
	{
		position: fixed;
		width: 250px;
		top: 0px;
		overflow: auto;
		height: 100%;
		padding-top: 70px;
		background-color: #fff;
		right: -250px;
		z-index: 100000000;
		transition: right 0.3s, box-shadow 0.3s;
	}

	#navigation.shown
	{
		box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
		right: 0px;
	}

	#navOpener
	{
		width: 38px;
		height: 38px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		right: 25px;
		transform: translateY(-50%);
		border: 3px solid #169eff;
		z-index: 10000000000;
		cursor: pointer;
	}

	.line
	{
		position: absolute;
		width: calc(100% - 16px);
		height: 2px;
		background-color: #169eff;
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.3s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 10px;
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 10px;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		top: 50%;
		transform: translate(-50%, -50%);
		opacity: 0;
	}

	#navOpener.active .line:nth-child(3)
	{
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#navigation ul li
	{
		display: block;
		text-align: center;
		position: relative;
	}

	#navigation ul li a
	{
		color: #000;
		padding: 20px 25px;
	}

	#navigation ul li.active a, #navigation ul li ul li a
	{
		color: #fff!important;
	}

	.wrappedUp, .buttoned
	{
		padding: 0px 25px;
	}

	.text.wrappedUp.withLivecams
	{
		padding: 0px 18px;
	}

	#logo
	{
		left: 25px;
		width: 110px;
		height: 110px;
		z-index: 10000000;
	}

	#footer
	{
		padding: 25px 0px;
	}

	#header
	{
		height: 70px;
		z-index: 999;
		background-color: rgba(255, 255, 255, 0.2);
	}

	.text
	{
		margin: 50px 0px;
	}

	#fullPage
	{
		margin-top: 50px;
	}

	.text.noMargin
	{
		margin: -25px 0px -30px 0px;
	}

	.text.countdown
	{
		margin: 1em 0em;
	}

	.text.colored
	{
		padding: 50px 0px;
	}

	.button
	{
		margin-top: -35px;
	}

	.first .button
	{
		margin-top: -25px;
	}

	.divider
	{
		height: 28px;
	}

	.mobile
	{
		display: block;
	}

	.desktop
	{
		display: none;
	}

	.subNavOpener
	{
		width: 50px;
		height: 62px;
		position: absolute;
		right: 0px;
		top: 0px;
		cursor: pointer;
	}

	#navigation ul li.active .subNavOpener:after
	{
		color: #fff;
	}

	.subNavOpener:after
	{
		font-size: 0.9em;
		content: "▼";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #169eff;
	}

	.subNavOpener.active:after
	{
		content: "▲";
	}

	#navigation ul li ul
	{
		position: relative;
		display: block;
		display: none;
	}

	#weatherForecast i
	{
		color: #fff;
		font-size: 1.6em;
	}

	.weatherIcon
	{
		width: 100px;
		height: 100px;
	}

	.weatherIconInner .day
	{
		font-size: 0.7em;
		margin-top: 0.8em;
	}

	#opener
	{
		height: 330px;
	}
}

@media all and (min-width: 901px){
	#navigation ul li:hover > ul
	{
		display: block;
	}

	#navigation ul li:hover a
	{
		color: #fff;
	}

	#navigation ul li:hover
	{
		background-color: #169eff;
	}

	#navigation ul li:hover a
	{
		color: #fff;
	}

	#header.scrolled #navigation ul li.active a, #header.scrolled #navigation ul li:hover a, #header.scrolled #navigation ul li ul li a
	{
		color: #fff;
	}
}

@media all and (min-width: 901px) and (max-width: 1000px){
	#navigation ul li a
	{
		padding: 36px 25px;
	}

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

	.wrappedUp, .buttoned
	{
		padding: 0px 25px;
	}

	.text.wrappedUp.withLivecams
	{
		padding: 0px 20px;
	}

	#logo
	{
		left: 25px;
		width: 140px;
		height: 140px;
	}

	#footer
	{
		padding: 25px 0px;
	}

	.text
	{
		margin: 60px 0px;
	}

	#fullPage
	{
		margin-top: 60px;
	}

	.text.noMargin
	{
		margin: -33px 0px -40px 0px;
	}

	.text.countdown
	{
		margin: 1em 0em;
	}

	.text.colored
	{
		padding: 60px 0px;
	}

	.button
	{
		margin-top: -45px;
	}

	.first .button
	{
		margin-top: -30px;
	}

	#opener
	{
		height: 370px;
	}
}

@media all and (min-width: 1480px){
	body
	{
		font-size: 110%;
	}

	#navigation ul li ul li a
	{
		color: #fff;
		white-space: nowrap;
		padding: 15px 35px;
	}

	#navigation ul li a
	{
		display: block;
		padding: 48px 35px;
		color: #fff;
		text-decoration: none;
		position: relative;
	}

	.text
	{
		margin: 92px auto;
	}

	#fullPage
	{
		margin-top: 92px;
	}

	.text.noMargin
	{
		margin: -62px auto -68px auto;
	}

	.text.colored
	{
		padding: 92px 0px;
	}

	#logo
	{
		left: 35px;
		width: 185px;
		height: 185px;
	}

	.wrappedUp
	{
		max-width: 1300px;
		padding: 0px 35px;
	}

	.buttoned
	{
		padding: 0px 35px;
	}

	.text.wrappedUp.withLivecams
	{
		padding: 0px 30px;
	}

	#headerInner
	{
		max-width: 1300px;
	}

	.inner
	{
		max-width: 980px;
	}

	.button, button
	{
		max-width: 400px;
		padding: 1.1em;
		margin-top: -75px;
	}

	button
	{
		margin-top: 0px;
	}

	#form
	{
		max-width: 400px;
		display: block;
		margin-right: auto;
		margin-left: auto;
		margin-top: -160px;
		padding-top: 160px;
	}

	.first .button
	{
		margin-top: -46px;
	}

	.text.countdown
	{
		margin: 1.2em 0em;
	}

	.divider
	{
		height: 45px;
		margin: -25px 0px -10px;
	}

	h1
	{
		font-size: 3.2em;
	}

	h2
	{
		font-size: 2.3em;
	}

	.col2
	{
		height: 280px;
	}

	.col1 span, .col2 span
	{
		font-size: 1em;
		padding: 0.7em;
	}

	#fbDesktop
	{
		display: none;
	}

	#fbDesktopBig
	{
		display: block;
	}

	#feed, #feedInner
	{
		height: 530px;
	}

	#placeholder
	{
		height: 450px;
	}

	#opener
	{
		height: 520px;
	}
}

@media all and (min-width: 1650px){
	#opener
	{
		height: 600px!important;
	}
}