/*

Theme Name: Boathouse Theme

Description: Custom Responsive WordPress Theme

Version: 1.0

Author: O'Rourke Hospitality Marketing

Author URI: http://orourkehospitality.com

*/




/*	--------------------------------------------------

	 TABLE OF CONTENTS

	--------------------------------------------------

	00 Reset

	01 Layout

	02 Defaults/Fonts

	03 Layout

	04 Main Menu

	05 Mobile Top Menu

	06 Header

	07 Footer

	08 Homepage

	09 Booking Form

	10 Interior

	11 Gallery

	12 Page Defaults

	13 Forms

	XX Icon Fonts

	Overrides

	

*/





/*	--------------------------------------------------

	 00 RESET

	-------------------------------------------------- */

	

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }

audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }

audio:not([controls]) { display: none; }

[hidden] { display: none; }

html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

li { list-style:none; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #C6BDAC; margin: 1em 0; padding: 0; }

pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; }

pre	{ white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }

sup	{ top: -0.5em; }

sub { bottom: -0.25em; }

img	{ border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

input, select, textarea	{ font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

button, input { line-height: normal; *overflow: visible; }

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }

input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration	{ -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

textarea { overflow: auto; vertical-align: top; resize: vertical; }

table	{ border-collapse: collapse; border-spacing: 0; }

td { vertical-align: top; }



.clearfix:after {

	visibility: hidden;

	display: block;

	content: "";

	clear: both;

	height: 0;

}

*:first-child+html .clearfix { zoom: 1; }





/* apply a natural box layout model to all elements */

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }







/*	--------------------------------------------------

	 01 LAYOUT

	-------------------------------------------------- */



/* Reusable column setup */

.col {

    border:0px solid rgba(0,0,0,0);

    float:left;

    -webkit-box-sizing:border-box;

    -moz-box-sizing:border-box;

    box-sizing:border-box;

    -moz-background-clip:padding-box !important;

    -webkit-background-clip:padding-box !important;

    background-clip:padding-box !important;

    *behavior: url('js/boxsizing.htc');

}



    /* 1. 12 Column Grid 0px - Infinity 

    ----------------------------------------------------------------------------- 

    

    Span 1:    5.58333333333%

    Span 2:    14.1666666667%

    Span 3:    22.75%

    Span 4:    31.3333333333%

    Span 5:    39.9166666667%

    Span 6:    48.5%

    Span 7:    57.0833333333%

    Span 8:    65.6666666667%

    Span 9:    74.25%

    Span 10:    82.8333333333%

    Span 11:    91.4166666667%

    Span 12:    100%

    

    ----------------------------------------------------------------------------- */



	@media screen and (min-width: 0px) {

        

        .col {

            margin-left:3%;

			margin-top: 2%;
    padding: 0 2%;

        }

        

        .row .col:first-child {

            margin-left:0;  

        }

        

        .span_1 {

            width:5.58333333333%;

        }

        .span_2 {

            width:14.1666666667%;

        }

        .span_3 {

            width:22.75%;

        }

        .span_4 {

            width:31.3333333333%;

        }

        .span_5 {

            width:39.9166666667%;

        }

        .span_6 {

            width:48.5%;

        }

        .span_7 {

            width:57.0833333333%;
            border-right: 1px solid;

        }

        .span_8 {

            width:65.6666666667%;

        }

        .span_9 {

            width:74.25%;

        }

        .span_10 {

            width:82.8333333333%;

        }

        .span_11 {

            width:91.4166666667%;

        }

        .span_12 {

            margin-left:0;

            width:100%;

        }

    }



/*	--------------------------------------------------

	02	DEFAULTS

	-------------------------------------------------- */



::-moz-selection 	{ background: #00264C; color:#fff; }

::selection 		{ background: #00264C; color:#fff; }



body, p, select, textarea  {

	font-family: "proxima-nova",sans-serif;

	font-style: normal;

	font-weight: 400;

	font-size: 1em;

	line-height: 1.6em;

	color: #000;

}

p {

	margin-bottom: 20px;	

}

.wrapper {

    margin: 0 auto;

    max-width: 1400px;

}





img,

embed,

object,

video {

max-width: 100%;

}



.entry p { 

    margin-bottom: 1.25em

    }

    

.entry ul { 

   margin-bottom: 1.25em

}



.entry li { 

	list-style: disc outside none;

    margin-left: 30px;

    padding-left: 10px;

    }

    



/*	--------------------------------------------------

	 FONT STACK

	-------------------------------------------------- */

	



/*	font-family: "Cuprum", Arial, Verdana, sans-serif;*/









@font-face {

  font-family: 'boathouse';

  src: url('fonts/boathouse.eot?86585889');

  src: url('fonts/boathouse.eot?86585889#iefix') format('embedded-opentype'),

       url('fonts/boathouse.woff?86585889') format('woff'),

       url('fonts/boathouse.ttf?86585889') format('truetype'),

       url('fonts/boathouse.svg?86585889#boathouse') format('svg');

  font-weight: normal;

  font-style: normal;

}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */

/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */

/*

@media screen and (-webkit-min-device-pixel-ratio:0) {

  @font-face {

    font-family: 'boathouse';

    src: url('../font/amarano.svg?86585889#amarano') format('svg');

  }

}

*/

 

 [class^="icon-"]:before, [class*=" icon-"]:before {

  font-family: "boathouse";

  font-style: normal;

  font-weight: normal;

  speak: none;

 

  display: inline-block;

  text-decoration: inherit;

  width: 1em;

  margin-right: .2em;

  text-align: center;

  /* opacity: .8; */

 

  /* For safety - reset parent styles, that can break glyph codes*/

  font-variant: normal;

  text-transform: none;

     

  /* fix buttons height, for twitter bootstrap */

  line-height: 1em;

 

  /* Animation center compensation - margins should be symmetric */

  /* remove if not needed */

  margin-left: .2em;

 

  /* you can be more comfortable with increased icons size */

  /* font-size: 120%; */

 

  /* Uncomment for 3D effect */

  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */

}

 

.icon-gplus:before { content: '\67'; } /* 'g' */

.icon-pinterest:before { content: '\70'; } /* 'p' */

.icon-twitter:before { content: '\74'; } /* 't' */

.icon-youtube:before { content: '\79'; } /* 'y' */

.icon-facebook:before { content: '\66'; } /* 'f' */

.icon-angle-circled-right:before { content: '\72'; } /* 'r' */

.icon-angle-circled-down:before { content: '\64'; } /* 'd' */



h1, h2, h3, h4, h5, h6 {

	font-family: "proxima-nova",sans-serif;

	color: #477DA7;

	font-weight: normal;

	line-height: 110%;

	text-transform: uppercase;

}

h1 {

	font-size: 3.2em;

	margin-bottom:20px;

	margin-top:15px;

	text-transform: none;

}



h2 {

	color: #525252;

	font-family: "proxima-nova",sans-serif;

	font-size: 1.6em;

	 line-height: 150%;

	margin-bottom: 15px;

	text-transform: none;

}



h3 {

    font-size: 1.75em;

	margin-bottom: 10px;

}



h4 {

    font-size: 1.8em;

    padding-bottom: 10px;

}



.sidebar-interior h4 {

	border-bottom: 1px solid #C6BDAC;

    font-size: 1.5em;

    padding-bottom: 20px;

}



h5 {

	font-size: 1.3em;

	margin-bottom:5px;

}



h6 {

	font-size: 1.1em;

	margin-bottom:5px;

}



a:link {

    text-decoration: none;

    color: #004F91;

    font-weight: 500;

}

a:visited {   color: #004F91;} 

a:active {color: #004F91;}  

a:hover {

    color: #ccc;

    outline: medium none;

    text-decoration: underline;

}



@media only screen and (max-width : 850px) {

	h1 {

		font-size: 1.8em;

		margin-bottom:20px;

	}

	

	h2 {

		color: #525252;

		font-family: "proxima-nova",sans-serif;

		font-size: 1.5em;

		margin-bottom: 15px;

		text-transform: none;

	}

	

	h3 {

	    font-size: 1.4em;

		margin-bottom: 8px;

	}

	

	h4 {

	    font-size: 1.2em;

	    padding-bottom: 5px;

	}

	

	h5 {

		font-size: 1.3em;

		margin-bottom:5px;

	}

	

	h6 {

		font-size: 1.1em;

		margin-bottom:5px;

	}



}

/*	--------------------------------------------------

	 04  MAIN MENU

	-------------------------------------------------- */

	

.main-menu-wrapper {

	display: block;

	float: right;

}

.main-menu-toggle {

	display: none;

}

.main-menu li {

	position: relative;

	float: left;

	list-style: none outside none;

}



.main-menu ul {

	margin:0 auto;

}

.main-menu a {

 color: #00264B;

    display: block;

    font-family: "proxima-nova",sans-serif;

    padding: 25px 18px;

    position: relative;

    text-decoration: none;

    text-transform: uppercase;

	font-weight: 700;

}



.main-menu a:hover, .main-menu li:hover > a, .main-menu ul > li > a.active {

 color: #477DA7;

}

.main-menu li ul {

	position: absolute;

	opacity: 0;

	top: 49px;

	left: -9999px;

	min-width: 100%;

	width: auto;

	padding: 15px 20px;

	background: rgb(255,255,255);

	background: rgba(255,255,255,1);

	-webkit-transition: opacity 0.2s ease-in-out;

	-moz-transition: opacity 0.2s ease-in-out;

	-ms-transition: opacity 0.2s ease-in-out;

	-o-transition: opacity 0.2s ease-in-out;

	transition: opacity 0.2s ease-in-out;

	-webkit-box-shadow: 2px 6px 6px rgba(50, 50, 50, 0.5);

	-moz-box-shadow:    2px 6px 6px rgba(50, 50, 50, 0.5);

	box-shadow:         2px 6px 6px rgba(50, 50, 50, 0.5);

}



.main-menu li:hover ul {

	opacity: 1;

	left: 0;

}

.main-menu li li {

	float: none;

	white-space: nowrap;

}

.main-menu li li a {

	margin: 0;

	padding: 5px 0;

	-webkit-transition: color 0.3s ease;

	-moz-transition: color 0.3s ease;

	-ms-transition: color 0.3s ease;

	-o-transition: color 0.3s ease;

	transition: color 0.3s ease;

}

.main-menu li li a:hover {

	color: #A2C975;

}



#menu-item-1141 {

	background: none repeat scroll 0 0 #00264C;

    border-radius: 0 0 6px 6px;

    -webkit-border-radius: 0 0 6px 6px;

	-moz-border-radius: 0 0 6px 6px;

}



#menu-item-1141 a:hover {

	background: #043b71;

	border-radius: 0 0 6px 6px;

	-webkit-border-radius: 0 0 6px 6px;

	-moz-border-radius: 0 0 6px 6px;

}



@media only screen and (min-width : 960px) {

	.main-menu li:hover ul {

	opacity: 1;

	left: 0;

	}

}



@media only screen and (max-width : 960px) {

	.main-menu li ul {

	opacity: 1;

	left: 0;

	}

}



.menu-item-parent:hover span:after {

	color: #A5CC75;

}



@media only screen and (max-width : 960px) {

	

	.main-menu-wrapper {

		float: none;

		display: table !important;

		margin: 0 auto;

	}

	.main-menu a {

		padding: 14px 0;

	}

	.main-menu li ul {

		top: 70px;

	}	

}



@media only screen and (max-width : 960px) {



	.top-menu-wrapper {

		display: block;

		height: 50px;

	    padding: 0 5%;



	}

	.main-menu-wrapper {

		clear: both;

		float: none;

		display: none;

		margin: 0 auto;

		background: #252525;

		width:100%;

	}

	.header-items-wrapper {

		overflow: hidden;

		text-align: center;

	}

	.main-menu-toggle {

	background: #00264C;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);

    color: #fff;

    display: block;

    font-family: "proxima-nova",sans-serif;

    font-size: 1.4em;

    font-weight: 200;

    line-height: 0.6;

    margin: 0 auto;

    padding: 17px 0;

    text-decoration: none;

    text-transform: uppercase;

	}

	a.main-menu-toggle {

    color: #fff;

    text-decoration: none;

   	}

	a.main-menu-toggle:hover {

	background: #043b71;

	}

	.main-menu {

		background: #012b5d;

		box-shadow: 0 1px 3px #000 inset;

		margin: 0 auto;

	}

	.main-menu a {

		color: #521A04;

	    display: block;

		font-family: "proxima-nova",sans-serif;

	    font-size: 1em;

	    font-weight: 200;

	    margin-bottom: 0;

	    margin-left: auto;

	    margin-right: auto;

	    padding: 20px 30px;

	    text-decoration: none;

		line-height: 1;

		-webkit-tap-highlight-color: rgba(0,0,0,0);

	}

	.main-menu li {

		background: #fff;

		float: none;

		border-bottom: 1px solid #999;

	}

	.main-menu li ul {

		position: relative;

		top: 0;

		left: 0;

		padding: 0;

	}

	.main-menu .menu-item:hover {

		background-color: #e1dbcd;

		border:none;

	}

	.main-menu .menu-item:active {

		background-color: #e1dbcd;

		border:none;

	}

	.main-menu .sub-menu .menu-item:active {

			background-color: #151515;

	}

	.menu-item-parent {

		position: relative;

	}

	.menu-item-parent span {

	    color: #736357;

	    font-family: 'boathouse';

	    font-size: 1.3em;

	    font-weight: bold;

	    line-height: 1;

	    position: absolute;

	    right: 30px;

	    top: 15px;

	}

	.menu-item-parent span:after {

		content: "\72";

	}

	

	.menu-item-parent.open:hover span:after {

		content: "\64";

	}

		.menu-item-parent.open:focus span:after {

		content: "\64";

	}

	

	.menu-item-parent.open span {

		top: 15px;

	}

	.main-menu .sub-menu {

		display: none;

		background: #222;

	}

	.main-menu .sub-menu a {

		background: #fff;

	    color: #895B11;

	    font-size: 0.9em;

	    font-weight: 100;

	    padding: 20px 30px;

	    text-shadow:none;

	}

	.main-menu .sub-menu li {

		border-bottom: 1px solid #ccc;

	}

	.main-menu .sub-menu li:first-child {

		border-top: 1px solid #999;

	}

	.main-menu .sub-menu li:last-child {

		border-bottom: none;

	}

	.main-menu a:hover, .main-menu li:hover > a, .main-menu ul > li > a.active {

    border:none;

	}

	.main-menu a {

    border:none;

    }

    

}





/*	--------------------------------------------------

	 05 MOBILE TOP MENU

	-------------------------------------------------- */

.top-menu-wrapper {

	display: block;

	margin: 0 auto;

	max-width: 1400px;

	

}

.top-menu {

	float: right;

    position: relative;

    top: 15px;

    z-index: 99999;



}

.top-menu li {

	 float: left;

	 list-style: none outside none;

	 position: relative;

}

.top-menu a {

    color: #FFFFFF;

    display: block;

    font-family: "proxima-nova",sans-serif;

    font-size: .8em;

    padding: 10px 18px;

    position: relative;

    text-decoration: none;

	text-transform:uppercase;

}

.top-menu a:hover {

	color: #D9D2C2;

	border-radius: 0px;

	-webkit-border-radius: 0px;

	-moz-border-radius: 0px;

}



#menu-item-1141 a {

	color:#fff;

}



.logo-wrapper {

	display: block;

	margin: 0 auto;

	max-width: 1400px;

}



.main-menu {



}



.top-menu li:last-child a {

	background: none repeat scroll 0 0 #477da7;

	color:#fff;

	padding: 10px 20px;

	font-size: 1.1em;

	text-transform: uppercase;

	margin-right: 18px;

	font-weight: 700;

	margin-left: 20px;

}



.top-menu li:last-child a:hover {

background: #5795c6;

	

}



.slideshow-bg {

	background: #000;

}













@media only screen and (max-width : 960px) {	

	.top-menu {

	clear: both;

    float: none;

    margin: 0 auto;

    width: 400px;

	}

	.top-menu a {

    	width:100%;

    }

	#menu-item-1141 {

    background: none repeat scroll 0 0;

    border-radius: 0px;

    -webkit-border-radius: 0px;

	-moz-border-radius: 0px;

	}

	.boathouse-logo img {

    margin-left: 5%;

    margin: 25px 0;

	}

	.top-menu {

	float: none;

    margin: 0 auto;

    text-align: center;

	}

	.top-menu a {

    /*color: #00264C;

    display: block;

    font-family: "proxima-nova",sans-serif;

    font-size: 1em;

    padding: 14px 12px 10px 12px;

    position: relative;

    text-decoration: none;*/

	}

	.top-menu a:hover {

	background: #043B71;

	border-radius: 0px;

	-webkit-border-radius: 0px;

	-moz-border-radius: 0px;

	color:#fff;

	}

	#menu-item-1141 a:hover {

	border-radius: 0px;

	-webkit-border-radius: 0px;

	-moz-border-radius: 0px;

	background: none repeat scroll 0 0 #043B71;

    outline: medium none;

    transition: color 0.3s ease-out 0s;

	}

}

@media only screen and (max-width : 565px) {	

	.top-menu {

    width: 370px;

	}

	.top-menu a {

    /*padding: 10px 8px;*/

	}

}

@media only screen and (max-width : 370px) {	

	.boathouse-logo img {

		margin-left:0px;

	}

}

@media only screen and (max-width : 360px) {

	.top-menu {

    width: 300px;

}

.top-menu a {

    padding: 10px 7px;

    

}

.top-menu li:last-child a {

       padding: 10px 10px !important;

}

.top-menu a {

	font-size: .7em;	

}

}

/*	--------------------------------------------------

	 06  HEADER

	-------------------------------------------------- */



.header-wrapper {

	margin: 0 auto;

	max-width: 1400px;

}



header[role="site-header"] {

	position: relative;

	z-index: 100;

}



header[role="site-header"] .logo {

	float: left;

	padding: 26px 0;

}



header[role="page-header"] {

	width: 100%;

	height: auto;

	margin: 0 auto;

}



header[role="page-header"] img {

	display: block;

	max-width: 100%;

	margin: 0 auto;

	height: auto;

}



.mobile-logo {

	display: none;

}



.header-items-wrapper {

min-height: 75px;

}





.header-bg {

	background: #00264b;

}



.main-nav-bg {

		background: #d9d2c2;

}



.main-nav-wrap {

	max-width: 1400px;

	margin: 0 auto;

}





@media only screen and (max-width : 960px) {

	header[role="site-header"] .logo {

		float: left;

		width: 150px;

		margin: 0;

		padding: 0;

	}

	.mobile-logo {

		display: block;

		background: #fff;

		width: 100%;

		padding: 10px 0 15px 0;

	}

	.mobile-logo img {

		display: block;

		width: 236px;

		margin: 0 auto;

	}

	.logo {

		display: none;

	}

	.rsOverflow {

    overflow:visible !important;

	}

	header[role="site-header"] {

	position: relative;

	height: auto;

	z-index: 100;

	-webkit-box-shadow: 0 1px 4px rgba(0,0,0,0.7);

	-moz-box-shadow: 0 1px 4px rgba(0,0,0,0.7);

	box-shadow: 0 1px 4px rgba(0,0,0,0.7);

	}

	.header-wrapper {

	width: 100%;

	}

	

}



.brand-topper {

	height: auto;

	position: relative;

    z-index: 300;

}

.social-icons {

  	display: block;

    float: right;

    margin-left: 10px;

    margin-top: 70px;

}

.social-icons a {

	color: #736357;

	font-family: 'boathouse';

	font-style: normal;

}



.social-icons a:hover {

	 color: #A5CC75;

    outline: medium none;

    text-decoration: none;

    transition: color 0.5s ease-out 0s;

}



.social-icons a:active {

	 color: #A5CC75;

}



@media only screen and (max-width : 960px) {

	.social-icons {

    display: block;

    float: none;

    margin: 0 auto;

    padding: 30px 0 10px;

    width: 130px;

	}

	.brand-topper {

	height: auto;

	position: relative;

    z-index: 300;

	}

}

/*	--------------------------------------------------

	 07  FOOTER

	-------------------------------------------------- */





footer[role="site-footer"] .main-footer .wrapper {

	font-size: 1em;

	border-top: 2px solid #dcb439;

	 padding: 25px 0 40px 0 !important;

}

footer[role="site-footer"] .second-column {

	text-align: center;

}

footer[role="site-footer"] .third-column {

	text-align: right;

}

footer[role="site-footer"] .main-footer h2 {

	color: #525252;

    font-family: "proxima-nova",sans-serif;

    font-size: 1em;

    margin-top: 10px;

}

footer[role="site-footer"] .main-footer p {



}



footer[role="site-footer"] .main-footer .menu {

	overflow: hidden;

}

footer[role="site-footer"] .main-footer .menu a {

	text-transform: uppercase;

	text-decoration: none;

}

footer[role="site-footer"] .main-footer .menu li {

	float: left;

	width: 50%;

	margin-bottom: 0.6em;

}

footer[role="site-footer"] .main-footer .social-links {

	overflow: hidden;

	display: table;

	margin: 0 auto 15px;

}

footer[role="site-footer"] .main-footer .social-links li {

	display: inline;

}

footer[role="site-footer"] .main-footer .social-links a {

	padding: 0 3px;

	opacity: 0.8;

}

footer[role="site-footer"] .main-footer .social-links a:hover {

	opacity: 1;

}

footer[role="site-footer"] .copyright {

	clear: both;

	padding-top: 20px;

	padding-bottom: 20px;

}

footer[role="site-footer"] .copyright p {

	color: #666;

	font-size: 1.2em;

}



.footer-left {

 	display: block;

    float: left;

    margin-left: 2%;

}



.footer-middle {

	display: block;

    float: left;

    margin-left: 2%;

}

.footer-right{

	display: block;

    float: right;

    margin-left: 2%;

}

.footer-wrapper {

    margin: 0 auto;

    max-width: 1400px;

    padding:40px 0;

    margin-top: 30px;

}



.main-footer {

	background: url('images/dark_wood.png') repeat bottom;

}



.cta-bg {

	background: url('images/dark_wood.png') repeat bottom;

}



.main-footer h4 {

	color: #fff !important;

}



.main-footer p {

	color: #fff !important;

}



.main-footer a {

	color: #fff !important;

}







.copyright-wrapper {

	background: url('images/dark_wood.png') repeat bottom;

}



@media only screen and (max-width : 765px) {

	.footer-left {

	float:none;

	width:100%;

	margin-bottom:40px;

	}

	.footer-left p {

	 margin: 0 auto;

	}

}

@media only screen and (max-width : 650px) {

	footer[role="site-footer"] .main-footer {

		padding-bottom: 0;

	}

	footer[role="site-footer"] .first-column,

	footer[role="site-footer"] .third-column {

		text-align: center;

	}

}



.social-wrapper {

	padding: 10px 0px;

	margin: 0 auto;

	width: 270px;

}



.social-wrapper li {

	display: inline-block;

	float: left;

	margin-left: 20px;

}

.right {

	float:right;

}



.facebook a {

	display: block;

	width: 50px;

	height: 50px;

	background: url('images/Social-Icons.png') no-repeat bottom;

	text-indent: -99999px;

	background-position: 0px 0px;

}



.facebook a:hover {

	background-position: 0 0;

	background: url('images/Social-Icons.png') no-repeat bottom;

	background-position: 0px -50px;

}



.tripadvisor a {

	display: block;

	width: 50px;

	height: 50px;

	background: url('images/Social-Icons.png') no-repeat bottom;

	text-indent: -99999px;

	background-position: 0px -100px;

}



.tripadvisor a:hover {

	background-position: 0 0;

	background: url('images/Social-Icons.png') no-repeat bottom;

	background-position: 0px -150px;

}





.google a {

	display: block;

	width: 50px;

	height: 50px;

	background: url('images/Social-Icons.png') no-repeat bottom;

	text-indent: -99999px;

	background-position: 0px -200px;

}



.google a:hover {

	background-position: 0 0;

	background: url('images/Social-Icons.png') no-repeat bottom;

	background-position: 0px -249px;

}



.copyright-wrapper {

	margin-top:40px;

}



	

@media only screen and (max-width : 1700px) {

	.social-wrapper {

    max-width: 90%;

	}

}

	

	

@media only screen and (max-width : 960px) {	

	.social-wrapper {

	margin: 0 auto;

    width: 220px;

    padding: 10px 0  0 0;

	}

}





.footer-menu {

    clear: both;

    float: left;

    margin: 3%;

}

.footer-menu li {

    float: left;

    list-style: none outside none;

    position: relative;

}

.footer-menu a {

    color: #736356;

    display: block;

    font-family: "proxima-nova",sans-serif;

    font-size: 0.9em;

    line-height: 1;

    padding: 18px 8px;

    text-decoration: none;

    text-transform: uppercase;

}

.footer-menu a:hover {

    color: #A5CC75;

    outline: medium none;

    text-decoration: none;

    transition: color 0.5s ease-out 0s;

}



/*	--------------------------------------------------

	 08  HOMEPAGE

	-------------------------------------------------- */



section[role="homepage-slideshow"] {

	clear: both;

	width: 100%;

	margin: 0 auto;

}

#homepage-slideshow {

	width: 100%;

}

.slideshow-book-wrapper {

    clear: both;

    margin: 0 auto;

    max-height: 475px;

    overflow: hidden;

    position: relative;

    max-width: 1600px;

}

#homepage-slideshow {

	height: 500px;

	display: none;

}

 

.rsSlide {

    display: block;

    height: auto !important;

    left: 0;

    overflow: hidden;

    position: absolute;

    top: 0;

    width: 100%;

}  



.boathouse-logo {

	float: left;

    margin-top: 34px;

    position: absolute;

    z-index: 999;

}



.copyright-wrapper p {

	margin-bottom: 0px;

	padding-bottom: 60px;

}



@media only screen and (max-width : 960px) {

	.boathouse-logo {

    margin: 0 auto;

    padding: 12px 0 0;

    width: 280px;

    float: none;

	}

	.social-wrapper li {

    margin-bottom: 20px;

	}

	.brand-topper {

    height: 180px;

	}

	.top-menu-wrapper {

	background: #00264C;

    max-width: 100%;

	}

	.top-menu a {

    color: #fff;

    }

    .check_in {

	    clear:right;

    }

}	



@media only screen and (max-width : 765px) {	

	.col {

	    margin-left: 2%;

	}

	.span_3 {

	float: none !important;

    margin: 0 auto !important;

    width:70%;

	}

	.cta img {

	float: none !important;

    width: 100%;

	}

	

	footer[role="site-footer"] .span_6, .col {

	display: block;

	float: none;

	}

	

	footer[role="site-footer"] .main-footer p {

    color: #895B11;

    font-size: 0.9em;

    font-weight: 400;

    line-height: 1.6em;

    margin-bottom: 0.2em;

    text-align: center;

	}

	.footer-left {

    margin-bottom: 10px;

	}

}



@media only screen and (max-width : 464px) {	

	.span_3 {

	float: none !important;

    margin: 0 auto !important;

    width: 100%;

	}



	.cta img {

	float: none !important;

    margin: 0 0 40px 0;

    max-width: 100%;

	}

}



.specials-image-thumb img {

	float: right;

	border: solid 1px #ccc;

	max-width: 100%;

}



.moretext  a {

	background-color: #00264C;

    color: #FFFFFF;

    cursor: pointer;

    display: block;

    float: left;

	font-family: "proxima-nova",sans-serif;

    margin-right: 20px;

    padding: 8px 20px;

    text-decoration: none;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

}



.moretext  a:hover {

    background-color: #043B71;

}





a.booking-link  {

	background-color: #477DA7;

    color: #FFFFFF;

    cursor: pointer;

    display: block;

    float: left;

    font-family: "proxima-nova",sans-serif;

    padding: 8px 20px;

    text-decoration: none;

}

a:hover.booking-link {

    background-color: #043B71;

}



.specials-wrapper {

	padding: 4% 4% 3%;

	border-top: 1px solid #C6BDAC;

}



.dining-options-wrapper {

	padding: 4%;

}



.specials-wrapper h2, .dining-options-wrapper h2 {

	margin-bottom:0px; 

}



.specials-wrapper img, .dining-options-wrapper img {

	float: left;

	border: solid 1px #ccc;

	max-width: 100%;

	margin-right: 40px;

}



.specials-image {

	float: left;

}

.specials-text {

	float: left;

	width: 70%;

}









@media only screen and (max-width : 975px) {

	.specials-text {

	width: 60%;

	}

}

@media only screen and (max-width : 650px) {	

	.specials-wrapper img, .dining-options-wrapper img {

	float: none;

	margin: 0px 0px 30px;

	}

	.specials-wrapper, .dining-options-wrapper {

	padding: 40px 5px;

	}

	.specials-text {

	width: 100%;

	text-align: center;

	}

	.specials-image {

	float: none;

    margin: 0 auto;

    width: 150px;

	}

	a.booking-link  {

	float: none;

    margin: 0 auto;

	}

}	



/*	--------------------------------------------------

	 09 BOOKING FORM

	-------------------------------------------------- */



.reservation-wrapper {

    background: none repeat scroll 0 0 #00264C;

    border-radius: 5px;

    -webkit-border-radius: 5px;

	-moz-border-radius: 5px;

	padding: 20px;

	margin: 1.5%;

	width: 230px;

	position: absolute;

    z-index: 9999;

}



.reservation-wrapper h3 {

    font-family: "proxima-nova",sans-serif;

	font-size: 1.2em;

	text-transform: uppercase;

	color: #fff;

	margin-bottom: 25px;

}



#book-form {

	color: #f2f3e7;

   font-family: "proxima-nova",sans-serif;

	text-transform: uppercase;

}



#book-form label {

	color: #f2f3e7;

	font-size: .9em;

	border-radius: 0px;

	-webkit-border-radius: 0px;

	-moz-border-radius: 0px;

}



#book-form input {

 	border: medium none;

 	color: #000;



}



#book-form option {

	font-size: 1em;

    padding: 1px 8px;

}



#book-form select {

 	color: #525252;

 	border: medium none;

 	font-size: .9em;

 	height: 25px;

}



#book-form fieldset {

	margin-top: 15px;

	margin-bottom: 10px;

}



@media only screen and (min-width : 5000px) {	

	#book-form label {

	clear: left;

    color: #F2F3E7;

    display: inline-block;

    float: left;

    font-size: 0.7em;

    margin-right: 5px;

   /* margin-top: 5px;*/

    text-align: left;

    width: 50px;

	}



	#book-form input {

		background: url("images/icon-calendar.png") no-repeat scroll right center #000000;

    	border: medium none;

    	color: #FFFFFF;

	  	display: inline-block;

	 	float: left;

	 	padding: 5px;

	 	/* font-size: 11px;

	   width: 50%;*/

	}

	

	#book-form option {

		background: #f2f3e7;

		color: #525252;

		font-size: 1em;

	    padding: 1px 8px;

	}

	

	#book-form select {

	 	color: #FFF;

	 	border: medium none;

	 	font-size: .9em;

		background-color: #000;

		width: 70px;

	}

	

	#book-form fieldset {

		margin-bottom: 10px;

		float: left;

		

	}

	.select {

		width: 40%;	

	}

	.check_in {

		width: 60%;	

	}

	.form_row1 {

		width: 100%;

	}

	.form_row2 {

		width: 100%;

		clear:both;

	}

	#book-form input[type="submit"] {

	background: -moz-linear-gradient(center top , #DFDFDF 5%, #BDB7A9 100%) repeat scroll 0 0 #BDB7A9 !important;

	}

	

}





#book-form input[type="submit"] {

  background: none repeat scroll 0 0 #477DA7;

    color: #FFFFFF;

    font-size: 1.1em;

    padding: 10px 20px;

    text-transform: uppercase;

}



#book-form input[type="submit"]:hover {

  background: none repeat scroll 0 0 #5996c5;

}



.book-form-toggle {

	display: none;

}

.book-form-toggle a {

	display:block;

	background: #00264C;

    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);

    height: auto;

    position: relative;

	text-align: center;

	text-decoration: none;

	line-height: 1;

	-webkit-tap-highlight-color: rgba(0,0,0,0);	

	color: #fff;

	font-family: "proxima-nova",sans-serif;

    font-size: 1.4em;

    font-weight: 200;

    line-height: 0.6;

    margin: 0 auto;

    padding: 17px 0;

    text-decoration: none;

    text-transform: uppercase;

    text-shadow: 0 .8px 0 #FFFFFF;

}

.book-form-toggle a:hover {

	background: none repeat scroll 0 0 #043B71;

}

.book-form-toggle a:active {

	background: none repeat scroll 0 0 #043B71;

}

section[role="homepage-book-form"] {

 	position: relative;

    width: 100%;

}

section[role="homepage-book-form"] h1 {

	display: inline;

	position: relative;

	top: 7px;

	margin-right: 30px;

	font-size: 1em;

	font-weight: 700;

	line-height: 1;

}

section[role="homepage-book-form"] .book-form-wrapper {

	background: #00264b;

	margin: 0 auto;

	 padding: 10px 0;

	position:relative;

	z-index: 50;

}

section[role="homepage-book-form"] #book-form {

	display: table;

	margin: 0 auto;

}

section[role="homepage-book-form"] fieldset {

	display: inline;

	vertical-align: middle;

	margin-right: 15px;

	margin-top: 10px;

}

section[role="homepage-book-form"] fieldset.select {

	margin-top: 10px;

}

section[role="homepage-book-form"] fieldset.action {

	margin-right: 0;

}

section[role="homepage-book-form"] label {

    line-height: 100%;

    margin-right: 8px;

    margin-bottom:5px;

    font-family: "proxima-nova",sans-serif;

	color: #F2F3E7;

	font-weight: normal;

	font-size: .95em;

	text-transform: uppercase;

}

section[role="homepage-book-form"] input[type="text"] {

 background: url("images/icon-calendar.png") no-repeat scroll right center #FFFFFF;

    border: 1px solid #CCCCCC;

    color: #F2F3E7;

    font-family: Arial,Verdana,sans-serif;

    font-size: 0.9em;

    padding: 5px;

    width: 150px;

    margin-top: 3px;

}

section[role="homepage-book-form"] input[type="submit"] {



  background: none repeat scroll 0 0 #477DA7;

    color: #FFFFFF;

    font-size: 1.1em;

    padding: 10px 20px;

    text-transform: uppercase;



}



section[role="homepage-book-form"] .error {

	padding-top: 5px;

	color: red;

	font-size: 1.2em;

	font-weight: 700;

	text-align: right;

	text-transform: uppercase;

}

@media only screen and (max-width : 825px) {



	section[role="homepage-book-form"] {

		position: relative;

		bottom: auto;

		left: auto;

		width: 100%;

		margin: 0;

	

	}

	section[role="homepage-book-form"] h1 {

		display: block;

		margin-bottom: 24px;

		font-size: 2.4em;

	}

	section[role="homepage-book-form"] .book-form-wrapper {

		height: auto;

		top: 0;

		text-align: center;

		border-radius: 0px;

		-webkit-border-radius: 0px;

		-moz-border-radius: 0px;

	}

	section[role="homepage-book-form"] #book-form {

		width: 500px;

	}

	section[role="homepage-book-form"] fieldset {

		margin-bottom: 20px;

	}

	section[role="homepage-book-form"] input[type="text"] {

		width: 180px;

		box-sizing: border-box;

		-webkit-box-sizing: border-box;

		-moz-box-sizing: border-box;

		*behavior: url('js/boxsizing.htc');

	}

}



@media only screen and (max-width : 500px) {



	.book-form-toggle {

		display: block;

	}

	section[role="homepage-book-form"] h1 {

		display: none;

	}

	section[role="homepage-book-form"] .book-form-wrapper {

		display: none;

		text-align: left;

	}

	section[role="homepage-book-form"] #book-form {

		overflow: hidden;

		display: block;

		width: 90%;

		margin: 0 auto;

	}

	section[role="homepage-book-form"] fieldset {

		margin-right: 0;

		margin-bottom: 20px;

		width: 20%;



	}

	section[role="homepage-book-form"] fieldset.select {

		float: right;

		margin-top: 8px;

		clear: left;



	}

	section[role="homepage-book-form"] fieldset.check_in {

		margin-right: 0;

		margin-bottom: 20px;

		width: 30%;



	}

	section[role="homepage-book-form"] label {

		margin-bottom: 10px;

		margin-left: 10px;

	}

	section[role="homepage-book-form"] input[type="text"] {

		display: block;

		width: 100%;

	}

	section[role="homepage-book-form"] fieldset.action {

		width: 100%;

		display:block;

		clear:both;

		float:none;

		margin-top: 0px;

	}

	

	#book-form input[type="submit"] {

	width:100%;

	}



	#book-form select {

	margin-left: 10px;

	}

		

}





@media only screen and (min-width : 650px) {

	.book-form-wrapper {

		display: block !important;

	}

}



.message-wrapper {

  	bottom: 0;

    height: 0;

    position: relative;

    text-align: center;

    top: -40px;

}



.message-wrapper h4 {

	font-size: 1.4em;

	color: #002B5B;

	position: relative;

    z-index: 51;

}







section[role="homepage-book-form"]  {

	max-width: 100%;

	margin: 0 auto;

}







@media only screen and (max-width : 850px) {

	.message-wrapper {

  	display:none;

   }

	section[role="homepage-book-form"] .book-form-wrapper {

	padding: 20px 0;

	background: #00264C;

	margin: 0 auto;

	position:relative;

	z-index: 50;

	}

	.reservation-wrapper {

		display:none;

	}

	.slideshow-book-wrapper {

    border: none;

    width: 100%;

	}

}



@media only screen and (max-width : 1170px) {

	.reservation-wrapper {

	margin: 1.25%;

	}

}



@media only screen and (max-width : 370px) {

	section[role="homepage-book-form"] fieldset.select {

	    width: 23%;

	}

	.boathouse-logo {

	width: 100%;

	}

}



.cta-wrapper {

	margin: 0 auto;

    max-width: 1400px;

	padding: 60px 0;

}



.cta-wrapper p {

	color:#fff;

}





.home-cta {

	display: block;

    float: left;

    margin-left: 2%;

}



.home-cta:nth-child(3) {

	float:right;

}

.home-cta img {

	margin-bottom: 30px

}

.home-cta h3 a {

	color:#fff;

}

.home-cta h3 a:hover {

	color:#ccc;

}



.home-cta p {

	margin-bottom: 15px;

}









@media only screen and (max-width : 800px) {	

	.cta-wrapper {

    max-width: 90%;

    padding: 10% 0 0 0;

	}

	.home-cta {

	display: block;

    float: none;

    margin: 0 auto;

    padding-bottom: 8%;

	}

	.home-cta:nth-child(1) {

	display: block;

    float: none;

    margin: 0 auto;

    padding: 2% 0 8% 0;

	}

	.span_4 {

    width: 100% !important;

    margin: 0 auto;

    }

   .footer-wrapper h4 {

	   text-align: center;

    }

    .home-cta {

	    text-align: center;

    }

    .home-cta:nth-child(3) {

	padding: 2% 2% 8% 2%;

	}

}



@media only screen and (max-width : 500px) {	

	.cta-wrapper {

    max-width: 98%;

	}

	.span_4 {

    width: 98% !important;

    }

}



/*	--------------------------------------------------

	 10  INTERIOR 

	-------------------------------------------------- */

	

.content-interior {

	margin-left: 0px;

}

	

.ngg-gallery-thumbnail-box {

    float: left;

    margin: 8px;

}



@media only screen and (max-width : 960px) {

	.sidebar-interior .col {

     float: none;

    height: auto;

    margin: 0 auto;

    width: 80%;

    clear: left;

    }

    .sidebar-interior .entry {

     padding:30px 0 0 0;

    }

    .sidebar-interior .span_7 {

	width:90%;

    }

    .wrapper {

	padding-bottom: 40px;

    }

	.footer-left {

	text-align: center;

	padding-bottom: 25px;

	}

	.footer-middle {

	text-align: center;

	padding-bottom: 25px;

	}

	.footer-right{

	text-align: center;

	padding-bottom: 25px;

	}

	.boathouse-logo {

     float: none;

    margin: 0 auto;

    padding: 12px 0 0;

    width: 280px;

    position: relative;

	}

	.header-items-wrapper {

    min-height: 0px;

	}

	.top-menu-wrapper {

    height: 80px;

	}

	.main-menu {

    margin-top: 0px;

	}

}



@media only screen and (max-width : 650px) {	

	.col {margin: 4%}

	.span_12 {max-width: 90%}

	

	.top-menu li:last-child a {

    background: none repeat scroll 0 0 #477DA7;

    color: #FFFFFF;

    font-size: 0.9em;

    margin-left: 5px;

    padding: 10px 20px;

    text-transform: uppercase;

	}

}



/*	--------------------------------------------------

	 11 GALLERY

	-------------------------------------------------- */



.gallery {

	padding-bottom: 60px;

}



.gallery ul {

	padding: 0.25em;

	overflow: hidden;

	box-sizing: border-box;

	-webkit-box-sizing: border-box;

	-moz-box-sizing: border-box;

	*behavior: url('js/boxsizing.htc');

}



.gallery ul li {

	float: left;

	width: 16.666666666%;

	padding: 0.25em;

	box-sizing: border-box;

	-webkit-box-sizing: border-box;

	-moz-box-sizing: border-box;

	*behavior: url('js/boxsizing.htc');

}



.gallery ul img {

	display: block;

	max-width: 100%;

}



@media only screen and (min-width : 1024px) {

	.gallery ul li:nth-child(6n+1) {

		clear: left;

	}

	.gallery ul li:nth-child(5n+1) {

		clear: none;

	}

}



@media only screen and (min-width : 800px) and (max-width : 1024px) {

	.gallery ul li {

  	width: 20%; 

	}

	.gallery ul li:nth-child(5n+1) {

		clear: left;

	}

	.gallery ul li:nth-child(4n+1) {

		clear: none;

	}

}



@media only screen and (min-width : 400px) and (max-width : 800px) {

	.gallery ul li {

		width: 33.3333333333333333%; 

	}

	.gallery ul li:nth-child(3n+1) {

		clear: left;

	}

	.gallery ul li:nth-child(odd) {

		clear: none;

	}

}

@media only screen and (max-width : 400px) {

	.gallery ul li {

		width: 50%;

	}

	.gallery ul li:nth-child(odd) {

		clear: left;

	}

}



/*	--------------------------------------------------

	 12  PAGE DEFAULTS

	-------------------------------------------------- */



.row {

	overflow: hidden;

}



.col3 {

	float: left;

	width:32%;

	margin-left:2%;

	padding:0 1.5%;

	-webkit-box-sizing:border-box;

	-moz-box-sizing:border-box;

	box-sizing:border-box;

	*behavior: url('js/boxsizing.htc');

}



.row .col3:first-child {

  margin-left:0;

}



.entry img,

.entry img[class*="align"],

.entry img[class*="wp-image-"] {

   max-width: 100%;

   height: auto;

}



section[role="secondary-content"] {

	background: #f0f0f0;

}



.button {

    background-color: #00264C;

    border:none;

    color: #FFFFFF;

    cursor: pointer;

    display: block;

    float: left;

    font-family: "proxima-nova",sans-serif;

    padding: 8px 20px;

    text-decoration: none;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

}



.button:hover {

 	background-color: #043B71;

}



p span.custom-button {

    background-color: #00264C;

    border:none;

    color: #FFFFFF;

    cursor: pointer;

    display: inline-block;

    font-family: "proxima-nova",sans-serif;

    padding: 8px 20px;

    text-decoration: none;

    margin-top:10px;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

}



p span.custom-button:hover {

 	background-color: #043B71;

}



p.custom-button {

    background-color: #00264C;

    border:none;

    color: #FFFFFF !important;

    cursor: pointer;

    display: inline-block;

    font-family: "proxima-nova",sans-serif;

    padding: 8px 20px;

    text-decoration: none;

    margin-top:10px;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

}



p.custom-button:hover {

 	background-color: #043B71;

}



p.custom-button a {

    color: #FFFFFF !important;

}



a span.custom-button {

    background-color: #00264C;

    border:none;

    color: #FFFFFF;

    cursor: pointer;

    display: inline-block;

    font-family: "proxima-nova",sans-serif;

    padding: 8px 20px;

    text-decoration: none;

    margin-top:10px;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

}



a span.custom-button:hover {

 	background-color: #043B71;

}



a.custom-button {

    background-color: #00264C;

    border:none;

    color: #FFFFFF !important;

    cursor: pointer;

    display: inline-block;

    font-family: "proxima-nova",sans-serif;

    padding: 8px 20px;

    text-decoration: none;

    margin-top:10px;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

}



a.custom-button:hover {

 	background-color: #043B71;

}



a.custom-button a {

    color: #FFFFFF !important;

}



@media only screen and (max-width : 650px) {

	.col3 {

		float: none;

		width: 100%;

		margin: 0 0 40px;

		padding: 0;

	}

}



@media only screen and (max-width : 1200px) {

	.sidebar-interior .col {

     float: none;

    height: auto;

    margin: 0 auto;

    width: 100%;

    clear: left;

    }

    .sidebar-interior .span_7 {

	    width:90%;

    }

   .span_7 {

	   width: 100%;
	   border-right: none;

   }

   .ngg-gallery-thumbnail-box {

    margin:0px;

	}

}



.abWhiteBox p {

	background: none repeat scroll 0 0 transparent;

	margin-bottom: 0em;

	font-size: .9em;

}



@media only screen and (max-width : 960px) {

	.abWhiteBox {

	    display: none !important;

	}

	.span_7 {

    padding:4%;

	}

}



/*	--------------------------------------------------

	 13 FORMS

	-------------------------------------------------- */

/* SHOW FORM WITH CONDITIONAL LOGIC */
#gform_wrapper_9 {
	display: block !important;
}

	

body .gform_wrapper .gform_body .gform_fields .gfield input[type=text] {

    background: none repeat scroll 0 0 #FCFCFC !important;

    border: 1px solid #DDDDDD;

    border-radius: 4px;

    -webkit-border-radius: 4px;

	-moz-border-radius: 4px;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;

    color: #525252;

    display: block;

    font-size: 11px;

    padding: 10px;

    width: 100%;

	}
.element::-webkit-scrollbar { width: 0 !important }
	

body .gform_wrapper .gform_body .gform_fields .gfield input[type=text]:focus {

    background: none repeat scroll 0 0 #FFFFFF !important;

    border: 1px solid #CCCCCC;

}



.gform_wrapper .gfield_checkbox li input[type="checkbox"], .gform_wrapper .gfield_radio li input[type="radio"], .gform_wrapper .gfield_checkbox li input {

    float: left;

    margin-top: 7px !important;

}

.gform_wrapper .top_label .gfield_label {

    clear: both;

    display: inline-block;

    line-height: 1.3em;

    margin: 30px 0 12px !important;
    font-style: italic;

}



.gform_wrapper table.gfield_list thead th {

    font-size: 0.85em;

font-style: italic;

    text-align: left;

}



body .gform_wrapper .gform_heading .gform_title {

	font-family: "proxima-nova",sans-serif !important;

	font-size: 2em !important;

    font-weight: 300 !important;

}



.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title {

    font-size: 1.6em !important;

    font-weight: 300 !important;

}



.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {

    font-size: 1.6em !important;

    font-weight: 300 !important;

}



.gform_wrapper .gsection {

    border-bottom: 1px dotted #CCCCCC;

    clear: both;

    margin: 30px 0 20px !important;

    padding: 0 0 8px;

}



body .gform_wrapper .gform_body .gform_fields .gfield textarea {

    background: none repeat scroll 0 0 #FCFCFC !important;

    border: 1px solid #DDDDDD;

    border-radius: 3px;

    -webkit-border-radius: 3px;

	-moz-border-radius: 3px;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;

    color: #525252;

    display: block;

    font-size: 11px;

    padding: 10px;

    width: 100%;

}



body .gform_wrapper .gform_body .gform_fields .gfield textarea:focus  {

    background: none repeat scroll 0 0 #FFFFFF !important;

    border: 1px solid #CCCCCC;

}



.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="submit"] {

    font-size: 1em;

    margin-left: 10px;

    background-color: #00264b !important;

}



input[type=text] {

    background: none repeat scroll 0 0 #FCFCFC;

    border: none;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;

    color: #525252;

    font-size: 12px;

overflow: hidden;

    padding: 5px;

	font-family: Arial,Helvetica,Tahoma,sans-serif;

}



#email_address_label {

	/*font-family: "droid-serif","Georgia","Times New Roman","Palatino","Hoefler Text","Baskerville",serif;*/

	display: none;



}

#email_address {

	width: 200px !important;

	padding: 10px !important;

	font-size: 14px !important;

}







#vr_submit {

background-color: #477da7 !important;

    color: #FFFFFF;

    cursor: pointer;

    display: block;

    font-family: "proxima-nova",sans-serif;

    padding: 10px 20px;

    text-decoration: none;

	text-transform: uppercase;

}



/*	--------------------------------------------------

	 XX SLIDER OVERIDES

	-------------------------------------------------- */



.rsUni .rsTmb {

    display: none !important;

}



.rsUni .rsBullets {

	overflow:visible !important;

	cursor: pointer !important;

    margin-left: 5px;

    padding-top: 15px !important;

}



.rsUni .rsBullet span {

    height: 9px !important;

    width: 9px !important;

}



.rsUni .rsBullet.rsNavSelected span {

    background-color:  #004F91 !important;

}



.rsUni .rsBullet {

    display: inline-block;

    height: 9px;

    margin-left: 5px;

    padding: 5px;

    width: 9px;

}



.abWhiteBox a {

	font-size: .9em;

}





/*	--------------------------------------------------

	 XX DATEPICKER OVERIDES

	-------------------------------------------------- */	

	

div.ui-datepicker {

	font-size: .9em;

	font-family: Arial,Verdana,sans-serif;

}



/*	--------------------------------------------------

	 XX VERTICAL RESPONSE OVERIDES

	-------------------------------------------------- */	

	

.vr_wrapper input[type="submit"]  {

	background-color: #00264C !important;

    color: #FFFFFF;

    cursor: pointer;

    display: block;

    float: left;

    font-size: 1.3em !important;

    font-family: "proxima-nova",sans-serif;

    margin: 0 auto !important;

    padding: 8px 20px !important;

    text-decoration: none;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

	margin-top: 10px !important;

	}

.vr_wrapper input[type="submit"]:hover {

 	background-color: #043B71 !important;

 	}

.vr_wrapper h2 {

 	margin-bottom: 0px !important;

 	}

#vr_email_required {

	display: none !important;	

	}

.vr_wrapper {

	padding: 0 !important;	

	width: 100% !important;

	}

	

	

@media only screen and (max-width : 960px) {	

	.vr_wrapper input[type="submit"]  {

	float:none;	

	margin:0 auto;

	}

}

	

	

	

@media only screen and (max-width : 800px) {

	.vr_wrapper {

		margin:0 auto !important;

		width:200px !important;

	}

	.vr_wrapper input[type="submit"]  {

	background-color: #00264C !important;

    color: #FFFFFF;

    cursor: pointer;

    display: block;

    float: none;

    font-size: 1.3em !important;

    font-family: "proxima-nova",sans-serif;

    margin: 0 auto !important;

    padding: 8px 20px !important;

    text-decoration: none;

    border-radius: 3px;

	-webkit-border-radius: 3px;

	-moz-border-radius: 3px;

	margin-top: 10px !important;

	}

	.vr_wrapper input[type="submit"]:hover {

 	background-color: #043B71 !important;

 	}

}



/*	--------------------------------------------------

	 XX GOOGLE MAPS

	-------------------------------------------------- */	



.Flexible-container {

    position: relative;

    padding-bottom: 56.25%;

    padding-top: 30px;

    height: 0;

    overflow: hidden;

}



.Flexible-container iframe,   

.Flexible-container object,  

.Flexible-container embed {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

}









.content-interior ul { 

   margin-bottom: 1.25em

}



.content-interior ul li { 

	margin-left: 20px;

    padding-left: 8px;   

	list-style: disc outside none; 

}



.content-interior ol li { 

	margin-left: 20px;

    padding-left: 8px;   

	list-style: decimal outside none; 

}



.touchcarousel-wrapper ul li { 

	margin-left: 20px;

    padding-left: 8px;   

	list-style: none !important; 

}

    

/*	--------------------------------------------------

  VERTICAL RESPONSE EMAIL FORM

-------------------------------------------------- */	

@media only screen and (min-width : 500px) and (max-width : 900px) {

	#touchcarousel-1 {

		margin:0 auto;

		width: 90% !important;

	}

}



/*	--------------------------------------------------

  Touch Carousel

-------------------------------------------------- */	



@media only screen and (max-width : 600px) {

	.touchcarousel {

		margin: 0 10px;

		width:95% !important;

	}

}







	/*	--------------------------------------------------

	 ICON FONT

	 -------------------------------------------------- */	

	

@font-face {

  font-family: 'ranchoicons';

  src: url('fonts/ranchoicons.eot?92713009');

  src: url('fonts/ranchoicons.eot?92713009#iefix') format('embedded-opentype'),

       url('fonts/ranchoicons.woff?92713009') format('woff'),

       url('fonts/ranchoicons.ttf?92713009') format('truetype'),

       url('fonts/ranchoicons.svg?92713009#ranchoicons') format('svg');

  font-weight: normal;

  font-style: normal;

}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */

/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */

/*

@media screen and (-webkit-min-device-pixel-ratio:0) {

  @font-face {

    font-family: 'ranchoicons';

    src: url('../font/ranchoicons.svg?92713009#ranchoicons') format('svg');

  }

}

*/

 

 [class^="icon-"]:before, [class*=" icon-"]:before {

  font-family: "ranchoicons";

  font-style: normal;

  font-weight: normal;

  speak: none;

 

  display: inline-block;

  text-decoration: inherit;

  width: 1em;

  margin-right: .2em;

  text-align: center;

  /* opacity: .8; */

 

  /* For safety - reset parent styles, that can break glyph codes*/

  font-variant: normal;

  text-transform: none;

     

  /* fix buttons height, for twitter bootstrap */

  line-height: 1em;

 

  /* Animation center compensation - margins should be symmetric */

  /* remove if not needed */

  margin-left: .2em;

 

  /* you can be more comfortable with increased icons size */

  /* font-size: 120%; */

 

  /* Uncomment for 3D effect */

  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */

}

 

.icon-tripadvisor-icons-02:before { content: '\74'; } /* 't' */

.icon-angle-circled-right:before { content: '\72'; } /* 'r' */

.icon-angle-circled-down:before { content: '\64'; } /* 'd' */

.icon-twitter-circled-1:before { content: '\77'; } /* 'w' */

.icon-facebook-circled-1:before { content: '\66'; } /* 'f' */

.icon-pinterest-circled-1:before { content: '\70'; } /* 'p' */

.icon-instagram-circled:before { content: '\69'; } /* 'i' */





.social-wrapper a {

   color: #D0D0D0 !important;

    display: inline-block;

    font-family: "ranchoicons";

    font-size: 45px;

    margin: 5px;

    padding-top: 12px;

}



.social-wrapper a:hover {

   color: #fff !important;

}



.footer-wrapper a {

	font-weight: bold !important;

}



.footer-wrapper a:hover {

	font-weight: #ccc !important;

}

	

#lightbox-caption-title{

display:none;

}

#lightbox-infoBox {

font: 10px Verdana,Helvetica,sans-serif;

background-color: transparent!important;

margin: 0 auto;

padding: 0;

}



#lightbox-close-button{

background: url(http://webserver99.com/close.png) no-repeat top right;

height: 29px;

width: 29px;

top: -28px;

position: relative;

right: -27px;

display: block;

text-align: right;

float: right;

text-indent: -9990px !important;

font-size: 0;

}


.hidden {
	display: none;
}


.new-royalslider-39 .rsOverflow {
    min-height: 550px;
    width: 100% !important;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
    overflow: hidden !important;
}

.new-royalslider-39 .rsImg.rsMainSlideImage {
    height: auto !important;
    width: 100% !important;
}

.new-royalslider-39 .rsSlide {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
}

.promos-slider {
    height: auto;
    max-width: 400px;
}
@media only screen and (max-width : 800px) {
.promos-slider {
    margin: 0 auto;
}
}
.rsContent > h4 {
    color: #ffffff;
    font-size: 1.6em;
    text-transform: none;
}

.royalSlider.new-royalslider-39.myCustomSkin.rs-default-template.rsHor {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
}
/* Pop-Up Form - Amy O 12-30-2016 */
#gform_submit_button_11 {
margin-top: 10px;
}
/* link color - Brenda 1-5-2017 */
#menu-item-2596 a{
color: #477da7 !important;
}
.sidebar-link-image {
    background-position: center center;
    background-size: cover;
    height: 150px;
    width: 100%;
}
.sidebar-link-individual {
	margin-bottom: 20px;
}
a:hover h3 {
    border-bottom: medium none;
    text-decoration: none !important;
}
.sidebar-link-individual > a:hover {
    color: #477da7;
    text-decoration: none;
}
.sidebar-link-individual .sidebar-link-title {
    color: #477da7;
    display: block;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 7px !important;
    text-transform: uppercase;
}