@font-face {
	font-family: 'AvenirLTStd Medium';
	src: url('../fonts/AvenirLTStd-Medium.eot') format('eot'),
	url('../fonts/AvenirLTStd-Medium.woff') format('woff'),
	url('../fonts/AvenirLTStd-Medium.ttf') format('truetype'),
	url('../fonts/AvenirLTStd-Medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'AvenirLTStd Book';
	src: url('../fonts/AvenirLTStd-Book.eot'),
	url('../fonts/AvenirLTStd-Book.woff') format('woff'),
	url('../fonts/AvenirLTStd-Book.ttf') format('truetype'),
	url('../fonts/AvenirLTStd-Book.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'AvenirLTStd Roman';
	src: url('../fonts/AvenirLTStd-Roman.eot'),
	url('../fonts/AvenirLTStd-Roman.woff') format('woff'),
	url('../fonts/AvenirLTStd-Roman.ttf') format('truetype'),
	url('../fonts/AvenirLTStd-Roman.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'AvenirLTStd Black';
	src: url('../fonts/AvenirLTStd-Black.eot'),
	url('../fonts/AvenirLTStd-Black.woff') format('woff'),
	url('../fonts/AvenirLTStd-Black.ttf') format('truetype'),
	url('../fonts/AvenirLTStd-Black.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
/* Master layout */

/************************************************************
Global styles */

/* Partial CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-tap-highlight-color:  rgba(0, 0, 0, 0);
}
html, body {
	height: 100%;
	width: 100%;
	-webkit-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
	display: block;
}
audio, canvas, video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word
}

:focus {
	outline:none;
}

table {
	border: 0 none;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
td {
	vertical-align: top;
}

/* End Reset */

body{
	font-family: 'AvenirLTStd Medium';
	font-size: 18px;
	color: #000000;
	line-height: normal;
	
}
/* Links */
a, input[type=submit]{
	color:inherit;
	outline:none;
	color:inherit;
	outline:none;
	-webkit-transition: all 0.3s ease 0s; 
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;
}

a:link,
a:visited,
a:hover,
a:active {
	text-decoration:none;
	outline: none;
}
a img {
	border:none;
	-webkit-transition: all 0.5s ease 0s;
       -moz-transition: all 0.5s ease 0s;
		-ms-transition: all 0.5s ease 0s;
		 -o-transition: all 0.5s ease 0s;
			transition: all 0.5s ease 0s;
}
img {
	max-width:100%;
}
a[href^="tel:"] {
	color:inherit;
	cursor:inherit;
}
input[type="search"] {
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
/* Headings */
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	line-height: normal;
}
h1 {

}
h2 {
    font: 30px/38px 'AvenirLTStd Black';
    text-transform: uppercase;
}
h3 {
   
}
h4 {
	
}
/* Block-level */

address {
	font-style:inherit;
}
p{
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 25px;
}
ul li{
	list-style-type: none;
}
strong{
	font-weight: normal;
	font-family: 'AvenirLTStd Black';
}
/*************************
   Generic Site Styles
*************************/
.table {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
  /*float: none !important;*/
}
.table.page, .container{
  max-width: 1040px;
  margin: 0 auto;
}
main .table.page,
.table.auto-height {
  height: auto;
}

.table.auto-width {
  width: auto;
}

.table.auto-all {
  height: auto;
  width: auto;
}

.row {
  display: table-row;
}
.cell {
  display: table-cell;
  vertical-align: top;
  height: 100%;
  float: none !important;
}
.padding {
  padding: 0px 20px;
}
.padding-left {
  padding-left: 20px;
}
.padding-right {
  padding-right: 20px;
}
.middle {
  vertical-align: middle;
}
.bottom {
  vertical-align: bottom;
}
.table-header-group {
  display: table-header-group;
}
.table-footer-group {
  display: table-footer-group;
}

/* Text alignment */
.align-left { text-align:left !important; }
.align-center { text-align:center !important; }
.align-right { text-align:right !important; }

/** Default Placeholder styles ***/

::-webkit-input-placeholder {
/* WebKit browsers */
  
}
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
  
}
::-moz-placeholder {
/* Mozilla Firefox 19+ */

}
:-ms-input-placeholder {
/* Internet Explorer 10+ */

}

/* Container class to make iFrames responsive */
.frame-contain {
	position: relative;
	height:0;
	max-width:100%;
	overflow: hidden;
	padding-bottom: 56.25%; /* 16:9 */
							/* 75% = 4:3 */
}

.frame-contain iframe {
	position: absolute;
	top:0;
	left:0;
	height:100% !important;
	width:100% !important;
}

/* Fix extra button padding in Firefox */
input[type="submit"]::-moz-focus-inner {
	border:none;
	padding:0;
	line-height:1;
}
/************************************************************
Miscellaneous */
.clearfix:after{
	content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.pull-left{
	float: left;
}
.pull-right{
	float: right;
}
.relative {
  position: relative;
}
.full-size {
  height: 100%;
  width: 100%;
}

.on-top {
  position: relative;
  z-index: 1;
}

.hide {
  display: none !important;
}
.clearfix:after{
	content: '.';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
h2{
	display: inline-block;
	border-bottom:  5px solid #000000;
	padding-bottom: 16px;
	margin-bottom: 20px;
}
.header-wrapper, .nav-menu > li,.nav-menu > li:before,
#nav-close-btn, .bar-callout .cell a:after{
	-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
	 	 -ms-transition: all 0.3s ease 0s;
		  -o-transition: all 0.3s ease 0s;
			 transition: all 0.3s ease 0s;
}

.header-menu, .header-menu .cell,
.sub-menu, #nav-btn span, #nav-btn{
	-webkit-transition: all 0.5s ease 0s;
	   -moz-transition: all 0.5s ease 0s;
		-ms-transition: all 0.5s ease 0s;
		 -o-transition: all 0.5s ease 0s;
			transition: all 0.5s ease 0s;
}
.btn{
    display: inline-block;
	text-transform: uppercase;
	font-family: 'AvenirLTStd Black';
    white-space: nowrap;
    padding: 0 15px;
	font-size: 16px;
	line-height: 48px;
	height: 56px;
	background: transparent;
	color: #000000;
	border: 4px solid #000000;
	min-width: 180px;
	text-align: center;
	cursor: pointer !important;
}
.btn:hover{
	background: #000000;
	color: #ffffff;
}
.btn.btn-light{
	color: #ffffff;
	border-color: #ffffff;
}
.btn.btn-light:hover{
	color: #530b27;
	background: #ffffff;
	border-color: #ffffff;
}
input[type=submit]{
	color: #ffffff;
	cursor: pointer;
}
.highslide-container .gal-title,.highslide-container .altCaption{
	font-family: 'HelveticaNeue-Medium';
}
.full-gallery{
	display: none;
}