<?php

header("Content-type: text/css");
$basepath = ($_SERVER['PSS_DEPLOYMENT_CONTEXT'] === 'live' ? '' : '/demo.guestdeck.com') . '/kenwood-sc3';

?>

/* --- CONTENT OVERLAY --- */

.overlay-container {
	display: none;
	left: 50%;
	margin: 0 0 0 -313px;
	position: absolute;
	top: 175px;
	width: 625px;
	z-index: 85;
}

.overlay {
	position: relative;
}

.overlay .overlay-side-nav {
	display: block;
	left: -160px;
	position: absolute;
	top: 30px;
	width: 160px;
}

.overlay .overlay-side-nav ul {
	background-color: #365563;
	background-image: url(<?php echo $basepath; ?>/shell/bg-sidenav.jpg);
	background-position: top right;
	background-repeat: repeat-y;
	border-radius: 5px 0 0 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-radius: 5px 0 0 5px;
	list-style: none;
	padding: 15px 0;
}

.overlay .overlay-side-nav li {
	background-color: #3f6373;
	background-image: url(<?php echo $basepath; ?>/shell/bg-sidenav-buttons.jpg);
	background-repeat: repeat-y;
	border-top: #486f82 solid 1px;
	border-bottom: #304c5a solid 1px;
}

.overlay .overlay-side-nav ul a {
	color: #fff;
	display: block;
	font-size: 11px;
	line-height: 15px;
	padding: 10px 15px;
	text-transform: uppercase;
}

.overlay .overlay-side-nav .selected,
.overlay .overlay-side-nav a:hover {
	color: #dec883;
}

.overlay .overlay-content-bg {
	background-color: #fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 0 10px rgba(44,78,96,0.2);
	-moz-box-shadow: 0 0 10px rgba(44,78,96,0.2);
	-o-box-shadow: 0 0 10px rgba(44,78,96,0.2);
	-webkit-box-shadow: 0 0 10px rgba(44,78,96,0.2);
	height: 432px;
	padding: 9px;
	width: 607px;
}

.overlay .overlay-content-border {
	border: #ddd solid 1px;
	height: 410px;
	overflow: hidden;
	padding: 20px 0 0 0;
	width: 605px;
}

.overlay .overlay-content-pane {
	height: 390px;
	overflow: hidden;
	position: relative;
}

.overlay .overlay-content {
	display: none;
	/*height: 340px;*/
	left: 35px;
	padding: 25px 0;
	position: absolute;
	width: 500px;
}

.overlay .overlay-content.selected {
	display: block;
}

.overlay .overlay-scrollbar {
	background-image: url(<?php echo $basepath; ?>/shell/bg-scrollbar.jpg);
	background-repeat: no-repeat;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	position: absolute;
	height: 390px;
	right: 10px;
	width: 15px;
}

.overlay .overlay-scrollbar .overlay-scrollbar-thumb {
	background-image: url(<?php echo $basepath; ?>/shell/bg-scrollknob.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	height: 60%;
	position: absolute;
	top: 0;
	width: 100%;
	cursor:pointer;
}

.overlay .overlay-close {
	background-image: url(<?php echo $basepath; ?>/shell/bg-sidenav-close.jpg);
	background-repeat: no-repeat;
	background-color: #4b6f82;
	border-radius: 0 5px 5px 0;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-radius: 0 5px 5px 0;
	display: block;
	height: 35px;
	position: absolute;
	right: -35px;
	top: 30px;
	width: 35px;
}

/* --- INFO BUBBLES --- */

.bubble {
	cursor: default;
	display: none;
	position: absolute;
	width: 465px;
	z-index: 85;
}

.grabbing .bubble {
	cursor: url(<?php echo $basepath; ?>/shell/grabbing.cur), default;
}

.bubble .bubble-close {
	background-color: #4b6f82;
	background-image: url(<?php echo $basepath; ?>/shell/bg-sidenav-close.jpg);
	background-repeat: no-repeat;
	border-radius: 0 5px 5px 0;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-radius: 0 5px 5px 0;
	display: block;
	height: 35px;
	position: absolute;
	right: -35px;
	top: 30px;
	width: 35px;
}

.bubble .bubble-content {
	background-color: #fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	overflow: hidden;
	padding: 15px;
	width: 435px;
}

.bubble .bubble-side-bar {
	float: left;
	height: 100%;
	margin: 0 15px 0 0;
	width: 100px;
}

.bubble .bubble-details {
	float: right;
	width: 320px;
}

.bubble .bubble-side-bar img {
	border: #3a5b6a solid 3px;
	margin-bottom: 5px;
}

.bubble .bubble-side-bar ul {
	background-color: #3a5b6a;
	color: #fff;
	font-size: 10px;
	padding: 0 5px;
	text-transform: uppercase;
	text-align: center;
	width: 90px;
}

.bubble .bubble-side-bar li {
	line-height: 12px;
	padding: 7px 0 3px 0;
}

.bubble .bubble-side-bar .temperature {
	border-bottom: #304c5a solid 1px;
}

.bubble .bubble-side-bar .temperature span {
	color: #fff;
	font-size: 30px;
	line-height: 35px;
	margin: 0;
	text-align: center;
}

.bubble .bubble-side-bar .condition {
	background-position: center 30px;
	background-repeat: no-repeat;
	border-top: #486f82 solid 1px;
	height: 75px;
	text-align: center;
}

/* --- WEATHER ICONS --- */

.bubble .bubble-side-bar .c260, /* Freezing fog */
.bubble .bubble-side-bar .c248, /* Fog */
.bubble .bubble-side-bar .c122, /* Overcast */
.bubble .bubble-side-bar .c119 /* Cloudy */ {
	background-image: url(<?php echo $basepath; ?>/images/info-weather-clouds.png);
}

.bubble .bubble-side-bar .c359, /* Torrential rain shower */
.bubble .bubble-side-bar .c356, /* Moderate or heavy rain shower */
.bubble .bubble-side-bar .c314, /* Moderate or Heavy freezing rain */
.bubble .bubble-side-bar .c308, /* Heavy rain */
.bubble .bubble-side-bar .c284, /* Heavy freezing drizzle */
.bubble .bubble-side-bar .c353, /* Light rain shower */
.bubble .bubble-side-bar .c311, /* Light freezing rain */
.bubble .bubble-side-bar .c305, /* Heavy rain at times */
.bubble .bubble-side-bar .c302, /* Moderate rain */
.bubble .bubble-side-bar .c299, /* Moderate rain at times */
.bubble .bubble-side-bar .c296, /* Light rain */
.bubble .bubble-side-bar .c293, /* Patchy light rain */
.bubble .bubble-side-bar .c281, /* Freezing drizzle */
.bubble .bubble-side-bar .c266, /* Light drizzle */
.bubble .bubble-side-bar .c263, /* Patchy light drizzle */
.bubble .bubble-side-bar .c185, /* Patchy freezing drizzle nearby */
.bubble .bubble-side-bar .c176, /* Patchy rain nearby */
.bubble .bubble-side-bar .c143  /* Mist */ {
	background-image: url(<?php echo $basepath; ?>/images/info-weather-rain.png);
}

.bubble .bubble-side-bar .c377, /* Moderate or heavy showers of ice pellets */
.bubble .bubble-side-bar .c374, /* Light showers of ice pellets */
.bubble .bubble-side-bar .c371, /* Moderate or heavy snow showers */
.bubble .bubble-side-bar .c368, /* Light snow showers */
.bubble .bubble-side-bar .c365, /* Moderate or heavy sleet showers */
.bubble .bubble-side-bar .c362, /* Light sleet showers */
.bubble .bubble-side-bar .c350, /* Ice pellets */
.bubble .bubble-side-bar .c338, /* Heavy snow */
.bubble .bubble-side-bar .c335, /* Patchy heavy snow */
.bubble .bubble-side-bar .c332, /* Moderate snow */
.bubble .bubble-side-bar .c329, /* Patchy moderate snow */
.bubble .bubble-side-bar .c326, /* Light snow */
.bubble .bubble-side-bar .c323, /* Patchy light snow */
.bubble .bubble-side-bar .c320, /* Moderate or heavy sleet */
.bubble .bubble-side-bar .c317, /* Light sleet */
.bubble .bubble-side-bar .c230, /* Blizzard */
.bubble .bubble-side-bar .c227, /* Blowing snow */
.bubble .bubble-side-bar .c182, /* Patchy sleet nearby */
.bubble .bubble-side-bar .c179  /* Patchy snow nearby */ {
	background-image: url(<?php echo $basepath; ?>/images/info-weather-snow.png);
}

.bubble .bubble-side-bar .c389, /* Moderate or heavy rain in area with thunder */
.bubble .bubble-side-bar .c200, /* Thundery outbreaks in nearby */
.bubble .bubble-side-bar .c386, /* Patchy light rain in area with thunder */
.bubble .bubble-side-bar .c395, /* Moderate or heavy snow in area with thunder */
.bubble .bubble-side-bar .c392  /* Patchy light snow in area with thunder */ {
	background-image: url(<?php echo $basepath; ?>/images/info-weather-storm.png);
}

/*
.bubble .bubble-side-bar .c {
	background-image: url(<?php echo $basepath; ?>/images/info-weather-wind.png);
}
*/

.bubble ul.options {
	border-top: #e2e2e2 solid 1px;
	list-style: none;
	margin:0;
}

.bubble .options li {
	background-image: url(<?php echo $basepath; ?>/shell/bullet-arrow.png);
	background-position: center right;
	background-repeat: no-repeat;
	border-bottom: #e2e2e2 solid 1px;
	line-height: 18px;
	padding: 6px 25px 6px 0;
}

.bubble .options li a	{
	display:block;
}

.bubble .bubble-anchor {
	background-image: url(<?php echo $basepath; ?>/images/info-pointer.png);
	background-repeat: no-repeat;
	bottom: -20px;
	height: 20px;
	position: absolute;
	width: 20px;
}

.bubble.left .bubble-anchor {
	left: 52px;
}

.bubble.right .bubble-anchor {
	right: 52px;
}

#the-ship-brief-bubble {
	left: 440px;
	top: 180px;
}

#day-1-bubble {
	left: 421px;
	top: 160px;
}

#day-2-bubble {
	left: 536px;
	top: 320px;
}

#day-4-bubble {
	left: 1521px;
	top: 290px;
}

#day-5-bubble {
	left: 1238px;
	top: 260px;
}

#day-6-bubble {
	left: 1336px;
	top: 380px;
}

/* --- ship brief bubble --- */
#the-ship-brief-bubble .bubble-side-bar {
	background-color: #3a5b6a;
	color: #fff;
	font-size: 11px;
	height: 250px;
	line-height: 15px;
	padding: 20px 0;
	text-align: center;
	text-transform: uppercase;
}

#the-ship-brief-bubble .bubble-side-bar h3	{
	color: #fff;
	font-size: 36px;
	font-weight: normal;
	letter-spacing: -1px;
	line-height: 30px;
	margin: 0 0 5px 0;
}

#the-ship-brief-bubble .bubble-side-bar .hr {
	border-top: 1px solid #304C5A;
	border-bottom: 1px solid #486F82;
	height: 0;
	line-height: 0;
	margin: 0 auto 15px auto;
	width: 90px;
}
