@charset "UTF-8";
/* CSS Document */
	/* General styles */
    body {
        margin:0;
        padding:0;
        width:100%;
        background:#fff;
		font-family: Arial, Helvetica, sans-serif;
		font-size: large;
		max-width: 1800px;
        min-width:800px;    /* Minimum width of layout - remove line if not required */
							/* The min-width property does not work in old versions of Internet Explorer */
    }
    #header {
        float:left;
        width:100%;
		padding:0;
		margin:0;
}
	/* column container */
	#colmask {
		position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	    clear:both;
	    float:left;
        width:100%;				/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
		background:#FFF;    	/* Left column background colour */
	}
	#colmid {
        float:left;
        width:200%;
        position:relative;
        left:350px;
        background:#fff;    	/* Centre column background colour */
    }
	#colright {
	float:left;
	width:100%;
	position:relative;
	left:50%;
	margin-left:-590px;
	background:#FFF;    	/* Right column background colour */
}
	#col1wrap {
	float:right;
	width:50%;
	position:relative;
	right:100%;
}
	#col1pad {
	margin:0 20px 0 490px;
	overflow:hidden;
}
#col1 {
	width:100%;
	overflow:hidden;
}
#col2 {
	float:left;
	width:220px;
	position:relative;
	margin-left:-50%;
	left:250px;
	overflow:visible;
	font-size: small;
	padding-top: 10px;
}
#col3 {
	float:left;
	width:220px;
	position:relative;
	overflow:hidden;
	font-size: small;
	left:10px; 
	padding-top: 10px; 
}
#footer {
  clear: both;
  flaot: left;
  text-align:center;
  font-size:small;
}
#main-menu {
	position:absolute;
	left:10px;
	top: 80px;
	width: 100%;
}
.etc {
	visibility:visible;
}
.mobile {
	display: none;
}
#ssep {
	visibility: visible;
}
#content {
  height: 800px;
  position: relative;
  overflow: hidden;
}
#fade-out { 
position:absolute;
   bottom:0;
   height:80px;
   width:100%;
   background:-webkit-linear-gradient(rgba( 255, 255, 255, 0), rgba(255, 255, 255, 1) ); /* For Safari */
   background:linear-gradient( rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) );
   }
.read-more, .read-more a:link {
	text-align:center;
	margin-top: 10px;
	color: #FFF;
	}

/* Basic elements */

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: large;
}
h1, h2, h3, h4, h5, li {
	font-family: Arial, Helvetica, sans-serif;
}
h4 {
	font-size: large;
	display: inline;
	padding-right: 6px;
	padding-left: 0px;
	padding-top: 4px;
	line-height: 150%;
	font-weight: bold;
}
ol {
	list-style-position: inside;
}
ol li {
	margin-bottom: 1em;
}
.top10 {
	list-style-position:outside;
}
ul {
	list-style-position: outside;
}
ul li {
	margin-bottom: 1em;
}
a:link {
	color:#933;
	text-decoration:none;
}
a:visited {
	color: #C66;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: #FFF;
	background: #600;

}

/* IMAGES */
img {
	max-width: 100%;
    width: auto\9; /* ie8 */
	-ms-interpolation-mode: bicubic;
}
#col1 img {
	margin:10px 0px;
	max-width: 100%;
    width: auto\9; /* ie8 */
	-ms-interpolation-mode: bicubic;
}
a img { 
	border: none;
}
.image {
	font-size: small;
	line-height: 100%;
	width: 45%;
	min-width: 120px;
	max-width: 480px;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: 1px solid #030;
}
.top-pic img
{
	width: 100%;
	height:auto;
	min-width: 200px;
	max-width: 800px;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);				
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);	
}
.image img {
	width: 100%;
	height:auto;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);				
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);	
}
/* to deprecate */
.image_left {
	font-size: small;
	line-height: 100%;
	float: left;
	width: 45%;
	min-width: 120px;
	max-width: 480px;
	padding-bottom: 5px;
	margin-right: 3%;
	margin-bottom: 10px;
	border-bottom: 1px solid #030;
}
.image_left img {
	width: 100%;
	height:auto;
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
.image_right {
	font-size: small;
	line-height: 100%;
	float: right;
	width: 45%;
	min-width: 120px;
	max-width: 480px;
	padding-bottom: 5px;
	margin-left:3%;
	margin-right:3%;
	margin-bottom: 10px;
	border-bottom: 1px solid #030;
}
.image_right img {
	width: 100%;
	height:auto;
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
/* END to deprecate */
.hour {
	font-size: small;
	color: #999;
	margin-right: 1%;
	display:inline-block;
}
/* Items */
.item {
	float: left;
	padding-left: 2%;
	padding-top: 1%;
	padding-bottom: 2%;		
	width: 28%;
	min-width: 100px;
	height: 370px;
	border: thin solid #CCC;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.15);
	overflow: hidden;
	margin-bottom:15px;
	margin-right:2%;
	position:relative;
	-webkit-transition: height 500ms ease;
	-moz-transition: height 500ms ease;
	-ms-transition: height 500ms ease;
	-o-transition: height 500ms ease;
	transition: height 500ms ease;
	overflow: hidden;
}
.item:hover, .item:active, .item:focus {
	height: 100%;
}
.item:hover .fade, .item:active .fade, .item:focus .fade {
	height: 0;
}
.item p, .item h3 {
	visibility: visible;
}
.item h4 {
	clear: right;
	display:block;
	margin: 8px 0 0 0;
	background-color: #CFE6DC;
}
.item-title {
	visibility: visible;
}
.item-title h3 {
	visibility: visible;
	clear: both;
	font-size:medium;
}
.item .thumb {
	max-width: 90%;
	min-width: 90%;
}
.item-brief {
	font-size:small;
	margin-right: 3%;
}
.fade { 
	position: absolute; 
	z-index: 2;
    bottom: 0em;
    width:100%;
    height: 3em;
	background-image: -webkit-gradient(top, rgba(255, 255, 255, 0), white);
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
        background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), white);
        background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0), white);
        background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), white);
		background-image: linear-gradient(top, transparent, white);

}
.main_bubble_itin .fade {
	height: 5em;
	}
.detail-right {
	float: right;
	text-align:right;
	display:inline-block;
	padding: 2%;
	margin: 1% 2%;
	color: #666;
	font-size:small;
	border:thin solid #CCC;
	border-radius: 3px;
}
.detail-inline {
	font-style:italic;
	color: #999;
	font-size:small;
	display:inline;
}
.item-entire-linked {
	position:absolute;
	width:100%;
	height:100%;
	z-index:1;
	background-image:url(../images/misc/empty.gif);
}
.item-entire-linked a:link, .item-entire-linked a:visited {
	background-color:#FFF;
}
.item-entire-linked:hover, .item-entire-linked:active, .item-entire-linked:focus {
	top:0px;
	left:0px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: inset 0 0 2px 3px #900;
	-moz-box-shadow: inset 0 0 2px 3px #900;
	-webkit-box-shadow: inset 0 0 2px 3px #900;
}
.item-interior-link {
	position:relative;
	z-index:2;
} 
.interior-links a {
	position:relative;
	z-index:2;
} 
/* END items */
/* BOXES */
.thirds {float: left;
	width: 30%;
	min-width:145px;
	margin-right: 2%;
	margin-bottom: 10px;}
.thirds ul  {
	list-style-type: circle;
	margin: 5px 0 5px 0;
	padding: 0px 10px 5px 10px;
	font-size: small;
}
.thirds ul li {
	margin-left: 3%;
	line-height:100%;
	margin-bottom: 7%; 
}
.thirds ol  {
	margin: 0;
	padding: 0;
	font-size: small;
}
.thirds ol li {
	margin-left: 3%;
	line-height:100%;
	margin-bottom: 7%; 
}
.main_bubble {
	float: left;
	width: 30%;
	min-width:150px;
	font-size: medium;
	border: 2px solid #003;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin-right: 2%;
	margin-bottom: 10px;
}
.main_bubble_full {
	width: 99%;
	font-size: medium;
	border: 2px solid #003;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin-right: 2%;
	margin-bottom: 10px;
	clear:both;
}
.main_bubble_itin {
	width: 99%;
	font-size: medium;
	border: 1px solid #003;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	margin-right: 2%;
	margin-bottom: 10px;
	height: 280px;
	position:relative;
	overflow: hidden;
	clear:both;
}
.main_bubble_itin:hover, .main_bubble_itin:active, .main_bubble_itin:focus {
	height: 100%;
}
.main_bubble_itin:hover .fade, .main_bubble_itin:active .fade, .main_bubble_itin:focus .fade {
	height: 0;
}
.main_bubble_right {
	float:right;
	width: 30%;
	min-width:250px;
	font-size: x-small;
	margin-left: 10px;
	margin-bottom: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border: 2px solid #003;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	line-height: 130%;
}
.main_bubble_top {
	background-color: #030;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFF;
	font-weight: bold;
	font-size: large;
	width: auto;
	top: 0px;
	margin: 0px;
	line-height: 150%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.main_bubble_top a, .main_bubble_top a:link, .main_bubble_top a:visited {
	color: #FFF;
	text-decoration: none;
}
.main_bubble_content {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 150%;
	padding: 10px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.main_bubble_content p {
	margin-top: 0;
	font-size: medium;
}
.main_bubble_top-small {
	background-color: #030;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFF;
	font-weight: bold;
	display: inline-block;
	padding: 5px 10px 5px 10px;
	margin-left: -10px;
	margin-bottom: 10px;
	clear:both;	
}
.main_bubble_top-subhed {
	display:inline-block;
	background-color: #CFE6DC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	top: 0px;
	padding: 2px 7px 2px 11px;	
	margin-left: -11px;
	margin-bottom: 10px;
	border: thin solid #030;
	clear:both;		
}
.main_bubble_content ul  {
	list-style-type: circle;
	margin: 5px 0 0px 0;
	padding: 0px 10px 0px 10px;
	font-size: small;
}
.main_bubble_content ul li {
	margin-left: 5px;
	margin-bottom: 10px;
	line-height:100%;
}
.main_bubble_content ol  {
	margin: 0;
	padding: 0;
	font-size: small;
}
.main_bubble_content ol li {
	margin-left: 0px;
	line-height:100%;
}
.side_bubble {
	width: 96%;
	border: 2px solid #030;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	text-decoration: none;
	clear: none;
	float: none;
	margin-bottom: 20px;
}
.side_bubble_top {
	background-color: #030;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFF;
	font-weight: bold;
	font-size: x-large;
	width: auto;
	top: 0px;
	margin: 0px;
	padding: 10px;
}
.side_bubble_top a:link, .side_bubble_top a:visited {
	color: #FFF;
}
.side_bubble_top:hover, .side_bubble_top:hover a:link, .side_bubble_top:hover a:visited, .side_bubble_top:active, .side_bubble_top:active a:link, .side_bubble_top:active a:visited, .side_bubble_top:focus, .side_bubble_top:focus a:link, .side_bubble_top:focus a:visited {
	background-color: #933;
	color: #FFF;
	display:block;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	-moz-border-radius-topright: 6px;
	-moz-border-radius-topleft: 6px;
	-webkit-border-radius-topright: 6px;
	-webkit-border-radius-topleft: 6px;
}
/* to deprecate */
.side_bubble .TabbedPanelsTab {
	font-size:xx-small;
}
/* end to deprecate */
.nolink {
	background-color: #030;
	display:block;
	margin:-10px;
	padding:10px;
}
.side_bubble ul {
	margin: 0;
	padding: 0;
}
.side_bubble li {
	margin-left: 0;
}
.side_bubble_content {
	padding: 10px;
	font-size:small;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.side_bubble_content p {
	margin-top: 0;
	font-size:small;
}
.side_bubble_content ul {
	margin: 5px 0 5px 0;
	padding: 0px 10px 5px 10px;
}
.side_bubble_content ul li {
	margin-left: 5px;
	margin-bottom:2px;
}
.side_bubble_content ol {
	margin: 0;
	padding:0;
}
.side_bubble_content ol li {
	margin-left: 5px;
	line-height:100%;
}
.side_bubble .star {
	color: #C00; float:right; padding-left:10px; padding-bottom:10px;
}
.side_bubble .stars {
	color: #C00; float:right; padding-left:10px; padding-bottom:10px;
}
.side_bubble_content .links-heading {
	font-weight: bold;
}
.list-to-csv li:first-child {
	font-weight: bold;
	font-size: medium;
	list-style: none;
	margin-left: -12px;
}
.collapse-content .list-to-csv li:first-child {
	font-size: x-large;
	margin-left: -40px;
	margin-top: 30px;
	list-style:none;
}
.list-to-csv li:first-child:after {
	content: ": ";
}

.box_wide {
	float:right;
	max-width:40%;
	min-width:200px;
	font-size: small;
	margin: 10px;
	padding: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border: 2px solid #030;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	background-color: #CFE6DC;
	line-height: 130%;
}
.box_wide p {
	font-size: small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.box_wide ul {
	list-style:circle;
	padding-left: 15px;
}
.box_narrow  {
	float:right;
	max-width:30%;
	min-width:160px;
	margin: 5px 5px 7px 5px;
	font-size: small;
	padding: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border: 2px solid #030;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	background-color: #DEEFFD;
	line-height: 130%;
}
.box_narrow p {
	font-size: small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.box_narrow ul {
	margin-left:-20px;
	margin-top:3px;
	margin-bottom:5px;
}
.box_80  {
	float:right;
	width: 80px;
	margin: 5px 5px 7px 5px;
	font-size: 9px;
	padding: 3px 7px 3px 7px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border: 2px solid #030;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	background-color: #DEEFFD;
	line-height: 130%;
	font-weight: bold;
}
/* to deprecate */
.box_any {
	width:235px;
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	padding: 5px;
	background-color: #CFE6DC;
	border: 2px solid #030;
	float:left;
}
/* end to deprecate */
.thumb {
	clear:both;
	float:left;
	margin-right: 5%;
	margin-bottom: 3%;
	width: 40%;
	min-width: 100px;
	max-width: 300px;
	padding-top:0;
}
.main_bubble_itin .thumb 
{	width: 30%;
	}
.thumb img {
	width: 100%;
	height:auto;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5); 
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);	
}
.top-pic {
	padding-bottom: 10px;
	padding-right: 15px;
	font-size: x-small;
	font-style: italic;
}
.top-pic img {
 	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
.top-pic-third {
	width:30%;
	float:left;
	padding-right:2%;
}
.top-graphic {
	width:99%;
	padding:0;
	margin:0;
	}
.top-graphic-hed {
	max-height:100px; width:95%; font-size:x-large; font-weight:bold; padding:10px; margin-bottom: 10px; clear:right; border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);}
.top-graphic-third {
	float:left; width: 30%; min-width:120px; padding-left: 1%; padding-right: 1%; margin-right:1%;
	text-align:center; text-decoration: none;
	color:#000000;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
.top-graphic-third a:link, .top-graphic-third a:visited, .top-graphic-third a:hover, .top-graphic-third a:active
{
	color:#000000;
	text-decoration:none;
	background:none;
}
.caption {
	clear:both;
	font-size: small;
	max-width:100%;
	text-align:right;
}
/* RI Styles */
.dek {
	font-size: large;
	padding-top: 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-bottom: 5px;
	font-weight: normal;
}
.star {
	color: #C00;
	display:inline;
	margin-left: 2%;
}
.star-empty {
	color: #CCC;
}
.side_bubble li .star {
	font-size: x-small;
}
.related ul li {
	list-style-type: circle;
	line-height: 140%;
	margin-bottom: 0px;
}
.related ul li.tab {
	margin-left: 5%;
}
/* .related ul li ul {
	display: inline;
	padding-left: 0;
}
.related ul li ul:before {
	content:":";
	margin-left: -.25em;
}
.related ul li ul li {
	display: inline;
	list-style-image:none;
}
.related ul li ul li:after {
	content:", ";
}
.related ul li ul li:last-child:after {
	content:"";
}
*/
.full {
	width: 100%;
	}
.bottom_bar {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	border: 2px dotted #030;
	padding: 4px;
	margin-left: 2px;
}
.tips li {
	list-style-type: circle;
	margin-bottom: 1em;
	clear:left;
}
.clear {
	clear:both;
}
.price-range {
	font-size:xx-small;
}
.rr {
	font-size:xx-small;
	color:#0099CC;
	font-weight:bold;
	font-stretch:extra-condensed;
}
.byline {
	font-size:small;
	color:#666666;
	float:right;
	padding-left: 5px;
}

/* BUTTONS  */
.more, .more a, .more a:link, .more a:visited, .more a:hover, a.more:hover, .more a:active, .more a:focus {
	display: inline;
	margin: 0px;
	border: thin dotted #930;
	color: #FFF;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 4px;
	font-style: italic;
	font-weight: bold;
	position: relative;
	z-index:2;
}
.alignright {
	margin-bottom: 10px;
	float: right;
	clear: left;
	}
.book-it {
	display: inline;
}
.book, a.book, a.book:link, a.book:visited {
	display: inline-block;
	border: thin outset #36F;
	color: #FFF;
	background-color: #33F;
	text-decoration: none;
	margin-top: 5px;
	padding-top: 0px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 4px;
	font-style: italic;
	font-weight: bold;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
a.book:hover, a.book:active, a.book:focus {
	margin-top: 5px;
	border: thin outset #930;
	color: #FFF;
	background-color:#930;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 4px;
	font-style: italic;
	font-weight: bold;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.book-lg, a.book-lg, a.book-lg:link, a.book-lg:visited {
	border: thick outset #36F;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	font-size:x-large;
	background-color: #33F;
	padding: 5px 10px 5px 5px;
	line-height: 150%;
	margin-bottom: 20px;
	width: 100px;
	clear: both;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
a.book-lg:hover, a.book-lg:active, a.book-lg:focus {
	border: thick inset #930;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	font-size:x-large;
	background-color: #930;
	padding: 5px 10px 5px 5px;
	line-height: 150%;
	width: 100px;
	clear: both;
}
.center-button {
background-color: #900;
	font-family:Arial, Helvetica, sans-serif;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	font-size: large;
	font-weight: bold;
	padding-top: 8px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
	text-decoration: none;
	box-shadow: 5px 5px 6px #666;	
	-webkit-box-shadow: 5px 5px 6px #666;
	-moz-box-shadow: 5px 5px 6px #666;
	filter: progid:DXImageTransform.Microsoft.dropShadow(color=#666, offX=5, offY=5, positive=true);
	text-shadow:0 -1px 1px #000;
	background-image:-moz-linear-gradient(top,#F6C9C9,#390);
	background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#F6C9C9),color-stop(1,#900));
	-msfilter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='#C9F6D2', EndColorStr='#390')";
	color: #FFF;

}

.red_button {
	float:left;
	color: #FFF;
	background-color: #900;
	font-family:Arial, Helvetica, sans-serif;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	font-size: large;
	font-weight: bold;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
	text-decoration: none;
	box-shadow: 5px 5px 6px #666;	
	-webkit-box-shadow: 5px 5px 6px #666;
	-moz-box-shadow: 5px 5px 6px #666;
	filter: progid:DXImageTransform.Microsoft.dropShadow(color=#666, offX=5, offY=5, positive=true);
	text-shadow:0 -1px 1px #000;
	background-image:-moz-linear-gradient(top,#F6C9C9,#390);
	background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#F6C9C9),color-stop(1,#900));
	-msfilter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='#C9F6D2', EndColorStr='#390')";
	color: #FFF;
}
.red_button a:link, a.red_button, a.center-button, .center-button a:link {
	color:#FFF;
	text-decoration: none;
	background-color:transparent;
}
.red_button:hover, .center-button:hover {
	color:#FFF;
	background-color:transparent;
	background-image:-moz-linear-gradient(top,#900,#F6C9C9);
	background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#900),color-stop(1,#F6C9C9));
	-msfilter:"progid:DXImageTransform.Microsoft.gradient(startColorStr='#390', EndColorStr='#C9F6D2')";
}
.red_button a:visited, .center-button a:visited {
	color:#FFF;
	text-decoration: none;
}
.time {
	color: #666;
	border: 1px solid #090;
	padding-top: 0px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 2px;
	font-size: small;
	display: inline;
	background-color: #FFF;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-moz-border-radius: 3px;
	float: right;
}
.hour {
	font-size: small;
	color: #999;
	margin-right: 1%;
	display:inline-block;
	white-space:nowrap;
}
.detail-right .hour {
	font-weight:lighter;
}
.list-grid {
	float: right;
	border: thin solid #CCC;
	padding: 5px;
	margin: 5px 5px 10px 5px;
	color: #666;
	font-size:small;
	font-weight:normal;
	display: inline-block;
}
.dark-red {
	background-color: #600;
}
.floatleft { 
	float: left;
	margin-right: 3%;
}
.floatright { 
	float: right;
	margin-right: 3%;
	margin-left: 3%;
}

.big-and-bold, .big-and-bold li {
	font-size: large;
	font-weight:bold;
}
/* Collapsable content */

.collapsable {
	width: 98%;
}
.collapse-heading {
	color: #030;
	font-size:x-large;
	padding: 10px 10px 10px 40px;
	cursor: pointer;
	position: relative;
	border-radius: 10px;
	border: solid thin #030;
	-moz-border-radius: 10px;
	margin-bottom: 5px;
	background-color: #FFF;
	background-image: url(plus-dk.gif);
	background-repeat: no-repeat;
	background-position: 10px;
}
.ch2 {
	color: #FFF;
	font-size:large;
	font-weight:normal; 
	background-color:#030;
	background-image: url(plus.gif);
}
.collapse-heading-active {
	color: #fff;
	font-size:x-large;
	padding: 10px 10px 10px 40px;
	cursor: pointer;
	position: relative;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	background-color: #030;
	background-image: url(minus.gif);
	background-repeat: no-repeat;
	background-position: 10px;
}
.collapse-content {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #030;
	border-right-color: #030;
	border-bottom-color: #030;
	border-left-color: #030;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-family:Arial, Helvetica, sans-serif;
}


/* TOP MENU */

ul#nav {margin: 0 0 0 0px; }
ul.drop a { display:block; color: #fff; font-family: Verdana; font-size: medium; text-decoration: none; padding-right: 25px; padding-bottom: 3px; }
ul.drop, ul.drop li, ul.drop ul { list-style: none; margin: 0; padding: 0; border: 1px solid #fff; background: #600; color: #fff; }
ul.drop { position: relative; z-index: 597; float: left; }
ul.drop li { float: left; line-height: 1.3em; vertical-align: middle; zoom: 1; padding: 5px 10px; }
ul.drop ul li a { display:block; }
ul.drop li:hover { position: relative; z-index: 599; cursor: default; background: #F00; }
ul.drop a:hover { background: #F00; }
ul.drop ul { visibility: hidden; position: absolute; top: 100%; left: 0; z-index: 598; width: 195px; background: #600; border: 1px solid #fff; }
ul.drop ul li { float: none; }
ul.drop ul ul { top: -2px; left: 100%; }
ul.drop li:hover > ul { visibility: visible }

ul.drop a.MenuBarItemSubmenu
{
	background-image: url(MenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.drop ul a.MenuBarItemSubmenu
{
	background-image: url(MenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.drop a.MenuBarItemSubmenuHover
{
	background-image: url(MenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.drop ul a.MenuBarItemSubmenuHover
{
	background-image: url(MenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}

/* SIDE MENU */

ul#MenuBar2 {margin: 0 0 0 0px; }
ul.MenuBarVertical a { display:block; color: #fff; font-family: Verdana; font-size: medium; text-decoration: none; padding-right: 20px; padding-bottom: 3px; }
ul.MenuBarVertical, ul.MenuBarVertical li, ul.MenuBarVertical ul { list-style: none; margin: 0; padding: 0; background: #600; color: #fff; }
ul.MenuBarVertical { position: relative; z-index: 497; float: left; width:100%; border-bottom-left-radius: 6px; }
ul.MenuBarVertical li { float: left; line-height: 1.3em; vertical-align: middle; zoom: 1; padding: 5px 10px; width:91%; }
ul.MenuBarVertical li:hover { position: relative; z-index: 499; cursor: default; background: #F00; }
ul.MenuBarVertical a:hover { background: #F00; }
ul.MenuBarVertical ul { visibility: hidden; position: absolute; top: 0; left: 100%; z-index: 498; width: inherit; background: #600; }
ul.MenuBarVertical ul li { float: none; border: 1px solid #fff; }
ul.MenuBarVertical ul ul { top: -2px; left: 100%; }
ul.MenuBarVertical li:hover > ul { visibility: visible }
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(MenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.MenuBarVertical ul a.MenuBarItemSubmenu
{
	background-image: url(MenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(MenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.MenuBarVertical ul a.MenuBarItemSubmenuHover
{
	background-image: url(MenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}

/* BOTTOM MENU */

ul#MenuBottom {margin: 0 0 0 0px; }
ul.MenuBarUp a { display:block; color: #fff; font-family: Verdana; font-size: medium; text-decoration: none; padding: 5px; }
ul.MenuBarUp, ul.MenuBarUp li, ul.MenuBarUp ul { list-style: none; margin: 0; padding: 0; background: #600; color: #fff; }
ul.MenuBarUp { position: relative; z-index: 497; float: left; width:100%; border-bottom-left-radius: 6px; }
ul.MenuBarUp li { float: left; line-height: 1.3em; vertical-align: middle; zoom: 1; padding: 5px 10px 5px 10px; width:95%; }
ul.MenuBarUp li:hover { position: relative; z-index: 499; cursor: default; background: #F00; }
ul.MenuBarUp a:hover { background: #F00; }
ul.MenuBarUp ul { visibility: hidden; position: absolute; bottom: 100%; left: 10%; z-index: 498; width: inherit; background: #600; }
ul.MenuBarUp ul li { float: none; border: 1px solid #fff; }
ul.MenuBarUp ul ul { bottom: 100%; left: 20%; }
ul.MenuBarUp li:hover > ul { visibility: visible }
ul.MenuBarUp a.MenuBarItemSubmenu
{
	background-image: url(MenuBarUp.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.MenuBarUp ul a.MenuBarItemSubmenu
{
	background-image: url(MenuBarUp.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.MenuBarUp a.MenuBarItemSubmenuHover
{
	background-image: url(MenuBarUpHover.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}
ul.MenuBarUp ul a.MenuBarItemSubmenuHover
{
	background-image: url(MenuBarUpHover.gif);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}

/* JQUERY TABS */
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap;}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none;}.side_bubble_content .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none;font-size:xx-small;}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}
.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:.5em .5em;background:none}.ui-tabs-panel li {margin-left:-1em;}.ui-widget{font-family:Lucida Grande,Lucida Sans,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Lucida Grande,Lucida Sans,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #a6c9e2;background:#fcfdfd ;color:#000}.ui-widget-content a{color:#933}.ui-widget-content a:hover,.ui-widget-content a:active{color:#FFF; background:#933;}.ui-widget-header{border:1px solid #4297d7;background:#5c9ccc;color:#000;font-weight:bold}.ui-widget-header a{color:#000}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #c5dbec;background:#dfeffc;font-weight:bold;color:#2e6e9e}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{text-decoration:none;font-size:small;}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #79b7e7;background:#d0e5f5;font-weight:bold;color:#1d5987}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{text-decoration:none;font-size:small;}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #79b7e7;background:#933;color:#FFF;font-weight:bold;}.ui-state-active a,.ui-state-active a:visited{color:#FFF;text-decoration:none;font-size:small;}.ui-state-active a:link,{color:#FFF;text-decoration:none;font-size:small;}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fad42e;background:#fbec88;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:5px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:5px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:5px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:5px}.ui-widget-overlay{background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}

/* ALL BELOW to deprecate */
.details {
	visibility:visible;
}
.image-left-25 {
	float:left;
	max-width: 30%;
	margin-right: 1em;
	margin-bottom: 1em;
	}
.image-left-25 img {
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	width: 100%;
}
.image-right-25 {
	float:right;
	width: 100%;
	clear:both;
	margin-top: 10px;
}
.dropshadow {
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
	margin-bottom: 10px;
	max-width: 98%;
}
.image_350 {
	font-size: 10px;
	line-height: 100%;
	float: left;
	width: 350px;
	margin-right: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #030;
}
.hotel_images {
	float: left;
	position: relative;
	border-bottom-width: 1px;
	border-bottom-color: #000000;
	padding-bottom: 5px;
	padding-right: 10px;
	width: 110px;
	font-size: 10px;
}
.image_thumb {
	clear: left;
	float: left;
	max-width:30%;
	min-width: 75px;
	padding-right: 10px;
	padding-bottom: 5px;
	font-size:small;
	font-style:italic;
}
.image_left_v {
	font-size: small;
	line-height: 100%;
	float: left;
	width: 30%;
	min-width: 120px;
	max-width: 360px;
	padding-bottom: 5px;
	margin-right: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid #030;
}
.image_left_v img {
	width: 100%;
	height:auto;
}
.image_right_v {
	font-size: small;
	line-height: 100%;
	float: right;
	width: 30%;
	min-width: 120px;
	max-width: 360px;
	padding-bottom: 5px;
	margin-left: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid #030;
}
.image_right_v img {
	width: 100%;
	height:auto;
}
/* side nav TO DEPRECATE */
.left-50 {
	float:left;
	max-width: 50%;
	margin-right: 1em;
	margin-bottom: 1em;
}
#side-nav {
	width: 100%;
}
#side-nav ul {
	margin: 0;
	padding: 0;
	width: 100%;
	float:left;
}
#side-nav ul li {
	display:inline;
	list-style-type:none;
	width:20%;
}
#side-nav ul li a, #side-nav ul li a:visited {
	float:left;
	text-decoration:none;
	background-color: #030;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: small;
	font-weight:bold;
	padding-top:10px;
	padding-bottom:10px;
	text-align:center;
	border:thin solid #FFF;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	width:20%;
}
.first a {
	border-bottom-left-radius: 8px;
}
.last a {
	border-bottom-right-radius: 8px;
}
#side-nav ul li a:hover, #side-nav ul li a:active {
	background-color: #FFF;
	color: #900;
}
<!-- END TO DEPRECATE -->
.short-nav {
	width: 100%;
}
.short-nav ul {
	margin: 0;
	padding: 0;
	width: 100%;
	float:left;
}
.short-nav ul li {
	display:inline;
	list-style-type:none;
}
.short-nav ul li a, .short-nav ul li a:visited {
	float:left;
	text-decoration:none;
	background-color: #030;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: small;
	font-weight:bold;
	padding-top:10px;
	padding-bottom:10px;
	text-align:center;
	border:thin solid #FFF;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	width:20%;
}

.short-nav ul li a:hover, .short-nav ul li a:active {
	background-color: #FFF;
	color: #900;
}
.short-nav-red {
	background-color: #600;
	}
.short-nav-red ul li, .short-nav-red ul li a, .short-nav-red ul li a:visited {
	display: inline;
	background-color: #600;
	width: 25%;
}
.short-nav-red ul li a:hover, .short-nav-red ul li a:active {
	background-color: #FFF;
	color: #900;
}
.first a {
	border-bottom-left-radius: 8px;
}
.last a {
	border-bottom-right-radius: 8px;
}

/* Viator */
#viatorWidget {
	font-size: medium;
    text-align: left;
}

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

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

#viatorWidget a img {
   border: 0;
    float: left;
    margin: 0 5px 5px 7px;
    width: 75px;
    height: 75px;
    color: #00759a;
    font-size: 11px;
    font-weight: normal;
}

#viatorWidget ul {
    font-size: x-small;
    list-style: none;
    margin: 0;
    padding: 0 7px 0;
}
#viatorWidget ul li {
	margin-bottom: 3px;
}
#viatorWidget p {
    margin: 0;
    padding: 0 7px;
    text-align: left;
	font-size: small;
	line-height: 110%;
}

#viatorWidget strong {
    font-weight: bold;
}

#viatorWidget .widget_header {
	padding: 5px;
}

#viatorWidget .widget_body { padding-bottom: 0; }

#viatorWidget .widget_entry {
    padding: 5px 0 10px;
}

#viatorWidget .price {
    float: left;
    font-weight: bold;
    font-size: 11px;
    padding-right: 5px;
}

#viatorWidget .price_desc {
    float: left;
    font-size: 11px;
}

#viatorWidget .price_format { margin-bottom: 5px; }

#viatorWidget .extract {
    clear: right;
	font-size: x-small;
}

#viatorWidget .extract a {
    font-weight: normal;
}

#viatorWidget.widget_horizontal .widget_entry {
    float: left;
    padding-bottom: 5px;
}

#viatorWidget.widget_horizontal img {
	margin-left: 0;
}

#viatorWidget .more_info {
    padding-bottom: 10px; 
    clear: both;
}

/* Clearing
-------------------------------------------------------------- */

.clearfix:after,
.widget_body:after,
.widget_entry .price_format:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix,
.widget_body,
.widget_entry .price_format { display: inline-block; }

/* Hides from IE-mac \*/
* html .clearfix,
* html .widget_body,
* html .widget_entry .price_format { height: 1%; }

.clearfix,
.widget_body,
.widget_entry .price_format { display: block; }
/* End hide from IE-mac */