/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/
	Licensed under GPL and MIT.
*/

/* Containers */
.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}
/* Grid >> Global */
.grid_1,.grid_2,.grid_3,.grid_4,.grid_5,.grid_6,.grid_7,.grid_8,.grid_9,.grid_10,.grid_11,.grid_12 {
	display:inline;
	float: left;
	/*position: relative;*/
	margin-left: 10px;
	margin-right: 10px;
}
/* Grid >> Children (Alpha ~ First, Omega ~ Last) */
.alpha {
	margin-left: 0;
}
.omega {
	margin-right: 0;
}
/* Grid >> 12 Columns */
.container_12 .grid_1 {
	width:60px;
}
.container_12 .grid_2 {
	width:140px;
}
.container_12 .grid_3 {
	width:220px;
}
.container_12 .grid_4 {
	width:300px;
}
.container_12 .grid_5 {
	width:380px;
}
.container_12 .grid_6 {
	width:460px;
}
.container_12 .grid_7 {
	width:540px;
}
.container_12 .grid_8 {
	width:620px;
}
.container_12 .grid_9 {
	width:700px;
}
.container_12 .grid_10 {
	width:780px;
}
.container_12 .grid_11 {
	width:860px;
}
.container_12 .grid_12 {
	width:940px;
}
/* Prefix Extra Space >> 12 Columns */
.container_12 .prefix_1 {
	padding-left:80px;
}
.container_12 .prefix_2 {
	padding-left:160px;
}
.container_12 .prefix_3 {
	padding-left:240px;
}
.container_12 .prefix_4 {
	padding-left:320px;
}
.container_12 .prefix_5 {
	padding-left:400px;
}
.container_12 .prefix_6 {
	padding-left:480px;
}
.container_12 .prefix_7 {
	padding-left:560px;
}
.container_12 .prefix_8 {
	padding-left:640px;
}
.container_12 .prefix_9 {
	padding-left:720px;
}
.container_12 .prefix_10 {
	padding-left:800px;
}
.container_12 .prefix_11 {
	padding-left:880px;
}

/* Suffix Extra Space >> 12 Columns */
.container_12 .suffix_1 {
	padding-right:80px;
}
.container_12 .suffix_2 {
	padding-right:160px;
}
.container_12 .suffix_3 {
	padding-right:240px;
}
.container_12 .suffix_4 {
	padding-right:320px;
}
.container_12 .suffix_5 {
	padding-right:400px;
}
.container_12 .suffix_6 {
	padding-right:480px;
}
.container_12 .suffix_7 {
	padding-right:560px;
}
.container_12 .suffix_8 {
	padding-right:640px;
}
.container_12 .suffix_9 {
	padding-right:720px;
}
.container_12 .suffix_10 {
	padding-right:800px;
}
.container_12 .suffix_11 {
	padding-right:880px;
}
/* Push Space >> 12 Columns */
.container_12 .push_1 {
	left:80px;
}
.container_12 .push_2 {
	left:160px;
}
.container_12 .push_3 {
	left:240px;
}
.container_12 .push_4 {
	left:320px;
}
.container_12 .push_5 {
	left:400px;
}

.container_12 .push_6 {
	left:480px;
}
.container_12 .push_7 {
	left:560px;
}
.container_12 .push_8 {
	left:640px;
}
.container_12 .push_9 {
	left:720px;
}
.container_12 .push_10 {
	left:800px;
}
.container_12 .push_11 {
	left:880px;
}
/* Pull Space >> 12 Columns */
.container_12 .pull_1 {
	left:-80px;
}
.container_12 .pull_2 {
	left:-160px;
}
.container_12 .pull_3 {
	left:-240px;
}
.container_12 .pull_4 {
	left:-320px;
}
.container_12 .pull_5 {
	left:-400px;
}
.container_12 .pull_6 {
	left:-480px;
}
.container_12 .pull_7 {
	left:-560px;
}
.container_12 .pull_8 {
	left:-640px;
}
.container_12 .pull_9 {
	left:-720px;
}
.container_12 .pull_10 {
	left:-800px;
}
.container_12 .pull_11 {
	left:-880px;
}
/* adds margin-less grid-columns to 960gs.css */

/* Col >> Global */
.col_1,.col_2,.col_3,.col_4,.col_5,.col_6,.col_7,.col_8,.col_9,.col_10,.col_11,.col_12 {
	display:inline;
	float: left;
	/*position: relative;*/
}
/* Col >> 12 Columns */
.container_12 .col_1 {
	width:80px;
}
.container_12 .col_2 {
	width:160px;
}
.container_12 .col_3 {
	width:240px;
}
.container_12 .col_4 {
	width:320px;
}
.container_12 .col_5 {
	width:400px;
}
.container_12 .col_6 {
	width:480px;
}
.container_12 .col_7 {
	width:560px;
}
.container_12 .col_8 {
	width:640px;
}
.container_12 .col_9 {
	width:720px;
}
.container_12 .col_10 {
	width:800px;
}
.container_12 .col_11 {
	width:880px;
}
.container_12 .col_12 {
	width:960px;
}
/* Clear Floated Elements */
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */
.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}

.section {
    width: 900px;
}

.innercol_field {
    width: 480px;
    display: inline;
    float: left;
}

.innercol_help {
    padding-left: 20px;
    width: 300px;
    display: inline;
    float: left;
}

div.adminhelp {
    font-style: italic;
}

span.adminhelp {
    font-style: italic;
}

span.adminoptional {
    text-transform: lowercase;
}

/* end Grid */
html {
	margin:0;
	width:100%;
}
body {
	background: #f3f2dd url(../images/bg2.jpg) left top no-repeat;
	font-size: 75%;
  	color: #222;
  	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  	margin:0;
	width:100%;
}
a img {
	border:0;
}
a:focus, a:hover { color: #000; }
a { color: #009; text-decoration: underline; }
.wrap_mid a {
	color: #91137b;
	font-size: 14px;
	text-decoration:none;
}

.wrap_mid .active a {
	color: #11131b;
	font-size: 14px;
	text-decoration:none;
}

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.2em;margin-top: 0; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 12px; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  margin: 0;
}

h2,h4 { text-transform:uppercase; }
h4 { margin-bottom:1.2em; }
h5 { margin-top:0; }
h6 { font-size:85%; font-weight:normal; text-transform:uppercase; margin-bottom:0; }

h2 a {
    color: #91137b;
}

.tabContent h6 { font-weight: bold; }

input.text {
	border:0;
}
p { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

blockquote { margin: 1.5em; color: #666; font-style: italic; }
strong { font-weight: bold; }
em,dfn { font-style: italic; }
dfn { font-weight: bold; }
sup, sub { line-height: 0; }

abbr,
acronym { border-bottom: 1px dotted #666; }
address { margin: 0 0 1.5em; font-style: italic; }
del { color:#666; }

pre { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }

li ul,
li ol { margin:0 1.5em; }
ul, ol { margin: 0 1.5em 1.5em 1.5em; }
/*ul li a:hover  {color:#c68fbd;}
ul li a:active  {color:#c68fbd;}*/
.wrap_mid a:hover, a.active {
	color: #c68fbd;
}

.package .tabs {
     border:none;
    padding:0;
}


ul { list-style-type: disc; }
ol { list-style-type: decimal; }
dl { margin: 0 0 1.5em 0; }
dl dt { font-weight: bold; }
dd { margin-left: 1.5em;}

table { margin-bottom: 1.4em; width:100%; }
th { font-weight: bold; }
thead th { background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td { background: #e5ecf9; }
tfoot { font-style: italic; }
caption { background: #eee; }

.small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet { color: #666; }
.loud { color: #000; }
.highlight { background:#ff0; }
.added { background:#060; color: #fff; }
.removed { background:#900; color: #fff; }

.first { margin-left:0; padding-left:0; }
.last { margin-right:0; padding-right:0; }
.top { margin-top:0; padding-top:0; }
.bottom { margin-bottom:0; padding-bottom:0; }

.clearFloat {clear: both;}
.price_color { color:#ee0000; }

.content {padding: 10px 0 0 0;}
.ship {
	min-width:1240px; /* 960 + 280 (right ad margin) */
	max-width:1360px; /* 1240 + 120 (left inverted auto margin) */
    height: 100%;
}
.big_container {
	/* width + margin-right = .ship max-width */
	width:980px;
	margin-left:auto;
	margin-right:260px;
}
.navbar {
	position:relative;
	background:transparent url(../images/nav.bg.png) repeat-x;
	margin-top:40px;
	margin-bottom:-9px;
	height:78px;
	padding-top:3px;
	padding-bottom:12px;
	z-index:2;
}
.navbar .logo { float:left; width:240px; height:78px; display:block; }
.navbar .search_container { float:left; width:360px; height:78px; }
.navbar .menu { float:right; height:78px; background:transparent url(../images/nav.divider.png) no-repeat top right; }
ul.breadcrumbs {
	list-style: none;
	margin: 0;
	padding: 5px 0 0 10px;
}
ul.breadcrumbs li {
	display: inline;
	font-size: 10px;
}
ul.breadcrumbs li a {
	color: #91137B;
	font-size: 10px;
	text-decoration: none;
}
.index .container_12 {
	background-color:#fff;
	padding: 0 10px 30px;
}
.container_12 {
	/* width (960px set in 960gs.css) + margin-right + padding = .ship max-width */
	position:relative;
	margin-right:260px;
	padding:0 10px;
	z-index:1;
}
.ads_container {
	position:absolute;
	top: 24px;
	padding-left:10px;
	left:987px;
}
.adPlaceholder {
	display:block;
	width:250px;
	margin-bottom:10px;
	overflow: hidden
}
.personal_settings {
	position:relative;
	bottom:111px;
	height:27px;
	padding-top:3px;
	text-align:right;
	background:transparent url(../images/nav.bg.top.png) repeat-x;
}

.personal_settings .floatRight {
	float: right;
}
.personal_settings .floatRight .chooseLeft {
	float: left;
}

.personal_settings label {
	display:inline;
	margin-left:10px;
    vertical-align: middle;
}
.personal_settings .floatRight .choose_language {
	float: left;
	display:inline-block;
	vertical-align:middle;
	margin-right:20px;
	margin-top: 4px;
}
.personal_settings .choose_language li {
	float:left;
	margin-right:-17px;
	padding:4px 17px 8px 5px;
}
.personal_settings .choose_language li.current_lang {
	background:transparent url(../images/flags.current.png) no-repeat;
}
.personal_settings .choose_language li img {
	display:block;
}
.search_container {
	background:transparent url(../images/nav.divider.png) no-repeat top left;
}
.search {
	position:relative;
	top:26px;
	left:42px;
	background:transparent url(../images/search.bg.right.png) no-repeat;
}
.search .search_start {
	position:absolute;
	left:-15px;
	width:15px;
	height:31px;
	display:block;
	background:transparent url(../images/search.bg.left.png) no-repeat;
}
.search input {
	background:0;
	border:0
}
.search input.text {
	width:255px;
	color: #151d29;
	font-size: 1.2em;
	border: none;
	background-color: transparent;
	padding: 0;
    vertical-align: middle;
}
.search input.button {
	width:48px;
	color:white;
	font-weight:bold;
}
.menu li {
	float:left;
	height:78px;
	width:117px;
	padding-left:3px;
	background:transparent url(../images/nav.divider.png) no-repeat top left;
	text-align:center;
}
.menu li a {
	display:block;
	padding:30px 0 27px;
	font-size:18px;
	color:#fff;
	text-decoration: none;
}

.menu li a.active, .menu li a:hover {
	background-color:#a6258c;
	color: #fff;
}

/*expanded menu*/
.expandedMenu {
	position: absolute;
	z-index: 10000;
	top: 81px;
	left: 490px;
	background-color: #a6258c;
	border: 3px solid #fff;
	border-top: none;
	width: 565px;
	padding: 10px 20px 20px 20px;
}
.expandedMenu h2 {
	color: #fff;
	text-transform: none;
	margin: 0 0 5px 0;
}
.expandedMenu p {
	color: #fff;
}
.expandedMenu ul {
	float: left;
	width: 130px;
	list-style: none;
	margin: 0 10px 0 0;
	padding: 0;
}
.expandedMenu li {
	padding: 3px 5px;
}
.expandedMenu li.active,
.expandedMenu li:hover {
	background-color: #be6bae;
}
.expandedMenu li a {
	color: #fff;
	text-decoration: none;
}
.expandedMenu li a:hover {
	background:none;
}
.footer {
	background:#9c1681 url(../images/footer.bg.png) repeat-x bottom;
	border-top:3px solid #fff;
	border-bottom:3px solid #fff;
	padding-bottom:30px;
    position: relative;
}
.footer_group h3  {
	color:#fff;
	margin-top:10px;
}
.footer_group,
.footer_group ul li a {
	color:#fff;
	text-decoration: none
}

.footer_group ul li a:hover {
	color:#f3dde6;
}
.footer_group ul {
	float:left;
	margin-right:38px;
    width: 130px;
}
.footer_group ul li {
	padding:3px;
}
.copyright {
	margin:9px 0 90px;
	text-align:center;
	color:#000;
}
/* site-wide boxes */
.wrap_top,
.wrap_wide_top {
	background:url(../images/wrap.lid.png) 0 0 no-repeat;
	height:10px;
	font-size: 0;
	line-height: 0;
	margin-top:14px;
	margin-bottom:-7px;
	position:relative;
	z-index:2;
}
.wrap_mid,
.wrap_wide_mid {
	background:url(../images/wrap.mid.png) 0 0 repeat-y;
	overflow:hidden;
	/*position:relative;*/
	z-index:1;
	padding:0 20px 3px;
}
.wrap_bottom,
.wrap_wide_bottom {
	background:url(../images/wrap.lid.png) 0 -10px no-repeat;
	height:8px;
	font-size: 0;
	line-height: 0;
}
.wrap_wide_top {
	background-image:url(../images/wrap.wide.lid.png);
}
.wrap_wide_mid {
	background-image:url(../images/wrap.wide.mid.png);
}
.wrap_wide_bottom {
	background-image:url(../images/wrap.wide.lid.png);
}
.wrap_mid h3,
.wrap_wide_mid h3 {
	margin-top:0.6em;
}
.wrap_top.topMargin {
	margin-top: 50px;
}
.wrap_top.noTopMargin {
	margin-top:-3px;
}
.wrap_top.filter {
	margin-top: 5px
}
/* google maps */
#map_canvas { width:218px; height:334px; border:1px solid #ddd; margin-bottom:0.9em; }


/* General */
.floatLeft {
	float: left;
}
img.floatLeft {
	float: left;
	margin: 5px 20px 0 0;
}
.floatRight {
	float: right;
}
.floatRight.margin {
	margin: 11px 5px 0 0;
}
.arrowSmall {
	margin: 0 3px 3px;
}
.col_3 img.smallBanner {
	padding: 14px 0 0 11px;
}
img.wrapImage {
	margin: 0 0 0 -10px;
	border-bottom: 3px solid #fff;
}
.bigImage {
	margin: 0 0 15px 0;
}
ul.nav ul {
	list-style: none;
	margin: 3px 0 0 0;
	padding: 0;
}
ul.nav ul li {
	margin: 0 0 2px 10px;
	padding: 0;
	font-size: 12px;
}
ul.nav li a.active,
ul.nav ul li a.active,
ul.nav ul ul li a.active {
	color: #433f21;
}
ul.nav ul li a {
	display: block;
	padding: 2px 0;
	font-size: 12px;
}
ul.nav,
ul.links {
	list-style: none;
	margin: 0 0 10px 0;
	padding: 0;
}
ul.links li {
	margin: 0 0 10px 0;
}
ul.links li a {
	display: block;
	margin: 0 0 2px 0;
	font-size: 12px;
}
ul.links li h4 {
	font-size: 14px;
	text-transform: none;
	margin: 0 0 3px 0;
}
.checkboxes {
	overflow: hidden;
	margin: 0 0 3px 0;
}
.checkboxes p {
	clear: left;
	margin: 0 0 4px 0;
	overflow: hidden;
}
.checkboxes input {
	float: left;
}
.checkboxes label {
	float: left;
	margin: 1px 0 0 0;
	color: #91137B;
	font-size: 14px;
	font-weight: normal;
	text-transform: none;
	cursor: pointer;
}
.checkboxes a {
	float: left;
	font-size: 10px;
	margin: 7px 0 0 3px;
}
.package .checkboxes label {
	color: #213843;
}

.floats {
	float: left;
	font-size: 14px;
	margin: 0;
}
.floats a {
	margin: 0 0 0 3px;
}
input.submit.clearFloat {
	margin: 5px 0;
}
h3.expandable {
	position: relative;
	padding: 10px 0 0 30px;
	margin: 0;
	cursor: pointer;
}
h3.expandable img {
	position: absolute;
	top: 5px;
	left: 0;
}
.expanded {
	margin: 10px 0 -10px 0;
}
.expanded label {
	margin: 0;
}
.expanded span.header {
	display: block;
	margin: 3px 0 0 0;
}
.expanded .checkboxes {
	margin: 0 0 12px 0;
	overflow: hidden;
}
.expanded .checkboxes input {
	clear: left;
}
.expanded .checkboxes label {
	color: #213843;
	font-size: 12px;
	margin: 4px 0 0 0;
}
.expanded select {
	width: 170px;
	margin: 3px 0 10px 0;
}
.expanded select.small {
	width: 55px;
	margin: 3px 0 10px 0;
}
/* left col */

/*colors*/
.color0 {
	background-color:#f3f2dd;/*beige*/
	padding: 0 20px 10px;
}

.color1 {
	background-color:#dff3dd;/*grön*/
	padding: 0 20px 10px;
}
/*end colors*/
.popular_postcards,
.roadmap,
.color2 {
	background-color:#ddecf3;/*blå*/
	padding: 0 20px 10px;
}
.get_newsletter {
	background-color:#f3f2dd;
	padding: 0 20px 10px;
}
.get_newsletter h3 {
	color:#443f21;
}
.get_newsletter input.submit {
	margin-bottom:0;
}
.last_minute {
	background-color:#f3dde6;
}
.roadmap input.submit {
	margin: 8px 0 0 0;
}
.popular_postcards ul {
	list-style: none;
	margin: 0;
    padding: 0;
}

.popular_postcards ul li {
	margin: 0.6em 0;
}
.popular_postcards ul li a:hover  {
	color:#d4a4cc;
}
.popular_postcards ul li a:active  {
	color:#d4a4cc;
}

.popular_postcards h3 {
	color:#213742;
	margin: 10px 0;
}
.last_minute a.more_postcards {
	margin-bottom:0;
}
.last_minute a.more_postcards {
	color: #91137b;
	font-size:14px;
	margin-bottom:12px;
	display:block;
	text-decoration: none;
    clear:both;    
}
.more_postcards img {
	position:relative;
	top:11px;
}
.last_minute h3 {
	color:#7c0e6f;
	margin: 6px 0 10px 0;
}
.last_minute a {
	color: #213843;
	font-size:14px;
	margin-bottom:12px;
	display:block;
	text-decoration: none;
}
.last_minute h5 {
	color: #213843;
	font-weight: normal;
	margin-bottom:0;
}
.last_minute .price {
	float:right;
}
/*
.last_minute .price_color {
	color:inherit;
}
*/
/* main col */
.teaser {
	margin-top:18px;
	position:relative;
}
.teaser a {
	text-decoration: none /*for Chrome*/
}
.teaser .teaser_title {
	position:absolute;
	right: -31px;
	bottom: 11px;
	padding: 20px 48px 20px 15px;
	display:block;
	font-size:1.3em;
	color:#000;
	text-align:right;
	background: transparent url(../images/bg.header.png) no-repeat right;
}
.teaser .teaser_title .teaser_link {
	margin: 18px 29px 6px 0;
	font-size:0.4em;
	display:block;
	color:#91137b;
}
.teaser .teaser_title .teaser_link img {
	vertical-align:middle;
}

.placeholder {
	float: left;
}
.placeholder h1 {
	margin: 0 0 5px 0;
}

.placeholder h3.extramargin {
    margin: 0 0 5px 0;
}

.placeholder .starsNull {
	background: transparent url(../images/stars.png) no-repeat 0 -13px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}

.placeholder .starsOne {
	background: transparent url(../images/stars.png) no-repeat 0 -43px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
.placeholder .starsTwo {
	background: transparent url(../images/stars.png) no-repeat 0 -73px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
.placeholder .starsThree {
	background: transparent url(../images/stars.png) no-repeat 0 -103px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
.placeholder .starsFour {
	background: transparent url(../images/stars.png) no-repeat 0 -133px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
.placeholder .starsFive {
	background: transparent url(../images/stars.png) no-repeat 0 -163px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
.changeImage{
	position: absolute;
	right: 25px;
	top: 33px;
}
.changeImage ul{
	float: left;
	margin: 0;
	padding: 0;
	list-style: none;
}
.changeImage li {
	width: 20px;
	height: 5px;
	background-color: #fff;
	border: 1px solid #000;
	float: left;
	margin: 10px 3px 0 0;
}
.changeImage li.active {
	height: 10px;
	margin: 5px 3px 0 0;
}
.changeImage input.submit {
	float: left;
}
.selectPackage {
	clear: both;
	margin: 0 0 -10px 10px;
}
.selectPackage h2 {
	font-size: 18px;
	text-transform: none;
	margin: 0;
}
.selectPackage select {
	width: 255px;
}
.placeholder h3 {
	margin: 0;
}

.wrap_wide_top.searchResult {
	margin-bottom: -25px;
	margin-top: 20px;
	z-index: 1;
}
.searchResult {
	position: relative;
	padding: 0 0 9px;
	overflow: visible;/*override*/
}
.searchResult h2.expandable {
	padding: 8px 20px 10px 32px;
	margin: 10px 20px 10px 17px;
	position: relative;
}
.searchResult h2.expandable img {
	position: absolute;
	top: 5px;
	left: 0;
}
.searchResult img.positioned {
	position: absolute;
	top: -13px;
	right: 30px;
}
.searchResult h2 {
	text-transform: none;
	font-size: 18px;
}
.searchResult label {
	text-transform: none;
	font-weight: normal;
	margin: 0;
}
.searchResult .padding {
	padding: 0 10px 0 20px;
	overflow: hidden;
}
.searchResult .select {
	float: left;
	margin: 0 0 10px 0;
}
.searchResult .select select {
	width: 140px;
	margin: 0 9px 0 0;
}
.searchResult .result {
	clear: left;
	width: 460px;
	margin: 0 20px 0 10px;
	padding: 10px 0 0 0;
	border-top: 2px solid #fff;
	/*border-bottom: 2px solid #fff;*/
	overflow: hidden;
}
.searchResult .result table tr.last td {
	padding: 0;
}
.searchResult .result table td div.border {
	border-top: 2px solid #fff;
	width: 100%;
	overflow: hidden;
}
.searchResult .result table td input.checkBox {
	margin: 7px 0 0 7px;
}
.searchResult table {
	clear: left;
	margin: 0;
}
/* layer */
.searchResult table tr.active {
	background-color: #9b1680;
}
.searchResult table tr.active p {
	color: #d5a4cc;
}
.searchResult table tr.active td,
.searchResult table tr.active h3,
.searchResult table tr.active a,
.searchResult table tr.active i {
	color: #fff;
}
.searchResult table tr.active td div.posRelative {
	position: relative;
}
.searchResult .layer {
	position: absolute;
	top: 2px;
    /*top: 62px;*/
	left: -110px;
	width: 210px;
    z-index:99;
}
.searchResult .layer .layerTop {
	background:transparent url(../images/bg.layer.top.png) no-repeat center top;
	height: 4px;
}
.searchResult .layer .layerBottom {
	background:transparent url(../images/bg.layer.bottom.png) no-repeat center top;
	height: 7px;
}
.searchResult .layer .layerMid {
	background:transparent url(../images/bg.layer.png) repeat-y center top;
}

.searchResult .layer .layerTopSmall {
	background:transparent url(../images/bg.layer.small.top.png) no-repeat center top;
	height: 4px;
}
.searchResult .layer .layerBottomSmall {
	background:transparent url(../images/bg.layer.small.bottom.png) no-repeat center top;
	height: 7px;
}
.searchResult .layer .layerMidSmall {
	background:transparent url(../images/bg.layer.small.png) repeat-y center top;
}

.searchResult .layer  .color5 {
	margin: 0 4px;
	padding: 10px;
	overflow: hidden;
}

.color5 {
	background-color: #d5a4cc !important;
}
.searchResult .layer table th,
.searchResult .layer table td {
	color: #59054e !important;
}
.searchResult .layer table th {
	text-align: left;
	font-weight: normal;
}
/* end layer */
.searchResult.color1 table tr.odd,
table.wide tr.odd {
	background-color: #d0e5d3;
}
.searchResult.color2 table tr.odd {
	background-color: #cedfe7;
}
.searchResult table th {
	text-align: left;
	padding: 0 10px 3px 0;
	vertical-align: top;
}
.searchResult table th.first {
	width: 90px;
}
.searchResult table td {
	padding: 0 10px 3px 0;
	vertical-align: top;
}
.searchResult table p {
	font-weight: normal;
	color: #4a6b7b;
	margin: 0 0 3px 0;
}
.searchResult table img {
	margin: 10px 0 0 10px;
}
.searchResult table img.normargin {
	margin: 0px 0 0 0px;
}

.searchResult table a {
	color: #4a6b7b;
}
.searchResult table p i {
	font-weight: normal;
	color: #213843;
}
.searchResult table h3 {
	font-size: 14px;
	font-weight: bold;
}
input.resultFloatLeft {
	margin: 10px 0 5px 10px !important;
}
.searchResult input.floatRight {
	margin: 17px 10px 5px 0;
}
.searchResult p.center {
	border-top: 2px solid #fff;
	text-align: center;
	margin: 0 10px;
	padding: 10px 0 0;
	width: 463px;
}
.searchResult p.center a {
	color: #222222;
}
.wrap_top_table {
	background:url(../images/wrap.table.lid.png) no-repeat;
	margin: 0 0 -7px 6px
}
.wrap_mid_table {
	background-image:url(../images/wrap.table.mid.png);
	width: 950px;
}
.wrap_bottom_table {
	background:url(../images/wrap.table.lid.png) no-repeat 0 -10px;
	margin: 0 0 0 4px
}
table.wide {
	margin: 0 0 0 4px;
	background-color: #dff3dd;
}
table.wide th {
	text-align: right;
	width: 210px;
	padding: 5px 20px 5px 0;
	vertical-align: top;
}

table.wide .odd,
table.wide .package.odd {
	background-color: #fff;
}
table.wide .odd.active,
table.wide .package.odd.active {
	background-color: #d0e5d3;
}
table.wide td {
	padding: 5px 5px 5px 10px;
	vertical-align: top;
}
table.wide td.last {
	padding: 5px 10px 5px 10px;
	vertical-align: top;
}
table.wide th h1 {
	font-size: 24px;
	margin: 5px 0;
}
table.wide th a.back {
	color: #91137B;
	font-size: 12px;
	font-weight: normal;
	text-decoration: none;
}
table.wide th a.back img {
	margin: 0 5px 2px 0;
}
table.wide td h2 {
	font-size: 15px;
	text-transform: none;
	margin: 0;
}
table.wide td h3 {
	font-size: 14px;
	margin: 0 0 5px 0;
}
table.wide td p {
	margin: 0 0 3px 0;
}
table.wide td.center {
	text-align: center;
}
table.wide tr.button td {
	text-align: center;
}
table.wide td select{
	width: 155px;
}
table.wide .dotted {
	background:transparent url(../images/bg.dotted.table.png) no-repeat left top;
	padding: 12px 10px 10px 10px;
	margin: 7px 0 0 0;
	height: 46px;
}
table.wide .dotted p {
	color: #3a5158;
	font-size: 11px;
	line-height: 1.4;
	margin: 0;
}
table.wide .odd.arrowDown {
	background:#fff url(../images/bigArrow.down.png) no-repeat 10px 0;
	padding: 12px 0 65px 0
}
table.wide .active.arrowDown {
	background: #d0e5d3 url(../images/bigArrow.down.png) no-repeat 10px 0;
	padding: 12px 0 45px 0
}
table.wide .arrowDown {
	background:transparent url(../images/bigArrow.down.png) no-repeat 10px 0;
	padding: 12px 0 45px 0
}
table.wide .arrowDown input.submit {
	margin: 5px 0 0 4px
}
table.wide .starsNull {
	background: transparent url(../images/stars.png) no-repeat 0 -11px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
table.wide .starsOne {
	background: transparent url(../images/stars.png) no-repeat 0 -39px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
table.wide .starsTwo {
	background: transparent url(../images/stars.png) no-repeat 0 -70px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
table.wide .starsThree {
	background: transparent url(../images/stars.png) no-repeat 0 -100px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
table.wide .starsFour {
	background: transparent url(../images/stars.png) no-repeat 0 -130px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
table.wide .starsFive {
	background: transparent url(../images/stars.png) no-repeat 0 -161px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 15px 0;
}
table.wide .expandedArea p span {
	display: block;
}
table.wide .package .container p {
	color: #433f21;
	font-size: 14px;
	background:transparent url(../images/bg.chosen.package.table.png) no-repeat left top;
	float: left;
	min-height: 87px;
	margin: 0;
	padding: 17px 20px 11px 17px;
}
table.wide .package .container {
	overflow: hidden;
	margin: 0;
	padding: 0
}
table.wide .package input {
	margin: 0 13px 0 0;
	float: right
}
table.wide .package .container p input {
	margin: 15px 0 0 32px;
	float: none
}
table.wide .package h3 {
	margin: 0 0 10px 5px;
}
table.wide .package {
	background-color: transparent
}
table.wide .button p span {
	display: block;
	color: #433f21;
	font-size: 10px;
	line-height: 0.8;
}
.wishList {
	margin: -20px 0 0 -9px;
	width: 324px;
    float:left;
}
.wishList .wrap_wide_top {
	background-image:url(../images/wrap.330.lid.png);
}
.wishList .wrap_wide_mid {
	background-image:url(../images/wrap.330.mid.png);
}
.wishList .wrap_wide_bottom {
	background-image:url(../images/wrap.330.lid.png);
}
.wishList .package .container {
	overflow: hidden;
	margin: 0 0 0 -5px;
}
.wishList .package .container p {
	color: #433f21;
	font-size: 14px;
	background:transparent url(../images/bg.chosen.package.table.png) no-repeat left top;
	float: left;
	width: 195px;
	margin: 5px 0;
	padding: 20px 0 19px 17px;
}
.wishList .package .container .right {
	float: left;
	background:transparent url(../images/bg.chosen.package.table.right.png) no-repeat right top;
	padding: 22px 5px 21px;
	margin: 5px -2px 5px 0;
}
.wishList input.submit {
	margin: 10px 0 0 0;
}
.wishList .package .dotted {
	background:transparent url(../images/bg.dotted.300.gif) no-repeat center top;
	padding: 12px 10px 10px 10px;
	margin: 7px 0 0 0;
	height: 46px;
}
.package {
	background-color:#dff3dd;
	position: relative;
	padding: 0 20px 9px;
}
.package .dotted {
	background:transparent url(../images/bg.dotted.gif) no-repeat center top;
	padding: 12px 10px 10px 10px;
	margin: 7px 0 0 0;
	height: 46px;
}
.package .dotted p {
	color: #3a5158;
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}
.package .container {
	overflow: hidden;
	margin: 0 0 0 -10px;
}
.package .container .right {
	float: left;
	background:transparent url(../images/bg.chosen.package.right.png) no-repeat right top;
	padding: 11px 0 16px 0;
	margin: 0 -2px 0 0;
}
.package .container input {
	margin: 1px 10px 0 0;
}
.package .container p {
	color: #433f21;
	font-size: 14px;
	background:transparent url(../images/bg.chosen.package.png) no-repeat left top;
	float: left;
	min-width: 121px;
	margin: 0;
	padding: 9px 0 11px 17px;
}
.package .container p span {
	display: block;
	color: #433f21;
	font-size: 10px;
	line-height: 0.8;
}
.package .bigArrow {
    width:470px;
	position: absolute;
	left: 20px;
	top: 12px;
	z-index: 10;
	height: 67px;
}

.package .bigArrow .info {
	float: left;
	width: 295px;
	background:transparent url(../images/bigArrow.png) no-repeat left top;
	padding: 11px 10px 15px 10px;
	overflow: hidden;
}
.package .bigArrow .info img {
	float: left;
	padding: 0 10px 0 0;
}
.package .bigArrow .info .text {
	float: left;
	padding: 0 0 0 5px;
}
.package .bigArrow .info h2 {
	font-size: 12px;
	text-transform: none;
	margin: 0;
}
.package .bigArrow .info p {
	font-size: 24px;
	margin: 0;
}
.package .bigArrow .pointer {
	float: left;
	background:transparent url(../images/bigArrowPointer.png) no-repeat right top;
	padding: 24px 46px 24px 10px;
}
.package .bigArrow .pointer input {
	margin: 0;
}
/* no background*/
.package .bigArrow.noArrow .info,
.package .bigArrow.noArrow .pointer {
	background:none;
}
/* end no background */
.package table {
	margin: 90px 0 30px 0;
	color: #213843;
	font-family: courier;
	font-size: 14px;
}
.package table b {
	color: #e97400;
	font-size: 14px;

}

.package2 {
    background-color:#DFF3DD;
    padding:0 20px 9px;
    position:relative;
}

/*
.package2 p {
     font-size:150%;
} */

.package2 table, .package2 table a {
	margin: 0px 0 0px 0;
	color: #213843;
	font-size: 12px;
}


.package2 table b {
	color: #91137b;
	font-size: 14px;
    
}

.package2 table th {
	text-align: left;
	font-weight: normal;
}

.package2 table th, .package2 table td {
    padding: 4px 1px 4px 0;
}



.golfcourse table {
	margin: 30px 0 30px 0;	
}

.package table td.info {
	font-family: Arial;
	font-size: 12px;
	padding: 4px 10px 10px 5px;
}

.package table td.dates {
	font-family: arial;
	font-size: 10px;
	padding: 4px 10px 10px 5px;
}

.package table th {
	text-align: left;
	font-weight: normal;
}
.package .tabs {

}
.package .tabs {
	width: 440px;
	margin: 0;
}
.package .tabs td {
	color: #4a6b7b;
	font-size: 12px;
	font-family: helvetica;
	background-color: #eff9ee;
	height: 20px;
	padding: 10px 10px 5px 10px;
	vertical-align: top;
	border-left: 2px solid #dff3dd;
	cursor: pointer;
}
.package .tabs td.first{
	border-left: none;
}
.package .tabs td.active {
	background-color: #fff;
	color: #213843;
	cursor: default;
}
.package .tabs td:hover {
	background-color: #fff;
	cursor: pointer;
}
.package #showContent1.tabContent {}
.package .tabContent.marginTop {
	margin: 10px 0 0 0 ;
}
.package .tabContent {
	clear: both;
	background-color: #fff;
	padding: 10px 10px 0 20px;
	overflow: hidden;
}
.package .tabContent .leftCol {
	/*float: left;*/
	/*width: 250px;*/
	padding: 10px 10px 10px 0;
	margin: 0 0 5px 0;
	overflow: hidden;
}
.package .tabContent .leftCol a {
	/*display: block;  */
    display: inline;
	color: #91137B;
	text-decoration: none;
}
.package .tabContent .leftCol h2 {
	font-size: 15px;
}
.package .tabContent .rightCol {
	float: right;
	width: 150px;
	margin: 0 0 -10px 10px;
	overflow: hidden;
}
.package .tabContent .rightCol ul {
	margin: 0 0 20px 0;
	padding: 10px;
	background-color: #eff9ee;
}
.package .tabContent .rightCol ul li {
	list-style: none;
	overflow: hidden;
}
.package .tabContent .rightCol ul li img {
	margin: 0 3px -3px 0;
}
.package .tabContent .rightCol ul li h4 {
	margin: 0;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
.package .tabContent .rightCol ul li h5 {
	margin: 5px 0 0 0;
	font-weight: normal;
	font-style: italic;
}
.package .tabContent .rightCol ul li a {
	color: #91137B;
	text-decoration: none;
}
.package .tabContent .rightCol ul li span {
	display: block;
	color: #4a6b7b;
}
.packageArea {
	background-color:#dff3dd;
	padding: 0 20px 9px;
}
.packageArea h4 {
	text-transform: none;
	font-size: 14px;
	margin: 5px 0;
	padding: 6px 0 0 0;
	clear: right;
	border-top: 1px solid #fff;
}
.packageArea h4.noBorder {
	border: none;
	margin: 0 0 5px 0;
}
.packageArea p {
	color: #4A6B7B;
	margin: 0 0 2px 0;
}
.packageArea p i {
	color: #222222;
}
.packageArea p.floatRight {
	color: #222222;
	font-weight: bold;
	margin: 0 0 5px 0;
	text-align: right;
}
.packageArea p span {
	display: block;
	color: #4A6B7B;
	font-weight: normal;
	font-size: 11px;
}
.find_travel {
	background-color:#f3dde6;
	position: relative;
    height:150px;
    padding-right:160px;
}
.find_travel .world-image {
	display:block;
	height:100px; width:240px;
	background: url(../images/find_travel.gif) no-repeat right;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: -1000;
}
.find_travel .positionedFlag {
	position: absolute;
	bottom: -20px;
	left: -20px;
	z-index: 100;
}
.find_travel h3 {
	clear: both;
	margin: 10px 0 5px 0;
	color: #91137b;
}
.find_travel .background {
	float: left;
	padding: 0 0 0 4px;
	margin: 20px 10px 15px 0;
	background:transparent url(../images/bg.field.left.png) no-repeat left;
    margin:0;
}

.find_travel .background.last {
	margin: 40px 0 15px 0;
}
.find_travel .background span {
	display: block;
	padding: 8px 8px 8px 4px;
	background:transparent url(../images/bg.field.png) no-repeat right;
}
.find_travel select {
	margin: 0;
	width: 124px;
}
.find_travel_by_map {
	background-color:#ddecf3;
    height:145px;
    text-align:center;
    padding-top: 5px;
	/*position:relative;*/
}
.find_travel ul li {
	float:left;
	margin:0 9px 0 0;
}
.find_travel ul li a {
	display:block;
	padding: 0 0 0 4px;
	background:transparent url(../images/popular.searches.bg.start.png) no-repeat left;
	font-size: 1.2em;
	color: #91137b;
	text-decoration: none;
}
.find_travel ul li a span {
	display: block;
	padding: 4px 5px 5px 0;
	background:transparent url(../images/popular.searches.bg.png) no-repeat right;
}
.find_travel_by_map h3 {
	margin-bottom:0;
}
.find_travel_by_map h3 a {
/*
	color:#213742;
	font-size:18px
*/
}
.find_travel_by_map img {
	/*position:relative;*/
	bottom:-20px;
	left:-10px;
	display:block;
    margin-bottom:12px;
}

/* popular columns */
h3.grid_margin {
	margin-left:10px;
	margin-right:10px;
}
.popular_column {
	/*position:relative;*/
	text-align:center;
	padding: 0 20px 20px;
}
.popular_column img {
	/*position:relative;*/
	left:-10px;
	display:block;
	margin-bottom:18px;
}
/* end General */
/* form elements */
label { display:block; font-weight:normal;margin: 12px 0 0; }

input.onerow,
input.full { display:block; }
input.full { width:94%; }
input.long { width:66%; }
input.short { width:60px; }
input.disabled { background-color:#f9f9f9; }
input.submit.noMargin { margin: 0; }
select.short { width:122px; }

input[type=button],
input.button,
input[type=submit],
input.submit,
input[type=text],
input.text,
input.title,
textarea,
select,
.margins_as_input { margin:0.3em 0 1.5em; }

input[type=radio],
input.radio { /*position:relative;*/ top:.10em; }

input[type=checkbox],
input.checkbox { /*position:relative;*/ top:0; }

input[type=button],
input[type=submit],
input[type=file],
select { cursor:pointer;font-size: 11px;}

textarea { width:94%; height:6em; padding:0.3em 0.3em 0; } /* margin-bottom:0; in admin */

/* form helpers */
ul.no_margins { margin:0; padding:0; list-style-type:none; }
hr { margin:1.5em 0; }

.box { border:1px solid #ddd; padding:0 1.2em 0.2em; margin:0.3em 0 2em; }

.remove { background-color:#999; color:#fff; padding:0 3px; line-height:13px;
	font-size:10px; font-weight:bold; text-transform:uppercase; cursor:pointer;
	float:right; margin-left:0.2em;}
.remove:hover { background-color:#000; }

.example { text-transform:none; }
.smaller { font-size:90%; }

.form_group { background-color:#f9f9f9; padding:0.9em; margin-bottom:1.5em; }

.span_link { color:#00e; cursor:pointer; }
.span_link:hover { text-decoration:underline; }

/* BOOKING FLOW */

/* booking step 1 */
ul.package_list {  }
ul.package_list li { position:relative; padding-bottom:1.5em; }
ul.package_list img { position:absolute; left:0; top:2px; }
ul.package_list input { position:absolute; left:9px; top:0; margin:0; }
ul.package_list .name { padding-left:30px; display:block; }
ul.package_list .price { display:block; }
.offer_list_ruler { margin-top:0; }
.until_date { margin:0 0 0 0.3em; }
.no_margins { margin:0; }
.golf_players input,
.child_age input { margin:0.2em; }
.players_children { margin:-1.3em 0 1.5em; }
.players_children label { text-transform:none; }
.checkbox_container { position:relative; padding-left:24px; }
.checkbox_container input { position:absolute; left:0; }

.hidden_forms_trigger { position:relative; text-transform:uppercase; }
.hidden_forms_trigger img.hidden_forms_collapsed { position:absolute; left:0; top:-1px; }
.hidden_forms_trigger img.hidden_forms_expanded { position:absolute; left:0; top:3px; }
.hidden_forms_trigger span.hidden_forms_expanded,
.hidden_forms_trigger span.hidden_forms_collapsed { padding-left:18px; }

.collapsed .hidden_forms_expanded,
.expanded .hidden_forms_collapsed { display:none; }

.expanded .hidden_forms_expanded,
.collapsed .hidden_forms_collapsed { display:inline; }

.golfcourse_starttime select { width:90px; margin-bottom:0; }
.golfcourse_starttime input { width:30px; margin-bottom:0; }
.golfcourse_starttime .remove { margin-top:5px; }
.add_golfcourse_starttime { margin-top:0.3em; }

/* booking step 2 */
.optional_fields .time { float:right; }

/* booking step 3 */
.keep_visitor { margin:1.5em 0 0; }
.close_confirmation { margin:3em 0 1.5em 0; }

/* Forms  */
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }
/* Form fields */
input[type=text],
iinput.title,
textarea, select {
  background-color:#fff;
  border:1px solid #bbb;
}
input.text,
input.text:focus {
  background-color:#fff;
  border:none;
}
input[type=text]:focus,
input.title:focus,
textarea:focus, select:focus {
  border-color:#666;
}
input[type=text],
input.text, input.title,
textarea, select {
  margin:0.5em 0;
}
input.text, input.title { width: 300px; padding:5px; }
input.title { font-size:1.5em; }
/*textarea { width: 390px; height: 250px; padding:5px; }*/

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  /*position:relative;*/ top:.25em;
}
input.text.field {
	width: 188px;
/*border:1px solid #d9d9d2;*/
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }

/* Success, notice and error boxes */
.error,
.notice,
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
/* end Forms */

.small {
	font-family: arial;
	font-size: 10px;
    font-style: italic;
	padding: 4px 4px 4px 4px;
}

/* banners */
img.ad_big {
    width: 980px;
    height: 120px;
}

/* index */
.myObjects { margin-bottom:6em; }
.myObjects ul { list-style:none; padding-left:0; border-bottom:1px solid #999; margin:0 0 3em 0; }
.myObjects ul>li { padding:0.6em; text-transform:uppercase; }
.myObjects ul li.odd { background-color:#eee; }
.myObjects ul>li>input.edit { float:right; margin-top:-0.3em; }

.login { float:right; }

.level1{padding-left:5px;}
.level2{padding-left:15px;}
.level3{padding-left:25px;}
.level4{padding-left:35px;}

/*
.level1, .level2, .level3, .level4, .level5, .level6 {
margin-bottom:4px;
}
*/

.relatedPackage a {
    color: #000000;
    text-decoration:none;
}

.starsNull {
	background: transparent url(../images/starssmall.png) no-repeat 0 -5px;
	width: 100%;
	padding: 0;
	margin: 5px 0 8px 0;
}
.starsOne {
	background: transparent url(../images/starssmall.png) no-repeat 0 -20px;
	width: 100%;
	padding: 0;
	margin: 5px 0 8px 0;
}
.starsTwo {
	background: transparent url(../images/starssmall.png) no-repeat 0 -35px;
	width: 100%;
	padding: 0;
	margin: 5px 0 8px 0;
}
.starsThree {
	background: transparent url(../images/starssmall.png) no-repeat 0 -50px;
	width: 100%;
	padding: 0;
	margin: 5px 0 8px 0;
}
.starsFour {
	background: transparent url(../images/starssmall.png) no-repeat 0 -65px;
	width: 100%;
	padding: 0;
	margin: 5px 0 8px 0;
}
.starsFive {
	background: transparent url(../images/starssmall.png) no-repeat 0 -80px;
	width: 100%;
	padding: 5px 0;
	margin: 10px 0 8px 0;
}
