/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1104;
  display: none;
}

#fancybox-loading div {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 480px;
  background-image: url("../images/fancybox/fancybox.png");
}

#fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  display: none;
}

#fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  overflow: auto;
  display: none;
}

#fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 1101;
  outline: none;
  display: none;
}

#fancybox-outer {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
}

#fancybox-content {
  width: 0;
  height: 0;
  padding: 0;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1102;
  border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1101;
}

#fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 37px;
  height: 37px;
  background: transparent url("../images/fancybox/fancy_close.png");
  cursor: pointer;
  z-index: 1103;
  display: none;
}

#fancybox-error {
  color: #444;
  font: normal 12px/20px Arial;
  padding: 14px;
  margin: 0;
}

#fancybox-img {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  line-height: 0;
  vertical-align: top;
}

#fancybox-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#fancybox-left, #fancybox-right {
  position: absolute;
  bottom: 0px;
  height: 100%;
  width: 35%;
  cursor: pointer;
  outline: none;
  background: transparent url("../images/fancybox/blank.gif");
  z-index: 1102;
  display: none;
}

#fancybox-left {
  left: 0px;
}

#fancybox-right {
  right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
  position: absolute;
  top: 50%;
  left: -9999px;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  cursor: pointer;
  z-index: 1102;
  display: block;
}

#fancybox-left-ico {
  background-image: url("../images/fancybox/fancybox.png");
  background-position: -40px -30px;
}

#fancybox-right-ico {
  background-image: url("../images/fancybox/fancybox.png");
  background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
  visibility: visible;
  /* IE6 */
}

#fancybox-left:hover span {
  left: 20px;
}

#fancybox-right:hover span {
  left: auto;
  right: 20px;
}

.fancybox-bg {
  position: absolute;
  padding: 0;
  margin: 0;
  border: 0;
  width: 20px;
  height: 20px;
  z-index: 1001;
}

#fancybox-bg-n {
  top: -20px;
  left: 0;
  width: 100%;
  background-image: url("../images/fancybox/fancybox-x.png");
}

#fancybox-bg-ne {
  top: -20px;
  right: -20px;
  background-image: url("../images/fancybox/fancybox.png");
  background-position: -40px -162px;
}

#fancybox-bg-e {
  top: 0;
  right: -20px;
  height: 100%;
  background-image: url("../images/fancybox/fancybox-y.png");
  background-position: -20px 0px;
}

#fancybox-bg-se {
  bottom: -20px;
  right: -20px;
  background-image: url("../images/fancybox/fancybox.png");
  background-position: -40px -182px;
}

#fancybox-bg-s {
  bottom: -20px;
  left: 0;
  width: 100%;
  background-image: url("../images/fancybox/fancybox-x.png");
  background-position: 0px -20px;
}

#fancybox-bg-sw {
  bottom: -20px;
  left: -20px;
  background-image: url("../images/fancybox/fancybox.png");
  background-position: -40px -142px;
}

#fancybox-bg-w {
  top: 0;
  left: -20px;
  height: 100%;
  background-image: url("../images/fancybox/fancybox-y.png");
}

#fancybox-bg-nw {
  top: -20px;
  left: -20px;
  background-image: url("../images/fancybox/fancybox.png");
  background-position: -40px -122px;
}

#fancybox-title {
  font-family: Helvetica;
  font-size: 12px;
  z-index: 1102;
}

.fancybox-title-inside {
  padding-bottom: 10px;
  text-align: center;
  color: #333;
  background: #fff;
  position: relative;
}

.fancybox-title-outside {
  padding-top: 10px;
  color: #fff;
}

.fancybox-title-over {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFF;
  text-align: left;
}

#fancybox-title-over {
  padding: 10px;
  background-image: url("../images/fancybox/fancy_title_over.png");
  display: block;
}

.fancybox-title-float {
  position: absolute;
  left: 0;
  bottom: -20px;
  height: 32px;
}

#fancybox-title-float-wrap {
  border: none;
  border-collapse: collapse;
  width: auto;
}

#fancybox-title-float-wrap td {
  border: none;
  white-space: nowrap;
}

#fancybox-title-float-left {
  padding: 0 0 0 15px;
  background: url("../images/fancybox/fancybox.png") -40px -90px no-repeat;
}

#fancybox-title-float-main {
  color: #FFF;
  line-height: 29px;
  font-weight: bold;
  padding: 0 0 3px 0;
  background: url("../images/fancybox/fancybox-x.png") 0px -40px;
}

#fancybox-title-float-right {
  padding: 0 0 0 15px;
  background: url("../images/fancybox/fancybox.png") -55px -90px no-repeat;
}

/* IE6 */
html .fancybox-ie6 #fancybox-close {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_close.png', sizingMethod='scale');
}

html .fancybox-ie6 #fancybox-left-ico {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_nav_left.png', sizingMethod='scale');
}

html .fancybox-ie6 #fancybox-right-ico {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_nav_right.png', sizingMethod='scale');
}

html .fancybox-ie6 #fancybox-title-over {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_over.png', sizingMethod='scale');
  zoom: 1;
}

html .fancybox-ie6 #fancybox-title-float-left {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_left.png', sizingMethod='scale');
}

html .fancybox-ie6 #fancybox-title-float-main {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_main.png', sizingMethod='scale');
}

html .fancybox-ie6 #fancybox-title-float-right {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_right.png', sizingMethod='scale');
}

html .fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
  height: expression(this.parentNode.clientHeight + "px");
}

html #fancybox-loading.fancybox-ie6 {
  position: absolute;
  margin-top: 0;
  top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

html #fancybox-loading.fancybox-ie6 div {
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_loading.png', sizingMethod='scale');
}

/* IE6, IE7, IE8 */
html .fancybox-ie .fancybox-bg {
  background: transparent !important;
}

html .fancybox-ie #fancybox-bg-n {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_n.png', sizingMethod='scale');
}

html .fancybox-ie #fancybox-bg-ne {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_ne.png', sizingMethod='scale');
}

html .fancybox-ie #fancybox-bg-e {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_e.png', sizingMethod='scale');
}

html .fancybox-ie #fancybox-bg-se {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_se.png', sizingMethod='scale');
}

html .fancybox-ie #fancybox-bg-s {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_s.png', sizingMethod='scale');
}

html .fancybox-ie #fancybox-bg-sw {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_sw.png', sizingMethod='scale');
}

html .fancybox-ie #fancybox-bg-w {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_w.png', sizingMethod='scale');
}

html .fancybox-ie #fancybox-bg-nw {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_nw.png', sizingMethod='scale');
}

@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-light-webfont.eot");
  src: url("../fonts/opensans-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-light-webfont.woff") format("woff"), url("../fonts/opensans-light-webfont.ttf") format("truetype"), url("../fonts/opensans-light-webfont.svg#open_sanslight") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-lightitalic-webfont.eot");
  src: url("../fonts/opensans-lightitalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-lightitalic-webfont.woff") format("woff"), url("../fonts/opensans-lightitalic-webfont.ttf") format("truetype"), url("../fonts/opensans-lightitalic-webfont.svg#open_sanslight_italic") format("svg");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-regular-webfont.eot");
  src: url("../fonts/opensans-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-regular-webfont.woff") format("woff"), url("../fonts/opensans-regular-webfont.ttf") format("truetype"), url("../fonts/opensans-regular-webfont.svg#open_sansregular") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-italic-webfont.eot");
  src: url("../fonts/opensans-italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-italic-webfont.woff") format("woff"), url("../fonts/opensans-italic-webfont.ttf") format("truetype"), url("../fonts/opensans-italic-webfont.svg#open_sansitalic") format("svg");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-semibold-webfont.eot");
  src: url("../fonts/opensans-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-semibold-webfont.woff") format("woff"), url("../fonts/opensans-semibold-webfont.ttf") format("truetype"), url("../fonts/opensans-semibold-webfont.svg#open_sanssemibold") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-semibolditalic-webfont.eot");
  src: url("../fonts/opensans-semibolditalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-semibolditalic-webfont.woff") format("woff"), url("../fonts/opensans-semibolditalic-webfont.ttf") format("truetype"), url("../fonts/opensans-semibolditalic-webfont.svg#open_sanssemibold_italic") format("svg");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-bold-webfont.eot");
  src: url("../fonts/opensans-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-bold-webfont.woff") format("woff"), url("../fonts/opensans-bold-webfont.ttf") format("truetype"), url("../fonts/opensans-bold-webfont.svg#open_sansbold") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-bolditalic-webfont.eot");
  src: url("../fonts/opensans-bolditalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-bolditalic-webfont.woff") format("woff"), url("../fonts/opensans-bolditalic-webfont.ttf") format("truetype"), url("../fonts/opensans-bolditalic-webfont.svg#open_sansbold_italic") format("svg");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-extrabold-webfont.eot");
  src: url("../fonts/opensans-extrabold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-extrabold-webfont.woff") format("woff"), url("../fonts/opensans-extrabold-webfont.ttf") format("truetype"), url("../fonts/opensans-extrabold-webfont.svg#open_sansextrabold") format("svg");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans WF";
  src: url("../fonts/opensans-extrabolditalic-webfont.eot");
  src: url("../fonts/opensans-extrabolditalic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-extrabolditalic-webfont.woff") format("woff"), url("../fonts/opensans-extrabolditalic-webfont.ttf") format("truetype"), url("../fonts/opensans-extrabolditalic-webfont.svg#open_sansextrabold_italic") format("svg");
  font-weight: 900;
  font-style: italic;
}
/* RESET */
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

legend {
  display: none;
}

.content strong {
  font-weight: bold;
}

.content em {
  font-style: italic;
}

.content u {
  text-decoration: underline;
}

.content sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

.content sup {
  top: -0.5em;
}

.content sub {
  bottom: -0.25em;
}

input[type="date"], input[type="text"], input[type="submit"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* VALIDATION */
.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 30% !important;
  display: block;
  z-index: 5000;
  cursor: pointer;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #a00;
  position: relative;
  z-index: 5001;
  color: #fff;
  width: 150px;
  font-family: tahoma;
  font-size: 11px;
  padding: 4px 10px 4px 10px;
  -o-border-radius: 3px;
  border-radius: 3px;
  /*border: 2px solid #ddd;*/
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
  z-index: 5006;
}

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  font-size: 0px;
  height: 1px;
  background: #a00;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 15px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line1 {
  width: 1px;
}

.formError .formErrorArrow .line2,
.formError .formErrorArrow .line3 {
  display: none;
}

/* SHARE */
#share-this-site {
  padding: 0;
  margin: 0 5px 5px;
  width: 420px;
}

#share-this-site li {
  float: left;
  width: 130px;
  margin: 0 5px;
  font-size: 0;
}

#share-this-site a {
  position: relative;
  display: block;
  height: 16px;
  padding: 0 0 0 20px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
}

#share-this-site a:active {
  top: auto;
}

#share-this-site a .icon {
  width: 16px;
  height: 16px;
  background: url(../images/common.png) 0 0 no-repeat;
}

#share-this-site a.share_facebook .icon {
  background-position: -1000px 0;
}

#share-this-site a.share_facebook:hover .icon {
  background-position: -1036px 0;
}

#share-this-site a.share_twitter .icon {
  background-position: -1000px -36px;
}

#share-this-site a.share_twitter:hover .icon {
  background-position: -1036px -36px;
}

#share-this-site a.share_tumblr .icon {
  background-position: -1000px -72px;
}

#share-this-site a.share_tumblr:hover .icon {
  background-position: -1036px -72px;
}

#share-this-site a.share_linkedin .icon {
  background-position: -1000px -108px;
}

#share-this-site a.share_linkedin:hover .icon {
  background-position: -1036px -108px;
}

#share-this-site a.share_digg .icon {
  background-position: -1000px -144px;
}

#share-this-site a.share_digg:hover .icon {
  background-position: -1036px -144px;
}

#share-this-site a.share_delicious .icon {
  background-position: -1000px -180px;
}

#share-this-site a.share_delicious:hover .icon {
  background-position: -1036px -180px;
}

#share-this-site a.share_stumbleupon .icon {
  background-position: -1000px -216px;
}

#share-this-site a.share_stumbleupon:hover .icon {
  background-position: -1036px -216px;
}

#share-this-site a.share_orkut .icon {
  background-position: -1000px -252px;
}

#share-this-site a.share_orkut:hover .icon {
  background-position: -1036px -252px;
}

#share-this-site a.share_myspace .icon {
  background-position: -1000px -288px;
}

#share-this-site a.share_myspace:hover .icon {
  background-position: -1036px -288px;
}

#share-this-site a.share_yammer .icon {
  background-position: -1000px -324px;
}

#share-this-site a.share_yammer:hover .icon {
  background-position: -1036px -324px;
}

#share-this-site a.share_pinterest .icon {
  background-position: -1000px -360px;
}

#share-this-site a.share_pinterest:hover .icon {
  background-position: -1036px -360px;
}

#share-this-site a.share_bebo .icon {
  background-position: -1000px -396px;
}

#share-this-site a.share_bebo:hover .icon {
  background-position: -1036px -396px;
}

#share-this-site a.share_live .icon {
  background-position: -1000px -432px;
}

#share-this-site a.share_live:hover .icon {
  background-position: -1036px -432px;
}

#share-this-site a.share_google .icon {
  background-position: -1000px -468px;
}

#share-this-site a.share_google:hover .icon {
  background-position: -1036px -468px;
}

#share-this-site a.share_email .icon {
  background-position: -1000px -504px;
}

#share-this-site a.share_email:hover .icon {
  background-position: -1036px -504px;
}

/* DATEPICKER */
table.jCalendar {
  width: 160px;
  margin: 0;
  border-collapse: collapse;
}

table.jCalendar th {
  background: #efefef;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  height: 25px;
  overflow: hidden;
  vertical-align: middle;
  padding: 0;
  margin: 0;
}

table.jCalendar td {
  background: #fff;
  border: 1px solid #f2f2f2;
  font-size: 10px;
  text-align: center;
  line-height: 22px;
  height: 22px;
  vertical-align: middle;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

table.jCalendar td.today {
  background: #eee;
}

table.jCalendar td.dp-hover {
  color: #fff;
  background: #666;
}

table.jCalendar td.selected {
  color: #fff;
  background: #000;
}

table.jCalendar td.disabled, table.jCalendar td.disabled.dp-hover, table.jCalendar td.other-month {
  color: #ccc;
  text-decoration: none;
  cursor: default;
  background: none;
  text-shadow: none;
}

div.dp-popup {
  position: relative;
  font-size: 10px;
  padding: 0;
}

div#dp-popup {
  border: 1px solid #000;
  background: #fff;
  overflow: hidden;
  position: absolute;
  z-index: 9999;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

div.dp-popup h2 {
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  margin: 0;
  padding: 0;
}

div.dp-popup div.dp-nav-prev, div.dp-popup div.dp-nav-next {
  position: absolute;
  top: 7px;
}

div.dp-popup div.dp-nav-prev {
  left: 6px;
}

div.dp-popup div.dp-nav-next {
  right: 6px;
}

div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  overflow: hidden;
  text-indent: -9999px;
  background: url("../images/common.png") no-repeat;
}

div.dp-popup div.dp-nav-prev a {
  background-position: 0 0;
}

div.dp-popup div.dp-nav-prev a:hover {
  background-position: 0 -35px;
}

div.dp-popup div.dp-nav-prev a:active {
  top: auto;
  left: -1px;
}

div.dp-popup div.dp-nav-prev a.disabled {
  background-position: 0 -70px;
}

div.dp-popup div.dp-nav-next a {
  background-position: -35px 0;
}

div.dp-popup div.dp-nav-next a:hover {
  background-position: -35px -35px;
}

div.dp-popup div.dp-nav-next a:active {
  top: auto;
  right: -1px;
}

div.dp-popup div.dp-nav-next a.disabled {
  background-position: -35px -70px;
}

a.dp-choose-date {
  width: 13px;
  height: 13px;
  margin: 0;
  background: url("../images/common.png") 0 -105px no-repeat;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
  right: 5px;
  top: 6px;
}

a.dp-choose-date:hover {
  background-position: -31px -105px;
}

a.dp-choose-date:active {
  top: 7px;
}

/* STYLISH SELECT */
.stylish-select .SSContainerDivWrapper {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  z-index: 51;
  width: 100%;
}

.stylish-select ul.newList {
  border: 1px solid #cfc3ad;
  background: #fff;
  height: auto !important;
  margin: 0 !important;
  padding: 0;
  z-index: 2;
  max-height: 150px;
  overflow: auto;
  overflow-x: hidden;
  position: relative;
  border-top: 0;
}

.stylish-select ul.newList li {
  line-height: 15px;
  background: none !important;
  padding: 0 !important;
}
.stylish-select ul.newList li:after {
  display: none;
}

.stylish-select ul.newList a {
  color: #464646;
  text-decoration: none;
  display: block;
  padding: 2px 0 2px 5px;
  margin: 0;
  position: relative;
}

.stylish-select ul.newList a:hover {
  color: #fff;
  background: #325092;
}

.stylish-select ul.newList a:active {
  top: auto;
}

.stylish-select ul.newList a.hiLite {
  color: #fff;
  background: #c8b18f;
}

.stylish-select ul.newList li a:focus {
  -moz-outline: 0 none;
  outline: 0 none;
}

.stylish-select .selectedTxt {
  background: #f9f8f3;
  padding: 0 20px 0 6px;
  overflow: hidden;
  white-space: nowrap;
  color: #837f80;
  z-index: 9999;
  border: 1px solid #cfc3ad;
  cursor: pointer;
  height: 22px;
  box-shadow: inset 0 0 10px 3px #e9dac5, 2px 3px 0 0 #f0e9df;
}

.stylish-select .selectedTxt:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #837f80;
  content: '';
  display: block;
  position: absolute;
  right: 11px;
  top: 10px;
  height: 0;
  width: 0;
}

.content .form fieldset.controls {
  z-index: 1 !important;
}

.newListSelected {
  height: 23px;
  line-height: 23px;
  width: 40px;
  display: inline-block;
  float: left;
}

#hebs-gallery .newListSelected {
  background: #fff;
  width: auto;
}

.content .newListSelected {
  width: 252px;
}

.content .selectedTxt:hover {
  border-color: #a6a6a6;
}

.content .selectedTxt, .content ul.newList {
  border-color: #ccc;
  height: 23px;
  font: 12px/23px "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fcfcfc;
  position: relative;
  z-index: 2;
}

.content ul.newList {
  list-style: none;
}

/* Common */
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: none;
}

body {
  font: 13px 'Open Sans WF', Arial, sans-serif;
  line-height: 1.5;
  color: #5e6868;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::-webkit-selection {
  background: #000;
  color: #fff;
}

.hide {
  display: none !important;
}

.wrapper {
  position: relative;
  width: 960px;
  margin: 0 auto;
}

a {
  color: #002a54;
  text-decoration: underline;
  position: relative;
  -webkit-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}
a:hover {
  color: #b89c73;
}
a:active {
  top: 1px;
}

hr {
  display: block;
  border: none;
  color: #e5e5e5;
  clear: both;
  background: #e5e5e5;
  height: 1px;
  margin: 15px auto;
}

.icon {
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
}

.selection-disabled {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type='text']::-ms-clear {
  display: none;
}

/* BUTTONS */
a.button, input[type="submit"] {
  font-weight: 500;
  background: #002a54;
  border: none;
  color: #fff;
  display: inline-block;
  *display: inline;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  height: 22px;
  font-size: 10px;
  line-height: 22px;
  padding: 0 8px;
  position: relative;
  overflow: visible;
  zoom: 1;
  -webkit-transition: background-color 300ms ease-out 0.1s;
  transition: background-color 300ms ease-out 0.1s;
}
a.button:hover, input[type="submit"]:hover {
  background: #c8b18b;
}

input[type="submit"]:active {
  top: 1px;
}

.longline {
  width: 100%;
  height: 34px;
  background-color: #a7aeb2;
  position: absolute;
  top: 64px;
  left: 0;
}

/* HEADER */
#header {
  height: 118px;
  z-index: 20;
}
#header #logo {
  background: #ffffff;
  position: absolute;
  left: -20px;
  top: 19px;
  width: 274px;
  height: 90px;
  text-indent: -9999px;
  overflow: hidden;
}
#header #logo:active {
  top: 20px;
}
#header #logo:after {
  background: url("../images/sprite.svg") 0 0 no-repeat;
  content: '';
  position: absolute;
  left: 20px;
  top: 0px;
  width: 232px;
  height: 72px;
}
.no-svg #header #logo:after {
  background-image: url("../images/sprite.png");
}

.socials {
  position: absolute;
  right: 0;
  top: 20px;
}
.socials li {
  display: block;
  float: left;
}
.socials li a {
  display: block;
  height: 23px;
  width: 24px;
  margin-left: 6px;
  text-indent: -9999em;
  font-size: 0;
  background: #b9bfc3 url("../images/sprite.svg") 0 0 no-repeat;
  -webkit-transition: background-color 300ms;
          transition: background-color 300ms;
}
.no-svg .socials li a {
  background-image: url("../images/sprite.png");
}
.socials li a:hover {
  background-color: #002a54;
}
.socials li .pinterest {
  background-position: -136px -91px;
}
.socials li .pinterest:hover {
  background-color: #cc2127;
}
.socials li .linkedin {
  background-position: -90px -91px;
}
.socials li .linkedin:hover {
  background-color: #0976b4;
}
.socials li .facebook {
  background-position: 0 -91px;
}
.socials li .facebook:hover {
  background-color: #3b5998;
}
.socials li .twitter {
  background-position: -45px -91px;
}
.socials li .twitter:hover {
  background-color: #55acee;
}

/* PHOTOS SECONDARY */
#photos {
  z-index: 10;
  height: 312px;
  position: absolute;
  left: 50%;
  top: 118px;
  margin-left: -240px;
  width: 724px;
  overflow: hidden;
}
#photos figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#photos figure a {
  display: block;
  width: 100%;
  height: 100%;
}
#photos figure img {
  display: none;
}

#photos .slideshow figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 724px;
  height: 312px;
  overflow: hidden;
}
#photos .slideshow figure figcaption {
  display: block;
  width: 80%;
  position: absolute;
  bottom: 20px;
  right: 0;
  padding: 10px 30px;
  text-align: right;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

#photos figcaption {
  display: none;
}

#photos .bx-controls a.bx-prev, #photos .bx-controls a.bx-next {
  background: url("../images/sprite.svg") -50px -130px no-repeat;
  position: absolute;
  top: 50%;
  left: 16px;
  height: 37px;
  width: 37px;
  z-index: 9999;
  text-indent: -9999px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  padding: 0;
  margin-top: -18px;
}
#photos .bx-controls a.bx-prev:hover, #photos .bx-controls a.bx-next:hover {
  background-position: -150px -130px;
}
#photos .bx-controls a.bx-prev:active, #photos .bx-controls a.bx-next:active {
  left: 15px;
}
.no-svg #photos .bx-controls a.bx-prev, .no-svg #photos .bx-controls a.bx-next {
  background-image: url("../images/sprite.png");
}
#photos .bx-controls a.bx-next {
  background-position: 0 -130px;
  left: auto;
  right: 16px;
}
#photos .bx-controls a.bx-next:hover {
  background-position: -100px -130px;
}
#photos .bx-controls a.bx-next:active {
  right: 15px;
  left: auto;
}

/* PHOTOS HOME*/
.home #photos .slideshow figure, .home #photos .slideshow a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home #photos {
  z-index: 10;
  position: relative;
  left: auto;
  margin-left: 0;
  top: auto;
  width: 100%;
  overflow: hidden;
  height: 313px;
}
.home #photos .slideshow {
  z-index: 10;
}
.home #photos .slideshow .wrapper {
  margin-top: 0;
}
.home #photos .slideshow .wrapper .shadowline {
  background: url(../images/shadowline.png) 0 0 no-repeat;
  position: absolute;
  top: 92px;
  left: 50%;
  width: 9999999px;
  height: 33px;
  z-index: 1;
}
.home #photos .slideshow .wrapper .shadowline-copy {
  background: url(../images/shadowline.png) 0 0 no-repeat;
  position: absolute;
  top: 92px;
  left: 50%;
  width: 9999999px;
  height: 33px;
  z-index: 1;
}
.home #photos .slideshow .wrapper h1 {
  text-decoration: none;
  border: none;
  float: right;
  color: #c8b18b;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-shadow: -6px 0px 1px #513e24;
  padding-left: 10px;
  letter-spacing: -3px;
  position: absolute;
  top: 67px;
  right: 22px;
  max-width: 900px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 2;
}
.home #photos .slideshow .wrapper span {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  position: absolute;
  right: 22px;
  top: 42px;
  max-width: 900px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.home #photos .slideshow .wrapper .shadowline-2 {
  background: url(../images/shadowline-2.png) 0 0 repeat-y;
  position: absolute;
  top: 148px;
  left: 25%;
  width: 9999999px;
  height: 131px;
  z-index: 1;
}
.home #photos .slideshow .wrapper .bodywrapper {
  position: absolute;
  top: 156px;
  right: 0;
  width: 560px;
  height: 110px;
  overflow: hidden;
  z-index: 2;
}
.home #photos .slideshow .wrapper .bodywrapper h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}
.home #photos .slideshow .wrapper .bodywrapper p {
  color: #bda67c;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.home #photos .slideshow figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -18px 0 0 -370px;
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  max-width: 740px;
}
.home #photos .slideshow figcaption em {
  display: block;
  font-size: 30px;
  line-height: 36px;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
}
.home #photos .slideshow a {
  text-decoration: none;
  z-index: 4;
}
.home #photos .slideshow figure {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: 10;
  float: left !important;
  display: block;
}
.home #photos .slideshow figure a {
  position: static;
  text-decoration: none;
}
.home #photos .slideshow figure:first-child {
  display: block;
}
.home #photos .slideshow, .home #photos .bx-wrapper, .home #photos .bx-viewport {
  height: 100% !important;
}

.pagesmenu {
  margin-bottom: 8px;
  padding-left: 0;
}
.pagesmenu:after {
  content: '';
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}
.pagesmenu article {
  display: block;
  float: left;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pagesmenu article a {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAIElEQVQ4T2Nk0AzZzEABYBw1gGE0DBhGwwCYh4ZBOgAA6NATEZ6cZ9QAAAAASUVORK5CYII=);
  background: rgba(0, 42, 84, 0.7);
  color: #ffffff;
  display: block;
  font-size: 18px;
  font-weight: 500;
  height: 126px;
  line-height: 21px;
  padding: 0;
  text-decoration: none;
  text-align: center;
  width: 192px;
  -webkit-transition: background 0.3s ease-out;
          transition: background 0.3s ease-out;
}
.pagesmenu article a:hover {
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
  background: rgba(0, 42, 84, 0);
}
.pagesmenu article a:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -1px;
  /* Adjusts for spacing */
}
.pagesmenu article a h3 {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 130px;
}
.pagesmenu article img {
  display: block;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.pagesmenu article.grey a {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAIElEQVQ4T2NkEFTazEABYBw1gGE0DBhGwwCYh4ZBOgAA+UoOcU/glb4AAAAASUVORK5CYII=);
  background: rgba(0, 18, 35, 0.7);
}
.pagesmenu article.grey a:hover {
  background: url(../images/transparent.png) 0 0 repeat;
}
.pagesmenu article.job {
  width: 192px;
  height: 36px;
  position: absolute;
  right: 0;
  top: -36px;
  z-index: 10;
  text-align: left;
}
.pagesmenu article.job a {
  height: 32px;
  width: 132px;
  background-color: #a7aeb2;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  line-height: 34px;
  padding: 0 0 0 60px;
}
.pagesmenu article.job a:hover {
  color: #4f4f4f;
}
.pagesmenu article.job:after {
  background: url("../images/sprite.svg") -194px -80px no-repeat;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 36px;
}
.no-svg .pagesmenu article.job:after {
  background-image: url("../images/sprite.png");
}

/* MAIN MENU */
.main-menu-wrapper {
  width: 698px;
  height: 34px;
  background-color: #a7aeb2;
  position: absolute;
  top: 64px;
  right: 0;
}
.main-menu-wrapper #main-menu {
  top: 0;
  height: 34px;
  position: absolute;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
}
.main-menu-wrapper #main-menu * {
  display: inline;
}
.main-menu-wrapper #main-menu li, .main-menu-wrapper #main-menu a {
  display: inline-block;
  *display: inline;
  text-align: left;
  position: relative;
}
.main-menu-wrapper #main-menu > ul > li > a {
  line-height: 34px;
  font-size: 14px;
  padding: 0 0 0 10px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
}
.main-menu-wrapper #main-menu > ul > li > a:hover {
  color: #4f4f4f;
}
.main-menu-wrapper #main-menu > ul > li.active > a {
  color: #4f4f4f;
}
.main-menu-wrapper #main-menu > ul:after {
  content: '';
  display: inline-block;
  *display: inline;
  height: 0;
  position: relative;
  width: 100%;
}
.main-menu-wrapper #main-menu li:hover > ul {
  display: block;
}
.main-menu-wrapper #main-menu ul ul {
  display: none;
  position: absolute;
  left: -10px;
  padding: 12px 0;
  top: 34px;
  background: #a7aeb2;
}
.main-menu-wrapper #main-menu ul ul li {
  margin: 0;
  float: left;
  clear: both;
  width: 100%;
}
.main-menu-wrapper #main-menu ul ul li:hover, .main-menu-wrapper #main-menu ul ul li.active {
  background: #8c9296;
}
.main-menu-wrapper #main-menu ul ul li ul {
  background: #8c9296;
  display: none;
  position: absolute;
  top: -12px;
  left: 100%;
  width: 200px;
}
.main-menu-wrapper #main-menu ul ul li ul li {
  background: none;
}
.main-menu-wrapper #main-menu ul ul li ul li.active a {
  color: #333333;
}
.main-menu-wrapper #main-menu ul ul li ul li a {
  white-space: normal;
}
.main-menu-wrapper #main-menu ul ul li ul li a:hover {
  color: #333333;
}
.main-menu-wrapper #main-menu ul ul li ul li a:hover, .main-menu-wrapper #main-menu ul ul li ul li a.active {
  color: #333333;
}
.main-menu-wrapper #main-menu ul ul li a {
  white-space: nowrap;
  display: block;
  float: left;
  color: #ffffff;
  text-decoration: none;
  padding: 0 20px;
  margin: 4px 0;
  font-size: 14px;
}
.main-menu-wrapper #main-menu ul ul li:hover ul {
  display: block;
}

/* CONTENT AREA */
#content-area {
  clear: both;
  width: 960px;
  margin: 0 auto 30px;
  overflow: hidden;
}
#content-area + .socials {
  display: none;
}

/* SIDEBAR */
aside h4 {
  color: #b89c73;
  font-size: 17px;
  line-height: 52px;
  margin-top: 3px;
  font-weight: 400;
  border-bottom: 1px dotted #b3b3b3;
}

/* left sidebar twitterfeed */
#twitterfeed {
  position: relative;
  top: auto;
  left: auto;
  width: 192px;
  height: auto;
  background: none;
  margin-right: 20px;
  display: block;
  float: left;
}
#twitterfeed h4 {
  line-height: 52px;
  margin-top: 3px;
  font-weight: 400;
  border-bottom: 1px dotted #b3b3b3;
}
#twitterfeed .tweets {
  padding: 12px 0;
  height: auto;
  overflow: visible;
  background-color: #f3f5f6;
  margin-top: 1px;
}
#twitterfeed .tweets .tweet_list {
  overflow: hidden;
}
#twitterfeed .tweets .tweet_list.source {
  display: block;
}
#twitterfeed .tweets .tweet_list.source + .bx-wrapper {
  display: none;
}
#twitterfeed .tweets .tweet_list li {
  display: block;
  padding-right: 0;
  width: 170px;
  padding-left: 10px;
  margin-bottom: 23px;
}
#twitterfeed .tweets .tweet_list li a {
  color: #c8b18b;
  font-size: 11px;
  text-decoration: none;
  font-family: Arial;
  font-style: italic;
}
#twitterfeed .tweets .tweet_list li a:hover {
  color: #002a54;
}
#twitterfeed .tweets .tweet_list li p {
  color: #5e6868;
  font-family: Arial;
  font-size: 11px;
  line-height: 13px;
  margin-top: -2px;
}
#twitterfeed .tweets .tweet_list li p span.tweet_text {
  display: block;
  height: auto;
  overflow: visible;
}
#twitterfeed .tweets .tweet_list li p a {
  color: #002a54;
  font-style: normal;
  text-decoration: underline;
}
#twitterfeed .tweets .tweet_list li p a:hover {
  color: #c8b18b;
}

/* right sidebar */
.rightsidebar {
  width: 193px;
  float: right;
  margin: 0 0 20px 20px;
}
.rightsidebar {
  display: block;
}
.rightsidebar.clone {
  display: none;
}
.rightsidebar p {
  color: #808080;
  font-family: Arial;
  font-size: 11px;
  line-height: 13px;
  margin-top: 16px;
}

/* right sidebar careers */
#careersbar {
  margin-bottom: 5px;
}
#careersbar ul {
  padding: 13px 10px 10px 11px;
}
#careersbar ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}
#careersbar ul li:after {
  background: url("../images/sprite.svg") -30px -180px no-repeat;
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 6px;
}
.no-svg #careersbar ul li:after {
  background-image: url("../images/sprite.png");
}
#careersbar ul li:hover:after {
  background-position: -45px -180px;
}
#careersbar ul li a {
  font-family: Arial;
  font-size: 14px;
}

/* stayconnected */
#stayconnected {
  clear: both;
}
#stayconnected a.button {
  width: 193px;
  padding: 0;
  text-align: center;
  margin-top: 17px;
}

/* SIDEBAR -> Submenu */
#heading {
  margin: 0 0 12px 0;
  height: 70px;
  background: #002a54 url("../images/bg_heading.png") 40% 0 no-repeat;
}
#heading h4 {
  width: 960px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  font-size: 34px;
  font-weight: normal;
  color: #fff;
}
#heading h4 a {
  text-decoration: none;
  color: #ffffff;
}
#heading h4 a:hover {
  color: #b89c73;
}

#sidebar {
  width: 220px;
  float: left;
  margin: -15px 20px 0 0;
  min-height: 450px;
}

#double-sidebar {
  display: none;
}

.submenu {
  margin-top: 15px;
}
.submenu h4 a {
  color: #b89c73;
  text-decoration: none;
}
.submenu h4 a:hover {
  color: #002a54;
}
.submenu ul {
  padding: 13px 10px 10px 11px;
}
.submenu ul li {
  position: relative;
  margin-bottom: 7px;
}
.submenu ul li a {
  font-family: Arial;
  padding-left: 18px;
  font-size: 14px;
  line-height: 23px;
  display: block;
}
.submenu ul li a:after {
  background: url("../images/sprite.svg") -30px -180px no-repeat;
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 6px;
}
.no-svg .submenu ul li a:after {
  background-image: url("../images/sprite.png");
}
.submenu ul li a:hover:after, .submenu ul li a.active:after {
  background-position: -45px -180px;
}
.submenu ul li a.active {
  color: #b89c73;
}
.submenu ul li ul > li > a {
  padding: 0;
  margin-left: 20px;
  font-size: 13px;
  line-height: 17px;
}
.submenu ul li ul > li > a:after {
  display: none;
}

.home .submenu {
  margin-top: 0;
}

#quote {
  margin-top: 40px;
}
#quote p {
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  line-height: 20px;
  color: #b89c73;
}
#quote p:before, #quote p:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  overflow: hidden;
  margin: 0 0 -4px 10px;
  line-height: 9999px;
  background: url("../images/sprite.svg") -215px -155px no-repeat;
}
.no-svg #quote p:before, .no-svg #quote p:after {
  background-image: url("../images/sprite.png");
}
#quote p:before {
  margin: 0 10px 0 0;
  background-position: -190px -130px;
}
#quote span.beginning, #quote span.end {
  display: none;
}
#quote dl {
  font-family: Arial;
  font-size: 14px;
  color: #808080;
  font-weight: bold;
  margin-top: 10px;
}
#quote dl dt {
  line-height: 18px;
}
#quote dl dd {
  font-size: 11px;
  line-height: 13px;
  font-weight: normal;
}

/* CONTENT LAYOUT */
.content {
  overflow: hidden;
}
.content {
  display: block;
}
.content.clone {
  display: none;
}

#latestnews {
  width: 535px;
  margin-left: 212px;
}
#latestnews h4 {
  color: #b89c73;
  font-size: 17px;
  line-height: 52px;
  margin: 3px 0 13px 0;
  font-weight: 400;
  border-bottom: 1px dotted #b3b3b3;
}
#latestnews .slideshow.source {
  display: block;
}
#latestnews .slideshow.source + .bx-wrapper {
  display: none;
}
#latestnews .pressroom-home {
  padding-top: 15px;
  border-top: 1px solid #f1f1f1;
  margin-top: 17px;
}
#latestnews .pressroom-home nav a.pdf {
  padding-left: 24px;
  line-height: 18px;
  font-size: 10px;
  font-family: Arial;
  position: relative;
}
#latestnews .pressroom-home nav a.pdf:hover:after {
  background-position: -32px -210px;
}
#latestnews .pressroom-home nav a.pdf:after {
  content: '';
  background: url("../images/sprite.svg") 0 -210px no-repeat;
  width: 14px;
  height: 16px;
  position: absolute;
  left: 0;
  top: -3px;
}
.no-svg #latestnews .pressroom-home nav a.pdf:after {
  background-image: url("../images/sprite.png");
}
#latestnews .pressroom-home nav span {
  font-size: 10px;
  font-family: Arial;
  font-style: italic;
  color: #b1b1b1;
}
#latestnews .pressroom-home .time {
  font-family: Arial;
  color: #5e6868;
  font-size: 11px;
  font-style: italic;
  display: block;
  margin-bottom: 11px;
}
#latestnews .pressroom-home h3 {
  font-family: Arial;
  font-weight: bold;
  font-size: 13px;
  line-height: 19px;
  color: #5e6868;
  margin-bottom: 0;
}
#latestnews .pressroom-home p {
  font-size: 11px;
  margin-bottom: 13px;
  display: none;
}
#latestnews .pressroom-home p:first-child {
  display: block;
}
#latestnews .pressroom-home.first {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

#photos + #content-area .content {
  margin-top: 248px;
}

/* FOOTER */
#footer {
  width: 100%;
  background: #a7aeb2;
  margin: 0 auto;
  padding: 10px 0 55px 0;
  font-size: 11px;
  color: #888;
  position: relative;
}
#footer #footer-menu-support {
  position: relative;
  overflow: hidden;
  margin-bottom: 17px;
  font-size: 12px;
}
#footer #footer-menu-support ul li {
  float: left;
  margin-right: 56px;
  position: relative;
}
#footer #footer-menu-support ul li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
#footer #footer-menu-support ul li a.active, #footer #footer-menu-support ul li a:hover {
  color: #4f4f4f;
}
#footer #footer-menu {
  overflow: hidden;
  margin-bottom: 16px;
  font-size: 12px;
}
#footer #footer-menu > ul > li {
  float: left;
  margin-right: 60px;
  position: relative;
}
#footer #footer-menu > ul > li a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
#footer #footer-menu > ul > li a:hover, #footer #footer-menu > ul > li a.active {
  color: #4f4f4f;
}
#footer #footer-menu > ul > li ul {
  max-width: 170px;
}
#footer #footer-menu > ul > li ul li a {
  font-weight: 500;
  text-decoration: underline;
  font-size: 11px;
  line-height: 14px;
  text-transform: none;
}
#footer #footer-menu > ul > li.first, #footer #footer-menu > ul > li.last {
  display: none;
}
#footer .footerinfo {
  position: absolute;
  height: 55px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #b9bfc3;
  color: #535c66;
  font-family: Arial;
}
#footer .footerinfo .wrapper {
  padding-top: 20px;
}
#footer .footerinfo .wrapper .copyright {
  float: left;
}
#footer .footerinfo .wrapper .copyright a {
  text-decoration: none;
}
#footer .footerinfo a {
  color: #535c66;
}
#footer .footerinfo a:hover {
  color: #b89c73;
}
#footer .footerinfo .credits {
  float: right;
}

/* CONTENT */
h1, h2, .content h3, .content h4, .content h5, .content h6 {
  font-weight: 500;
}

h1 {
  font-size: 20px;
  line-height: 55px;
  color: #b89c73;
  border-bottom: 1px dotted #b3b3b3;
  margin-bottom: 18px;
}

h2 {
  font-weight: 400;
  font-size: 17px;
  color: #5e6868;
  margin-bottom: 13px;
}

.content h3 {
  font-weight: 400;
  font-size: 18px;
  color: #5e6868;
  margin-bottom: 5px;
}

.content p, .content table {
  margin: 0 0 15px;
  overflow: visible;
  font-family: Arial;
}

.content strong {
  font-weight: bold;
  font-family: Arial;
}

.content em {
  font-style: italic;
  font-family: Arial;
}

.content u {
  text-decoration: underline;
  font-family: Arial;
}

.content ul, .content ol {
  margin: 18px 0 20px 20px;
  font-family: Arial;
}

.content ul li {
  padding-left: 12px;
  position: relative;
}
.content ul li:after {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  top: 7px;
  background-image: url("../images/sprite.svg");
  background-position: 0 -180px;
}
.no-svg .content ul li:after {
  background-image: url("../images/sprite.png");
}

.content ul ul, .content ul ol, .content ol ol, .content ol ul {
  margin: 0 0 0 15px;
}

.content ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.content td, .content th {
  padding: 5px 10px;
  vertical-align: top;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.content tr.odd td {
  background: #f7f9f8;
}

.content th {
  font-weight: bold;
  background: none;
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
}

.content table p {
  margin: 5px;
}

/* CONTENT -> Socials */
.content .likebuttons {
  margin: 25px 0 20px;
  overflow: hidden;
}

.content .likebuttons .social-button, #calendar .likebuttons .social-button {
  float: left;
  width: 90px;
  height: 21px;
  margin-right: 10px;
}

/* CONTENT -> Thumbnails */
.content .thumbnail {
  float: right;
  margin: 0 0 5px 15px;
}

/* CONTENT -> PDF button and PDF size */
.content a.pdf {
  display: inline-block;
  padding-left: 20px;
  font-size: 12px;
  line-height: 16px;
}

.content a.pdf .icon {
  width: 16px;
  height: 16px;
  background: url("../images/common.svg") -800px 0 no-repeat;
}

.content a.pdf:hover .icon {
  background-position: -836px 0;
}

body.home .content a.pdf {
  font-size: 10px;
}

.content a.pdf + .size {
  color: #aaa;
  font-size: 10px;
}

/* CONTENT -> Sitemap */
.content .sitemap-description {
  font-size: 0.8em;
}

.poi {
  margin-bottom: 40px;
}

.poi-maps-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: #a7aeb2;
  overflow: hidden;
}
.poi-maps-container .poi-map-canvas {
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
}
.poi-maps-container .poi-map-canvas.visible {
  top: 0;
}
.poi-maps-container .poi-map-canvas h4, .poi-maps-container .poi-map-canvas p {
  font-size: 11px;
  line-height: 13px;
  margin: 3px 0 0;
  white-space: nowrap;
}
.poi-maps-container .poi-map-canvas h4 {
  font-size: 12px;
  margin: 0;
}
.poi-maps-container .poi-map-canvas .map-content {
  overflow: hidden;
}

.poi .category-selector {
  background: #a7aeb2;
}
.poi .category-selector:after {
  content: '';
  display: block;
  overflow: hidden;
  height: 0;
  clear: both;
}
.poi .category-selector button {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  background: none;
}
.poi .category-selector button:hover, .poi .category-selector button.active {
  color: #4f4f4f;
}

.poi .categories .category {
  display: none;
}
.poi .categories .category.visible {
  display: block;
}

.poi .categories {
  margin-top: 30px;
}
.poi .categories .category.hidden {
  display: none;
}
.poi .categories .category table {
  width: 100%;
}
.poi .categories .category table th {
  white-space: nowrap;
}
.poi .categories .category table td {
  vertical-align: middle;
}
.poi .categories .category table td.center {
  text-align: center;
}
.poi .categories .category table td.title {
  text-align: left;
}
.poi .categories .category .expand-description {
  color: #002a54;
  text-decoration: underline;
  cursor: pointer;
}
.poi .categories .category .expand-description:hover {
  color: #b89c73;
}
.poi .categories .category .show-on-map {
  display: block;
  height: 17px;
  width: 11px;
  margin: 0 auto;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.png") -598px 0 no-repeat;
  cursor: pointer;
  border: 0;
}
.poi .categories .category .show-on-map:hover {
  background-position: -628px 0;
}
.poi .categories .category tr.description {
  display: none;
}
.poi .categories .category tr.description.visible {
  display: table-row;
}
.poi .categories .category tr.description .thumbnail {
  margin-bottom: 0;
}
.poi .categories .category tr.description p {
  margin: 0 0 10px;
  font-size: 12px;
}
.poi .categories .category tr.description nav > * {
  margin-left: 10px;
}
.poi .categories .category tr.description nav > *:first-child {
  margin-left: 0;
}

.poi .hotels {
  display: none;
}

/* CONTENT -> Specials */
.content .special {
  padding: 10px 15px;
  margin-bottom: 1px;
  overflow: hidden;
  background: #fff;
}

.content .special.odd {
  background: #f7f9f8;
}

.content .special h3 a {
  text-decoration: none;
  color: #000;
}

.content .special h3 a:hover {
  color: #808080;
}

.content .special.single {
  padding: 0;
  margin: 0;
  background: none;
}

.content .special nav {
  margin-bottom: 15px;
}

.content .special nav a.button {
  margin-right: 5px;
}

/* Calendar Main Changings */
#content-area.calendar-area {
  overflow: visible;
}

html.calendar #content-area {
  overflow: visible;
}

#content-area.calendar-area {
  width: 960px;
}

#calendar-breadcrumb {
  border-bottom: 1px solid #888;
}

#calendar-views a {
  color: #888;
}

#content_cal .views a:hover,
#content_cal .views a.active {
  color: #000;
}

#calendar-year a {
  border-bottom: 1px solid #aaa;
  color: #aaa;
}

#calendar-year li.y2 a {
  color: #a7a7a7;
}

#calendar-year li.y2 a:hover,
#calendar-year li a:hover {
  border-color: #000 !important;
  color: #000 !important;
}

#calendar-year li.active a {
  border-color: #000;
  color: #000;
}

/* if width 960, then block width (960-36)/7 = 132, 6px margin between cells */
#calendar.grid #calendar_week li,
#calendar.grid #calendar_days li {
  display: inline-block;
  width: 132px;
}

#calendar.grid #calendar_days .w1 dt {
  width: 132px;
}

#calendar.grid #calendar_days .w2 dt {
  width: 270px;
}

#calendar.grid #calendar_days .w3 dt {
  width: 408px;
}

#calendar.grid #calendar_days .w4 dt {
  width: 546px;
}

#calendar.grid #calendar_days .w5 dt {
  width: 684px;
}

#calendar.grid #calendar_days .w6 dt {
  width: 822px;
}

#calendar.grid #calendar_days .w7 dt {
  width: 960px;
}

/* Calendar Common */
#main-content.calendar {
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Calendar header */
/* Header */
.calendar #content {
  overflow: visible;
  z-index: 10;
  position: relative;
  margin-top: 10px;
}

#content_cal {
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 15;
  overflow: visible;
  padding: 0;
  *min-height: 250px;
}

#content_cal h1 {
  position: relative;
  padding-bottom: 20px;
}

#content_cal header {
  position: relative;
  z-index: 5;
  float: left;
  width: 100%;
  height: 45px;
}

#calendar-filter-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
}

#content_cal .controlsdiv {
  position: relative;
  z-index: 10;
  display: block;
  zoom: 1;
}

#content_cal .views, #content_cal .links {
  display: block;
  float: left;
  overflow: hidden;
  margin-left: 350px;
}

#content_cal .links {
  margin-right: 400px;
}

#content_cal .views li {
  float: left;
  padding-right: 15px;
  background: none;
}

#content_cal .views a {
  float: left;
  margin-bottom: 1px;
  height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 20px;
  -webkit-transition: 0s;
  transition: 0s;
  position: relative;
}

#content_cal .links li {
  float: left;
  padding-right: 15px;
  background: none;
}

#content_cal .links a {
  float: left;
  margin-bottom: 1px;
  width: 26px;
  height: 25px;
  background: url("../images/common.png") -400px -84px no-repeat;
  text-indent: -9999px;
}

#content_cal .links a:hover {
  background-position: -506px -84px;
}

#content_cal .links a.print {
  width: 26px;
  background-position: -400px -128px;
}

#content_cal .links a.print:hover {
  background-position: -506px -128px;
}

#content_cal .links a.rss {
  width: 26px;
  background-position: -400px -173px;
}

#content_cal .links a.rss:hover {
  background-position: -506px -173px;
}

/* Navigation */
#calendar-year {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 2.8em;
  zoom: 1;
}

#calendar-year li {
  display: block;
  float: left;
}

#calendar-year a {
  display: block;
  margin-right: 1px;
  padding: .4em;
  text-decoration: none;
  font-size: 13px;
}

#calendar-month {
  position: relative;
  z-index: 4;
  clear: both;
  margin: .6em 0 .4em 0;
  height: 2.5em;
  background: #f6f4f1;
  text-align: justify;
  text-align-last: justify;
  text-justify: newspaper;
  zoom: 1;
}

#calendar-month:after {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 100%;
  content: ' ';
}

#calendar-month li {
  display: inline;
}

#calendar-month li.arrow {
  display: none;
}

#calendar-month a {
  display: inline-block;
  padding: 5px 10px;
  height: 1.8em;
  color: #525252;
  vertical-align: top;
  text-align: left;
  text-decoration: none;
  font: 12px/24px 'Arial', sans-serif;
  -webkit-transition: 0s;
  transition: 0s;
}

#calendar-month a.active {
  overflow: hidden;
  padding: 5px 10px;
  background: #87a36f;
  color: #fff;
  zoom: 1;
}

#calendar-month a:hover {
  background: #d89d88;
  color: #ffffff;
}

#calendar-month a.active:hover {
  color: #fff;
}

#calendar-navigation {
  position: relative;
  float: left;
  clear: both;
  margin-bottom: 12px;
  padding: 0 20px;
}

#calendar-navigation h2 {
  margin-bottom: 0;
  white-space: nowrap;
  font-size: 16px;
}

#calendar-navigation li {
  float: left;
}

#calendar-navigation a.prev, #calendar-navigation a.next {
  position: absolute;
  top: 7px;
  overflow: hidden;
  width: 5px;
  height: 9px;
  background: url("../images/common.png") -5px -3px no-repeat;
  text-indent: -9999px;
  cursor: pointer;
}

#calendar-navigation a.next {
  right: 0;
  background-position: -40px -3px;
}

#calendar-navigation a.next:hover {
  background-position: -40px -38px;
}

#calendar-navigation a.prev {
  left: 0;
}

#calendar-navigation a.prev:hover {
  background-position: -5px -38px;
}

/* Views */
#calendar-views {
  float: right;
  margin: 1px 0 0 10px;
}

#calendar-views li {
  float: left;
  padding-left: 20px;
}

#calendar-views a {
  float: left;
  padding-left: 28px;
  height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 22px;
}

#calendar-views a .icon {
  width: 22px;
  height: 22px;
  background: url("../images/common.png") 0 0 no-repeat;
}

#calendar-views a.grid .icon {
  background-position: -398px 0;
}

#calendar-views a.grid:hover .icon, #calendar-views a.grid.active .icon {
  background-position: -443px 0;
  color: #4c4c4c;
}

#calendar-views a.list .icon {
  background-position: -398px -42px;
}

#calendar-views a.list:hover .icon, #calendar-views a.list.active .icon {
  background-position: -443px -42px;
  color: #4c4c4c;
}

/* Links */
#calendar-links {
  position: absolute;
  top: 0;
  left: 0;
}

#calendar-links li {
  float: left;
  padding-left: 15px;
}

#calendar-links li:first-child {
  padding: 0;
}

#calendar-links a {
  float: left;
  height: 24px;
  background: url("../images/common.png") 0 0 no-repeat;
  text-indent: -9999px;
}

#calendar-links a.ical {
  width: 25px;
  background-position: -398px -83px;
}

#calendar-links a.ical:hover {
  background-position: -443px -83px;
}

#calendar-links a.print {
  width: 24px;
  background-position: -398px -127px;
}

#calendar-links a.print:hover {
  background-position: -443px -127px;
}

#calendar-links a.rss {
  width: 22px;
  background-position: -398px -172px;
}

#calendar-links a.rss:hover {
  background-position: -443px -172px;
}

/* Breadcrumbs */
#calendar-breadcrumb {
  clear: both;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 5px;
}

#calendar-breadcrumb dt, #calendar-breadcrumb dd {
  float: left;
  margin-right: 10px;
}

/* Filter */
#calendar-filter {
  position: absolute;
  top: 0;
  right: 0;
}

#calendar-filter legend {
  display: none;
}

#calendar-filter .selectedTxt {
  min-width: 150px;
}

/* Calendar wrapper */
#calendar .wrapper {
  margin: 0 auto;
  width: 980px;
  background: #141414;
}

/* Shared */
#calendar {
  position: relative;
  z-index: 1;
}

/* List view */
#calendar img {
  display: block;
  margin-left: 30px;
}

#calendar.list {
  margin-top: 15px;
  padding-bottom: 20px;
}

#calendar.list > ul > li {
  overflow: hidden;
  margin-bottom: 10px;
  padding: 10px 10px 0;
  background: #f6f6f6;
}

#calendar.list article {
  overflow: hidden;
  margin-bottom: 10px;
  padding: 15px 20px 0;
}

#calendar.list dt {
  float: left;
  width: 85px;
  color: #999999;
  font-size: 12px;
}

#calendar.list dd {
  overflow: hidden;
  margin: 10px 0 10px 100px;
  border-top: 1px solid #e3e3e3;
  padding-top: 20px;
}

#calendar.list dt + dd {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

#calendar.list h3 {
  margin-bottom: 5px;
  padding: 0;
}

#calendar.list h3 a {
  text-decoration: none;
  font-size: 18px;
}

#calendar.list .thumb {
  float: right;
  margin: 0 20px 10px 0;
}

#calendar.list dt a {
  color: #a7a7a7;
  text-decoration: none;
}

#calendar.list dt a:hover {
  color: #87a36f;
}

#calendar.list .day-nr {
  display: inline-block;
  vertical-align: top;
  font-size: 44px;
  line-height: 1;
}

#calendar.list dl.vevent {
  overflow: hidden;
  padding: 10px;
}

#calendar.list dl.vevent h3 {
  margin-top: 0;
  padding-top: 0;
  font-size: 18px;
}

#calendar.list .month-details {
  display: inline-block;
  padding-top: 2px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
}

#calendar.list .month-details span {
  display: block;
}

#calendar.list p.noevents {
  text-align: center;
}

/* Event view */
#calendar.list .from, #calendar.list .every {
  display: block;
  color: #a7a7a7;
}

#calendar.list .every span {
  display: block;
  color: #525252;
}

#calendar.list.single h3 {
  color: #FCD897;
}

#calendar.list.single .month-details {
  color: #FCD897;
}

#calendar.list.single #content {
  overflow: visible;
}

#calendar .single dd p {
  margin-bottom: 10px;
}

#calendar .summary p,
#calendar p.summary {
  font-family: 'Arial', sans-serif;
}

#calendar .single {
  background: #faf8f6;
}

#calendar .single img {
  float: right;
}

/* Grid View */
#calendar.grid {
  position: static;
  z-index: 6;
  font-size: 0;
}

#calendar.grid * {
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: none;
  list-style: none;
}

#calendar.grid h3 {
  padding: 0 .6em;
}

#calendar.grid #calendar_week,
#calendar.grid #calendar_days {
  z-index: 9999;
  display: block;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
  text-justify: newspaper;
  zoom: 1;
}

#calendar.grid #calendar_days {
  position: relative;
  /*z-index:11000;*/
}

#calendar.grid #calendar_week li,
#calendar.grid #calendar_days li {
  display: inline-block;
  padding: .5em 0;
}

#calendar.grid #calendar_week li {
  margin: .6em 0 0 0;
  color: #87a36f;
  text-align: left;
  text-transform: uppercase;
  font-size: 16px;
}

#calendar.grid #calendar_days li {
  z-index: 0;
  margin: 0 0 1em 0;
  padding: 0;
  min-height: 8em;
  background: #f6f4f1;
  vertical-align: top;
  text-align: left;
  font-size: 12px;
}

#calendar.grid #calendar_week:after,
#calendar.grid #calendar_days:after {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 100%;
  content: ' ';
}

#calendar.grid #calendar_days h4 {
  text-align: left;
  font-size: 1em;
}

#calendar.grid #calendar_days h4 a {
  display: block;
  padding: .5em 1em;
  color: #525252;
  text-decoration: none;
  font-weight: normal;
  font-size: 12px;
}

#calendar.grid #calendar_days .today h4 a {
  color: #fff;
}

#calendar.grid #calendar_days li.today {
  border-color: #5d5140;
  background-color: #262626;
}

#calendar.grid h4 a:hover {
  color: #fff;
}

#calendar.grid #calendar_days .prev_month,
#calendar.grid #calendar_days .next_month {
  background: #faf8f6;
}

#calendar.grid #calendar_days .prev_month h4 a, #calendar.grid #calendar_days .next_month h4 a {
  color: #a7a7a7;
}

#calendar.grid #calendar_days dl {
  z-index: 120;
  display: block;
  height: 2em;
  background: none;
}

#calendar.grid #calendar_days dl a {
  text-overflow: ellipsis;
}

#calendar.grid #calendar_days dl dt {
  position: relative;
  display: block;
  margin: 0;
  height: 2em;
  white-space: nowrap;
  font-size: .8em;
  line-height: 2em;
}

#calendar.grid #calendar_days dl:hover {
  position: relative;
}

#calendar.grid #calendar_days dl dd {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 999;
  visibility: hidden;
  overflow: visible;
  margin-bottom: 10px;
  padding: 5px 10px;
  width: 225px;
  border-radius: 4px;
  background: #87a36f;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: left;
  font-size: 11px;
  -webkit-transform: translate3d(0, 0, 0);
}

#calendar.grid #calendar_days dl dd ins {
  position: absolute;
  left: 50%;
  z-index: 1990;
  z-index: 2000;
  display: block;
  margin-left: -20px;
  width: 41px;
  height: 21px;
  background: url("../images/event-arrow.png") 0 0 no-repeat;
  content: '.';
  font-size: 0;
  line-height: 11px;
}

#calendar.grid #calendar_days dl:hover dd {
  visibility: visible;
}

#calendar.grid #calendar_days dd h3 {
  margin: 0;
  margin: 5px 0;
  padding: 0;
  height: auto;
  background: none;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
}

#calendar.grid #calendar_days dd img {
  width: 225px;
  height: auto;
}

#calendar.grid #calendar_days dd p {
  padding: 5px 0;
  width: 225px;
  color: #fff;
  font-size: 11px;
  font-family: Arial, sans-serif;
  line-height: 12px;
}

#calendar.grid #calendar_days dd a {
  padding: 0;
  background: none;
}

#calendar.grid #calendar_days dd p a {
  background: none !important;
  color: #fff;
}

#calendar.grid #calendar_days dd p a:hover {
  text-decoration: none;
}

#calendar.grid #calendar_days dl.t1 {
  margin-top: 2em;
}

#calendar.grid #calendar_days dl.t2 {
  margin-top: 4em;
}

#calendar.grid #calendar_days dl.t3 {
  margin-top: 6em;
}

#calendar.grid #calendar_days dl.t4 {
  margin-top: 8em;
}

#calendar.grid #calendar_days dl.t5 {
  margin-top: 10em;
}

#calendar.grid #calendar_days dl.t6 {
  margin-top: 12em;
}

#calendar.grid #calendar_days dl.t7 {
  margin-top: 14em;
}

#calendar.grid #calendar_days dl.t8 {
  margin-top: 16em;
}

#calendar.grid #calendar_days dl.t9 {
  margin-top: 18em;
}

#calendar.grid #calendar_days dl.t10 {
  margin-top: 20em;
}

#calendar.grid #calendar_days dl.t11 {
  margin-top: 22em;
}

#calendar.grid #calendar_days dl.t12 {
  margin-top: 24em;
}

#calendar.grid #calendar_days dl.t13 {
  margin-top: 26em;
}

#calendar.grid #calendar_days dl.t14 {
  margin-top: 28em;
}

#calendar.grid #calendar_days dl.t15 {
  margin-top: 30em;
}

#calendar.grid #calendar_days dl.t16 {
  margin-top: 32em;
}

#calendar.grid #calendar_days dl.t17 {
  margin-top: 34em;
}

#calendar.grid #calendar_days dl.t18 {
  margin-top: 36em;
}

#calendar.grid #calendar_days dl.t19 {
  margin-top: 38em;
}

#calendar.grid #calendar_days dl.t20 {
  margin-top: 40em;
}

#calendar.grid #calendar_days li.day_items3 {
  height: 9em;
}

#calendar.grid #calendar_days li.day_items4 {
  height: 11em;
}

#calendar.grid #calendar_days li.day_items5 {
  height: 13em;
}

#calendar.grid #calendar_days li.day_items6 {
  height: 15em;
}

#calendar.grid #calendar_days li.day_items7 {
  height: 17em;
}

#calendar.grid #calendar_days li.day_items8 {
  height: 19em;
}

#calendar.grid #calendar_days li.day_items9 {
  height: 21em;
}

#calendar.grid #calendar_days li.day_items10 {
  height: 23em;
}

#calendar.grid #calendar_days li.day_items11 {
  height: 25em;
}

#calendar.grid #calendar_days li.day_items12 {
  height: 27em;
}

#calendar.grid #calendar_days li.day_items13 {
  height: 29em;
}

#calendar.grid #calendar_days li.day_items14 {
  height: 31em;
}

#calendar.grid #calendar_days li.day_items15 {
  height: 33em;
}

#calendar.grid #calendar_days li.day_items16 {
  height: 35em;
}

#calendar.grid #calendar_days li.day_items17 {
  height: 37em;
}

#calendar.grid #calendar_days li.day_items18 {
  height: 39em;
}

#calendar.grid #calendar_days li.day_items19 {
  height: 41em;
}

#calendar.grid #calendar_days li.day_items20 {
  height: 43em;
}

#calendar.grid #calendar_days dt a {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 .5em 0 1em;
  width: auto;
  height: 1.8em;
  background: #333;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.8em;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-overflow: ellipsis;
}

#calendar.grid #calendar_days dt a:hover {
  color: #fff;
}

#calendar.grid #calendar_days .ls dt a {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-bottom-left-radius: 0;
}

#calendar.grid #calendar_days .rs dt a {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -moz-border-top-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
}

#calendar.grid #calendar_days .c1 dt a {
  background-color: #8db294;
}

#calendar.grid #calendar_days .c2 dt a {
  background-color: #ada39a;
}

#calendar.grid #calendar_days .c3 dt a {
  background-color: #85a9b7;
}

#calendar.grid #calendar_days .c4 dt a {
  background-color: #bc8e8f;
}

#calendar.grid #calendar_days .c5 dt a {
  background-color: #ac9bc1;
}

#calendar.grid #calendar_days .c6 dt a {
  background-color: #87b6c7;
}

#calendar.grid #calendar_days .c7 dt a {
  background-color: #bb85aa;
}

#calendar.grid #calendar_days .c8 dt a {
  background-color: #a4a4a4;
}

#calendar.grid #calendar_days dl.hover dt a,
#calendar.grid #calendar_days dt a:hover {
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* CONTENT -> Map */
#map-canvas {
  height: 444px;
  margin-bottom: 16px;
}

#map-canvas h4, #map-canvas p {
  font-size: 11px;
  line-height: 13px;
  margin: 3px 0 0;
  white-space: nowrap;
}

#map-canvas h4 {
  font-size: 12px;
  margin: 0;
}

/* CONTENT -> Careers */
.content .careers .narrow {
  width: 20%;
}

/* CONTENT -> Press room */
.content #pressroom {
  overflow: hidden;
  margin-left: -15px;
}
.content #pressroom a.loadmore {
  border: 1px solid #b89c73;
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #b89c73;
  margin: 20px 4px 0 15px;
  text-align: center;
}

.content #categories-list {
  margin: 0 0 25px 15px;
}
.content #categories-list li {
  display: inline-block;
  background: none;
  padding: 5px 5px 5px 0px;
}
.content #categories-list li:after {
  display: none;
}
.content #categories-list li a {
  border: 1px solid transparent;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.content #categories-list li a:hover, .content #categories-list li a.active {
  border-color: #b89c73;
  color: #b89c73;
}

/* PRESSROOM */
.content .pressroom-entry {
  background: #a7aeb2;
  display: inline-block;
  height: 550px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  margin: 0 0 15px 15px;
  vertical-align: top;
  width: 350px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.content .pressroom-entry p {
  font-size: 12px;
  color: #fff;
}
.content .pressroom-entry h3 {
  color: #fff;
}
.content .pressroom-entry a {
  color: #fff;
}
.content .pressroom-entry a:hover {
  color: #b89c73;
}
.content .pressroom-entry .description {
  color: #fff;
  display: inline-block;
  height: 100%;
  position: relative;
  text-align: center;
  width: 100%;
}
.content .pressroom-entry .description:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-left: -1px;
  width: 0;
}
.content .pressroom-entry .description .centered {
  display: inline-block;
  vertical-align: middle;
  width: 95%;
}
.content .pressroom-entry .description .date {
  margin: 15px 0 0;
}
.content .pressroom-entry .description h1 {
  color: #fff;
  display: block;
  font-size: 26px;
  margin-bottom: 10px;
}
.content .pressroom-entry .description span.size {
  font-size: 12px;
  display: block;
}
.content .pressroom-entry.img {
  padding: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.content .pressroom-entry.img .description {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAIElEQVQ4T2NkEFTazEABYBw1gGE0DBhGwwCYh4ZBOgAA+UoOcU/glb4AAAAASUVORK5CYII=);
  background: rgba(0, 18, 35, 0.7);
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1;
}
.content .pressroom-entry.img .description:before {
  display: none;
}
.content .pressroom-entry.img .description .centered {
  border-top: 1px solid #001223;
  display: block;
  padding: 20px;
  width: auto;
}
.content .pressroom-entry.img > a {
  display: block;
}
.content .pressroom-entry.img img {
  display: none;
}
.content .pressroom-entry.wide {
  width: 715px;
}
.content .pressroom-entry.wide .description .centered {
  width: 595px;
}
.content .pressroom-entry.wide.img {
  padding: 20px;
}
.content .pressroom-entry.wide.img img {
  position: absolute;
  left: 0;
  top: 0;
}
.content .pressroom-entry.wide.img .description {
  background: none;
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: auto;
  margin: 0 0 0 350px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.content .pressroom-entry.wide.img .description .centered {
  border: 0;
  padding: 0;
  width: 100%;
}

/* CONTENT -> Gallery */
#hebs-gallery .newListSelected {
  position: absolute !important;
  top: 9px;
  left: 14px;
  z-index: 2;
}

#hebs-gallery .selectedTxt {
  min-width: 100px;
}

#hebs-gallery ul.newList {
  overflow: visible;
}

.content .galleries, .content .small-galleries {
  overflow: hidden;
  border-top: 1px dotted #e5e5e5;
  padding-top: 15px;
  margin: 0 0 15px 0;
}

.content .gallery {
  float: left;
  width: 215px;
  margin: 0 0 18px 18px;
  padding: 5px;
  border: 1px solid #CCCCCC;
}
.content .gallery:hover {
  border: 1px solid #001932;
}

.content .gallery:first-child {
  margin-left: 0;
}

.content .gallery.new-line {
  clear: left;
  margin-left: 0;
}

.content .gallery h4 {
  margin-bottom: 5px;
  text-align: center;
}

.content .gallery p {
  text-align: center;
  font-size: 11px;
  line-height: 13px;
  margin: 0 10px 0 10px;
}

.content .gallery a {
  text-decoration: none;
}

.content .gallery .thumbnail {
  float: none;
  margin: 0 0 10px;
}

.content .gallery div {
  font-size: 12px;
}

/* CONTENT -> Forms */
.content .form {
  margin-bottom: 15px;
}

.content .form input[type='text'], .content .form textarea {
  border: 1px solid #cfc3ad;
  background: #f9f8f3;
  height: 22px;
  padding: 0 10px;
  font: 12px/14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #837f80;
  resize: none;
  box-shadow: inset 0 0 10px 3px #e7dac5, 2px 3px 0 rgba(201, 178, 141, 0.28);
  resize: none;
}

.content .form input[type='text']:hover, .content .form textarea:hover {
  background: #fcfcf7;
  box-shadow: inset 0 0 10px 3px rgba(231, 218, 197, 0.7), 2px 3px 1px rgba(201, 178, 141, 0.2);
}

.content .form input[type='text']:active, .content .form input[type='text']:focus, .content .form textarea:active, .content .form textarea:focus {
  border-color: #b9bfc3;
}

.content .form input[type='text'] {
  padding: 0px 5px;
  width: 240px;
}

.content .form textarea {
  height: 74px;
  padding: 5px;
  width: 240px;
  overflow: auto;
}

.content .form input[type='checkbox'], .content .form input[type='radio'] {
  width: 14px;
  height: 14px;
  margin: 0;
  vertical-align: top;
  margin-top: 2px;
  padding: 0;
}

.content .form {
  display: block;
  overflow: visible;
}

.content .form h3 {
  text-align: right;
  padding: 0;
  margin: 15px 0;
  width: 40%;
}

.content .form p {
  display: block;
  width: 100%;
  padding: 5px 0;
  line-height: 26px;
  vertical-align: middle;
  margin-bottom: 1px;
  position: relative;
}

.content .form p:after {
  content: '\200B';
  visibility: hidden;
  height: 0;
  display: block;
  width: 100%;
  clear: both;
}

.content .form p.odd2 {
  background: #f7f9f8;
}

.content .form p.highlight {
  background: #e7edf1;
}

.content .form p span {
  float: left;
  margin: 0 10px 0 0;
}

.content .form p span input {
  display: inline;
  float: none;
  margin: 0;
}

.content .form select {
  margin: 2px 0 0;
}

.content .form label {
  width: 40%;
  font-size: 12px;
  float: left;
  text-align: right;
  margin: 5px 10px 0 0;
  line-height: 18px;
}

.content .form span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}

.content .form label em {
  color: red;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}

.content .form input.date-pick {
  width: 65px;
  float: left;
}

.content .form a.dp-choose-date {
  float: left;
  position: static;
  margin: 7px 0 0 6px;
}

.content .form span.group label {
  display: block;
}

.content .form span.group label input {
  margin-right: .4em;
}

.content .form .controls p {
  padding: 20px 0 0 40%;
  background: none;
}

.content .form .controls input {
  margin-left: 10px;
}

.content .form .formError {
  line-height: 18px;
}

.leadership {
  text-align: center;
}
.leadership section {
  margin-bottom: 40px;
}
.leadership section > header {
  position: relative;
  height: 30px;
  line-height: 30px;
  margin: 0 0 20px;
  font-weight: 700;
}
.leadership section > header:after, .leadership section > header:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: #5f5f5f;
  width: 50%;
  left: 0;
  z-index: 0;
}
.leadership section > header:after {
  left: auto;
  right: 0;
}
.leadership section > header span {
  display: inline-block;
  padding: 0 21px;
  background: #d1b090;
  position: relative;
  z-index: 1;
}
.leadership section article {
  display: inline-block;
  margin: 0 5px 3px;
  width: 110px;
  vertical-align: top;
}
.leadership section article a {
  text-decoration: none;
  font-size: 12px;
}
.leadership section article p {
  margin: 0;
}
.leadership section article p a {
  color: #999;
  font-size: 10px;
}
.leadership section .thumbnail {
  width: 90px;
  float: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  box-shadow: 1px 2px 3px #999999;
  border: solid 1px #999;
  margin-bottom: 6px;
  font-size: 0;
}
.leadership section .thumbnail img {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.leadership section.not-ceo .thumbnail {
  width: 55px;
}

.employee-thumbnail {
  float: right;
  margin: 0 3px 10px 10px;
  border: solid 1px #999;
  box-shadow: 2px 3px 0 0 rgba(0, 0, 0, 0.15);
}

.employee-content {
  width: 960px;
}

/* Hotel Portfolio */
#hotel-portfolio {
  height: 500px;
  margin-bottom: 20px;
}

#hotel-portfolio + h3 {
  text-align: center;
  margin-bottom: 15px;
  line-height: 35px;
  border-bottom: 1px dotted #b3b3b3;
}

.dataTable {
  width: 100% !important;
}

#portfolio-index {
  width: 100%;
}
#portfolio-index thead tr {
  text-align: left;
}

#portfolio-index .item:first-child {
  border: none;
}

#portfolio-index .item {
  padding: 10px 0;
  border-top: 1px dotted #B3B3B3;
  overflow: hidden;
}

#portfolio-index a.target {
  cursor: pointer;
}

#portfolio-index a.active {
  color: #B89C73;
}

#portfolio-index_wrapper {
  position: relative;
  padding-bottom: 30px;
}

#portfolio-index_wrapper .top {
  overflow: hidden;
  padding: 20px;
  background: #f7f9f8;
  margin-bottom: 10px;
}
#portfolio-index_wrapper .top input[type="text"] {
  border: 1px solid #cfc3ad;
  background: #f9f8f3;
  height: 22px;
  padding: 0 10px;
  font: 12px/14px "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #837f80;
  resize: none;
  box-shadow: inset 0 0 10px 3px #e7dac5, 2px 3px 0 rgba(201, 178, 141, 0.28);
  resize: none;
}
#portfolio-index_wrapper .top input[type="text"]:hover {
  background: #fcfcf7;
  box-shadow: inset 0 0 10px 3px rgba(231, 218, 197, 0.7), 2px 3px 1px rgba(201, 178, 141, 0.2);
}

#portfolio-index_wrapper .bottom {
  position: relative;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
}
#portfolio-index_wrapper .bottom .paginate_enabled_previous, #portfolio-index_wrapper .bottom .paginate_enabled_next, #portfolio-index_wrapper .bottom .paginate_disabled_previous, #portfolio-index_wrapper .bottom .paginate_disabled_next {
  text-indent: -9999em;
  font-size: 0;
  width: 12px;
  height: 18px;
  padding: 0;
  margin: 0;
  top: 5px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 0 no-repeat;
}
.no-svg #portfolio-index_wrapper .bottom .paginate_enabled_previous, .no-svg #portfolio-index_wrapper .bottom .paginate_enabled_next, .no-svg #portfolio-index_wrapper .bottom .paginate_disabled_previous, .no-svg #portfolio-index_wrapper .bottom .paginate_disabled_next {
  background-image: url("../images/sprite.png");
}
#portfolio-index_wrapper .bottom .paginate_enabled_previous {
  background-position: -290px -162px;
}
#portfolio-index_wrapper .bottom .paginate_enabled_previous:hover {
  background-position: -335px -162px;
}
#portfolio-index_wrapper .bottom .paginate_enabled_next {
  background-position: -314px -162px;
}
#portfolio-index_wrapper .bottom .paginate_enabled_next:hover {
  background-position: -360px -162px;
}

.dataTables_paginate {
  position: absolute;
  top: 0;
  width: 100%;
}

.dataTables_paginate a {
  cursor: pointer;
  right: 0;
  position: absolute;
}

.dataTables_paginate a:first-child {
  right: auto;
  left: 0;
}

.dataTables_info {
  text-align: center;
}

#portfolio-index th {
  cursor: pointer;
  color: #b89c73;
  text-align: left;
}

#portfolio-index th.sorting_asc, #portfolio-index th.sorting_desc {
  position: relative;
}
#portfolio-index th.sorting_asc:after, #portfolio-index th.sorting_desc:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #837f80;
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  top: 17px;
  height: 0;
  width: 0;
}

#portfolio-index th.sorting_desc::after {
  border-top: 0;
  border-bottom: 4px solid #837f80;
}

#portfolio-index_length {
  float: left;
}

#portfolio-index_filter {
  float: right;
}

#brandFilter {
  overflow: hidden;
}
#brandFilter h3 {
  margin-bottom: 10px;
}
#brandFilter fieldset {
  float: left;
  width: 320px;
  margin-bottom: 15px;
  background: #f7f9f8;
  padding: 20px;
}
#brandFilter fieldset label {
  display: block;
  float: left;
  line-height: 1.5;
  width: 240px;
}
#brandFilter fieldset#byBrand {
  width: 300px;
  margin-right: 20px;
}

/* Small gallery grid */
.small-gallery {
  float: left;
  margin: 0 25px 15px 25px;
  width: 130px;
  text-align: center;
  padding-bottom: 15px;
}
.small-gallery dt a {
  overflow: hidden;
  display: block;
  background: url("../images/loading.gif") 50% 50% no-repeat;
  padding: 5px;
  border: 1px solid #CCCCCC;
  width: 115px;
  margin: 0 auto;
  height: 90px;
}
.small-gallery dt a:hover {
  border: 1px solid #001932;
}
.small-gallery dt a img {
  display: block;
}
.small-gallery dd {
  height: 60px;
  margin: 5px 10px 5px 10px;
  line-height: 14px;
}
.small-gallery dd a {
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  color: #001932;
  text-decoration: none;
}
.small-gallery dd a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 1400px) {
  #header {
    width: 1400px;
  }

  .pagesmenu {
    padding-left: 400px;
    width: 1000px;
  }
  .pagesmenu article a {
    width: 200px;
  }
  .pagesmenu article.job {
    width: 200px;
  }
  .pagesmenu article.job a {
    width: 140px;
  }

  .home #photos {
    height: 580px;
  }
  .home #photos .slideshow .wrapper {
    margin-top: 135px;
    width: 1400px;
  }
  .home #photos .slideshow .wrapper .shadowline {
    left: 66%;
  }
  .home #photos .slideshow .wrapper .shadowline-2 {
    left: 46%;
  }

  #photos {
    margin-left: -300px;
    width: 1000px;
    height: 460px;
  }
  #photos .slideshow figure {
    width: 1000px;
    height: 460px;
  }
  #photos .slideshow figure figcaption {
    max-width: 940px;
  }

  #heading h4 {
    width: 1400px;
  }

  #sidebar {
    width: 336px;
    margin: -15px 64px 0 0;
  }

  #twitterfeed {
    position: absolute;
    top: 698px;
    width: 400px;
    height: 126px;
    background: #f3f5f6;
  }
  #twitterfeed:before {
    content: '';
    position: absolute;
    width: 200%;
    left: -200%;
    top: 0;
    height: 126px;
    background: #f3f5f6;
  }
  #twitterfeed h4 {
    border: none;
    line-height: 25px;
    margin-top: 14px;
  }
  #twitterfeed .tweets {
    background-color: #f3f5f6;
    margin-top: 1px;
    padding: 0;
    height: 70px;
    overflow: hidden;
  }
  #twitterfeed .tweets .bx-controls {
    position: absolute;
    right: 34px;
    top: 24px;
    overflow: visible;
  }
  #twitterfeed .tweets .bx-controls .bx-pager {
    height: 12px;
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item {
    display: inline-block;
    margin-right: 3px;
    height: 12px;
    vertical-align: top;
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a {
    background: url("../images/sprite.svg") -110px -215px no-repeat;
    font-size: 0;
    width: 7px;
    height: 7px;
    margin: 0;
    vertical-align: top;
  }
  .no-svg #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a {
    background-image: url("../images/sprite.png");
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a:hover, #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a.active {
    background-position: -100px -215px;
  }
  #twitterfeed .tweets .bx-controls .bx-next, #twitterfeed .tweets .bx-controls .bx-prev {
    background: url("../images/sprite.svg") 0 0 no-repeat;
    text-indent: -99999em;
    width: 8px;
    height: 12px;
    padding: 0;
    position: absolute;
    top: -2px;
    left: -16px;
  }
  .no-svg #twitterfeed .tweets .bx-controls .bx-next, .no-svg #twitterfeed .tweets .bx-controls .bx-prev {
    background-image: url("../images/sprite.png");
  }
  #twitterfeed .tweets .bx-controls .bx-next {
    background-position: -70px -215px;
    right: -13px;
    left: auto;
  }
  #twitterfeed .tweets .bx-controls .bx-next:hover {
    background-position: -90px -215px;
  }
  #twitterfeed .tweets .bx-controls .bx-next:active {
    right: -14px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev {
    background-position: -60px -215px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev:hover {
    background-position: -80px -215px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev:active {
    left: -17px;
  }
  #twitterfeed .tweets .tweet_list.source {
    display: none;
  }
  #twitterfeed .tweets .tweet_list.source + .bx-wrapper {
    display: block;
  }
  #twitterfeed .tweets .tweet_list li {
    float: left;
    width: 170px !important;
    padding-right: 30px;
    padding-left: 0;
    margin-bottom: 0;
  }
  #twitterfeed .tweets .tweet_list p span {
    height: 53px;
    overflow: hidden;
  }

  .rightsidebar {
    float: left;
    width: 380px;
    margin: 4px 20px 20px 0;
  }
  .rightsidebar #careersbar {
    margin-bottom: 54px;
  }
  .rightsidebar #careersbar ul li {
    width: 150px;
    float: left;
  }

  #content-area {
    width: 1400px;
  }

  html {
    min-width: 1400px;
    overflow-x: hidden;
  }

  .content {
    width: 800px;
  }
  .content h1 {
    font-size: 24px;
    margin-bottom: 19px;
    margin-top: 1px;
    line-height: 58px;
  }

  #latestnews {
    width: 1400px;
    margin-left: 0;
    clear: both;
    min-height: 220px;
  }
  #latestnews article.pressroom-home {
    width: 447px;
    margin: 0 0 0 20px;
    float: left;
    display: block;
    padding: 0;
    border-top: 0;
  }
  #latestnews article.pressroom-home.first {
    margin-left: 0;
  }

  #photos + #content-area .content {
    margin-top: 408px;
  }

  .titles a.employee {
    width: 123px !important;
  }
  .titles #bruce-white {
    margin-left: 135px;
  }

  #brandFilter fieldset {
    width: 360px;
  }
  #brandFilter fieldset#byBrand {
    width: 340px;
  }

  .small-gallery {
    margin: 0 15px 15px 15px;
  }

  #footer {
    padding-top: 24px;
  }
  #footer #footer-menu-support.wrapper {
    width: 200px;
    left: 50%;
    margin-left: -700px;
    position: absolute;
  }
  #footer #footer-menu-support.wrapper ul li {
    display: block;
    float: none;
    margin: 0;
  }
  #footer #footer-menu-support.wrapper ul li a {
    line-height: 24px;
  }
  #footer .footerinfo .wrapper {
    width: 1400px;
  }

  .content .pressroom-entry {
    width: 390px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1019px) {
  body {
    color: #5e6868;
    font: 17px/1.5 'Arial', sans-serif;
    overflow: hidden;
  }

  .wrapper {
    width: 100%;
  }

  .longline {
    display: none;
  }

  #header {
    width: 100%;
  }
  #header #logo {
    height: 36px;
    top: 16px;
    left: 20px;
    width: 248px;
  }
  #header #logo:after {
    background-position: -250px 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #header .socials {
    right: 20px;
  }
  #header .socials li a {
    height: 37px;
    margin-left: 11px;
    width: 36px;
  }
  #header .socials li .pinterest {
    background-position: -385px -51px;
  }
  #header .socials li .linkedin {
    background-position: -340px -51px;
  }
  #header .socials li .facebook {
    background-position: -250px -51px;
  }
  #header .socials li .twitter {
    background-position: -296px -51px;
  }

  .main-menu-wrapper {
    height: 43px;
    top: auto;
    bottom: 0;
    width: 100%;
  }
  .main-menu-wrapper #main-menu {
    height: 43px;
  }
  .main-menu-wrapper #main-menu > * {
    vertical-align: top;
  }
  .main-menu-wrapper #main-menu ul > li > a {
    font: 500 17px 'Open Sans WF';
    line-height: 43px;
  }
  .main-menu-wrapper #main-menu ul ul {
    left: -20px;
    width: 250px;
  }
  .main-menu-wrapper #main-menu ul ul li a {
    display: block;
    float: none;
    line-height: 1.5;
    padding: 0 20px !important;
    white-space: normal;
  }
  .main-menu-wrapper a {
    padding: 0 20px 0 0 !important;
  }
  .main-menu-wrapper ul li:first-child a {
    padding-left: 20px !important;
  }

  .pagesmenu {
    position: relative;
    height: 252px;
    margin: 0;
    width: 102%;
  }
  .pagesmenu article {
    width: 33%;
  }
  .pagesmenu article a {
    font-size: 24px;
    line-height: 1;
    padding: 0;
    width: 100%;
    white-space: normal;
  }
  .pagesmenu article a h3 {
    width: 230px;
  }
  .pagesmenu article.job {
    height: auto;
    position: relative;
    top: auto;
    text-align: center;
    width: 33%;
  }
  .pagesmenu article.job a {
    background-color: #a7aeb2;
    font-size: 18px;
    height: 86px;
    width: 100%;
    margin: 0;
    padding: 40px 0 0;
  }
  .pagesmenu article.job a:hover {
    background-color: #b6bec3;
    color: #fff;
  }
  .pagesmenu article.job:after {
    background: url("../images/sprite.svg") -194px -80px no-repeat;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -19px;
    top: 30px;
    width: 38px;
    height: 36px;
  }
  .no-svg .pagesmenu article.job:after {
    background-image: url("../images/sprite.png");
  }

  #photos {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 0;
    height: 304px !important;
    width: 100%;
  }
  #photos .slideshow figure {
    text-align: right;
    width: 100%;
  }
  #photos .slideshow figure:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
    /* Adjusts for spacing */
  }
  #photos .slideshow figure a {
    position: absolute;
    top: 0;
    left: 0;
  }
  #photos .slideshow figure figcaption {
    max-width: 85%;
  }
  #photos .slideshow figure .wrapper {
    display: inline-block;
    vertical-align: middle;
    width: 580px;
  }
  #photos .slideshow figure .wrapper .shadowline {
    display: none;
  }
  #photos .slideshow figure .wrapper .shadowline-2 {
    display: none;
  }
  #photos .slideshow figure .wrapper h1,
  #photos .slideshow figure .wrapper span {
    display: block;
    position: relative !important;
    top: auto !important;
    right: 0 !important;
    white-space: normal !important;
    text-overflow: none !important;
    margin-bottom: 0;
    padding-right: 125px;
  }
  #photos .slideshow figure .wrapper h1 {
    overflow: visible !important;
    position: relative;
  }
  #photos .slideshow figure .wrapper h1:after {
    background: url(../images/shadowline.png) 0 0 no-repeat;
    bottom: 11px;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 33px;
    z-index: -1;
  }
  #photos .bodywrapper {
    display: none;
  }

  #photos .bx-controls a.bx-prev, #photos .bx-controls a.bx-next {
    background-position: -310px -90px;
    height: 57px;
    width: 57px;
    margin-top: -29px;
  }
  #photos .bx-controls a.bx-prev:hover, #photos .bx-controls a.bx-next:hover {
    background-position: -430px -90px;
  }
  #photos .bx-controls a.bx-next {
    background-position: -250px -90px;
  }
  #photos .bx-controls a.bx-next:hover {
    background-position: -370px -90px;
  }

  #sidebar {
    float: none;
    margin: 0;
    min-height: 0;
    width: 100%;
  }

  #quote {
    margin: 0;
    padding: 20px 20px 0;
  }
  #quote dl {
    text-align: right;
  }

  .submenu {
    display: none;
    margin-top: 0;
  }
  .submenu ul {
    padding: 20px;
  }
  .submenu ul li {
    display: inline-block;
    margin: 0 20px 0 0;
    vertical-align: top;
  }
  .submenu ul li a {
    padding-left: 0;
  }
  .submenu ul li a:after {
    display: none;
  }
  .submenu > ul > li > a {
    text-transform: uppercase;
  }

  #double-sidebar {
    display: block;
  }
  #double-sidebar ul {
    padding: 20px 20px 10px;
  }
  #double-sidebar .sub-submenu {
    padding: 0 20px;
  }
  #double-sidebar .sub-submenu a {
    font-size: 11px;
    text-transform: none;
  }

  #heading {
    margin-bottom: 0;
    overflow: hidden;
    padding: 0 20px;
  }

  aside h4 {
    font: 22px/56px 'Open Sans WF', sans-serif;
    margin: 0;
    padding: 0;
  }

  .home .rightsidebar {
    display: none;
  }
  .home .rightsidebar.clone {
    display: block;
    overflow: hidden;
    border-top: 1px dotted #b3b3b3;
  }

  #twitterfeed,
  .rightsidebar {
    float: none;
    margin: 0;
    width: 100%;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #twitterfeed p,
  .rightsidebar p {
    font-size: 15px;
    line-height: 1.5;
  }

  #twitterfeed {
    background-color: #f3f5f6;
    overflow: hidden;
  }
  #twitterfeed h4 {
    border-bottom: 0;
    float: left;
    line-height: 26px;
    margin-top: 0;
    padding: 26px 50px 0 20px;
    width: 186px;
  }
  #twitterfeed .tweets {
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    height: 150px;
    width: 490px;
  }
  #twitterfeed .tweets .bx-controls {
    position: absolute;
    left: 49px;
    bottom: 31px;
    overflow: visible;
  }
  #twitterfeed .tweets .bx-controls .bx-pager {
    height: 12px;
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item {
    display: inline-block;
    margin-right: 10px;
    height: 12px;
    vertical-align: top;
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a {
    background: url("../images/sprite.svg") -380px -165px no-repeat;
    font-size: 0;
    width: 9px;
    height: 9px;
    margin: 0;
    vertical-align: top;
  }
  .no-svg #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a {
    background-image: url("../images/sprite.png");
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a:hover, #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a.active {
    background-position: -400px -165px;
  }
  #twitterfeed .tweets .bx-controls .bx-next, #twitterfeed .tweets .bx-controls .bx-prev {
    background: url("../images/sprite.svg") 0 0 no-repeat;
    text-indent: -99999em;
    width: 10px;
    height: 17px;
    padding: 0;
    position: absolute;
    top: -3px;
    left: -30px;
  }
  .no-svg #twitterfeed .tweets .bx-controls .bx-next, .no-svg #twitterfeed .tweets .bx-controls .bx-prev {
    background-image: url("../images/sprite.png");
  }
  #twitterfeed .tweets .bx-controls .bx-next {
    background-position: -314px -162px;
    right: -22px;
    left: auto;
  }
  #twitterfeed .tweets .bx-controls .bx-next:hover {
    background-position: -360px -162px;
  }
  #twitterfeed .tweets .bx-controls .bx-next:active {
    right: -23px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev {
    background-position: -290px -162px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev:hover {
    background-position: -335px -162px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev:active {
    left: -31px;
  }
  #twitterfeed .tweets .tweet_list {
    overflow: hidden;
    width: auto;
  }
  #twitterfeed .tweets .tweet_list.source {
    display: none;
  }
  #twitterfeed .tweets .tweet_list.source + .bx-wrapper {
    display: block;
  }
  #twitterfeed .tweets .tweet_list li {
    float: left;
    padding-left: 0;
    padding-right: 20px;
    margin-top: 22px;
    width: 236px !important;
    height: 110px;
  }
  #twitterfeed .tweets .tweet_list li a, #twitterfeed .tweets .tweet_list li p {
    line-height: 16px;
    font-size: 14px;
    margin-top: -3px;
  }

  #careersbar {
    float: left;
    width: 50%;
  }
  #careersbar ul li:after {
    top: 10px;
  }
  #careersbar ul li a {
    font-size: 17px;
  }
  #careersbar h4 {
    padding-left: 20px;
  }
  #careersbar p, #careersbar ul {
    margin-left: 20px;
  }

  #stayconnected {
    clear: none;
    padding-left: 20px;
    overflow: hidden;
  }
  #stayconnected a.button {
    font-size: 17px;
    height: 42px;
    line-height: 42px;
    width: 344px;
  }
  #stayconnected > * {
    padding-right: 20px;
  }

  #content-area {
    width: 100%;
  }
  #content-area .content {
    overflow: hidden;
    margin-top: 0 !important;
  }
  .home #content-area .content {
    display: none;
  }
  .home #content-area .content.clone {
    display: block;
  }
  #content-area .content ul li:after {
    top: 10px;
  }

  #fancybox-content > div {
    width: 100% !important;
  }

  .content h1 {
    line-height: 1;
    padding: 20px;
  }

  h1, h2, h3 {
    font: 28px 'Open Sans WF', sans-serif;
  }

  h2 {
    font-size: 24px;
  }

  .content h3 {
    color: #002a54;
    font-size: 18px;
  }

  .content,
  #latestnews {
    margin: 0;
    width: 100%;
  }
  .content > *,
  #latestnews > * {
    padding: 0 20px;
  }

  #latestnews {
    position: relative;
    clear: both;
  }
  #latestnews .bx-wrapper {
    margin: 30px 40px;
  }
  #latestnews h4 {
    font: 22px 'Open Sans WF', sans-serif;
    line-height: 56px;
  }
  #latestnews .slideshow.source {
    display: none;
  }
  #latestnews .slideshow.source + .bx-wrapper {
    display: block;
  }
  #latestnews .bx-controls .bx-pager {
    display: none;
  }
  #latestnews .bx-controls .bx-next, #latestnews .bx-controls .bx-prev {
    background: url("../images/sprite.svg") 0 0 no-repeat;
    text-indent: -99999em;
    width: 13px;
    height: 23px;
    padding: 0;
    position: absolute;
    top: 138px;
    left: 20px;
  }
  .no-svg #latestnews .bx-controls .bx-next, .no-svg #latestnews .bx-controls .bx-prev {
    background-image: url("../images/sprite.png");
  }
  #latestnews .bx-controls .bx-next {
    background-position: -435px -160px;
    right: 20px;
    left: auto;
  }
  #latestnews .bx-controls .bx-next:hover {
    background-position: -475px -160px;
  }
  #latestnews .bx-controls .bx-next:active {
    right: 19px;
  }
  #latestnews .bx-controls .bx-prev {
    background-position: -415px -160px;
  }
  #latestnews .bx-controls .bx-prev:hover {
    background-position: -455px -160px;
  }
  #latestnews .bx-controls .bx-prev:active {
    left: 19px;
  }
  #latestnews .pressroom-home {
    margin: 0;
    padding: 0;
    border: 0;
    height: 125px;
  }
  #latestnews .pressroom-home nav a.pdf {
    display: inline-block;
    font-size: 12px;
    line-height: 28px;
    padding-left: 30px;
    vertical-align: top;
  }
  #latestnews .pressroom-home nav a.pdf:after {
    background-color: #919191;
    background-position: -250px -160px;
    height: 28px;
    width: 24px;
    top: 0;
    -webkit-transition: background-color .5s ease-in;
            transition: background-color .5s ease-in;
  }
  #latestnews .pressroom-home nav a.pdf:hover:after {
    background-position: -250px -160px;
    background-color: #E35367;
  }
  #latestnews .pressroom-home nav span {
    font-size: 12px;
  }
  #latestnews .pressroom-home .time {
    font: italic 14px Arial;
    margin-bottom: 10px;
  }
  #latestnews .pressroom-home h3 {
    font-size: 17px;
    text-transform: uppercase;
  }
  #latestnews .pressroom-home p {
    color: #5e6868;
    font-size: 14px;
    margin-bottom: 10px;
  }
  #latestnews .pressroom-home.first {
    border-top: 0;
    padding-top: 0;
    margin: 0;
  }

  #footer {
    padding: 10px 20px 95px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #footer #footer-menu-support {
    margin-bottom: 0;
    text-align: justify;
    text-align-last: justify;
    width: 100%;
  }
  #footer #footer-menu-support * {
    display: inline;
  }
  #footer #footer-menu-support:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  #footer #footer-menu-support ul li {
    display: inline-block !important;
    float: none;
    margin: 0 !important;
  }
  #footer #footer-menu-support ul li a {
    font: 500 14px 'Open Sans WF';
    text-transform: none;
  }
  #footer #footer-menu > ul > li a {
    font: 500 17px 'Open Sans WF';
  }
  #footer #footer-menu > ul > li ul {
    display: none;
  }
  #footer .footerinfo {
    height: 100px;
  }
  #footer .footerinfo .wrapper {
    padding: 25px 20px 20px 20px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #footer .footerinfo .wrapper small {
    display: block;
    float: none;
    font-size: 14px;
  }
  #footer .footerinfo .wrapper small.credits {
    font-size: 13px;
    margin-top: 10px;
    float: none;
  }
  #footer .footerinfo .wrapper small.copyright {
    float: none;
  }

  .employees {
    overflow: visible;
    height: auto !important;
    margin-top: 0;
    text-align: center;
  }
  .employees a.employee {
    display: inline-block;
    height: auto;
    float: none;
    margin: 0 0 10px !important;
    text-align: center;
    vertical-align: top;
    padding: 0;
  }
  .employees a.employee img, .employees a.employee .note {
    display: inline-block;
  }
  .employees #yiankes-team .teamDivMembers,
  .employees #sibley-team .teamDivMembers {
    background-position: 50% 0;
    padding-top: 40px;
    margin-top: 20px;
  }
  .employees #burrnell-team .teamDivMembers {
    padding-top: 40px;
  }
  .employees #sibley-team .teamDivMembers {
    height: auto;
  }

  .small-gallery dd a {
    font-size: 12px;
  }

  #brandFilter fieldset {
    float: left;
    width: 50%;
    margin-bottom: 20px;
    background: none;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #brandFilter fieldset label {
    float: none;
    line-height: 1.5;
    width: 100%;
  }
  #brandFilter fieldset#byBrand {
    margin-right: 0;
    width: 50%;
  }

  .content #pressroom {
    font-size: 14px;
    margin: 0;
  }
  .content #pressroom #categories-list {
    margin: 0;
  }
  .content #pressroom #categories-list li {
    padding: 0;
  }
  .content #pressroom .pressroom-entry {
    height: 450px;
    margin: 20px 20px 0 0;
    width: 30%;
  }
  .content #pressroom .pressroom-entry p {
    font-size: 14px;
  }
  .content #pressroom .pressroom-entry .time {
    font-style: italic;
    font-size: 14px;
  }
  .content #pressroom a.loadmore {
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (min-width: 0) and (max-width: 759px) {
  .scroller-helper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  }

  #fancybox-content > div {
    width: 100% !important;
  }

  #share-this-site {
    width: auto;
  }

  body {
    color: #5e6868;
    font: 13px/1.5 'Arial', sans-serif;
  }

  .wrapper {
    width: 100%;
  }

  .longline {
    display: none;
  }

  #header {
    width: 100%;
  }
  #header #logo {
    height: 36px;
    top: 16px;
    left: 20px;
    width: 248px;
  }
  #header #logo:after {
    background-position: -250px 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  .socials {
    display: none;
    right: 20px;
  }
  .socials li a {
    height: 36px;
    margin-left: 11px;
    width: 35px;
  }
  .socials li .pinterest {
    background-position: -386px -51px;
  }
  .socials li .linkedin {
    background-position: -341px -51px;
  }
  .socials li .facebook {
    background-position: -251px -51px;
  }
  .socials li .twitter {
    background-position: -296px -51px;
  }
  #content-area + .socials {
    display: block;
    position: relative;
    text-align: center;
    right: auto;
    left: auto;
    top: auto;
    margin-bottom: 20px;
  }
  #content-area + .socials li {
    float: none;
    display: inline-block;
  }

  .main-menu-wrapper {
    height: 43px;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .main-menu-wrapper #main-menu {
    height: 43px;
    width: 700px;
    min-width: 100%;
  }
  .main-menu-wrapper #main-menu > * {
    vertical-align: top;
  }
  .main-menu-wrapper #main-menu ul > li > a {
    font: 500 17px 'Open Sans WF';
    line-height: 43px;
  }
  .main-menu-wrapper #main-menu ul ul {
    display: none !important;
    left: -20px;
    width: 250px;
  }
  .main-menu-wrapper #main-menu ul ul li a {
    display: block;
    float: none;
    line-height: 1.5;
    padding: 0 20px !important;
    white-space: normal;
  }
  .main-menu-wrapper a {
    padding: 0 20px 0 0 !important;
  }
  .main-menu-wrapper ul li:first-child a {
    padding-left: 20px !important;
  }

  .pagesmenu {
    position: relative;
    height: 126px;
    margin: 0;
  }
  .pagesmenu .pages-menu-wrapper {
    width: 100%;
    overflow: hidden;
  }
  .pagesmenu .pages-menu-wrapper .scroller {
    width: 1220px;
  }
  .pagesmenu article {
    width: 244px;
  }
  .pagesmenu article a {
    font-size: 24px;
    line-height: 1;
    padding: 0;
    width: 100%;
    white-space: normal;
  }
  .pagesmenu article a h3 {
    width: 230px;
  }
  .pagesmenu article.job {
    height: 33px;
    position: absolute;
    top: -33px;
    left: 0;
    overflow: visible;
    text-align: center;
    width: 100%;
  }
  .pagesmenu article.job a {
    background-color: #a7aeb2;
    font-size: 18px;
    height: 33px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .pagesmenu article.job a:hover {
    background-color: #b6bec3;
    color: #fff;
  }
  .pagesmenu article.job:after {
    background: url("../images/sprite.svg") -194px -80px no-repeat;
    content: '';
    position: absolute;
    left: 0;
    margin-left: 0;
    top: auto;
    bottom: 0;
    width: 38px;
    height: 36px;
  }
  .no-svg .pagesmenu article.job:after {
    background-image: url("../images/sprite.png");
  }

  #photos {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 0;
    height: 304px !important;
    width: 100%;
  }
  #photos .slideshow figure {
    text-align: right;
    width: 100%;
  }
  #photos .slideshow figure:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
    /* Adjusts for spacing */
  }
  #photos .slideshow figure a {
    position: absolute;
    top: 0;
    left: 0;
  }
  #photos .slideshow figure figcaption {
    max-width: 85%;
  }
  #photos .slideshow figure .wrapper {
    display: none;
  }

  #photos .bx-controls a.bx-prev, #photos .bx-controls a.bx-next {
    background-position: -310px -90px;
    height: 57px;
    width: 57px;
    margin-top: -29px;
    text-indent: -99999em;
    font-size: 0;
  }
  #photos .bx-controls a.bx-prev:hover, #photos .bx-controls a.bx-next:hover {
    background-position: -430px -90px;
  }
  #photos .bx-controls a.bx-next {
    background-position: -250px -90px;
  }
  #photos .bx-controls a.bx-next:hover {
    background-position: -370px -90px;
  }

  #sidebar {
    float: none;
    margin: 0;
    min-height: 0;
    width: 100%;
  }

  #quote {
    margin: 0;
    padding: 20px 20px 0;
  }
  #quote dl {
    text-align: right;
  }

  .submenu {
    display: none;
    margin-top: 0;
  }
  .submenu ul {
    padding: 20px;
  }
  .submenu ul li {
    display: inline-block;
    margin: 0 20px 0 0;
    vertical-align: top;
  }
  .submenu ul li a {
    padding-left: 0;
  }
  .submenu ul li a:after {
    display: none;
  }
  .submenu > ul > li > a {
    text-transform: uppercase;
  }

  #double-sidebar {
    display: block;
  }
  #double-sidebar ul {
    padding: 20px 20px 10px;
  }
  #double-sidebar .sub-submenu {
    padding: 0 20px;
  }
  #double-sidebar .sub-submenu a {
    font-size: 11px;
    text-transform: none;
  }

  #heading {
    margin-bottom: 0;
    overflow: hidden;
    padding: 0 20px;
  }

  aside h4 {
    border-bottom: 0;
    font: 22px/56px 'Open Sans WF', sans-serif;
    margin: 0;
    padding: 0;
  }

  .home .rightsidebar {
    display: none;
  }
  .home .rightsidebar.clone {
    display: block;
    overflow: hidden;
  }

  #twitterfeed,
  .rightsidebar {
    float: none;
    margin: 0;
    width: 100%;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #twitterfeed p,
  .rightsidebar p {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 0;
  }

  #twitterfeed {
    border-bottom: 1px dotted #b3b3b3;
    overflow: hidden;
  }
  #twitterfeed h4 {
    border-bottom: 0;
    line-height: 1;
    margin-top: 0;
    padding: 17px 20px;
    width: 100%;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    cursor: pointer;
  }
  #twitterfeed.expanded .bx-controls {
    bottom: 23px !important;
  }
  #twitterfeed .tweets {
    background: none;
    overflow: hidden;
    padding: 0 20px 63px;
  }
  #twitterfeed .tweets .tweet_list {
    overflow: hidden;
    width: auto;
  }
  #twitterfeed .tweets .tweet_list.source {
    display: none;
  }
  #twitterfeed .tweets .tweet_list.source + .bx-wrapper {
    display: block;
  }
  #twitterfeed .tweets .tweet_list li {
    float: none;
    padding: 0;
    width: 100%;
  }
  #twitterfeed .tweets .tweet_list li a, #twitterfeed .tweets .tweet_list li p {
    line-height: 1.5;
    font-size: 12px;
  }
  #twitterfeed .tweets .bx-controls {
    position: absolute;
    left: 50%;
    margin-left: -38px;
    bottom: -40px;
    overflow: visible;
    -webkit-transition: bottom 500ms linear;
            transition: bottom 500ms linear;
  }
  #twitterfeed .tweets .bx-controls .bx-pager {
    height: 12px;
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item {
    display: inline-block;
    margin-right: 10px;
    height: 12px;
    vertical-align: top;
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a {
    background: url("../images/sprite.svg") -380px -165px no-repeat;
    font-size: 0;
    width: 9px;
    height: 9px;
    margin: 0;
    vertical-align: top;
  }
  .no-svg #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a {
    background-image: url("../images/sprite.png");
  }
  #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a:hover, #twitterfeed .tweets .bx-controls .bx-pager .bx-pager-item a.active {
    background-position: -400px -165px;
  }
  #twitterfeed .tweets .bx-controls .bx-next, #twitterfeed .tweets .bx-controls .bx-prev {
    background: url("../images/sprite.svg") 0 0 no-repeat;
    text-indent: -99999em;
    width: 10px;
    height: 17px;
    padding: 0;
    position: absolute;
    top: -3px;
    left: -30px;
  }
  .no-svg #twitterfeed .tweets .bx-controls .bx-next, .no-svg #twitterfeed .tweets .bx-controls .bx-prev {
    background-image: url("../images/sprite.png");
  }
  #twitterfeed .tweets .bx-controls .bx-next {
    background-position: -314px -162px;
    right: -22px;
    left: auto;
  }
  #twitterfeed .tweets .bx-controls .bx-next:hover {
    background-position: -360px -162px;
  }
  #twitterfeed .tweets .bx-controls .bx-next:active {
    right: -23px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev {
    background-position: -290px -162px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev:hover {
    background-position: -335px -162px;
  }
  #twitterfeed .tweets .bx-controls .bx-prev:active {
    left: -31px;
  }

  #careersbar {
    border-bottom: 1px dotted #b3b3b3;
    float: none;
    margin-bottom: 0;
    width: 100%;
  }
  #careersbar ul {
    padding: 10px 20px 20px;
  }
  #careersbar ul li:after {
    top: 10px;
  }
  #careersbar ul li a {
    font-size: 15px;
  }
  #careersbar h4 {
    margin-bottom: 0;
    padding-left: 20px;
    cursor: pointer;
  }
  #careersbar > * {
    padding: 0 20px;
  }

  #stayconnected {
    clear: none;
    padding: 0 20px;
    overflow: hidden;
    border-bottom: 1px dotted #b3b3b3;
  }
  #stayconnected h4 {
    cursor: pointer;
  }
  #stayconnected a.button {
    font-size: 14px;
    height: 42px;
    line-height: 42px;
    width: 100%;
    margin-bottom: 20px;
  }
  #stayconnected > * {
    padding-right: 20px;
  }

  #content-area {
    margin-bottom: 20px;
    width: 100%;
  }
  #content-area .content {
    margin-top: 0 !important;
  }
  .home #content-area .content {
    display: none;
  }
  .home #content-area .content.clone {
    display: block;
  }

  .content img {
    width: 100%;
    height: auto;
  }

  .content h1 {
    line-height: 1;
    padding: 20px;
  }

  h1, h2, h3 {
    font: 500 20px 'Open Sans WF', sans-serif;
  }

  h2 {
    font-size: 20px;
    font-weight: 400;
  }

  .content h3 {
    color: #002a54;
    font-size: 16px;
    font-weight: 400;
  }

  .content .form a.dp-choose-date {
    margin-left: -20px;
  }

  .content .likebuttons .social-button {
    margin-right: 0;
  }

  .content .form label {
    text-align: left;
  }

  .content .form input[type='text'], .content .form textarea {
    width: 265px;
  }

  .content #portfolio-index tbody td {
    padding: 5px 0;
    text-align: center;
    font-size: 10px;
  }

  .content #portfolio-index thead tr {
    font-size: 10px;
  }

  #portfolio-index th.sorting_asc::after, #portfolio-index th.sorting_desc::after {
    top: 14px;
  }

  .content .newListSelected {
    width: 276px;
  }

  .content,
  #latestnews {
    margin: 0;
    width: 100%;
  }
  .content > *,
  #latestnews > * {
    padding: 0 20px;
  }

  .collapsible .wrap {
    position: relative;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 500ms linear;
            transition: max-height 500ms linear;
  }
  .collapsible.expanded .wrap {
    max-height: 300px;
  }

  #latestnews {
    border-bottom: 1px dotted #b3b3b3;
    position: relative;
  }
  #latestnews h4 {
    border-bottom: 0;
    font: 22px 'Open Sans WF', sans-serif;
    line-height: 56px;
    margin: 0;
    cursor: pointer;
  }
  #latestnews .bx-wrapper {
    padding: 0 20px;
  }
  #latestnews .bx-pager {
    display: none;
  }
  #latestnews .bx-controls .bx-pager {
    display: none;
  }
  #latestnews .bx-controls .bx-next, #latestnews .bx-controls .bx-prev {
    background: url("../images/sprite.svg") 0 0 no-repeat;
    text-indent: -99999em;
    font-size: 0;
    width: 13px;
    height: 23px;
    padding: 0;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    left: -30px;
    -webkit-transition: left 500ms linear;
            transition: left 500ms linear;
  }
  .no-svg #latestnews .bx-controls .bx-next, .no-svg #latestnews .bx-controls .bx-prev {
    background-image: url("../images/sprite.png");
  }
  #latestnews .bx-controls .bx-next {
    background-position: -435px -160px;
    right: -30px;
    left: auto;
    -webkit-transition: right 500ms linear;
            transition: right 500ms linear;
  }
  #latestnews .bx-controls .bx-next:hover {
    background-position: -475px -160px;
  }
  #latestnews .bx-controls .bx-next:active {
    right: 9px;
  }
  #latestnews .bx-controls .bx-prev {
    background-position: -415px -160px;
  }
  #latestnews .bx-controls .bx-prev:hover {
    background-position: -455px -160px;
  }
  #latestnews .bx-controls .bx-prev:active {
    left: 9px;
  }
  #latestnews .slideshow.source {
    display: none;
  }
  #latestnews .slideshow.source + .bx-wrapper {
    display: block;
  }
  #latestnews.expanded .bx-prev {
    left: 10px;
  }
  #latestnews.expanded .bx-next {
    right: 10px;
  }
  #latestnews .pressroom-home {
    border: 0;
    padding: 0 0 20px;
    margin: 0;
  }
  #latestnews .pressroom-home nav a.pdf {
    display: inline-block;
    font-size: 12px;
    line-height: 28px;
    padding-left: 30px;
    vertical-align: top;
  }
  #latestnews .pressroom-home nav a.pdf:after {
    background-color: #919191;
    background-position: -250px -160px;
    height: 28px;
    width: 24px;
    top: 0;
    -webkit-transition: background-color .5s ease-in;
            transition: background-color .5s ease-in;
  }
  #latestnews .pressroom-home nav a.pdf:hover:after {
    background-position: -250px -160px;
    background-color: #E35367;
  }
  #latestnews .pressroom-home nav span {
    font-size: 12px;
    line-height: 28px;
  }
  #latestnews .pressroom-home .time {
    font: italic 12px Arial;
    margin-bottom: 10px;
  }
  #latestnews .pressroom-home h3 {
    font-size: 13px;
    text-transform: uppercase;
  }
  #latestnews .pressroom-home p {
    color: #5e6868;
    font-size: 10px;
    margin-bottom: 10px;
  }
  #latestnews .pressroom-home.first {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }

  #footer {
    overflow: hidden;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #footer #footer-menu-support {
    height: 50px;
    margin-bottom: 0;
    text-align: justify;
    text-align-last: justify;
    width: 500px;
  }
  #footer #footer-menu-support * {
    display: inline;
  }
  #footer #footer-menu-support:after {
    content: '';
    display: inline-block;
    width: 100%;
  }
  #footer #footer-menu-support ul li {
    display: inline-block !important;
    float: none;
    margin: 0 20px 0 0;
  }
  #footer #footer-menu-support ul li:first-child {
    margin-left: 20px;
  }
  #footer #footer-menu-support ul li a {
    font: 500 14px 'Open Sans WF';
    line-height: 50px;
    text-transform: none;
  }
  #footer #footer-menu {
    display: none;
  }
  #footer #footer-menu > ul > li a {
    font: 500 17px 'Open Sans WF';
  }
  #footer #footer-menu > ul > li ul {
    display: none;
  }
  #footer .footerinfo {
    position: relative;
    height: auto;
  }
  #footer .footerinfo .wrapper {
    padding: 20px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #footer .footerinfo .wrapper small {
    font-size: 12px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    float: none !important;
  }

  .employees {
    height: auto !important;
    margin-top: 0;
    text-align: center;
  }
  .employees a.employee {
    display: inline-block;
    height: auto;
    float: none;
    margin: 0 0 10px !important;
    text-align: center;
    vertical-align: top;
    padding: 0;
  }
  .employees a.employee img, .employees a.employee .note {
    display: inline-block;
  }
  .employees a.employee#bruce-white {
    display: block;
    width: 100% !important;
  }
  .employees #yiankes-team .teamDivMembers,
  .employees #sibley-team .teamDivMembers {
    background-position: 50% 0;
    padding-top: 40px;
    margin-top: 20px;
  }
  .employees #sibley-team .teamDivMembers {
    height: auto;
  }

  .small-gallery dd a {
    font-size: 12px;
  }

  #hotel-portfolio {
    height: 320px;
  }

  #portfolio-index_wrapper .top {
    text-align: center;
  }

  #portfolio-index_filter,
  #portfolio-index_length {
    display: inline-block;
    float: none;
  }

  #portfolio-index_filter {
    margin-bottom: 10px;
    margin-right: 30px;
  }

  #brandFilter fieldset {
    float: left;
    width: 50%;
    margin-bottom: 20px;
    background: none;
    padding: 0;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
  }
  #brandFilter fieldset label {
    float: none;
    line-height: 1.5;
    width: 100%;
  }
  #brandFilter fieldset#byBrand {
    margin-right: 0;
    width: 50%;
  }

  .content #pressroom {
    font-size: 14px;
    margin: 0;
  }
  .content #pressroom #categories-list {
    margin: 0;
  }
  .content #pressroom #categories-list li {
    padding: 0;
  }
  .content #pressroom .pressroom-entry {
    height: auto;
    min-height: 250px;
    margin: 20px 0 0;
    width: 100%;
  }
  .content #pressroom .pressroom-entry p {
    font-size: 14px;
  }
  .content #pressroom .pressroom-entry .time {
    font-style: italic;
    font-size: 14px;
  }
  .content #pressroom a.loadmore {
    margin-right: 0;
    margin-left: 0;
  }
}
