/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
	border: 0;
	margin: 0;
	padding: 0;
	font-size: 100%;
	outline:none;
}
html, body {
	color:#333
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	/*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
*/
	display: block;
}
a:link, a:visited {
	text-decoration:none
}
b, strong {
	/*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
*/
  font-weight: bold;
}
img {
	color: transparent;
	font-size: 0;
	vertical-align: middle;
	/*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
	-ms-interpolation-mode: bicubic;
}
ul {
	margin:0	
}
li {
	/*
  For IE6 + IE7.
*/
	list-style:none;
	display: list-item;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td, caption {
	font-weight: normal;
	vertical-align: top;
	text-align: left;
}
q {
	quotes: none;
}
q:before, q:after {
	content: '';
	content: none;
}
sub, sup, small {
	font-size: 75%;
}
sub, sup {
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg {
	/*
  For IE9.
*/
	overflow: hidden;
}


/* Fonts
----------------------------------------------------------------------------------------------------*/

body {
	font-family:Helvetica, Arial, sans-serif;
	font-size:14px;
	color:#4d4d4d;
	font-weight:100
}


h1,
h2 {
	font-family: "Cinzel",serif;
	font-weight:normal;
	color:#0071BC
}

h1 {
	font-size:36px;
	margin-bottom:10px
}

h2 {
	font-size:24px;
	margin-bottom:30px
}

h3 {
	font-size:18px;
	color:#498EB2;
	font-weight:100;
	line-height:24px;
	margin-bottom:35px
}

p {
	line-height:18px;
	margin-bottom:15px
}

p a {
	color:#29ABE2
}

/* Font Color */

/* Main Layout
----------------------------------------------------------------------------------------------------*/

.container, .content {
	position:relative;
	display:block;
	min-width:960px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.container {
	width:100%;
	overflow:hidden
}

.content {
	margin:0 auto;
	width:960px;
	padding-left:10px;
	padding-right:10px
}

/* Background Options */

#main {
	background:url(../images/bg-home.jpg) top left
}

#about-us .content {
	min-height:900px;
}

#our-services {
	background:url(../images/bg-checkered-blue.png) top left
}

.bg-checkered {
	background:url(../images/bg-checkered.png) top left;
	padding-bottom:50px
}


/* Header
----------------------------------------------------------------------------------------------------*/

ul#main-navigation {
	position:absolute;
	bottom:0;
	left:0;
	display:block;
	background:rgba(0, 0, 0, 0.4);
	width:100%;
	height:60px;
	text-align:center	
}

ul#main-navigation li  {
	display:inline-block;
	border-right:1px solid #2A2321;
	margin-left:-4px
}

ul#main-navigation li a {
	display:block;
	height:60px;
	line-height:60px;
	color:#C7B299;
	font-weight:bold;
	padding:0 45px	;
	border-right:1px solid #000;
	-webkit-transition: all 150ms;
	-moz-transition: all 150ms;
	-o-transition: all 150ms;
	-ms-transition: all 150ms;
	transition: all 150ms
}

ul#main-navigation li:first-child {
	border-left:1px solid #2A2321
}

ul#main-navigation li:first-child a {
	border-left:1px solid #000
}

ul#main-navigation li a:hover {
	background-color:#000;
	color:#fff	
}

/* Header Fixed Navigation */

#fixed-navigation {
	position:fixed;
	top:0;
	left:0;
	height:100px;
	background-color:#0071BC;
	z-index:8000;
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-o-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: -webkit-transform 150ms ease;
	-moz-transition: -moz-transform 150ms ease;
	-o-transition: -o-transform 150ms ease;
	-ms-transition: -ms-transform 150ms ease;
	transition: transform 150ms ease
}

#fixed-navigation.active {
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1)
}

ul#secondary-navigation {
	display:block;
	float:right;
	height:100px
}

ul#secondary-navigation li {
	float:left;
	margin:30px 0 30px 10px
}

ul#secondary-navigation li a {
	display:block;
	height:40px;
	line-height:40px;
	padding:0 25px;
	font-weight:bold;
	background-color:#0069A3;
	color:#D2E0E3;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius:2px;
	-webkit-transition: all 150ms;
	-moz-transition: all 150ms;
	-o-transition: all 150ms;
	-ms-transition: all 150ms;
	transition: all 150ms
}

ul#secondary-navigation li.active a,
ul#secondary-navigation li a:hover {
	background-color:#D2E0E3;
	color:#0071BC
}

/* Content
----------------------------------------------------------------------------------------------------*/

/* Main */

#main {
	padding:8% 0 0;
	height:100vh
}

#main .main-img {
	display:block;
	margin:0 auto 15px
}

#main h3,
#main p {
	color:#736357;
	text-align:center
}

#main h3 {
	margin-bottom:9%
}

#main p {
	margin-bottom:5px
}

/* About Us */

#about-us {
	min-height:700px	
}

#about-us #about-us-info,
#about-us #bg-1,
#about-us #bg-2,
#about-us #bg-3 {
	position: absolute;
	display:block
}

#about-us #about-us-info {
	width:450px;
	margin-top:250px;
	left:10px;
	z-index:400
}

#about-us #bg-1 {
	background:url(../images/img-about-us-1.png) no-repeat;
	width: 515px;
	height: 459px;
	margin-top:200px;
	right:-45px;
	z-index:300
}

#about-us #bg-2 {
	background:url(../images/img-about-us-2.png) no-repeat;
	width:814px;
	height:424px;
	margin-top:-175px;
	right:-20px;
	z-index:200
}

#about-us #bg-3 {
	background:url(../images/img-about-us-3.png) no-repeat;
	width:527px;
	height:230px;
	margin-top:620px;
	right:-50px;
	z-index:100
}

/* Image Carousel */

#image-carousel {
	height:152px;
	overflow:hidden
}

/* Our Services */

#our-services {
	padding:110px 0 80px;
	text-align:center	
}

#our-services .content {
	padding:0	
}


/* Global Classes */

.divider {
	display:block;
	width:100%;
	height:5px;
	padding-top:10px;
	margin-bottom:25px;
	background:url(../images/bg-checkered-grey.png) repeat-x bottom left;
	clear:both;	
}

a.blue-link {
	display:inline-block;
	height:40px;
	line-height:40px;
	background-color:#0071BC;
	padding:0 20px;
	min-width:110px;
	color:#fff;
	font-weight:bold
}

/* List Styles - Float List */

ul.float-list li {
	float:left;
	margin:0 10px 20px;
	padding:10px;
	background:rgba(46, 98, 125, 0.5)
}

ul.float-list li img {
	display:block;
	margin-bottom:10px
}

ul.float-list li span {
	color:#9AC9E0;
	font-weight:bold;
	line-height:20px
}

ul.float-list li,
ul.float-list li span {
	-webkit-transition: all 150ms;
	-moz-transition: all 150ms;
	-o-transition: all 150ms;
	-ms-transition: all 150ms;
	transition: all 150ms
}

ul.float-list li:hover {
	background-color:#fff	
}

ul.float-list li:hover span {
	color:#0071BC
}

/* List Styles - Centered List */

ul.centered-list {
	text-align:center	
}

ul.centered-list li {
	display:inline-block;
	margin:0 5px
}

/* List Styles - Arrow List */

ul.arrow-list li {
	padding-left:20px;
	background:url(../images/icon-list-arrow.png) no-repeat 0 0;
	margin-bottom:5px;
	color:#4d4d4d	
}

ul.arrow-list li.header {
	padding:0;
	background:none	
}

ul.arrow-list.divided-two {
	width:50%;
	float:left	
}

/* List Styles - Blue Arrow List */

ul.arrow-list.blue li {
	background:url(../images/icon-list-arrow-blue.png) no-repeat 0 0
}

ul.arrow-list.blue li.header {
	padding:0;
	background:none	
}

ul.arrow-list.blue li a {
	color:#29ABE2;
	text-decoration:underline	
}

/* List Styles - Clear List */

li.clear-list {
	background:none !important;
	float:none !important;
	width:100% !important;
	padding:0 !important;
	margin:0 !important;
	border:none !important;
	clear:both !important
}

/* Contact Us */

#contact-us {
	min-height:700px	
}

/* Google Maps Canvas */

#map-canvas {
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:700px
}

#contact-us-info {
	position:relative;
	display:block;
	width:400px;
	height:1px;
	margin:0 auto;
	text-align:center
}

#contact-us-info > a.blue-link,
#contact-us-popup {
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-o-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: -webkit-transform 150ms ease;
	-moz-transition: -moz-transform 150ms ease;
	-o-transition: -o-transform 150ms ease;
	-ms-transition: -ms-transform 150ms ease;
	transition: transform 150ms ease
}

#contact-us-info > a.blue-link.hide {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0)	
}

#contact-us-info > a.blue-link {
	-webkit-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.2);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1)
}

#contact-us-popup {
	position:relative;
	text-align:center;
	display:block;
	width:400px;
	margin-top:80px;
	padding:35px 40px 40px;
	background:rgba(255,255,255,0.9);
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.5);
	-moz-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.5);
	box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.5);
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	z-index:7000;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0)
}

#contact-us-popup.show {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

#contact-us-popup p strong.header {
	color:#000;
	display:block;
	margin-bottom:5px	
}

#contact-us-popup a#close-btn {
	position:absolute;
	top:0;
	right:0;
	display:block;
	width:35px;
	height:30px;
	background:url(../images/icon-close-btn.png) no-repeat center center	
}

/* Useful Links */

#useful-links {
	min-height:700px;
	padding:100px 0	
}

ul.expanding-list,
ul.expanding-list li {
	display:block;
	width:100%	
}

ul.expanding-list > li {
	padding-left:15px;
	border-bottom:1px solid #ACD9EA;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; 
	overflow:hidden
}

ul.expanding-list > li:last-child {
	border:none	
}

ul.expanding-list li a.expand {
	display:inline-block;
	float:left;
	height:40px;
	line-height:40px;
	font-size:18px;
	font-weight:bold;
	color:#4d4d4d
}

ul.expanding-list li a.close {
	float:right;
	width:30px;
	background:url(../images/icon-expand-close.png) no-repeat 0 -40px
}

ul.expanding-list li a.expand.active,
ul.expanding-list li a.expand:hover {
	color:#0071BC	
}

ul.expanding-list li a.close.active {
	background-position: 0 0	
}

.expanded-content {
	display:none;
	clear:both;
	padding:5px 0 25px
}

/* Form Table */

.form-table {
	width:940px;
	margin-bottom:40px
}

.form-table td {
	padding:5px 20px;
	border-bottom:1px solid #ACD9EA;
	line-height:20px
}

.form-table td:first-child {
	text-align:center;
	font-weight:bold
}

.form-table tr.no-border-bottom td {
	border-bottom:none	
}

.form-table tr.no-border-bottom td:nth-child(3) {
	border-bottom:1px solid #ACD9EA
}

.form-table thead td {
	background-color:#0071BC;
	border:none;
	font-weight:bold;
	color:#fff	
}

/* News Ticker - WebTicker CSS Override */

ul#news-ticker {
	position:relative;
	display:block;
	width:940px;
	height:40px;
	overflow:hidden
}

ul#news-ticker li {
	height:40px;
	line-height: 40px;
	font-size: 18px;
	color: #498EB2;
	font-weight: 100;
	padding-right: 500px;
	white-space:nowrap
}

.tickercontainer {
	background: none;
	width: 940px;
	height: 40px
}

.tickercontainer .mask {
	padding-left: 0;
	padding-right: 0;
	top: 0;
	height: 40px
}

/* BxSlider Custom Override */

.bx-wrapper .bx-viewport {
	left:0;
	padding:1px 0
}

#image-carousel .bx-wrapper li,
#image-carousel .bx-wrapper img {
	min-width:200px;
	min-height:150px
}

/* Fancybox CSS Override */

.fancybox-margin #navigation {
	padding-right:15px
}

.fancybox-close {
	width:60px;
	height:60px;
	top:-27px;
	right: -34px;
	background:url(../images/icon-close-popup.png) no-repeat 0 0
}

.popup-content {
	display:none	
}

.popup-content h2 {
	display:block;
	height:70px;
	line-height:60px;
	background:url(../images/bg-checkered-grey.png) repeat-x bottom left
}

/* Enquiry Form */

.form {
	display:block;
	width:100%
}

.form .container {
	position:relative;
	text-align:left;
	min-width:inherit;
	padding-bottom:10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.form .container.custom-select {
	margin-bottom:30px
}

.form label {
	display:block;
	height:20px;
	line-height:20px;
	font-family:Helvetica, Arial, sans-serif;
	font-size:14px;
	color:#000
}

.form input {
	height:30px;
	width:100%;
	border:1px solid #E6E6E6;
	font-family:Helvetica, Arial, sans-serif;
	font-size:14px;
	padding:0 10px;
	float:left;
	color:#000;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px
}

.form #name {
	width:500px	
}

.form #email,
.form #contact-number {
	width:300px	
}

.form .select-moz {
	position:relative;
	background-color:#fff;
	width:180px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px
}

.form select {
	color:#4d4d4d;
	width:180px;
	padding:6px 30px 6px 10px;
	font-family:Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:100;
	-webkit-appearance: none;
	-moz-appearance: window;
	border:1px solid #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px;
	background-image: url(../images/bg-option-select.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-color:transparent
}

@-moz-document url-prefix() {
.form select  {
	border:none;
	padding:7px 30px 5px 5px	
}
.select-moz {
     background-image: url(../images/bg-option-select.png);
     background-repeat: no-repeat;
	background-color:#FFF;
	background-position: right center;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px;
	border:1px solid #e6e6e6;
	padding-bottom:0 !important
}

.minified .select-moz {
	border:1px solid #ccc;
}
}

/* IE Hide Select Arrow */
.form select::-ms-expand {
    display: none
}

.form textarea {
	width:100%;
	height:100px;
	background:#fff;
	padding:8px 11px;
	font-family:Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:100;
	color:#000;
	float:left;
	resize:none;
	border:1px solid #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.form div#spamtrap {
	visibility:hidden
}

.form .container-error-all {
	position:relative;
	display:block;
	height:auto !Important;
	margin-bottom:10px
}

.form .container-error-all span {
	height:auto !important	
}

.form .error {
	position:relative;
	display:block;
	margin:0;
	padding:0 0 0 10px;
	z-index:2;
	float:none;
	clear:both;
	line-height:20px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.form .error, .form .error-all {
	font-size: 11px;
	color: #f00;
}

.form .error-all {
	padding:0;
	line-height:15px;
	margin:0
}

.form .error span {
	display:block;
	clear:both;
	font-size:12px;
	font-weight:100;
	height:25px;
	line-height:25px;
	padding-left:81px;
	margin:0
}

.form fieldset#antispam {
	padding:2px;
	border-top:1px solid #EEE;
	border-left:0;
	border-right:0;
	border-bottom:0;
	width:350px;
}

.form fieldset#antispam legend {
	font-size: 0.8em;
	font-weight:bold;
	color:#333;
}

.form .form-booking-btn {
	position:relative;
	display:block;
	float:left;
	width:auto;
	height:38px;
	background:url(../images/bg-book-btn.png) repeat-x center left;
	border:1px solid #C1272D !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius:4px;
}

.form .button {
	position:relative;
	color:#fff;
	padding:0 66px 0 40px;
	width:auto;
	height:38px;
	background:url(../images/icon-booking-btn.png) no-repeat 140px 10px;
	text-shadow: 3px 3px 0 rgba(175, 32, 43, 0.9);
	font-family: 'Passion One', cursive;
	font-weight:700;
	font-size:21px;
	border:none !important;
	cursor:pointer
}

.form.minified .button {
	width:100%	
}

input[type=submit]:disabled,
button:disabled {
	color:#ccc !important;
	background:#B5B5B5 !important;
	border-color:#ccc !important
}

input[type=submit][disabled=disabled],
button[disabled=disabled] {
	color:#ccc !important;
	background:#B5B5B5 !important;
	border-color:#ccc !important
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/

.form .spmhidip {
	display:none;
	width:10px;
	height:3px
}
#fg_crdiv {
	font-size: 0.3em;
	opacity: .2;
	-moz-opacity: .2;
	filter: alpha(opacity=20);
}
#fg_crdiv p {
	display:none;
}

#bookingform-success-message {
	display:none
}

/* Footer
----------------------------------------------------------------------------------------------------*/

/* Copyright Text */

#footer {
	background-color:#0071BC;
	padding:25px 0 55px
}

#footer-copyright,
#footer-member {
	display:block;
	float:left	
}

#footer-copyright {
	width:640px
}

#footer-copyright p {
	padding-top:30px;
	color:#9AC9E0;
	line-height:22px
}

#footer-copyright p span,
#footer-copyright p span a {
	color:#0580C4
}

#footer-member {
	width:300px
}

#footer-member p {
	color:#29ABE2;
	margin-bottom:5px
}

#footer-member a {
	float:left;
	margin-right:10px	
}

#footer-member a:last-child {
	margin-right:0
}
