
/**

	CSS-RESET

 */

html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}
img, fieldset {
	border: 0;
}
img {
	max-width: 100%;
	height: auto;
	width: auto\9;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}
/* Clearfix */
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }
.clear {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/**

	GENERAL STYLING
	
 */

body {
	background: #DEDEDE;
	font: .81em/150% "Arial", "Helvetica", sans-serif;
	color: #333333;
}

a {
	color: #005AAB;
	text-decoration: none;
	outline: none;
}

a:hover {
  color: #123759;
	text-decoration: underline;
}

p {
	margin: 0 0 1.2em;
	padding: 0;
}

ul, ol {
	margin: 1em 0 1.4em 24px;
	padding: 0;
	line-height: 140%;
}

li {
	margin: 0 0 .5em 0;
	padding: 0;
}

ul.no-bullets {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 20px 0 .4em;
	color: #000;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.6em;
}
h4 {
	font-size: 1.4em;
}
h5 {
	font-size: 1.2em;
}
h6 {
	font-size: 1.1em;
}

.section h1 {
	margin-top: 10px;
}

.highlight {
	background-color: yellow;
}

.add-shadow {
	-webkit-box-shadow: 0 1px 3px #A0A0A0;
	-moz-box-shadow: 0 1px 3px #A0A0A0;
	box-shadow: 0 1px 3px #A0A0A0;
}

/**

		INPUTS

 */

input {
	margin: 0px;
}

input,
textarea,
select
{
	border: 1px solid #cdcdcd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 4px;		
	outline-color: #1425B3;
	font-size: 1em;
	color: #58585a;
}

input:focus,
textarea:focus {
	border: 1px solid #1425B3;
}

textarea {
	line-height: 1.4em;
}


/* reset webkit search input styles */
input[type=search] {
	-webkit-appearance: none;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button 
{
	display: none;
}

/**

		BUTTONS
		Also see style for forms.
	
	*/


.button {
	cursor: pointer;
	font-family: "Arial", "Helvetica", sans-serif;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	font-weight: bold;
	outline: none;
	font-size: 13px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
  box-shadow: inset 0 1px 0 0 #a0a0a0, 0 0px 0px 0 transparent;
	color: white;
	border: solid 1px #444444;
	background: #888888;
	background: -moz-linear-gradient(top,  #888888 0%, #555555 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888888), color-stop(100%,#555555));
	background: -webkit-linear-gradient(top,  #888888 0%,#555555 100%);
	background: -o-linear-gradient(top,  #888888 0%,#555555 100%);
	background: -ms-linear-gradient(top,  #888888 0%,#555555 100%);
	background: linear-gradient(to bottom,  #888888 0%,#555555 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#888888', endColorstr='#555555',GradientType=0 );
}

.button:hover {
	background: #777777;
	background: -moz-linear-gradient(top,  #777777 0%, #444444 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#777777), color-stop(100%,#444444));
	background: -webkit-linear-gradient(top,  #777777 0%,#444444 100%);
	background: -o-linear-gradient(top,  #777777 0%,#444444 100%);
	background: -ms-linear-gradient(top,  #777777 0%,#444444 100%);
	background: linear-gradient(to bottom,  #777777 0%,#444444 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#444444',GradientType=0 );
}

.button:active {
  box-shadow: inset 0 0px 0 0 #a0a0a0, 0 0px 0px 0 transparent;
	background: #777777;
	background: -moz-linear-gradient(top,  #444444 0%, #777777 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444444), color-stop(100%,#777777));
	background: -webkit-linear-gradient(top,  #444444 0%,#777777 100%);
	background: -o-linear-gradient(top,  #444444 0%,#777777 100%);
	background: -ms-linear-gradient(top,  #444444 0%,#777777 100%);
	background: linear-gradient(to bottom,  #444444 0%,#777777 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#777777',GradientType=0 );
}

button.button {
	padding: 0.25em 0.68em;
}

a.button {
	padding: 0.25em 0.68em;
}

a.button:hover {
	text-decoration: none;
	color: white;
}

input.button {
	padding: 4px 8px;
}

.ie7 input.button {
	padding: 1px 6px;
}



/**

  STRUCTURE

 */

#wrapper {
	width: 980px;
	margin: 0 auto;
}

#header  #header-nav-container {
}

.content-extra-row	{
	clear: both;
	background: white;
	margin: 0px 0px 20px 0px;
	padding: 5px 20px 20px 20px;
	width: 630px;
	float: left;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px #A0A0A0;
	-moz-box-shadow: 0 1px 3px #A0A0A0;
	box-shadow: 0 1px 3px #A0A0A0;
}

/**

	 		HEADER 

 */



#header {
	margin: 20px 0 0px 0;
}


#header #header-row-1 {
	padding: 20px 20px 0px 20px;
	background-color: #ffffff;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-box-shadow: 0 1px 3px #A0A0A0;
	-moz-box-shadow: 0 1px 3px #A0A0A0;
	box-shadow: 0 1px 3px #A0A0A0;
}

#header #header-logo {
	width: 250px;
	float: left;
	line-height: 0px;
	margin-bottom: 10px;
}

#header #header-logo-img {
}


#header #header-toolbox {
	float: right;
	width: 165px;
	text-align: right;
}

#header #header-search-container {
	text-align: left;

	width: 165px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	margin-bottom: 10px;
}

#header #header-search-input {
	background-color: #ffffff;
	font-size: 11px;
	margin-bottom: 10px;

	margin: 4px;
	width: 112px;
	outline: none;
	border-color: #7c0041;

}

#header #header-search-input:focus {
	border-color: white;
	background-color: white;
}

#header #header-search-submit {
	cursor: pointer;
	height: 22px;
	width: 22px;
	padding: 0px;
	margin-top: 0px;
	background-color: transparent;
	border: 0px solid transparent;
	line-height: 0;
	background-image: url(/clientfiles/mobile/images/icon-search.png);
	background-repeat: no-repeat;
}

#header #header-menubutton {
	display: none;
	padding: 4px 10px;
	margin-bottom: 10px;
}


#header #header-row-2 {
	clear: both;
	padding: 0px;

	background-color: #ffffff;
	
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;

	-webkit-box-shadow: 0 1px 3px #A0A0A0;
	-moz-box-shadow: 0 1px 3px #A0A0A0;
	box-shadow: 0 1px 3px #A0A0A0;
}

.TravelizeForceButtonMenu #header #header-row-1 {
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}


.TravelizeForceButtonMenu #header #header-row-2 {
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.TravelizeForceButtonMenu #header #header-menubutton {
	display: inline-block !important;
}


#header #header-nav-container.dropdown-menu {
	padding-top: 5px;
	padding-left: 10px;
}

/**

 	dropdown-menu - Function
	http://stackoverflow.com/questions/9176639/drop-down-jquery-css-menu-not-responding-on-ipad-iphone

 */
 
#header-nav-container.dropdown-menu ul {
	min-height: 0px;
	list-style: none;
	padding: 0;
	margin: 0;
}

#header-nav-container.dropdown-menu ul li, 
#header-nav-container.dropdown-menu ul li ul li{
	float: left;
	position: relative;
	width: auto;
}

#header-nav-container.dropdown-menu ul li a {
	display: block;
}

#header-nav-container.dropdown-menu li ul {
	min-height: 0px;
	display: none;
	position: absolute;
	width:200px;
	top: 18px;
	left: 0;
	margin-left:-4px;
}

#header-nav-container.dropdown-menu li>ul {
	top: auto;
	left: auto;
}


#header-nav-container.dropdown-menu ul.level2.hover {
	display: block;
}

.android-only {
	display: none !important;
}

.isAndroid .android-only {
	display: block !important;
}


/**

 	dropdown-menu - Style

 */

#header-nav-container.dropdown-menu ul li a.level1 {
  font-size: 15px;
	font-weight: bold;
	display: block;
	padding: 4px 10px 9px 10px;
	text-decoration: none;
	margin: 0px;
	border: 1px solid transparent;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

#header-nav-container.dropdown-menu ul li a.level1:hover,
#header-nav-container.dropdown-menu ul li.active a.level1
{
	background-color: #f3f3f3;
	text-decoration: none;
	border-top: 1px solid #aeaeae;
	border-right: 1px solid #aeaeae;
	border-left: 1px solid #aeaeae;
}

#header-nav-container.dropdown-menu ul li ul {
	padding-top: 10px;
	padding-bottom: 8px;
	background-color: #f3f3f3;
	-webkit-box-shadow: 0 1px 8px #999999;
	-moz-box-shadow: 0 1px 8px #999999;
	box-shadow: 0 1px 8px #999999;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #aeaeae;
}

#header-nav-container.dropdown-menu ul li ul li {
	display: block;
	width: 100%;
}

#header-nav-container.dropdown-menu ul li ul li a.level2 {
  font-size: 14px;
	line-height: 100%;
	font-weight: normal;
	display: block;
	padding: 4px 10px;
	background-color: white;
	margin: 0px;
	background-color: #f3f3f3;
}

#header-nav-container.dropdown-menu ul li ul li a.level2:hover {
	text-decoration: underline;
}


#header-nav-container.dropdown-menu ul li ul li a.level3 {
	padding: 4px 10px 4px 18px;
}



/**

	 		EXTRAMENU

 */


#header-nav-container.button-menu {
	display: none;
	margin: 10px;
}


#header-nav-container.button-menu ul,
#header-nav-container.button-menu li
{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

#header-nav-container.button-menu  {
	margin-top: 8px;
}

#header-nav-container.button-menu  ul a.level1 {
	font-weight: bold;
	font-size: 120%;
	padding: 3px 6px;
	display: block;
	background-color: #333;
	color: white;
	border-bottom: 1px solid #cdcdcd;
}

#header-nav-container.button-menu  ul.level2 a {
	font-weight: 700;
	font-size: 14px;
	padding: 3px 6px;
	display: block;
	background-color: #fbfbfb;
	border-bottom: 1px solid #cdcdcd;
	border-left: 1px solid #cdcdcd;
	border-right: 1px solid #cdcdcd;
	box-shadow: inset 0 1px 0 0 #ffffff, 0 0px 0px 0 transparent;
}

#header-nav-container.button-menu  ul a.level3 {
	font-weight: normal;
	font-size: 100%;
	padding: 3px 6px 3px 16px;
	display: block;
	background-color: #fbfbfb;
	border-bottom: 1px solid #cdcdcd;
	border-left: 1px solid #cdcdcd;
	border-right: 1px solid #cdcdcd;
	box-shadow: inset 0 1px 0 0 #ffffff, 0 0px 0px 0 transparent;
}

#header-nav-container.button-menu  ul ul {
	margin-bottom: 10px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}


/**

  CONTENT

 */

#content {
	background: #fff;
	margin: 20px 0px 20px 0px;
	padding: 5px 20px 20px 20px;
	width: 630px;
	float: left;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px #A0A0A0;
	-moz-box-shadow: 0 1px 3px #A0A0A0;
	box-shadow: 0 1px 3px #A0A0A0;
}

.section {
	margin-bottom: 20px;
}


/**

  SIDEBAR

 */

#sidebar {
	width: 290px;
	float: right;
	margin: 20px 0px 20px 0px;
}

.widget {
	background: #fff;
	margin: 0 0 30px;
	padding: 10px 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px #A0A0A0;
	-moz-box-shadow: 0 1px 3px #A0A0A0;
	box-shadow: 0 1px 3px #A0A0A0;
}

.widgettitle {
	margin: 0 0 5px;
	padding: 0;	
}

.widget ul {
	margin: 0;
	padding: 0;
}

.widget li {
	margin: 0;
	padding: 6px 0;
	list-style: none;
	clear: both;
	border-top: solid 1px #eee;
}


/**

  FOOTER

 */

#footer {
	color: #777777;
	clear: both;
	background: #fff;
	margin: 20px 0px 20px 0px;
	padding: 20px 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 3px #A0A0A0;
	-moz-box-shadow: 0 1px 3px #A0A0A0;
	box-shadow: 0 1px 3px #A0A0A0;
}

#footer .section {
	margin-bottom: 0px;
}

.footer-col-1 {
	width: 72%;
	float: left;
}

.footer-col-2 {
	width: 21%;
	float: left;
	margin-left: 1%;
}

.footer-col-2 p {
	margin: 0px;
}

ul.footer-ul {
	list-style: none;
	margin:0px;
	padding: 0px;
}

ul.footer-ul li{
	margin:0px;
	padding: 0px;
	float: left;
	padding-right: 10px;
}

a#footer-link-travelize {
	display: block;
	margin-top: 12px;
}


#footer-social {
	margin-top: 10px;
}

a.footer-social-link {
	line-height: 0px;
	margin: 0px;
	margin-right: 12px;
	padding: 0px;
	border: 1px solid white;
	display: inline-block;
	border-radius: 2px;
}


/**

  STARTPAGE BANNERS

 */

.banner-item {
	background-color: #f3f3f3;
	margin-bottom: 20px;
	padding-bottom: 5px;
	margin-top: 10px;
	border-bottom: 2px solid #cdcdcd;
	cursor: pointer;
}

.banner-item.even {
	background-color: #e7e7e7;
}

.banner-title {
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 8px;
}

.banner-title h2 {
	padding-top: 8px;
}

.banner-image {
	width: 250px;
	float: left;
	margin-top: 0px;
}

.banner-image-main {
	width: 240px;
	margin-left: 10px;
}

.banner-desc {
	padding-left: 270px;
	padding-right: 20px;

}

.banner-readmore {
	text-align: right;
}

.banner-readmore a{
	font-weight: 700;
	padding: 6px 0px 6px 6px;
}

/* No image in search result */

.no-image .banner-desc {
	padding-left: 10px;
}


/**

 		PAGER

 */

ul.pager {
	list-style: none;
	margin: 0px;
	padding: 0px;
	margin-top: 32px;
}

ul.pager li {
	float: left;
}

ul.pager li a {
	text-decoration: none;
	padding: 4px 12px;
	background-color: #eeeeee;
	margin-right: 8px;
	text-align: center;
	min-width: 16px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	display: inline-block;
	border: 1px solid #cdcdcd;
}

ul.pager li.next a,
ul.pager li.previous a
{
	padding: 4px 6px;
}

ul.pager li a:hover{
	background-color: #bbbbbb;
}

ul.pager li.active a{
	background-color: #cccccc;
}

ul.pager .pager-separator {
	padding-top: 5px;
	padding-right: 10px;
}


.widget ul.pager li {
	clear: none;
}


/*****************************************************************************

																													SECTIONS/TEMPLATES
																																			
*****************************************************************************/


/**

  DESTINATION

 */

.destination-main-image img {
	margin-left: auto;
	margin-right: auto;
}

.destination-jumplinks {
	display: none;
}

#jumplink-booknow {
	font-size: 1.2em;
	padding: 0.55em 3.5em;
}

.attached-page-toggler {
	background-color: transparent;
	border: 1px solid transparent;
	cursor: pointer;
	margin-bottom: 10px;
	border-bottom: 1px solid #cdcdcd;
	border-top: 1px solid transparent;
	width: 100%;
	text-align: left;
	padding-bottom: 4px;
	padding-top: 4px;
}

.attached-page-toggler.toggled {
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
}

.destination-attached-pages-item {
	margin-bottom: 14px;
}

a.attached-page-toggler {
	font-size: 1.8em; 
	font-weight: 700; 
	display: block;
	line-height: 1.4em;
	margin: 20px 0 .4em;
}


/**

	Tourlist

 */

h3.tourlist-header {
	margin-top: 6px;
	font-size: 1.8em;
}

.tourlist-item {
	background-color: #f3f3f3;
	margin-bottom: 10px;
	padding: 8px 8px 4px 8px;
	border: 1px solid #cdcdcd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
  box-shadow: inset 0 1px 0 0 #f9f9f9;
}

.tourlist-item-divider {
	background-image: url(/clientfiles/mobile/images/hr.png);
	height: 2px;
	margin-top: 6px;
	margin-bottom: 6px;	
}

.tourlist-item h3 {
	margin: 0px;
}

.tourlist-item h4 {
	margin: 0px;
}

.tourlist-item button {
	margin: 0px;
}

.tourlist-item .tourlist-extra-info p{
	margin-bottom: 5px;
}

.tourlist-item .tourlist-extra-info-important {
	font-style: italic;
	font-weight: 700;
	margin-top: 6px;
	margin-bottom: 12px;
	padding: 6px;
	border: 1px solid #dddddd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: white;
}

.tourlist-item .tourlist-extra-info-important p {
	margin-bottom: 0.2em;
}


.tourlist-item .tourlist-item-action-price {
	display: inline-block;
	padding: 0px 10px 0px 5px;
}

.tourlist-item .tourlist-item-action-title {
	display: inline-block;
	padding: 0px 10px 0px 5px;
}

.tourlist-item .button {
	text-align: center;
	display: block;
	margin-bottom: 6px;
}


/* Tourlist-items specialclasses */

.tourlist-item.sold-out {
	background-color: #cdcdcd;
	border: 1px solid #b4b4b4;
  box-shadow: inset 0 1px 0 0 #e6e6e6;
}

.tourlist-item.sold-out .tourlist-item-divider {
	background-image: url(/clientfiles/mobile/images/hr-darker.png);
}

.tourlist-item.sold-out a.button {
}


/**

  HOTELS

 */


.attributes-container {
	width: 100%;
}

.attributes-left {
	width: 100%;
}

.attributes-row {
	width: 100%;
	border-top: 1px solid #cdcdcd;
}

.attributes-key {
	padding: 1%;
	width: 68%;
	float: left;
	display: inline-block;
	font-weight: 700;
}

.attributes-value {
	padding: 1%;
	width: 28%;
	float: left;
	display: inline-block;
	text-align: right;
}


/**

  CATEGORY

 */


.category-item {
	background-color: #f3f3f3;
	margin-bottom: 20px;
	padding-bottom: 10px;
	margin-top: 10px;
	border-bottom: 2px solid #cdcdcd;
	cursor: pointer;
}

.category-item.even {
	background-color: #e7e7e7;
}

.category-title {
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 8px;
}

.category-title h2 {
	padding-top: 8px;
}

.category-image {
	width: 200px;
	float: left;
	margin-top: 2px;
}

.category-image-main {
	width: 190px;
	margin-left: 10px;
}

.category-desc {
	padding-left: 220px;
	padding-right: 20px;
}

.category-readmore {
	text-align: right;
}

.category-readmore a{
	font-weight: 700;
}

/* No image in search result */

.no-image .category-desc {
	padding-left: 10px;
}


/**

  CONTACT

 */

.contact-phonenr {
	font-weight: bold;
}

#contact-form .contact-row {
	margin-bottom: 5px;
}

#contact-form .contact-input {
	width: 280px;
}

#contact-form label {
	width: 130px;
	text-align: right;
	display: inline-block;
	font-weight: 700;
	margin-right: 7px;
}

#contact-form .contact-textarea {
	width: 280px;
}

#contact-form .contact-row-aligned * {
	vertical-align: middle;
}


/**

 	Main nav in content on startpage

 */

ul#startpage-main-nav {
	margin: 0px;
	padding: 0px;
}

ul#startpage-main-nav li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

ul#startpage-main-nav li a {
	text-decoration: none;
	font-weight: 700;
	font-size: 19px;
	display: block;
	color: white;
	padding: 6px 12px;
	margin-bottom: 1px;
	background-color: #888888;
	background: #888888;
	background: -moz-linear-gradient(top,  #888888 0%, #555555 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888888), color-stop(100%,#555555));
	background: -webkit-linear-gradient(top,  #888888 0%,#555555 100%);
	background: -o-linear-gradient(top,  #888888 0%,#555555 100%);
	background: -ms-linear-gradient(top,  #888888 0%,#555555 100%);
	background: linear-gradient(to bottom,  #888888 0%,#555555 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#888888', endColorstr='#555555',GradientType=0 );
}

ul#startpage-main-nav li a:hover {
	background-color: #777777;
	background: #777777;
	background: -moz-linear-gradient(top,  #777777 0%, #444444 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#777777), color-stop(100%,#444444));
	background: -webkit-linear-gradient(top,  #777777 0%,#444444 100%);
	background: -o-linear-gradient(top,  #777777 0%,#444444 100%);
	background: -ms-linear-gradient(top,  #777777 0%,#444444 100%);
	background: linear-gradient(to bottom,  #777777 0%,#444444 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#777777', endColorstr='#444444',GradientType=0 );
}


/**

  POPUP

 */
 

body.popup {
	background-color: #ffffff !important;
}

#wrapper-popup {
	width: 100% !important;
}

.popup-container {
	padding: 15px !important;
}

.popup-container h1,
.popup-container h2,
.popup-container h3,
.popup-container h4,
.popup-container h5,
.popup-container h6 {
	line-height: 1.4em;
	margin: 0px 0px .4em 0px;
	color: black;
}

body.popup .popup-closewindow-container {
	margin-top: 20px;	
	font-weight: bold;
}




/*****************************************************************************

																													 			FORM FRAMEWORK
																																			
*****************************************************************************/




/* Form - Row container */

.form-row {
	margin-bottom: 0px;
	clear: both;
}

.form-row.form-row-hr {
	background-color: #cdcdcd;
	display: block;
	height: 1px;
	margin-top: 10px;
	margin-bottom: 15px;
}

/* Form - Item container */

.form-item {
	width: 90%;
	padding: 5px 5px 5px 0px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-top: 5px;
	float: left;
}

.form-item label {
	width: 120px;
	display:block;
	clear:both;
	text-align: right;
	margin-bottom: 4px;
	float: left;
	padding-right: 10px;
}

.form-item .form-input-text {
	width: 190px;
}

.form-item .form-input-textarea {
	width: 190px;
	margin: 0px;
}

/* Form - Switch places label/input */

.form-item .input-left {
	/*width: 120px;*/
	text-align: right;
	float: left;
	padding-right: 10px;
}

.form-item label.label-right {
	width: auto;
	float: left;
	text-align: left;
	clear: none;
}




/* Form - Item wide */

.form-item-wide {
	width: 300px;
}

.form-item-wide .form-input-text {
	width: 280px;
}

.form-item .form-input-wide {
	width: 280px;
}

/* Form - Item medium */

.form-item-medium {
	width: 130px;
}

.form-item-medium .form-input-text {
	width: 120px;
}

.form-item .form-input-medium {
	width: 120px;
}

/* Form - Item narrow */

.form-item-narrow {
	width: 100px;
}

.form-item-narrow .form-input-text {
	width: 80px;
}

.form-item .form-input-narrow {
	width: 80px;
}

/* Form - Item single-line indent */

.form-item.form-item-singleline {
	padding-top: 23px;
}

/* Form - Item no left-hand object indent */

.form-item.form-item-indent{
	padding-left: 130px;
	width: 60%;
}

/* Form - Headers */

.form-container h1 {
	font-size: 26px;
	font-weight: 700;
	margin: 0px 0px 12px 0px;
}


.form-container h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 0px 0px 12px 0px;
}

.form-container h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0px 0px 12px 0px;
}

/* Container div for toggable boxes */

.form-container-toggable {
	display: none;
}

/* Button to toggle boxes, disguised as link */

.form-container-toggler {
	margin: 0px;
	padding: 0px;
	margin-top: 5px;
	margin-bottom: 5px;
	background-color: transparent;
	border: 0px;
	color: #1155CC;
	cursor: pointer;
}

.form-container-toggler:hover {
	text-decoration: underline;
}


/* Row with right-aligned buttons */

.form-row-buttons {
	text-align: right;	
	padding: 5px;
	margin-bottom: 10px;
	margin-top: 10px;
}


/* Validation & error handling */

.requiredfield-asterisk {
	padding: 0px 4px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	color: #1425B3;
	cursor: pointer;
	vertical-align: top;
}


.form-item .form-input-text.form-item-error,
.form-item .form-input-password.form-item-error,
.form-item .form-input-textarea.form-item-error
{
	border: 1px solid red;
}


.form-item .validationerror {
	display: inline-block;
	padding-top: 2px;
	padding-left: 0px;
	color: red;
	font-weight: 700;
	vertical-align: top;
}

h2.validationerror {
	color: red;
	background-color: #f3f3f3;
	padding-left: 10px;
	border: 1px solid #cdcdcd;
}

/************************************************************************************************

																																						 			   MEDIA-SIZES
																																			
************************************************************************************************/




	/**
	 *
	 *		Smaller than 980																														980
	 *
	 ************************************************************************************/
	
	@media screen and (max-width: 980px) {
	
		/* wrapper */
		#wrapper {
			width: 95%;
		}
	
		/* header */
		#header {
	  	padding: 2px 0 20px 0;
		}
	

		#header #header-row-1 {
			padding: 20px 3% 0px 3%;
		}

		/* content */
		#content {
			width: 62%;
			padding: 5px 3% 3% 3%;
		}

		.content-extra-row {
			width: 62%;
			padding: 5px 3% 3% 3%;
		}

	
		/* sidebar */
		#sidebar {
			width: 30%;
		}
		#sidebar .widget {
			padding: 8% 7%;
			margin-bottom: 10px;
		}
		  
		/* footer */
		#footer {
			padding: 3% 3%;
		}


		.form-item .validationerror {
			display: block;
			padding-left: 126px;
		}


		#header #header-row-2 {
			background-color: transparent;
			-webkit-box-shadow: none;
			-moz-box-shadow: none;
			box-shadow: none;
		}

		
		#header #header-menubutton {
			display: inline-block;
		}
	
	
		#header-nav-container.dropdown-menu {
			display: none;
		}

	}
	
	
	
	/**
	 *
	 *		Smaller than 854																														854
	 *
	 ************************************************************************************/
	
	@media screen and (max-width: 854px) {
	
	
		/* header */
		#header {
			height: auto;
	  	padding: 2px 0 0px 0;
		}


	
	
	}
	
	
	
	/**
	 *
	 *		Smaller than 650																														650
	 *
	 ************************************************************************************/
	
	@media screen and (max-width: 650px) {
	
		body {
		  font: 0.91em/150% "Arial", "Helvetica", sans-serif;
		}  
	
		/* fullwidth */  
	  #wrapper {
			width: 100%;
		}
	  
		/* header */
		#header {
	  	margin: 0px 0px 0px 0px;
		}

		/* content */
		.content-extra-row {
			width: auto;
			float: none;
			margin: 20px 0 20px 0;
		}


	
		/* Remove border radius  */
		#content,
		#header,
		#sidebar,
		.widget,
		#footer,
		.content-extra-row
		{
			-webkit-border-radius: 0px;
			-moz-border-radius: 0px;
			border-radius: 0px;
		}
	
		#sidebar .widget.sidebar-contact {
			margin-top: 20px;
			margin-bottom: 0px;
		}

		#sidebar .widget.sidebar-booking {
			padding-top: 10px;
			margin-top: 0px;
			margin-bottom: 0px;
		}
		.contact #sidebar .widget.sidebar-news {
			--margin-top: 20px;
			margin-bottom: 0px;
		}


	
		/* main nav */
	
		#header-nav-container.dropdown-menu {
			display: none;
		}
	
		#header-menubutton {
			display: inline-block;
		}


		/*	
		#header-nav-container {
			position: static;
		}
		*/
		
		/* site logo */
	
		#header #header-logo {
			width: 200px;
		}
	
	  #header #header-logo img {
	    width: 150px;
	  }
	
		/* content */
		#content {
			width: auto;
			float: none;
			margin: 0px 0 20px 0;
		}
	
		/* jumplinks */
		.destination-jumplinks {
			display: block;
		}
	
		/* sidebar */
		#sidebar {
			width: 100%;
			margin: 0;
			float: none;
		}
		#sidebar .widget {
			padding: 3% 3%;
			margin: 0 0 10px;
		}
	
	
	
		.booking-steps #content {
			margin-bottom: 0px;
		}


		
	
		/* tourlist */
		.tourlist-item .button {
			width: 40%;
			float: left;
			margin-right: 3%;
		}
	
	
		/* footer */
	
		#footer {
			margin: 0px 0px 0px 0px;
			padding: 6% 3%;
			background-image: url(/clientfiles/mobile/images/fade-darker.png);
			background-repeat: repeat-x;
			}
	
		.footer-col-1 {
			width: 100%;
			float: none;
		}
		
		.footer-col-2 {
			clear: both;
			width: 100%;
			float: none;
			margin-left: 0;
			margin-top: 20px;
		}
	
	}
	
	/**
	 *
	 *		Smaller than 480																														480
	 *
	 ************************************************************************************/
	
	@media screen and (max-width: 480px) {
	
		#header #header-logo {
			width: 130px;
		}
	
	  #header #header-logo img {
	    width: 130px;
	  }
	
	
		.form-item .form-input-text,
		.form-item .form-input-textarea {
			width: 100%;
		}
	
		/* disable webkit text size adjust (for iPhone) */
		html {
			-webkit-text-size-adjust: none;
		}
	
		/* main nav */
		#main-nav a {
			font-size: 0.9em;
	    line-height: 10px;
			padding: 10px 8px;
		}
	
	  
	  /* category */
		.category-title {
			padding-left: 10px;
			padding-right: 10px;
		}
		
		.category-image {
			width: 100%;
			float: none;
		}
		
		.category-image-main {
			width: 100%;
			margin-left: 0px;
		}
		
		.category-desc {
			padding-left: 10px;
			padding-right: 10px;
		}
	 
	 
	  /* banners */
		
		.banner-desc {
			padding-left: 260px;
			padding-right: 20px;
		} 
	
	
		/* footer */
		
		#footer {
			margin: 0px 0px 0px 0px;
			padding: 6% 3%;
		}
	
		.footer-col-1 {
			width: 100%;
			float: none;
		}
		
		.footer-col-2 {
			clear: both;
			width: 100%;
			float: none;
			margin-left: 0;
			margin-top: 20px;
		}
	
		/* CONTACT  - Form Items */
	
	
		.form-item {
			width: 95%;
			padding: 5px 5px 5px 0px;
			margin-right: 5px;
			margin-bottom: 5px;
			margin-top: 5px;
			float: left;
		}
		
		.form-item label {
			display:block;
			clear:both;
			text-align: left;
			margin-bottom: 4px;
			float: none;
			padding-right: 10px;
		}
	
		
		.form-item .input-left {
			width: auto;
		}
		
		.form-item label.no-clear {
			clear:none;
			float: left;
		}
	
		.form-item.form-item-indent{
			padding-left: 0px;
			width: 90%;
		}
	
		.form-item .form-input-text,
		.form-item .form-input-textarea {
			width: 85%;
		}
	
	
		.form-input-text.form-input-narrow {
			width: 80px;
		}
	
		.form-item .validationerror {
			padding-left: 0px;
		}

	}
	
	
	/**
	 *
	 *		Smaller than 420 (Samsung Galaxy Portrait is 360)					  								420
	 *
	 ************************************************************************************/
	
	@media screen and (max-width: 420px) {
	
	   /* banners */
		.banner-title {
			padding-left: 10px;
			padding-right: 10px;
		}
		
		.banner-image {
			width: 100% !important;
			float: none;
		}
		
		.banner-image-main {
			width: 100% !important;
			margin-left: 0px;
		}
		
		.banner-desc {
			padding-left: 10px !important;
			padding-right: 20px !important;
		} 
	
		/* tourlist */
		.tourlist-item .button {
			width: auto;
			float: none;
			margin-right: 0px;
		}
	
	}
	/**
	 *
	 *		Smaller than 320 (iPhone Portrait)																					320
	 *
	 ************************************************************************************/
	
	@media screen and (max-width: 320px) {
	
		.form-item label.no-clear {
			clear:both;
			float: none;
		}
	
	
	}
	

/**

	TOURLIST-WIDE (Component)
																																			
 */


.tourlist-wide-container{
}
.tourlist-wide-item{
}

.tourlist-wide-item	span.red{
	color:#ff0000;
}


.tourlist-wide-row{
	border-bottom:1px solid #e6e6e6;
}

.tourlist-wide-row.clickable{
	cursor:pointer;
}

.tourlist-wide-item .colgrid{
	padding-top:0.75em;
	padding-bottom:0.75em;
	
}
.tourlist-wide-item-header{
	background-color:#efefef;
	border-bottom:1px solid #cdcdcd;
}

.tourlist-wide-item-header .colgrid{
	background-color:#efefef;
	padding-top:6px;
	padding-bottom:3px;
}

.tourlist-wide-item .colgrid .button{
	display:inline;
	--padding:1px 0.75em;
	font-size:1em;	
	position:relative;
}
.tourlist-wide-item .col-1.colgrid{padding-left:0;}
.tourlist-wide-item .col-5.colgrid{text-align:right;padding-right:0;}



.tourlist-wide-item .colgrid{float:left;}

.tourlist-wide-item .col-1.colgrid{
	width:13%;
	padding-left: 1%;
}

.tourlist-wide-item .col-2.colgrid{
	width:31%;
	padding-right: 1%;
}

.tourlist-wide-item .col-3.colgrid{
	width:22%;
}

.tourlist-wide-item .col-4.colgrid{
	width:19%;
}

.tourlist-wide-item .col-5.colgrid{
	width:13%;
}
	




