/* ============================================================
   Kids Cruise Free on Arosa
   Linked stylesheet — edit in Dreamweaver (CSS Designer / CSS Styles)
   Default rules = desktop. Media queries at the bottom = tablet/phone.
   ============================================================ */

html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	width: 100%;
	max-width: 980px;
	background-color: #fff;
	margin-right: auto;
	margin-left: auto;
	border: 2px solid #D00;
	border-radius: 3em;
	-webkit-border-radius: 3em;
	-moz-border-radius: 3em;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	text-align: center;
	padding-top: 0;
}

#header {
	width: 100%;
	color: #FFCE00;
	text-align: right;
	background-color: #000;
	border-radius: 2em 2em 0 0;
	-webkit-border-radius: 2em 2em 0 0;
	-moz-border-radius: 2em 2em 0 0;
	margin-top: 0;
	padding: 10px;
	overflow: hidden;
}

#headerContact {
	overflow: hidden;
	text-align: right;
}

#header img {
	max-width: 100%;
	height: auto;
}

#content {
	width: 100%;
	text-align: left;
	padding-right: 10px;
	padding-left: 10px;
	overflow-wrap: break-word;
}

#pic {
	text-align: center;
	width: 100%;
}

#pic img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

#nav {
	margin: 0;
	padding: 7px 6px 0;
	line-height: 100%;
	border-radius: 2em;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	background: #4F020A; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BF0005', endColorstr='#4F020A'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#BF0005), to(#4F020A)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #BF0005, #4F020A); /* for firefox 3.6+ */
	border: solid 1px #6d6d6d;
}

#dropdown {
	width: 100%;
	max-width: 940px;
	margin-right: auto;
	margin-left: auto;
}

#nav li {
	margin: 0 5px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
}

/* main level link */
#nav a {
	font-weight: bold;
	color: #E9D9B5;
	text-decoration: none;
	display: block;
	padding: 8px 20px;
	margin: 0;
	-webkit-border-radius: 1.6em;
	-moz-border-radius: 1.6em;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	text-align: center;
}

/* main level link hover */
#nav .current a,
#nav li:hover > a {
	background: #FFCE00; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDA40', endColorstr='#FFCE00'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#FFDA40), to(#FFCE00)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #FFDA40, #FFCE00); /* for firefox 3.6+ */
	color: #4F020A;
	border-top: solid 1px #E9D9B5;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

/* sub levels link hover */
#nav ul li:hover a,
#nav li:hover li a {
	background: none;
	border: none;
	color: #E9D9B5;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

#nav ul a:hover {
	background: #FFCE00 !important; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDA40', endColorstr='#FFCE00'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#FFDA40), to(#FFCE00)) !important; /* for webkit browsers */
	background: -moz-linear-gradient(top, #FFDA40, #FFCE00) !important; /* for firefox 3.6+ */
	color: #000 !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}

/* level 2 list */
#nav ul {
	background: #4F020A; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BF0005', endColorstr='#4F020A'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#BF0005), to(#4F020A)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #BF0005, #4F020A); /* for firefox 3.6+ */
	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 35px;
	left: 0;
	border: solid 1px #E9D9B5;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}

#nav ul a {
	font-weight: normal;
}

/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -3px;
}

/* rounded corners for first and last child */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 9px;
	-moz-border-radius-topleft: 9px;
	-webkit-border-top-right-radius: 9px;
	-moz-border-radius-topright: 9px;
}

#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 9px;
	-moz-border-radius-bottomleft: 9px;
	-webkit-border-bottom-right-radius: 9px;
	-moz-border-radius-bottomright: 9px;
}

/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

#nav {
	display: inline-block;
}

html[xmlns] #nav {
	display: block;
}

* html #nav {
	height: 1%;
}

#nav2 {
	margin-right: auto;
	margin-left: auto;
	height: 75px;
	background-color: #FFF;
}

#nav2 ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

#nav2 ul li {
	margin: 0px;
	padding: 0px;
	display: inline-block;
}

#nav2 ul li a {
	text-decoration: none;
	display: block;
	height: 35px;
	font-weight: bold;
	text-align: center;
	color: #D00;
	margin-right: 8px;
	margin-left: 8px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-right: 1px;
	padding-left: 1px;
}

#nav2 ul li a:hover {
	text-decoration: underline;
}

#footer {
	width: 100%;
	text-align: center;
	color: #000;
	background-color: #FFCE00;
	border-radius: 0 0 2em 2em;
	-webkit-border-radius: 0 0 2em 2em;
	-moz-border-radius: 0 0 2em 2em;
	padding: 10px 10px 20px;
	bottom: 0px;
}

#back {
	font-weight: bold;
	color: #D00;
	text-align: right;
}

#back a {
	color: #D00;
	text-decoration: none;
	padding-right: 10px;
}

a {
	color: #D00;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration: underline;
	font-weight: bold;
}

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

.copyright a {
	color: #D00;
	text-decoration: none;
}

.copyright a:hover {
	text-decoration: underline;
}

.fltRt {
	float: right;
	padding-left: 10px;
}

.fltLft {
	float: left;
	padding-right: 10px;
}

.autoCtr {
	margin-right: auto;
	margin-left: auto;
}

.alignCtr {
	text-align: center;
}

body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	background-color: #D00;
	margin: 0;
	padding: 12px;
}

h1 {
	color: #D00;
	font-size: 1.7em;
	text-shadow: 1px 1px #333;
}

h2 {
	color: #FFCE00;
	font-size: 1.3em;
	text-shadow: 1px 1px #333;
}

h3 {
	color: #2E86C6;
	font-size: 1.1em;
}

p {
	line-height: 1.5;
}

th {
	color: #FFCE00;
	font-weight: bold;
	background-color: #000;
}

td {
	vertical-align: top;
}

td a {
	font-weight: bold;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

table {
	max-width: 100%;
}

.pricingBarge {
	width: 100%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D00;
	border-right-color: #FFCE00;
	border-bottom-color: #FFCE00;
	border-left-color: #D00;
}

.pricingBarge th {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D00;
	border-right-color: #FFCE00;
	border-bottom-color: #FFCE00;
	border-left-color: #D00;
	text-align: center;
}

.pricingBarge td {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #D00;
	border-right-color: #FFCE00;
	border-bottom-color: #FFCE00;
	border-left-color: #D00;
	text-align: center;
	padding: 2px;
}

.centerBoldRed {
	font-weight: bold;
	color: #D00;
	text-align: center;
	font-size: 0.9em;
	line-height: 1;
}

.centerBold {
	font-weight: bold;
	text-align: center;
}

.itinHeading {
	font-style: italic;
	font-weight: bold;
	line-height: 30px;
}

#col1,
#col2 {
	float: left;
	width: 50%;
	padding-right: 5px;
	padding-left: 5px;
}

/* ============================================================
   RESPONSIVE RULES
   Dreamweaver: Window > Multiscreen Preview, or resize Live View
   Edit these widths if you add a phone/tablet layout later.
   ============================================================ */

@media screen and (max-width: 800px) {
	body {
		padding: 8px;
	}

	#wrapper {
		border-radius: 1.5em;
		-webkit-border-radius: 1.5em;
		-moz-border-radius: 1.5em;
	}

	#header {
		border-radius: 1.5em 1.5em 0 0;
		-webkit-border-radius: 1.5em 1.5em 0 0;
		-moz-border-radius: 1.5em 1.5em 0 0;
	}

	#footer {
		border-radius: 0 0 1.5em 1.5em;
		-webkit-border-radius: 0 0 1.5em 1.5em;
		-moz-border-radius: 0 0 1.5em 1.5em;
	}
}

@media screen and (max-width: 720px) {
	#header {
		text-align: center;
	}

	#header .fltLft,
	#header img.fltLft {
		float: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 10px;
		padding-right: 0;
		max-width: 90%;
	}

	#headerContact {
		text-align: center;
	}

	.fltLft,
	.fltRt {
		float: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 10px;
		padding-right: 0;
		padding-left: 0;
	}

	#col1,
	#col2 {
		float: none;
		width: 100%;
		padding-right: 0;
		padding-left: 0;
	}

	#nav li {
		float: none;
		display: block;
		margin: 0 0 4px;
	}

	#nav ul {
		position: static;
		width: 100%;
		display: block;
	}

	#nav li:hover > ul {
		display: block;
	}

	#back {
		text-align: center;
	}

	#back a {
		padding-right: 0;
	}
}

@media screen and (max-width: 480px) {
	body {
		padding: 0;
		font-size: 1em;
	}

	#wrapper {
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-left: none;
		border-right: none;
	}

	#header {
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		padding: 12px 8px;
	}

	#footer {
		border-radius: 0;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
	}

	#content {
		padding-right: 12px;
		padding-left: 12px;
	}

	h1 {
		font-size: 1.35em;
	}

	h2 {
		font-size: 1.15em;
	}

	#nav2 {
		height: 24px;
	}

	#nav a {
		padding: 10px 12px;
	}
}
