@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);

html { height: 100%; }

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	background: #fff;
	font-weight: 400;
	font-size: 100%;
	color: #333;
	height: 100%;
}

.js body {
	overflow: hidden;
}

a {
	color: #555;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #000;
}

.container,
.bb-custom-wrapper,
.bb-bookblock {
	width: 100%;
	height: 100%;
}

.container {
	position: relative;
	left: 0px;
	-webkit-transition: left 0.3s ease-in-out;
	-o-transition: left 0.3s ease-in-out;
	transition: left 0.3s ease-in-out;
}

.slideRight {
	left: 240px;
}

.no-js .container {
	padding-left: 240px;
}

.menu-panel {
	background: #388192;
	width: 240px;
	height: 100%;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.js .menu-panel {
	position: absolute;
	left: -240px;
}

.menu-panel h3 {
	font-size: 1.8em;
	padding: 20px;
	font-weight: 300;
	color: #fff;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
} 

.menu-toc {
	list-style: none;
}


.menu-toc li a {
	display: block;
	color: #fff;
	font-size: 1.1em;
	line-height: 2.6;
	padding: 0 20px;
	cursor: pointer;
	border-bottom: 1px solid silver;
}

.menu-toc li a:hover,
.menu-toc li.menu-toc-current a{
	background: #7E9EAD;
}

.menu-panel div {
	margin-top: 20px;
}

.menu-panel div a {
	text-transform: uppercase;
	font-size: 0.7em;
	line-height: 1;
	padding: 5px 20px;
	display: block;
	border: none;
	color: #7E9EAD;
	letter-spacing: 1px;
	font-weight: 800;
	text-shadow: 0 1px rgba(255,255,255,0.2);
} 

.menu-panel div a:hover {
	background: inherit;
	color: #fff;
	text-shadow: none;
}

.bb-custom-wrapper nav {
	top: 20px;
	left: 60px;
	position: absolute;
	z-index: 1000;
}

.bb-custom-wrapper nav span,
.menu-button {
	position: absolute;
	width: 32px;
	height: 32px;
	top: 0;
	left: 0;
	background: #388192;
	border-radius: 50%;
	color: #fff;
	line-height: 30px;
	text-align: center;
	speak: none;
	font-weight: bold;
	cursor: pointer;
}

.bb-custom-wrapper nav span:hover,
.menu-button:hover {
	background: #000;
}

.bb-custom-wrapper nav span:last-child {
	left: 40px;
}

.menu-button {
	z-index: 1000;
	left: 20px;
	top: 20px;
	text-indent: -9000px;
}

.menu-button:after {
	position: absolute;
	content: '';
	width: 50%;
	height: 2px;
	background: #fff;
	top: 50%;
	margin-top: -1px;
	left: 25%;
	box-shadow: 0 -4px #fff, 0 4px #fff;
}

.no-js .bb-custom-wrapper nav span,
.no-js .menu-button {
	display: none;
}

.js .content {
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	bottom: 50px;
	overflow: hidden;
	-webkit-font-smoothing: subpixel-antialiased;
}

.scroller {
	padding: 10px 5% 10px 5%;
}

.js .content:before,
.js .content:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	z-index: 100;
	pointer-events: none;
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.js .content:after {
	top: auto;
	bottom: 0;
	background: -webkit-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.content h2 {
	font-weight: 900;
	font-size: 3em;
	padding: 0 0 10px;
	color: #333;
	margin: 0 1% 40px;
	text-align: left;
	box-shadow: 0 10px 0 rgba(0,0,0,0.02);
	text-shadow: 0 0 2px #fff;
}

.no-js .content h2 {
	padding: 40px 1% 20px;
}

.content p {
	font-size: 1.2em;
	line-height: 1.6;
	font-weight: 300;
	padding: 5px 8%;
	text-align: justify;
}

@media screen and (max-width: 800px){
	.no-js .menu-panel {
		display: none;
	}

	.no-js .container {
		padding: 0;
	}
}

@media screen and (max-width: 400px){
	.menu-panel,
	.content {
		font-size: 75%;
	}
}

@media screen and (max-width: 400px){
	.menu-panel,
	.content {
		font-size: 75%;
	}
}

.wrapper{
	width:602px;
	height:400px;
	float: right;
	margin: 0px auto 0px auto;
	border: 1px solid #333;
	-moz-box-shadow:1px 1px 12px #000;
	-webkit-box-shadow:1px 1px 12px #000;
	box-shadow:1px 1px 12px #000;
	}
	.location{
	width: 450px;
	height: 400px;
	float: right;
	margin: 0px auto 0px auto;
	border: 1px solid #333;
	-moz-box-shadow:1px 1px 12px #000;
	-webkit-box-shadow:1px 1px 12px #000;
	box-shadow:1px 1px 12px #000;
	}
	.wrap{
	width:200px;
	height:200px;
	margin:0px;
	overflow:hidden;
	position:relative;
	float:left;
	}
	.wrap a img  {
	border:none;
	position:absolute;   
	top:-66.5px;
	left:-150px;
	height:500px;
	opacity: 0.5;
	-moz-opacity: 0.5;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
	}
	
.image-polaroid {
    padding: 15px 0 15px 40px;
    position: relative;
}
.image-polaroid img {
    border: 1px solid #ccc;
    background-color: white;
    padding: 9px;
    margin: 7px;
    display: block;
    float: left;
}
        #header {
            margin-bottom: 10px;
            box-shadow: -3px 2px 7px #CCC;
        } 

        #header .download {
            font-size: 12px;
            font-weight: lighter;
            margin-top: 15px;
            margin-right: 15px;
        }

        #header .download strong {
            display: block;
        }
		
        #home {
            padding-bottom: 5px;
        }

        #home img {
            border-radius: 10px;
        }

        #villas {
            padding-bottom: 16px;
        }

        #villas img {
            border-radius: 10px;
        }
		
        #apartments {
            padding-bottom: 5px;
        }

        #apartments img {
            border-radius: 10px;
        }
		
        #facilities {
            padding-bottom: 16px;
        }

        #gallery img {
            border-radius: 10px;
        }

        #gallery {
            padding-bottom: 16px;
        }

        #facilities img {
            border-radius: 10px;
        }
        h1, h2 {
            font-family: 'Raleway', cursive;
            font-weight: normal;
        }

        h1.logo-title {
            font-family: 'Raleway', cursive;
            margin-left: 15px;
            margin-top: 15px;
            margin-bottom: 25px;
            display: inline-block;
            font-size: 28px;
        }

        .tagline {
            font-family: 'Raleway', cursive;
            display: inline-block;
            margin-left: 15px;
            margin-bottom: 25px;
        }

        footer {
            font-size: 12px;
            margin-bottom: 12px;
        }

        .hint {
            padding-right: 8px;
            font-size: 12px;
        }

        .container-fluid {
            width: 70%;
            margin: auto;
        }

        /* 
        a {
            color: #444;
            text-decoration: none;
        }

        a:hover {
            color: black;
            text-decoration: underline;
        }

        .small {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 12px;
        }

        */

        .box-bottom {
            padding: 0 15px;
            box-shadow: -3px -3px 7px #CCC;
            margin-top: 0px;
        }

        .gallery-nav {
            padding: 10px 15px;
            box-shadow: -3px -3px 7px #CCC;
            margin-top: 10px;
            font-weight: bold;
            color: #555;
            display: none
        }

        @media screen and (max-width: 700px) {
            .download { display: none; }

            h1.logo-title { margin-bottom: 0; }
            .tagline { margin-bottom: 10px; }
        }
		
		input, select {
		font-size: 12px;
		line-height: 18px;
		padding: 0px 0px;
		margin: 0px 0 0 0px;
		border: none;
		width: 130px;
		border: 1px solid #ccc;

		}
		.ui-widget{ 
		font-family: Verdana,Arial,sans-serif;
		font-size: 11px; 
		}
		label {
			display: block;
			float: left;
			width: 120px;
			padding-top: 5px;
			padding-bottom: 8px;
		}
		.page-title-bar {
			width: auto;
			height: auto;
			background-color: #7E9EAD;
			border-top: 87px solid #F0F0F0;
		}
		.title-bar-container {
			width: auto;
			margin: 0 auto;
			color: #fff;
		}
		
.rates_table	{border-collapse:collapse; margin-left: auto; margin-right: auto; margin-top: 50px; margin-bottom: 50px;}
thead th {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	background: #fff;
	font-weight: 400;
	font-size: 100%;
	height: 100%;
	text-align: center;
	background:#fff4c6;
	color:#333;
	padding:8px 16px 8px 8px;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
}
thead th.null {background: transparent; border-bottom:0px}
tbody th {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	background: #fff;
	font-weight: 400;
	font-size: 100%;
	height: 100%;
	text-align: center;
	background:#fff9e1;
	color:#333;
	padding:8px;
	border-bottom:1px solid #f3f0e4;
	border-right:1px solid #fff;
}
.rates_tbody td {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	background: #fff;
	font-weight: 400;
	font-size: 100%;
	height: 100%;
	text-align: center;
	color:#333;
	padding:8px;
	border-right:1px solid #f3f0e4;
	border-bottom:1px solid #f3f0e4;
}

tbody td.on {background:#f3f0e4;}
thead th.on {background:#ffe068;}
tbody th.on {background:#ffe068;}