﻿@charset "UTF-8";
.hide {
  display: none !important;
}

.offscreen, #logo-main span {
  position: absolute;
  top: -9999em;
  left: -9999em;
}
.spin {
    color: #C09F72;
}
.spinner-div {
    min-width: 110px;
    padding-right: 40px;
    float: right;
    margin-right: -25px;
}
.relative {
  position: relative;
}

.left {
  float: left !important;
  cursor: pointer;
}

.right {
  float: right !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

ul.unstyled, .validation-summary-errors ul,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}
main ul.unstyled li, main .validation-summary-errors ul li, .validation-summary-errors main ul li, main
ol.unstyled li {
  padding-left: 0;
}
ul.unstyled li:before, .validation-summary-errors ul li:before,
ol.unstyled li:before {
  display: none;
  padding-left: 0;
}

ul.inline, ul.form-help-links, #nav-utility > ul, .breadcrumb ul, footer#footer-main ul.utility, footer#footer-main ul.social,
ol.inline,
ol.form-help-links {
  margin-left: 0;
  list-style: none;
}
ul.inline li:before, ul.form-help-links li:before, #nav-utility > ul li:before, .breadcrumb ul li:before, footer#footer-main ul.utility li:before, footer#footer-main ul.social li:before,
ol.inline li:before,
ol.form-help-links li:before {
  display: none;
}
.slided {
    margin-top: 5%;
}
.sliderValue {
    width: 10%;
    margin-left: 20px;
}
.slider{
  margin-top: -30px;
  width: 62%;
  margin-left: 13.8%;
}
@media screen and (min-width: 768px) {

    .slider {
        width: 62%;
    }
    .rightSlider {
        margin-left: 66% !important;
    }
}
@media screen and (min-width: 1200px) {

    .slider {
        width: 47%;
    }
    .rightSlider {
         margin-left: 51% !important;
    }
}
@media screen and (min-width: 1400px) {

    .slider {
        width: 68%;
    }
    .rightSlider {
         margin-left: 72% !important;
    }
}
.rightSlider {
    margin-left: 66%;
}
.center {
    margin-top: 15px;
    height: 100px;
    padding-top: 20px;
}
.left-side-label {
    margin-left: -25px;
    display: block !important;
    margin-top: -21px;
}
ul.inline > li, ul.form-help-links > li, #nav-utility > ul > li, .breadcrumb ul > li, footer#footer-main ul.utility > li, footer#footer-main ul.social > li,
ol.inline > li,
ol.form-help-links > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

@-ms-viewport {
  width: device-width;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    max-height: 200px;
  }
  90% {
    opacity: 1;
    max-height: 200px;
  }
  100% {
    opacity: 0;
    max-height: 0;
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    max-height: 200px;
  }
  90% {
    opacity: 1;
    max-height: 200px;
  }
  100% {
    opacity: 0;
    max-height: 0;
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    max-height: 200px;
  }
  90% {
    opacity: 1;
    max-height: 200px;
  }
  100% {
    opacity: 0;
    max-height: 0;
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    max-height: 200px;
  }
  90% {
    opacity: 1;
    max-height: 200px;
  }
  100% {
    opacity: 0;
    max-height: 0;
  }
}
.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in .5s;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in .5s;
  animation: fadeIn ease-in .5s;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fade-in-fast {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in .15s;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in .15s;
  animation: fadeIn ease-in .15s;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.lt-ie10 .fade-in-fast, .lt-ie10 .fade-in {
  opacity: 1;
}

.fade-out {
  opacity: 0;
  -webkit-animation: fadeOut ease-in .15s;
  -moz-animation: fadeOut ease-in .15s;
  animation: fadeOut ease-in .15s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

.modal-open {
  overflow: hidden;
  width: 100%;
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
.modal.fade .modal-dialog {
  -moz-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 10px;
  z-index: 1010;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
  background-color: #111;
}
.modal-backdrop.fade {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}

.modal-header {
  padding: 20px 20px 0;
  min-height: 40px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0 0 20px;
  line-height: 1.1;
}

.modal-body {
  position: relative;
  padding: 0 20px 20px;
}
.newsletter-listing-body {
    position: relative;
    padding: 20px 0px;
}
.modal-footer {
  margin-top: 15px;
  padding: 0 20px;
  text-align: right;
  zoom: 1;
}
.modal-footer:before, .modal-footer:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .modal-content {
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
.bar-top, nav#nav-main h1, #home-news h2, .listing-communication-preferences .subject:not(:first-child), main aside {
  position: relative;
}
.bar-top:before, nav#nav-main h1:before, #home-news h2:before, .listing-communication-preferences .subject:not(:first-child):before, main aside:before {
  content: '';
  display: block;
  height: 5px;
  width: 100px;
  background: #c09f72;
  top: 0;
  left: 0;
  position: absolute;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 12px;
  padding-right: 12px;
  zoom: 1;
}
.container:before, .container:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.container:after {
  clear: both;
}

.row {
  margin-left: -12px;
  margin-right: -12px;
  zoom: 1;
}
.row:before, .row:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.row:after {
  clear: both;
}

.col-xs-24, .col-sm-24, .col-md-24, .col-lg-24, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 {
  position: relative;
  min-height: 1px;
  padding-left: 12px;
  padding-right: 12px;
}

.col-xs-24, .col-xs-23, .col-xs-22, .col-xs-21, .col-xs-20, .col-xs-19, .col-xs-18, .col-xs-17, .col-xs-16, .col-xs-15, .col-xs-14, .col-xs-13, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
  float: left;
}

.col-xs-1 {
  width: 4.16667%;
}

.col-xs-2 {
  width: 8.33333%;
}

.col-xs-3 {
  width: 12.5%;
}

.col-xs-4 {
  width: 16.66667%;
}

.col-xs-5 {
  width: 20.83333%;
}

.col-xs-6 {
  width: 25%;
}

.col-xs-7 {
  width: 29.16667%;
}

.col-xs-8 {
  width: 33.33333%;
}

.col-xs-9 {
  width: 37.5%;
}

.col-xs-10 {
  width: 41.66667%;
}

.col-xs-11 {
  width: 45.83333%;
}

.col-xs-12 {
  width: 50%;
}

.col-xs-13 {
  width: 54.16667%;
}

.col-xs-14 {
  width: 58.33333%;
}

.col-xs-15 {
  width: 62.5%;
}

.col-xs-16 {
  width: 66.66667%;
}

.col-xs-17 {
  width: 70.83333%;
}

.col-xs-18 {
  width: 75%;
}

.col-xs-19 {
  width: 79.16667%;
}

.col-xs-20 {
  width: 83.33333%;
}

.col-xs-21 {
  width: 87.5%;
}

.col-xs-22 {
  width: 91.66667%;
}

.col-xs-23 {
  width: 95.83333%;
}

.col-xs-24 {
  width: 100%;
}

.col-xs-pull-0 {
  right: 0%;
}

.col-xs-pull-1 {
  right: 4.16667%;
}

.col-xs-pull-2 {
  right: 8.33333%;
}

.col-xs-pull-3 {
  right: 12.5%;
}

.col-xs-pull-4 {
  right: 16.66667%;
}

.col-xs-pull-5 {
  right: 20.83333%;
}

.col-xs-pull-6 {
  right: 25%;
}

.col-xs-pull-7 {
  right: 29.16667%;
}

.col-xs-pull-8 {
  right: 33.33333%;
}

.col-xs-pull-9 {
  right: 37.5%;
}

.col-xs-pull-10 {
  right: 41.66667%;
}

.col-xs-pull-11 {
  right: 45.83333%;
}

.col-xs-pull-12 {
  right: 50%;
}

.col-xs-pull-13 {
  right: 54.16667%;
}

.col-xs-pull-14 {
  right: 58.33333%;
}

.col-xs-pull-15 {
  right: 62.5%;
}

.col-xs-pull-16 {
  right: 66.66667%;
}

.col-xs-pull-17 {
  right: 70.83333%;
}

.col-xs-pull-18 {
  right: 75%;
}

.col-xs-pull-19 {
  right: 79.16667%;
}

.col-xs-pull-20 {
  right: 83.33333%;
}

.col-xs-pull-21 {
  right: 87.5%;
}

.col-xs-pull-22 {
  right: 91.66667%;
}

.col-xs-pull-23 {
  right: 95.83333%;
}

.col-xs-pull-24 {
  right: 100%;
}

.col-xs-push-0 {
  left: 0%;
}

.col-xs-push-1 {
  left: 4.16667%;
}

.col-xs-push-2 {
  left: 8.33333%;
}

.col-xs-push-3 {
  left: 12.5%;
}

.col-xs-push-4 {
  left: 16.66667%;
}

.col-xs-push-5 {
  left: 20.83333%;
}

.col-xs-push-6 {
  left: 25%;
}

.col-xs-push-7 {
  left: 29.16667%;
}

.col-xs-push-8 {
  left: 33.33333%;
}

.col-xs-push-9 {
  left: 37.5%;
}

.col-xs-push-10 {
  left: 41.66667%;
}

.col-xs-push-11 {
  left: 45.83333%;
}

.col-xs-push-12 {
  left: 50%;
}

.col-xs-push-13 {
  left: 54.16667%;
}

.col-xs-push-14 {
  left: 58.33333%;
}

.col-xs-push-15 {
  left: 62.5%;
}

.col-xs-push-16 {
  left: 66.66667%;
}

.col-xs-push-17 {
  left: 70.83333%;
}

.col-xs-push-18 {
  left: 75%;
}

.col-xs-push-19 {
  left: 79.16667%;
}

.col-xs-push-20 {
  left: 83.33333%;
}

.col-xs-push-21 {
  left: 87.5%;
}

.col-xs-push-22 {
  left: 91.66667%;
}

.col-xs-push-23 {
  left: 95.83333%;
}

.col-xs-push-24 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 4.16667%;
}

.col-xs-offset-2 {
  margin-left: 8.33333%;
}

.col-xs-offset-3 {
  margin-left: 12.5%;
}

.col-xs-offset-4 {
  margin-left: 16.66667%;
}

.col-xs-offset-5 {
  margin-left: 20.83333%;
}

.col-xs-offset-6 {
  margin-left: 25%;
}

.col-xs-offset-7 {
  margin-left: 29.16667%;
}

.col-xs-offset-8 {
  margin-left: 33.33333%;
}

.col-xs-offset-9 {
  margin-left: 37.5%;
}

.col-xs-offset-10 {
  margin-left: 41.66667%;
}

.col-xs-offset-11 {
  margin-left: 45.83333%;
}

.col-xs-offset-12 {
  margin-left: 50%;
}

.col-xs-offset-13 {
  margin-left: 54.16667%;
}

.col-xs-offset-14 {
  margin-left: 58.33333%;
}

.col-xs-offset-15 {
  margin-left: 62.5%;
}

.col-xs-offset-16 {
  margin-left: 66.66667%;
}

.col-xs-offset-17 {
  margin-left: 70.83333%;
}

.col-xs-offset-18 {
  margin-left: 75%;
}

.col-xs-offset-19 {
  margin-left: 79.16667%;
}

.col-xs-offset-20 {
  margin-left: 83.33333%;
}

.col-xs-offset-21 {
  margin-left: 87.5%;
}

.col-xs-offset-22 {
  margin-left: 91.66667%;
}

.col-xs-offset-23 {
  margin-left: 95.83333%;
}

.col-xs-offset-24 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .container {
    width: 100%;
  }
  .col-sm-24, .col-sm-23, .col-sm-22, .col-sm-21, .col-sm-20, .col-sm-19, .col-sm-18, .col-sm-17, .col-sm-16, .col-sm-15, .col-sm-14, .col-sm-13, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
    float: left;
  }

  .col-sm-1 {
    width: 4.16667%;
  }

  .col-sm-2 {
    width: 8.33333%;
  }

  .col-sm-3 {
    width: 12.5%;
  }

  .col-sm-4 {
    width: 16.66667%;
  }

  .col-sm-5 {
    width: 20.83333%;
  }

  .col-sm-6 {
    width: 25%;
  }

  .col-sm-7 {
    width: 29.16667%;
  }

  .col-sm-8 {
    width: 33.33333%;
  }

  .col-sm-9 {
    width: 37.5%;
  }

  .col-sm-10 {
    width: 41.66667%;
  }

  .col-sm-11 {
    width: 45.83333%;
  }

  .col-sm-12 {
    width: 50%;
  }

  .col-sm-13 {
    width: 54.16667%;
  }

  .col-sm-14 {
    width: 58.33333%;
  }

  .col-sm-15 {
    width: 62.5%;
  }

  .col-sm-16 {
    width: 66.66667%;
  }

  .col-sm-17 {
    width: 70.83333%;
  }

  .col-sm-18 {
    width: 75%;
  }

  .col-sm-19 {
    width: 79.16667%;
  }

  .col-sm-20 {
    width: 83.33333%;
  }

  .col-sm-21 {
    width: 87.5%;
  }

  .col-sm-22 {
    width: 91.66667%;
  }

  .col-sm-23 {
    width: 95.83333%;
  }

  .col-sm-24 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: 0%;
  }

  .col-sm-pull-1 {
    right: 4.16667%;
  }

  .col-sm-pull-2 {
    right: 8.33333%;
  }

  .col-sm-pull-3 {
    right: 12.5%;
  }

  .col-sm-pull-4 {
    right: 16.66667%;
  }

  .col-sm-pull-5 {
    right: 20.83333%;
  }

  .col-sm-pull-6 {
    right: 25%;
  }

  .col-sm-pull-7 {
    right: 29.16667%;
  }

  .col-sm-pull-8 {
    right: 33.33333%;
  }

  .col-sm-pull-9 {
    right: 37.5%;
  }

  .col-sm-pull-10 {
    right: 41.66667%;
  }

  .col-sm-pull-11 {
    right: 45.83333%;
  }

  .col-sm-pull-12 {
    right: 50%;
  }

  .col-sm-pull-13 {
    right: 54.16667%;
  }

  .col-sm-pull-14 {
    right: 58.33333%;
  }

  .col-sm-pull-15 {
    right: 62.5%;
  }

  .col-sm-pull-16 {
    right: 66.66667%;
  }

  .col-sm-pull-17 {
    right: 70.83333%;
  }

  .col-sm-pull-18 {
    right: 75%;
  }

  .col-sm-pull-19 {
    right: 79.16667%;
  }

  .col-sm-pull-20 {
    right: 83.33333%;
  }

  .col-sm-pull-21 {
    right: 87.5%;
  }

  .col-sm-pull-22 {
    right: 91.66667%;
  }

  .col-sm-pull-23 {
    right: 95.83333%;
  }

  .col-sm-pull-24 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: 0%;
  }

  .col-sm-push-1 {
    left: 4.16667%;
  }

  .col-sm-push-2 {
    left: 8.33333%;
  }

  .col-sm-push-3 {
    left: 12.5%;
  }

  .col-sm-push-4 {
    left: 16.66667%;
  }

  .col-sm-push-5 {
    left: 20.83333%;
  }

  .col-sm-push-6 {
    left: 25%;
  }

  .col-sm-push-7 {
    left: 29.16667%;
  }

  .col-sm-push-8 {
    left: 33.33333%;
  }

  .col-sm-push-9 {
    left: 37.5%;
  }

  .col-sm-push-10 {
    left: 41.66667%;
  }

  .col-sm-push-11 {
    left: 45.83333%;
  }

  .col-sm-push-12 {
    left: 50%;
  }

  .col-sm-push-13 {
    left: 54.16667%;
  }

  .col-sm-push-14 {
    left: 58.33333%;
  }

  .col-sm-push-15 {
    left: 62.5%;
  }

  .col-sm-push-16 {
    left: 66.66667%;
  }

  .col-sm-push-17 {
    left: 70.83333%;
  }

  .col-sm-push-18 {
    left: 75%;
  }

  .col-sm-push-19 {
    left: 79.16667%;
  }

  .col-sm-push-20 {
    left: 83.33333%;
  }

  .col-sm-push-21 {
    left: 87.5%;
  }

  .col-sm-push-22 {
    left: 91.66667%;
  }

  .col-sm-push-23 {
    left: 95.83333%;
  }

  .col-sm-push-24 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 4.16667%;
  }

  .col-sm-offset-2 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-3 {
    margin-left: 12.5%;
  }

  .col-sm-offset-4 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-5 {
    margin-left: 20.83333%;
  }

  .col-sm-offset-6 {
    margin-left: 25%;
  }

  .col-sm-offset-7 {
    margin-left: 29.16667%;
  }

  .col-sm-offset-8 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-9 {
    margin-left: 37.5%;
  }

  .col-sm-offset-10 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-11 {
    margin-left: 45.83333%;
  }

  .col-sm-offset-12 {
    margin-left: 50%;
  }

  .col-sm-offset-13 {
    margin-left: 54.16667%;
  }

  .col-sm-offset-14 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-15 {
    margin-left: 62.5%;
  }

  .col-sm-offset-16 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-17 {
    margin-left: 70.83333%;
  }

  .col-sm-offset-18 {
    margin-left: 75%;
  }

  .col-sm-offset-19 {
    margin-left: 79.16667%;
  }

  .col-sm-offset-20 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-21 {
    margin-left: 87.5%;
  }

  .col-sm-offset-22 {
    margin-left: 91.66667%;
  }

  .col-sm-offset-23 {
    margin-left: 95.83333%;
  }

  .col-sm-offset-24 {
    margin-left: 100%;
  }
}
@media (min-width: 1025px) {
  .container {
    width: 100%;
  }

  .col-md-24, .col-md-23, .col-md-22, .col-md-21, .col-md-20, .col-md-19, .col-md-18, .col-md-17, .col-md-16, .col-md-15, .col-md-14, .col-md-13, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
    float: left;
  }

  .col-md-1 {
    width: 4.16667%;
  }

  .col-md-2 {
    width: 8.33333%;
  }

  .col-md-3 {
    width: 12.5%;
  }

  .col-md-4 {
    width: 16.66667%;
  }

  .col-md-5 {
    width: 20.83333%;
  }

  .col-md-6 {
    width: 25%;
  }

  .col-md-7 {
    width: 29.16667%;
  }

  .col-md-8 {
    width: 33.33333%;
  }

  .col-md-9 {
    width: 37.5%;
  }

  .col-md-10 {
    width: 41.66667%;
  }

  .col-md-11 {
    width: 45.83333%;
  }

  .col-md-12 {
    width: 50%;
  }

  .col-md-13 {
    width: 54.16667%;
  }

  .col-md-14 {
    width: 58.33333%;
  }

  .col-md-15 {
    width: 62.5%;
  }

  .col-md-16 {
    width: 66.66667%;
  }

  .col-md-17 {
    width: 70.83333%;
  }

  .col-md-18 {
    width: 75%;
  }

  .col-md-19 {
    width: 79.16667%;
  }

  .col-md-20 {
    width: 83.33333%;
  }

  .col-md-21 {
    width: 87.5%;
  }

  .col-md-22 {
    width: 91.66667%;
  }

  .col-md-23 {
    width: 95.83333%;
  }

  .col-md-24 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: 0%;
  }

  .col-md-pull-1 {
    right: 4.16667%;
  }

  .col-md-pull-2 {
    right: 8.33333%;
  }

  .col-md-pull-3 {
    right: 12.5%;
  }

  .col-md-pull-4 {
    right: 16.66667%;
  }

  .col-md-pull-5 {
    right: 20.83333%;
  }

  .col-md-pull-6 {
    right: 25%;
  }

  .col-md-pull-7 {
    right: 29.16667%;
  }

  .col-md-pull-8 {
    right: 33.33333%;
  }

  .col-md-pull-9 {
    right: 37.5%;
  }

  .col-md-pull-10 {
    right: 41.66667%;
  }

  .col-md-pull-11 {
    right: 45.83333%;
  }

  .col-md-pull-12 {
    right: 50%;
  }

  .col-md-pull-13 {
    right: 54.16667%;
  }

  .col-md-pull-14 {
    right: 58.33333%;
  }

  .col-md-pull-15 {
    right: 62.5%;
  }

  .col-md-pull-16 {
    right: 66.66667%;
  }

  .col-md-pull-17 {
    right: 70.83333%;
  }

  .col-md-pull-18 {
    right: 75%;
  }

  .col-md-pull-19 {
    right: 79.16667%;
  }

  .col-md-pull-20 {
    right: 83.33333%;
  }

  .col-md-pull-21 {
    right: 87.5%;
  }

  .col-md-pull-22 {
    right: 91.66667%;
  }

  .col-md-pull-23 {
    right: 95.83333%;
  }

  .col-md-pull-24 {
    right: 100%;
  }

  .col-md-push-0 {
    left: 0%;
  }

  .col-md-push-1 {
    left: 4.16667%;
  }

  .col-md-push-2 {
    left: 8.33333%;
  }

  .col-md-push-3 {
    left: 12.5%;
  }

  .col-md-push-4 {
    left: 16.66667%;
  }

  .col-md-push-5 {
    left: 20.83333%;
  }

  .col-md-push-6 {
    left: 25%;
  }

  .col-md-push-7 {
    left: 29.16667%;
  }

  .col-md-push-8 {
    left: 33.33333%;
  }

  .col-md-push-9 {
    left: 37.5%;
  }

  .col-md-push-10 {
    left: 41.66667%;
  }

  .col-md-push-11 {
    left: 45.83333%;
  }

  .col-md-push-12 {
    left: 50%;
  }

  .col-md-push-13 {
    left: 54.16667%;
  }

  .col-md-push-14 {
    left: 58.33333%;
  }

  .col-md-push-15 {
    left: 62.5%;
  }

  .col-md-push-16 {
    left: 66.66667%;
  }

  .col-md-push-17 {
    left: 70.83333%;
  }

  .col-md-push-18 {
    left: 75%;
  }

  .col-md-push-19 {
    left: 79.16667%;
  }

  .col-md-push-20 {
    left: 83.33333%;
  }

  .col-md-push-21 {
    left: 87.5%;
  }

  .col-md-push-22 {
    left: 91.66667%;
  }

  .col-md-push-23 {
    left: 95.83333%;
  }

  .col-md-push-24 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 4.16667%;
  }

  .col-md-offset-2 {
    margin-left: 8.33333%;
  }

  .col-md-offset-3 {
    margin-left: 12.5%;
  }

  .col-md-offset-4 {
    margin-left: 16.66667%;
  }

  .col-md-offset-5 {
    margin-left: 20.83333%;
  }

  .col-md-offset-6 {
    margin-left: 25%;
  }

  .col-md-offset-7 {
    margin-left: 29.16667%;
  }

  .col-md-offset-8 {
    margin-left: 33.33333%;
  }

  .col-md-offset-9 {
    margin-left: 37.5%;
  }

  .col-md-offset-10 {
    margin-left: 41.66667%;
  }

  .col-md-offset-11 {
    margin-left: 45.83333%;
  }

  .col-md-offset-12 {
    margin-left: 50%;
  }

  .col-md-offset-13 {
    margin-left: 54.16667%;
  }

  .col-md-offset-14 {
    margin-left: 58.33333%;
  }

  .col-md-offset-15 {
    margin-left: 62.5%;
  }

  .col-md-offset-16 {
    margin-left: 66.66667%;
  }

  .col-md-offset-17 {
    margin-left: 70.83333%;
  }

  .col-md-offset-18 {
    margin-left: 75%;
  }

  .col-md-offset-19 {
    margin-left: 79.16667%;
  }

  .col-md-offset-20 {
    margin-left: 83.33333%;
  }

  .col-md-offset-21 {
    margin-left: 87.5%;
  }

  .col-md-offset-22 {
    margin-left: 91.66667%;
  }

  .col-md-offset-23 {
    margin-left: 95.83333%;
  }

  .col-md-offset-24 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1164px;
  }

  .col-lg-24, .col-lg-23, .col-lg-22, .col-lg-21, .col-lg-20, .col-lg-19, .col-lg-18, .col-lg-17, .col-lg-16, .col-lg-15, .col-lg-14, .col-lg-13, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
    float: left;
  }

  .col-lg-1 {
    width: 4.16667%;
  }

  .col-lg-2 {
    width: 8.33333%;
  }

  .col-lg-3 {
    width: 12.5%;
  }

  .col-lg-4 {
    width: 16.66667%;
  }

  .col-lg-5 {
    width: 20.83333%;
  }

  .col-lg-6 {
    width: 25%;
  }

  .col-lg-7 {
    width: 29.16667%;
  }

  .col-lg-8 {
    width: 33.33333%;
  }

  .col-lg-9 {
    width: 37.5%;
  }

  .col-lg-10 {
    width: 41.66667%;
  }

  .col-lg-11 {
    width: 45.83333%;
  }

  .col-lg-12 {
    width: 50%;
  }

  .col-lg-13 {
    width: 54.16667%;
  }

  .col-lg-14 {
    width: 58.33333%;
  }

  .col-lg-15 {
    width: 62.5%;
  }

  .col-lg-16 {
    width: 66.66667%;
  }

  .col-lg-17 {
    width: 70.83333%;
  }

  .col-lg-18 {
    width: 75%;
  }

  .col-lg-19 {
    width: 79.16667%;
  }

  .col-lg-20 {
    width: 83.33333%;
  }

  .col-lg-21 {
    width: 87.5%;
  }

  .col-lg-22 {
    width: 91.66667%;
  }

  .col-lg-23 {
    width: 95.83333%;
  }

  .col-lg-24 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: 0%;
  }

  .col-lg-pull-1 {
    right: 4.16667%;
  }

  .col-lg-pull-2 {
    right: 8.33333%;
  }

  .col-lg-pull-3 {
    right: 12.5%;
  }

  .col-lg-pull-4 {
    right: 16.66667%;
  }

  .col-lg-pull-5 {
    right: 20.83333%;
  }

  .col-lg-pull-6 {
    right: 25%;
  }

  .col-lg-pull-7 {
    right: 29.16667%;
  }

  .col-lg-pull-8 {
    right: 33.33333%;
  }

  .col-lg-pull-9 {
    right: 37.5%;
  }

  .col-lg-pull-10 {
    right: 41.66667%;
  }

  .col-lg-pull-11 {
    right: 45.83333%;
  }

  .col-lg-pull-12 {
    right: 50%;
  }

  .col-lg-pull-13 {
    right: 54.16667%;
  }

  .col-lg-pull-14 {
    right: 58.33333%;
  }

  .col-lg-pull-15 {
    right: 62.5%;
  }

  .col-lg-pull-16 {
    right: 66.66667%;
  }

  .col-lg-pull-17 {
    right: 70.83333%;
  }

  .col-lg-pull-18 {
    right: 75%;
  }

  .col-lg-pull-19 {
    right: 79.16667%;
  }

  .col-lg-pull-20 {
    right: 83.33333%;
  }

  .col-lg-pull-21 {
    right: 87.5%;
  }

  .col-lg-pull-22 {
    right: 91.66667%;
  }

  .col-lg-pull-23 {
    right: 95.83333%;
  }

  .col-lg-pull-24 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: 0%;
  }

  .col-lg-push-1 {
    left: 4.16667%;
  }

  .col-lg-push-2 {
    left: 8.33333%;
  }

  .col-lg-push-3 {
    left: 12.5%;
  }

  .col-lg-push-4 {
    left: 16.66667%;
  }

  .col-lg-push-5 {
    left: 20.83333%;
  }

  .col-lg-push-6 {
    left: 25%;
  }

  .col-lg-push-7 {
    left: 29.16667%;
  }

  .col-lg-push-8 {
    left: 33.33333%;
  }

  .col-lg-push-9 {
    left: 37.5%;
  }

  .col-lg-push-10 {
    left: 41.66667%;
  }

  .col-lg-push-11 {
    left: 45.83333%;
  }

  .col-lg-push-12 {
    left: 50%;
  }

  .col-lg-push-13 {
    left: 54.16667%;
  }

  .col-lg-push-14 {
    left: 58.33333%;
  }

  .col-lg-push-15 {
    left: 62.5%;
  }

  .col-lg-push-16 {
    left: 66.66667%;
  }

  .col-lg-push-17 {
    left: 70.83333%;
  }

  .col-lg-push-18 {
    left: 75%;
  }

  .col-lg-push-19 {
    left: 79.16667%;
  }

  .col-lg-push-20 {
    left: 83.33333%;
  }

  .col-lg-push-21 {
    left: 87.5%;
  }

  .col-lg-push-22 {
    left: 91.66667%;
  }

  .col-lg-push-23 {
    left: 95.83333%;
  }

  .col-lg-push-24 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 4.16667%;
  }

  .col-lg-offset-2 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-3 {
    margin-left: 12.5%;
  }

  .col-lg-offset-4 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-5 {
    margin-left: 20.83333%;
  }

  .col-lg-offset-6 {
    margin-left: 25%;
  }

  .col-lg-offset-7 {
    margin-left: 29.16667%;
  }

  .col-lg-offset-8 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-9 {
    margin-left: 37.5%;
  }

  .col-lg-offset-10 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-11 {
    margin-left: 45.83333%;
  }

  .col-lg-offset-12 {
    margin-left: 50%;
  }

  .col-lg-offset-13 {
    margin-left: 54.16667%;
  }

  .col-lg-offset-14 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-15 {
    margin-left: 62.5%;
  }

  .col-lg-offset-16 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-17 {
    margin-left: 70.83333%;
  }

  .col-lg-offset-18 {
    margin-left: 75%;
  }

  .col-lg-offset-19 {
    margin-left: 79.16667%;
  }

  .col-lg-offset-20 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-21 {
    margin-left: 87.5%;
  }

  .col-lg-offset-22 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-23 {
    margin-left: 95.83333%;
  }

  .col-lg-offset-24 {
    margin-left: 100%;
  }
}
main div.filter ul li.closed {
    width: 100%;
}
main div.filter ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 10px;
}
main div.filter ul li:before {
  content: '';
  height: 4px;
  width: 4px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
  background: #c09f72;
  position: absolute;
  left: 0px;
  top: 7px;
}
ul.contents-main-wrapper {
    margin: 0;
    width: auto;
    height: auto;
}
.listWrapper {
    margin: 0;
}
.nested-list {
   margin-left: 50px;
   display: none;
   padding-top: 10px;
   padding-bottom: 0px;
}
.select-arrow-circle {
    cursor: pointer;
}
.closed {
   width: auto;
   color: #c09f72;
   padding-bottom: 10px;
   font-size: 16px;
   margin-left: 0 !important;
   display: block;
}
main article div ul li {
   /* list-style-position: inside;*/
    list-style-type: disc;
    padding-left: 20px;
    
}
article  ul li {
    /* list-style-position: inside;  */
    list-style-type: disc; 
    padding-left: 15px; 
	/* text-indent: -1.5em; */
	/*  list-style-type: disc;
    list-style-position: inside;    
    padding-left: 1em; */
 
}
article  ol li {
  /*  list-style-position: inside;     */
    padding-left: 15px; 
	/* text-indent: -1em; */
	/*  list-style-type: disc;
    list-style-position: inside;    
    padding-left: 1em; */
 
}

div.subject div.item label {
    padding-top: 15px;
    padding-bottom: 10px;
}
div.subject div.item  p {
    padding-left: 35px;
    margin: 0;
    padding-bottom: 25px;
}
div.subject  p {
    margin: 20px 0 0px;
}
div.listing-communication-preferences div.subject h2:before {
    content: '';
    display: block;
    height: 5px;
    width: 176px;
    background: #c09f72;
    top: 0;
    left: 0;
    position: absolute;

}
div.listing-communication-preferences div.subject h2 {
    position: relative;
    padding-top: 10px;
}
.bulleted {
    margin-left: 33px !important;
    list-style-type: circle !important;
    width: auto;
    padding-bottom: 10px;
    color: #c09f72;
    font-size: 32pt;
}
.click-able {
    font-family: arial, "Helvetica Neue", Helvetica, sans-serif !important;
    color: #c09f72;
    font-size: 16px !important;
    padding-left: 4px;
    cursor: pointer;
}
.sideways {
    margin-left: -15.5px;
    vertical-align: middle;
    position: absolute;
    margin-top: 2px;
}
.opened {
    display: block;
    width: auto;
    color: #c09f72;
    font-size: 16px;
    margin-left: 0 !important;
    padding-bottom:10px;
}
.fa-arrow-circle-o-down:before {
    content: "\f01a";
    cursor: pointer !important;
}
.fa-arrow-circle-o-up:before {
    content: "\f01b";
    cursor: pointer !important;
}
.bulletListed {
    list-style-type: circle !important;
    line-height: 1.6;
}
.bulletListed a {
    font-family: arial, "Helvetica Neue", Helvetica, sans-serif !important;
}
.contentListWrapper {
    list-style-type: disc;
    padding-bottom: 10px;
    margin-left: 16.5px;
    color: #c09f72;
    width: auto;
}
ul.listWrapper li.contentListWrapper a {
    cursor: pointer;
    font-size: 16px;
    font-family: arial, "Helvetica Neue", Helvetica, sans-serif !important;
    display: block;
}
/*
// Fonts.com
// ghart@stratasadvisors.com
// $trata$
*/
body {
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #494949;
}

p {
  margin: 0 0 20px;
}

p.intro {
  font-size: 20px;
  color: #c09f72;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
}

p.intro.more {
  margin-bottom: 50px;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

cite {
  font-style: normal;
}

a {
  color: #c09f72;
  text-decoration: none;
}

a:hover {
  color: #c09f72;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
  line-height: 1.2;
  color: #b3b3b2;
  text-rendering: optimizelegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  font-size: 40px;
  font-family: "Futura W01 Light", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }
}
article h1 {
  font-size: 30px;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
  text-transform: none;
}
aside h1, section.listing-main h1 {
  font-size: 18px;
  margin-bottom: 14px;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
  text-transform: none;
}

h2 {
  font-size: 31.5px;
}
aside h2 {
  font-size: 16px;
  margin-bottom: 14px;
  font-family: "NewsGothicNo2W01-Roman", sans-serif;
  text-transform: none;
}

h3 {
  font-size: 24.5px;
}

h4 {
  font-size: 17.5px;
  margin-bottom: 10px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 11.9px;
}

h1 small {
  font-size: 24.5px;
}

h2 small {
  font-size: 17.5px;
}
h2 small i {
  font-size: 14px;
}

h3 small {
  font-size: 14px;
}

h4 small {
  font-size: 14px;
}

article header h1 {
  font-size: 40px;
  font-family: "Futura W01 Light", sans-serif;
  text-transform: none;
}
@media (max-width: 1024px) {
  article header h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  article header h1 {
    font-size: 40px;
  }
}

.meta {
  font-family: "NewsGothicNo2W01-Bold", sans-serif;
  color: #b3b3b2;
  margin-bottom: 10px;
  font-size: 16px;
}

.super-heading {
  font-size: 18px;
  text-transform: uppercase;
  color: #c09f72;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
}

ul,
ol {
  padding: 0;
  margin: 0 0 20px 16px;
  list-style: none;
}
ol {
  padding: 0;
  margin: 0 0 20px 0;
  list-style-type: decimal;
  padding-left: 10px;
  /*list-style-position: inside;*/
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
  margin-left: 10px;
}

li {
/*   line-height: 20px;
  text-indent: -1em;
  padding-left: 1em; */
}

dl {
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 10px;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #ffffff;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}

abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}

blockquote p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}

blockquote small {
  display: block;
  line-height: 20px;
  color: #999999;
}

blockquote small:before {
  content: '\2014 \00A0';
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}

address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}

code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  white-space: nowrap;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

pre code {
  padding: 0;
  color: inherit;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}

sup, sub {
  position: relative;
  font-size: .8em;
  top: -.4em;
}

sub {
  top: auto;
  bottom: -.4em;
}
/*font end*/

/*lists starts*/
nav ul, nav ol {
  list-style: none;
}
/*forms*/
form {
  margin: 0 0 20px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 40px;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

legend small {
  font-size: 15px;
  color: #999999;
}

label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
}

input,
button,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #b3b3b2;
  font-size: 16px;
  padding-top: 4px;
  font-family: "NewsGothicNo2W01-Bold", sans-serif;
}

.required {
  color: #c09f72;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  display: inline-block;
  height: 30px;
  padding: 5px 8px 5px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: middle;
}
form.view-only-mode select, select[data-no-edit="true"], form.view-only-mode
textarea,
textarea[data-no-edit="true"], form.view-only-mode
input[type="text"],
input[type="text"][data-no-edit="true"], form.view-only-mode
input[type="password"],
input[type="password"][data-no-edit="true"], form.view-only-mode
input[type="datetime"],
input[type="datetime"][data-no-edit="true"], form.view-only-mode
input[type="datetime-local"],
input[type="datetime-local"][data-no-edit="true"], form.view-only-mode
input[type="date"],
input[type="date"][data-no-edit="true"], form.view-only-mode
input[type="month"],
input[type="month"][data-no-edit="true"], form.view-only-mode
input[type="time"],
input[type="time"][data-no-edit="true"], form.view-only-mode
input[type="week"],
input[type="week"][data-no-edit="true"], form.view-only-mode
input[type="number"],
input[type="number"][data-no-edit="true"], form.view-only-mode
input[type="email"],
input[type="email"][data-no-edit="true"], form.view-only-mode
input[type="url"],
input[type="url"][data-no-edit="true"], form.view-only-mode
input[type="search"],
input[type="search"][data-no-edit="true"], form.view-only-mode
input[type="tel"],
input[type="tel"][data-no-edit="true"], form.view-only-mode
input[type="color"],
input[type="color"][data-no-edit="true"], form.view-only-mode
.uneditable-input,
.uneditable-input[data-no-edit="true"] {
  background: #fff;
  border-color: #fff;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input,
textarea,
.uneditable-input {
  width: 100%;
}

textarea {
  height: auto;
  min-height: 200px;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #e8e8e8;
  border: 1px solid #d2d2d2;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  -o-transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(192, 159, 114, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(192, 159, 114, 0.6);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(192, 159, 114, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(192, 159, 114, 0.6);
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  *margin-top: 0;
  /* IE7 */
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

select,
input[type="file"] {
  height: 30px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
  line-height: 30px;
}

select {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cccccc;
  background-color: #e7e7e7;
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 4px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 4px rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 4px rgba(0, 0, 0, 0.12);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  -o-transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}

form .view-mode-controls {
  display: none;
}

form.view-only-mode select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1;
}
form.view-only-mode select::-ms-expand {
  display: none;
}
form.view-only-mode .edit-mode-controls {
  display: none;
}
form.view-only-mode .view-mode-controls {
  display: block;
}
form.view-only-mode ::-webkit-input-placeholder {
  color: #fff;
}
form.view-only-mode :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
form.view-only-mode ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
form.view-only-mode :-ms-input-placeholder {
  color: #fff;
}
form.view-only-mode .hide-view-only-mode {
  display: none;
}

select[multiple],
select[size] {
  height: auto;
}

select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: none;
  border-color: rgba(192, 159, 114, 0.8);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(192, 159, 114, 0.6);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(192, 159, 114, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(192, 159, 114, 0.6);
}

.uneditable-input,
.uneditable-textarea {
  color: #999999;
  background-color: #fcfcfc;
  border-color: #cccccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed;
}

.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}

.uneditable-textarea {
  width: auto;
  height: auto;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999999;
}

.radio,
.checkbox {
  min-height: 20px;
  padding-left: 20px;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

.radio.inline, .radio.form-help-links, #nav-utility > ul.radio, .breadcrumb ul.radio, footer#footer-main ul.radio.utility, footer#footer-main ul.radio.social,
.checkbox.inline,
.checkbox.form-help-links,
#nav-utility > ul.checkbox,
.breadcrumb ul.checkbox,
footer#footer-main ul.checkbox.utility,
footer#footer-main ul.checkbox.social {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

.radio.inline + .radio.inline, .radio.form-help-links + .radio.inline, #nav-utility > ul.radio + .radio.inline, .breadcrumb ul.radio + .radio.inline, footer#footer-main ul.radio.utility + .radio.inline, footer#footer-main ul.radio.social + .radio.inline, .radio.inline + .radio.form-help-links, .radio.form-help-links + .radio.form-help-links, #nav-utility > ul.radio + .radio.form-help-links, .breadcrumb ul.radio + .radio.form-help-links, footer#footer-main ul.radio.utility + .radio.form-help-links, footer#footer-main ul.radio.social + .radio.form-help-links, #nav-utility > .radio.inline + ul.radio, #nav-utility > .radio.form-help-links + ul.radio, #nav-utility > ul.radio + ul.radio, .breadcrumb .radio.inline + ul.radio, .breadcrumb .radio.form-help-links + ul.radio, .breadcrumb ul.radio + ul.radio, footer#footer-main .breadcrumb ul.radio.utility + ul.radio, .breadcrumb footer#footer-main ul.radio.utility + ul.radio, footer#footer-main .breadcrumb ul.radio.social + ul.radio, .breadcrumb footer#footer-main ul.radio.social + ul.radio, footer#footer-main .radio.inline + ul.radio.utility, footer#footer-main .radio.form-help-links + ul.radio.utility, .breadcrumb footer#footer-main ul.radio + ul.radio.utility, footer#footer-main .breadcrumb ul.radio + ul.radio.utility, footer#footer-main ul.radio.utility + ul.radio.utility, footer#footer-main ul.radio.social + ul.radio.utility, footer#footer-main .radio.inline + ul.radio.social, footer#footer-main .radio.form-help-links + ul.radio.social, .breadcrumb footer#footer-main ul.radio + ul.radio.social, footer#footer-main .breadcrumb ul.radio + ul.radio.social, footer#footer-main ul.radio.utility + ul.radio.social, footer#footer-main ul.radio.social + ul.radio.social,
.checkbox.inline + .checkbox.inline,
.checkbox.form-help-links + .checkbox.inline,
#nav-utility > ul.checkbox + .checkbox.inline,
.breadcrumb ul.checkbox + .checkbox.inline,
footer#footer-main ul.checkbox.utility + .checkbox.inline,
footer#footer-main ul.checkbox.social + .checkbox.inline,
.checkbox.inline + .checkbox.form-help-links,
.checkbox.form-help-links + .checkbox.form-help-links,
#nav-utility > ul.checkbox + .checkbox.form-help-links,
.breadcrumb ul.checkbox + .checkbox.form-help-links,
footer#footer-main ul.checkbox.utility + .checkbox.form-help-links,
footer#footer-main ul.checkbox.social + .checkbox.form-help-links,
#nav-utility > .checkbox.inline + ul.checkbox,
#nav-utility > .checkbox.form-help-links + ul.checkbox,
#nav-utility > ul.checkbox + ul.checkbox,
.breadcrumb .checkbox.inline + ul.checkbox,
.breadcrumb .checkbox.form-help-links + ul.checkbox,
.breadcrumb ul.checkbox + ul.checkbox,
footer#footer-main .breadcrumb ul.checkbox.utility + ul.checkbox,
.breadcrumb footer#footer-main ul.checkbox.utility + ul.checkbox,
footer#footer-main .breadcrumb ul.checkbox.social + ul.checkbox,
.breadcrumb footer#footer-main ul.checkbox.social + ul.checkbox,
footer#footer-main .checkbox.inline + ul.checkbox.utility,
footer#footer-main .checkbox.form-help-links + ul.checkbox.utility,
.breadcrumb footer#footer-main ul.checkbox + ul.checkbox.utility,
footer#footer-main .breadcrumb ul.checkbox + ul.checkbox.utility,
footer#footer-main ul.checkbox.utility + ul.checkbox.utility,
footer#footer-main ul.checkbox.social + ul.checkbox.utility,
footer#footer-main .checkbox.inline + ul.checkbox.social,
footer#footer-main .checkbox.form-help-links + ul.checkbox.social,
.breadcrumb footer#footer-main ul.checkbox + ul.checkbox.social,
footer#footer-main .breadcrumb ul.checkbox + ul.checkbox.social,
footer#footer-main ul.checkbox.utility + ul.checkbox.social,
footer#footer-main ul.checkbox.social + ul.checkbox.social {
  margin-left: 10px;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
form.view-only-mode input[disabled], form.view-only-mode
select[disabled], form.view-only-mode
textarea[disabled], form.view-only-mode
input[readonly], form.view-only-mode
select[readonly], form.view-only-mode
textarea[readonly] {
  cursor: default;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7;
}

.btn {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  border: 1px solid #cccccc;
  *border: 0;
  border-bottom-color: #b3b3b3;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  *margin-left: .3em;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

.btn:active,
.btn.active {
  background-color: #cccccc \9;
}

.btn:first-child {
  *margin-left: 0;
}

.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.active,
.btn:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

button.btn,
input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/*forms ends*/
input[type=checkbox] {
  background: #fff;
  -webkit-appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 6px 0;
  position: relative;
  top: -1px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

input[type=checkbox]:checked:before, label:indeterminate:before, label.indeterminate:before {
  color: #c09f72;
  content: "\f00c";
  position: absolute;
  display: block;
  left: 3px;
  top: 3px;
  font-family: FontAwesome;
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
label:indeterminate:before, label.indeterminate:before {
  content: "\f0c8";
  left: 4.5px;
  top: 14px;
  font-size: 11px;
  z-index: 1;
}


input[type=checkbox]:focus {
  border: 1px solid #ccc;
}

input[type=checkbox]:focus:before {
  left: 2px;
  top: 2px;
}

@media (max-width: 767px) {
  label.text-right {
    display: block;
    text-align: left !important;
  }
}
.listing-communication-preferences .validation-summary-errors,
.listing-communication-preferences .validation-summary-success {
   margin-top: 20px;
    margin-bottom: 0;
}
.validation-summary-errors {
  border: 1px solid #C13320;
  padding: 10px;
  color: #ffffff;
  background: #C13320;
  margin-bottom: 20px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.validation-summary-errors p {
  margin-bottom: 10px;
}
.validation-summary-errors p:last-child {
  margin-bottom: 0;
}
.validation-summary-errors ul li {
  margin-bottom: 0px;
}
.validation-summary-errors ul  {
  margin-bottom: 0px;
}

.validation-summary-success {
  border: 1px solid #5D7858;
  padding: 10px;
  color: #ffffff;
  background: #5D7858;
  margin-bottom: 20px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.validation-summary-success p {
  margin-bottom: 10px;
}
.validation-summary-success a {
  color: #fff;
  text-decoration: underline;
}
.validation-summary-success p:last-child {
  margin-bottom: 0;
}
.validation-summary-success ul li {
  margin-bottom: 5px;
}

span.field-validation-error {
  display: block;
  font-family: sans-serif;
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 10px;
  border: 1px solid #C13320;
  background: #C13320;
  color: #fff;
  padding: 5px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  top: -3px;
}
span.field-validation-error:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #C13320;
  position: absolute;
  top: -5px;
  left: 20px;
}

input.field-validation-error, textarea.field-validation-error {
  border-color: #C13320;
}

select.field-validation-error {
  color: #C13320;
}

span#accept-error {
  top: 5px;
}

.form-help-links {
  font-size: 12px;
  margin: 0;
  text-align: center;
}
.form-help-links > li:first-child {
  padding-left: 0;
}

#content {
  position: relative;
  left: 0;
  -moz-transition: all 0.75s;
  -o-transition: all 0.75s;
  -webkit-transition: all 0.75s;
  transition: all 0.75s;
  background: #fff;
}
.nav-open #content {
  left: -350px;
}
@media (max-width: 460px) {
  .nav-open #content {
    left: -300px;
  }
}
@media (max-width: 320px) {
  .nav-open #content {
    left: -210px;
  }
}

@media (max-width: 1024px) {
  body {
    background: #f8f8f8;
  }
}

nav#nav-main {
  position: relative;
  z-index: 100;
  max-height: 100%;
  overflow: auto;
  -moz-transition: all 0.75s;
  -o-transition: all 0.75s;
  -webkit-transition: all 0.75s;
  transition: all 0.75s;
  position: absolute;
  top: 0;
  right: -350px;
  width: 350px;
  border-top: 3px solid #c09f72;
}
.js nav#nav-main {
  max-height: 100%;
}
.nav-open nav#nav-main {
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-height: 100%;
}
nav#nav-main .login {
  display: none;
}
nav#nav-main .login {
  display: block;
  position: relative;
  padding: 10px 42px 10px 12px;
  font-size: 20px;
  font-family: "NewsGothicNo2W01-Bold", sans-serif;
  line-height: 1.15;
  color: #b3b3b2;
}
nav#nav-main .login .fa-user {
  margin-right: 7px;
}
nav#nav-main .login:hover {
  text-decoration: none;
}
nav#nav-main .login:after {
  content: "\f105";
  display: block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -9px;
}
nav#nav-main [data-mobile-toggle] {
  cursor: pointer;
}
nav#nav-main [data-mobile-toggled] {
  max-height: 0;
  overflow: hidden;
  -moz-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
}
nav#nav-main ul[data-mobile-toggled] {
  margin-bottom: 0;
}
nav#nav-main [data-mobile-toggled].active {
  max-height: 1000px;
}
nav#nav-main .container {
  width: auto;
}
.js nav#nav-main {
  max-height: 100%;
}
.nav-open nav#nav-main {
  max-height: 100%;
  right: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 460px) {
  nav#nav-main {
    right: -300px;
    width: 300px;
  }
}
@media (max-width: 320px) {
  nav#nav-main {
    right: -210px;
    width: 210px;
  }
}
nav#nav-main section {
  border-top: 1px solid #b3b3b2;
}
nav#nav-main h1, nav#nav-main h2 {
  font-family: "NewsGothicNo2W01-Bold", sans-serif;
}
nav#nav-main h1 {
  font-size: 24px;
  text-transform: none;
  padding-top: 20px;
  margin: 0 0 10px;
  padding-top: 10px;
  padding-right: 30px;
  font-size: 20px;
  position: relative;
}
nav#nav-main h1:before {
  display: none;
}
nav#nav-main h1:after {
  content: "\f107";
  display: block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -4px;
}
nav#nav-main h1.active:after {
  content: '\f106';
}
nav#nav-main h2 {
  font-size: 18px;
  margin: 0 0 10px;
}
@media (max-width: 1024px) {
  nav#nav-main h2 {
    font-size: 16px;
  }
}
nav#nav-main ul {
  margin: 0 0 20px;
}
nav#nav-main ul li {
  border-top: 1px solid #b3b3b2;
  font-size: 16px;
  padding: 5px 0;
  color: #808080;
}
@media (max-width: 1024px) {
  nav#nav-main ul li {
    font-size: 14px;
  }
}
nav#nav-main ul li:first-child {
  border-top: none;
}
nav#nav-main ul li a {
  display: block;
  color: #c09f72;
}
nav#nav-main ul li a:not([href]) {
  color: #808080;
}
nav#nav-main ul li a:not([href]):hover {
  text-decoration: none;
}
nav#nav-main aside {
  border-top: 5px solid #b3b3b2;
  padding: 20px 0 0 146px;
  position: relative;
  display: none;
}
nav#nav-main aside h2 {
  font-family: "NewsGothicNo2W01-Roman", sans-serif;
}
nav#nav-main aside a.gold-image {
  position: absolute;
  left: 0;
  top: 20px;
}

header#header-main {
  height: 100px;
  background: #fcfcfc;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 100;
  -moz-box-shadow: inset 0 -20px 50px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 -20px 50px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -20px 50px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  header#header-main {
    height: 100px;
  }
}

#member-login {
  position: absolute;
  top: 10px;
  right: 160px;
}
@media (max-width: 1024px) {
  #member-login {
    display: none;
  }
}
#member-login a {
  font-family: "NewsGothicNo2W01-Bold", sans-serif;
}
#member-login a i {
  margin-right: 6px;
  font-size: 21px;
  position: relative;
  top: 1px;
}

#logo-main {
  position: absolute;
  left: 15px;
  top: 23px;
  line-height: 1px;
  max-width: 300px;
}
@media (max-width: 767px) {
  #logo-main {
    max-width: 180px;
    top: 5px;
  }
}
#logo-main span {
  display: block;
}

#nav-utility {
  position: absolute;
  top: 53px;
  right: 15px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 1024px) {
  #nav-utility {
    right: 0;
  }
}
@media (max-width: 767px) {
  #nav-utility {
    text-align: center;
    right: auto;
    width: 80%;
    left: 50%;
    top: 48px;
    margin-left: -40%;
  }
}
#nav-utility > ul {
  cursor: default;
}
#nav-utility > ul > li {
  padding: 0 0 0 40px;
}
#nav-utility > ul > li:first-child {
  padding-left: 0;
}
@media (max-width: 767px) {
  #nav-utility > ul > li {
    padding: 0;
    float: left;
    width: 25%;
  }
}
#nav-utility li a {
  position: relative;
  padding: 0 5px;
}
#nav-utility li a:not(.no-hover):hover {
  text-decoration: none;
}
#nav-utility li a:not(.no-hover):hover span {
  left: 50%;
}
#nav-utility li i {
  font-size: 24px;
  cursor: pointer;
}
#nav-utility li span {
  position: absolute;
  font-size: 14px;
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  left: -999em;
  width: 100px;
  margin-left: -50px;
  top: 32px;
  background: #c09f72;
  display: inline-block;
  text-align: center;
  padding: 5px 10px;
  color: #fff;
  white-space: nowrap;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
#nav-utility li span:before {
  content: '';
  border: 8px solid transparent;
  border-bottom-color: #c09f72;
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -8px;
}
#nav-utility li.about span {
  width: 80px;
  margin-left: -40px;
}
#nav-utility li.contact span {
  width: 92px;
  margin-left: -46px;
}
#nav-utility li.email span {
  width: 110px;
  margin-left: -54px;
}
#nav-utility li.locations span {
  width: 90px;
  margin-left: -45px;
}
#nav-utility li.search a {
  position: relative;
}
#nav-utility li.search a:before {
  content: '';
  border: 8px solid transparent;
  border-bottom-color: #141414;
  position: absolute;
  top: 28px;
  left: 50%;
  margin-left: -8px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  #nav-utility li.search a:before {
    top: 22px;
  }
}
#nav-utility li.search a.open:before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  top: 12px;
}
@media (max-width: 767px) {
  #nav-utility li.search a.open:before {
    top: 16px;
  }
}
#nav-utility li.search span {
  width: 64px;
  margin-left: -32px;
}

a#nav-main-trigger {
  margin-top: 0;
  z-index: 10;
  display: inline-block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-family: "Futura W01 Book", sans-serif;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 15px;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0;
  border-radius: 0 0 3px 3px;
}
@media (max-width: 1024px) {
  a#nav-main-trigger {
    font-size: 12px;
    right: 0;
  }
}
.no-js a#nav-main-trigger {
  display: none;
}
a#nav-main-trigger i {
  font-size: 32px;
  padding-right: 10px;
}
@media (max-width: 1024px) {
  a#nav-main-trigger i {
    font-size: 21px;
  }
}
.nav-open a#nav-main-trigger {
  background: #b3b3b2;
}

.retina {
  font-family: "Futura W01 Light", sans-serif;
}
@media (max-width: 1024px) {
  .retina {
    font-family: "Futura W01 Book", sans-serif !important;
    font-weight: 100;
  }
}

.breadcrumb {
  border-bottom: 1px solid #e7e7e7;
}
.breadcrumb ul {
  margin: 0;
  padding: 10px 0 6px;
  font-size: 12px;
}
.breadcrumb ul li {
  color: #b3b3b2;
}
.breadcrumb ul li:first-child {
  padding-left: 0;
}
.breadcrumb ul li a:after {
  content: '\f105';
  display: inline-block;
  font-family: FontAwesome;
  margin: 0 0 0 15px;
  color: #b3b3b2;
  font-size: 10px;
  position: relative;
  top: -1px;
}

.section-tabs {
  display: table;
  width: 100%;
  padding: 0;
  margin: 0 0 15px;
  position: relative;
  top: -5px;
}
.section-tabs li {
  padding: 0;
  display: table-cell;
  text-align: center;
}
.section-tabs li:before {
  display: none;
}
.section-tabs li a {
  display: block;
  font-size: 12px;
  line-height: 1;
  border-left: 1px solid #b3b3b2;
}
.section-tabs li.active a {
  color: #b3b3b2;
  cursor: default;
}
.section-tabs li.active a:hover {
  text-decoration: none;
}
.section-tabs li:first-child a {
  border-left: none;
}

#home-news {
  background: #222;
  background: rgba(34, 34, 34, 0.8);
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
}
@media (max-width: 1024px) {
  #home-news {
    position: relative;
    background: #232323;
  }
}
#home-news h2 {
  font-size: 24px;
  padding-top: 30px;
}
@media (max-width: 1024px) {
  #home-news h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
#home-news p {
  font-size: 24px;
  line-height: 1.2;
  font-family: "NewsGothicNo2W01-Roman", sans-serif;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  #home-news p {
    font-size: 16px;
  }
}
#home-news .col-lg-8,
#home-news .col-md-8 {
  border-left: 1px solid #212121;
}
#home-news .col-lg-8:first-child,
#home-news .col-md-8:first-child {
  border-left: none;
}
#home-news .meta {
  font-family: "NewsGothicNo2W01-Bold", sans-serif;
}
#home-news .with-image {
  padding-left: 145px;
  position: relative;
  min-height: 140px;
}
@media (max-width: 1024px) {
  #home-news .with-image {
    padding-left: 110px;
    min-height: 110px;
  }
}
#home-news .with-image img {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  #home-news .with-image img {
    width: 100px;
  }
}

#home-hero {
  position: relative;
  overflow: hidden;
  z-index: 2;
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
#home-hero > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#home-hero > ul li {
  position: absolute;
  top: 0;
  left: 5000px;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
#home-hero > ul li.active {
  position: relative;
  z-index: 2;
  left: 0;
}
#home-hero > ul li.incoming {
  z-index: 3;
  left: 0;
}
#home-hero > ul img {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  #home-hero > ul img {
    width: 1200px;
    max-width: none;
    position: relative;
    left: 50%;
    margin-left: -600px;
  }
}
@media (max-width: 1024px) {
  #home-hero > ul img {
    width: 1024px;
    margin-left: -512px;
  }
}
@media (max-width: 800px) {
  #home-hero > ul img {
    width: 800px;
    margin-left: -400px;
  }
}
#home-hero > ul .content-wrap {
  width: 1140px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1164px) {
  #home-hero > ul .content-wrap {
    width: 100%;
  }
}
#home-hero > ul .content {
  position: absolute;
  bottom: 30px;
  left: 0;
}
@media (max-width: 1164px) {
  #home-hero > ul .content {
    left: 12px;
  }
}
@media (max-width: 1024px) {
  #home-hero > ul .content {
    bottom: 40px;
    padding-right: 12px;
    left: 0;
    padding: 20px 12px;
    background: rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 768px) {
  #home-hero > ul .content {
    bottom: 30px;
  }
}
#home-hero > ul .content h2 {
  font-size: 85px;
  line-height: 80px;
  font-family: "Futura W01 Light", sans-serif;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (max-width: 1260px) {
  #home-hero > ul .content h2 {
    font-size: 66px;
    line-height: 60px;
  }
}
@media (max-width: 768px) {
  #home-hero > ul .content h2 {
    font-size: 40px;
    line-height: 1;
  }
}
#home-hero > ul .content p {
  font-size: 24px;
  font-family: "NewsGothicNo2W01-Roman", sans-serif;
  color: #fff;
}


#nav-home {
  position: relative;
  z-index: 1;
  background: #2a2a2a;
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
#nav-home ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: inline-block;
}
#nav-home ul li {
  text-align: center;
  font-family: "NewsGothicNo2W01-Roman", sans-serif;
  float: left;
}
@media (max-width: 700px) {
  #nav-home ul li {
    float: none;
    text-align: left;
  }
}
#nav-home ul li a {
  display: block;
  font-size: 16px;
  border-left: 1px solid #212121;
  padding: 10px 50px;
}
@media (max-width: 1190px) {
  #nav-home ul li a {
    padding: 10px 40px;
  }
}
@media (max-width: 1100px) {
  #nav-home ul li a {
    padding: 10px 30px;
  }
}
@media (max-width: 990px) {
  #nav-home ul li a {
    padding: 20px 20px;
  }
}
@media (max-width: 890px) {
  #nav-home ul li a {
    padding: 20px 10px;
    border-left: none;
  }
}
@media (max-width: 790px) {
  #nav-home ul li a {
    padding: 20px 5px;
    border-top: 1px solid #212121;
  }
}
#nav-home ul li a i {
  color: #b3b3b2;
  margin-right: 10px;
}
#nav-home ul li a i.mobile-only {
  display: none;
  float: right;
  position: relative;
  top: 5px;
  font-size: 12px;
}
@media (max-width: 700px) {
  #nav-home ul li a i.mobile-only {
    display: inline;
    color: #c09f72;
  }
}
#nav-home ul li:first-child {
  text-align: left;
}
#nav-home ul li:first-child a {
  border-left: none;
  padding-left: 0;
}
@media (max-width: 700px) {
  #nav-home ul li:first-child a {
    border-top: none;
  }
}
@-ms-viewport {
  width: auto !important;
}
.content-general li {
  list-style-type: none;
}
.content-general i.fa-chevron-right {
  padding-right: 5px;
}

main aside.callout-link {
  padding: 24px 0 0px;
}

aside.callout-link a {
  font-size: 24px;
  position: relative;
  padding-left: 44px;
  display: block;
  line-height: 1.1;
}
aside.callout-link a i {
  color: #b3b3b2;
  font-size: 40px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  left: 0;
}

.button {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  padding: 5px 15px;
  margin: 2px 0 20px;
  font-family: "Futura W01 Book", sans-serif;
  background: #c09f72;
  color: #fff;
  text-align: left;
  border: none;
  cursor: pointer;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.button i {
  font-size: 12px;
}
.button.big {
  display: block;
  font-family: "NewsGothicNo2W01-Roman", sans-serif;
  margin-bottom: 30px;
  font-size: 20px;
  padding: 15px 20px;
  max-width: 400px;
  text-transform: none;
}
.button.big i {
  font-size: 18px;
  margin-right: 10px;
}
.button.big.browse.submit {
  max-width: 220px;
  float: right;
}
.button:hover {
  color: #fff;
  text-decoration: none;
  background: #bb9867;
}
.button:focus {
  -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  background: #d0b795;
}
.button:active {
  -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  background: #ba9564;
}
.button.submit {
  min-width: 110px;
  padding-right: 40px;
  float: right;
  margin: 20px 0;
}
.button.submit.big {
  float: none;
}
.button.submit.big i {
  margin-top: -8px;
}
.button.submit i {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -6px;
}
article .button.subscribe i {
  margin: 0 0 0 10px;
}

aside.video a.video {
  display: block;
  position: relative;
}
aside.video a.video img {
  margin-bottom: 20px;
}
aside.video a.video:after {
  content: "\f01d";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -25px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  font-size: 50px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  -moz-transition: all, 0.25s;
  -o-transition: all, 0.25s;
  -webkit-transition: all, 0.25s;
  transition: all, 0.25s;
}
aside.video a.video:hover:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  text-decoration: none;
}

aside.contact h2 {
  font-size: 18px;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
  margin-bottom: 10px;
}
aside.contact dl dt {
  margin: 0;
  display: block;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
  font-size: 16px;
  color: #b3b3b2;
}
aside.contact dl dd {
  margin: 0;
  display: block;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

aside.success-story img.left {
  width: 180px;
}

.related-list ul {
  margin: 0;
  padding: 0;
}
.related-list ul li {
  position: relative;
  min-height: 80px;
  padding-left: 140px;
}
.related-list ul li:before {
  display: none;
}
.related-list ul li img {
  width: 120px;
  position: absolute;
  top: 2px;
  left: 0;
}

ul.link-list {
  padding: 0;
  margin: 0;
}
ul.link-list li {
  border-top: 1px solid #e7e7e7;
}
ul.link-list li:before {
  display: none;
}
ul.link-list li:first-child {
  border-top: none;
}
ul.link-list li a {
  display: block;
  padding: 10px;
}

aside.listing-reports a i {
  color: #b3b3b2;
}

/* pagination */
.pagination {
  margin: 20px 0;
  text-align: right;
}

.pagination ul {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  margin-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *zoom: 1;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination ul > li {
  display: inline;
}
.pagination ul > li:before {
  display: none;
}

.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left-width: 0;
}

.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #f5f5f5;
}

.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #999999;
  cursor: default;
}

.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #999999;
  cursor: default;
  background-color: transparent;
}

.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
}

.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
}

.pagination-centered {
  text-align: center;
}

.pagination-right {
  text-align: right;
}

.pagination-large ul > li > a,
.pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 17.5px;
}

.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
}

.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
}

.pagination-mini ul > li:first-child > a,
.pagination-small ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > span {
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
}

.pagination-mini ul > li:last-child > a,
.pagination-small ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
}

.pagination-small ul > li > a,
.pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.9px;
}

.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
  padding: 0 6px;
  font-size: 10.5px;
}

.search-rail label {
  font-size: 18px;
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #c09f72;
  padding: 14px 0;
  margin-bottom: 0;
}
.search-rail input[type=search] {
  width: 68%;
  float: left;
}
.search-rail .button.submit {
  width: 30%;
  min-width: 0;
  float: right;
  position: relative;
  top: -2px;
}
.search-rail .search-wrap {
  zoom: 1;
}
.search-rail .search-wrap:before, .search-rail .search-wrap:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.search-rail .search-wrap:after {
  clear: both;
}
.no-js .search-rail .filter li ul {
  max-height: none;
}
.search-rail .filter input[type=checkbox] {
  margin-left: 0;
}
.search-rail .filter li {
  padding-left: 0;
  margin-bottom: 0;
}
.search-rail .filter li:before {
  display: none;
}
.search-rail .filter li ul {
  overflow: hidden;
  max-height: 0px;
  -moz-transition: max-height 0.4s;
  -o-transition: max-height 0.4s;
  -webkit-transition: max-height 0.4s;
  transition: max-height 0.4s;
  margin-bottom: 0;
}
.search-rail .filter li.open ul {
  max-height: 1070px;
}
.search-rail .filter li.open, .search-rail .filter li.closed {
  border-bottom: 1px solid #b3b3b2;
}
.search-rail .filter li.open > label, .search-rail .filter li.closed > label {
  padding-right: 22px;
  text-transform: uppercase;
}
.search-rail .filter li.open:after, .search-rail .filter li.closed:after {
  content: '\f01b';
  color: #c09f72;
  font: normal normal normal 18px/1 FontAwesome;
  height: 18px;
  width: 18px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: block;
  background: none;
  position: absolute;
  right: 0px;
  top: 15px;
  cursor: pointer;
}
.search-rail .filter li.closed:after {
  content: '\f01a';
}
.search-rail .filter .search-rail .filter li.open:after {
  content: '\f01b';
}

.basic-search {
  background: #2a2a2a;
  overflow: hidden;
  max-height: 0;
  -moz-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.open .basic-search {
  max-height: 60px;
}
.favorites-open .basic-search, .subscriptions-open .basic-search {
  overflow: visible;
}

.advanced-search {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: #494949;
  -moz-box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.25);
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.advanced-open .advanced-search {
  max-height: 1000px;
  padding: 0 0 20px;
}
@media (max-width: 767px) {
  .advanced-open .advanced-search {
    max-height: 0;
    padding: 0;
  }
}
.advanced-search h2 {
  text-transform: uppercase;
  font-size: 12px;
}
.advanced-search h3 {
  color: #c09f72;
}
.advanced-search h4 {
  margin-top: 20px;
  min-height: 22px;
  border-bottom: 1px solid #c09f72;
}
.advanced-search label {
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  cursor: pointer;
}
.advanced-search input[type=checkbox] {
  margin-left: 0;
}
@media (min-width: 1200px) {
  .advanced-search .container {
    width: 100%;
    text-align: center;
  }
  .advanced-search .row {
    width: auto;
    display: inline-block;
    text-align: left;
  }
  .advanced-search .column {
    display: block;
    width: auto;
    position: relative;
  }
  .advanced-search .column h4 {
    width: 100%;
    display: block;
  }
  .advanced-search label {
    width: 175px;
  }
  .advanced-search .subcolumn {
    display: block;
    float: left;
  }
}

#search-bar {
  position: relative;
  z-index: 5;
}
#search-bar.open {
  -moz-box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.5), 0 5px 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.5), 0 5px 10px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.5), 0 5px 10px rgba(0, 0, 0, 0.3);
}
#search-bar form {
  margin: 0;
}
#search-bar i.fa-search {
  color: #b3b3b2;
  font-size: 24px;
  float: left;
  margin: 12px 0 0;
}
#search-bar input.site-search {
  float: left;
  background: #b3b3b2;
  color: #000;
  border: 1px solid #3e3e3e;
  border-width: 0 0 1px;
  max-width: 100%;
  width: 420px;
  padding-left: 0px;
  margin: 12px 16px 10px 10px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#search-bar input.site-search:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 1200px) {
  #search-bar input.site-search {
    width: 380px;
  }
}
@media (max-width: 1060px) {
  #search-bar input.site-search {
    width: 300px;
  }
}
@media (max-width: 850px) {
  #search-bar input.site-search {
    width: 250px;
  }
}
@media (max-width: 767px) {
  #search-bar input.site-search {
    width: 44%;
  }
}
@media (max-width: 480px) {
  #search-bar input.site-search {
    width: 44%;
    padding-left: 10px;
  }
}
#search-bar ::-webkit-input-placeholder {
  color: #494949;
}
#search-bar :-moz-placeholder {
  color: #494949;
}
#search-bar ::-moz-placeholder {
  color: #494949;
}
#search-bar :-ms-input-placeholder {
  color: #494949;
}
#search-bar label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#search-bar label#advanced-search {
  float: left;
  color: #c09f72;
  font-family: "Futura W01 Book", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  top: 12px;
}
@media (max-width: 767px) {
  #search-bar label#advanced-search {
    display: none;
  }
}
#search-bar label#advanced-search:before {
  padding: 0 10px;
  font-size: 16px;
  content: '\f01a';
  font: normal normal normal 18px/1 FontAwesome;
}
#search-bar button {
  float: left;
  margin: 12px 5px 0 0;
  outline: none;
}
@media (max-width: 840px) {
  #search-bar button {
    min-width: 70px;
  }
}

#search-bar.advanced-open label#advanced-search:before {
  content: '\f01b';
}

.filter-summary {
  margin: 10px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}
.filter-summary > div {
  background-color: #f8f8f8;
  color: #c09f72;
  float: left;
  font-size: 10pt;
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  margin: 3px;
  text-transform: capitalize;
}
.filter-summary > div .fs-filter {
  background-color: #c09f72;
  border: 1px solid #c09f72;
  border-right: none;
  color: #f8f8f8;
  padding: 3px;
  -moz-border-radius: 3px 0px 0px 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px 0px 0px 3px;
}
.filter-summary > div .fs-text {
  border: solid #c09f72;
  border-width: 1px 0px;
  padding: 3px;
}
.filter-summary > div .fs-close {
  border: 1px solid #c09f72;
  border-left: none;
  padding: 3px;
  cursor: pointer;
  -moz-border-radius: 0px 3px 3px 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px 3px 3px 0px;
}

.sr-only {
  display: none;
}

#modal-div button.close, #spider-modal button.close {
  padding: 0;
  border: none;
  background: none;
  color: #b3b3b2;
  font-size: 21pt;
}
#modal-div .modal-footer, #spider-modal .modal-footer {
  margin-bottom: 10px;
}

.btn-clear, .btn-dl, .btn-print, .btn-col {
  padding: 0;
  color: #787878;
  border: none;
  background: none;
  float: right;
  margin: 10px;
  margin-bottom: 0;
}
.btn-clear:hover, .btn-clear:active, .btn-clear:focus, .btn-dl:hover, .btn-dl:active, .btn-dl:focus, .btn-print:hover, .btn-print:active, .btn-print:focus, .btn-col:hover, .btn-col:active, .btn-col:focus {
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.mobile-site-message {
  background: #C13320;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}
.mobile-site-message p {
  font-size: 16px;
  padding: 10px 12px;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 480px) {
  .mobile-site-message {
    display: none;
  }
}

.dt-loading-container {
  position: relative;
}

.dt-loading {
  z-index: 99;
  position: absolute !important;
  top: 50%;
}

.select-container {
  width: 45%;
  float: left;
  padding: 5px;
}
.select-container select {
  height: 200px;
}

.button-container {
  height: 200px;
  float: left;
  padding-top: 20px;
}
.button-container button {
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px 10px;
  padding: 5px;
}
.button-container button i {
  color: #474747;
  text-shadow: 1px 1px #b3b3b2;
}
span.red {
  color: red;
}
span.green {
  color: green;
}
.highlighted {
  fill: #C13320;
}
td.right-align {
  text-align: right;
}
tfoot th.sum {
  padding: 8px 10px;
}
#highcharts-global-regions-map {
  position: relative;
}
@media (max-width: 767px) {
  #highcharts-global-regions-map {
    display: none;
  }
}
.highcharts-map-filter-trigger.open {
  font-size: 18px;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0;
  border-radius: 0 0 3px 3px;
  padding: 4px 12px;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 10px;
}
.highcharts-map-filter-trigger.open i {
  margin: 0;
}
#highcharts-global-regions-map-filter {
  display: none;
  position: absolute;
  top: 0px;
  right: 10px;
  z-index: 15;
  width: 220px;
  height: 100%;
  background: #494949;
  color: #b3b3b2;
  padding: 12px;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0;
  border-radius: 0 0 3px 3px;
}
#highcharts-global-regions-map-filter h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
#highcharts-global-regions-map-filter.open {
  display: block;
}
#highcharts-global-regions-map-filter i {
  color: #c09f72;
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
}
#highcharts-global-regions-map-filter label {
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 12px;
}
#highcharts-global-regions-map-filter .facet-list {
  background: #e8e8e8;
  padding: 10px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  overflow: auto;
  height: 94%;
  margin-top: 20px;
}
#highcharts-global-regions-map-filter .facet-list label {
  color: #494949;
  font-size: 12px;
}

aside.tip {
  width: 350px;
  position: relative;
  padding-right: 100px;
  font-size: 12px;
  white-space: normal;
}
aside.tip img {
  position: absolute;
  top: 5px;
  right: 5px;
}
aside.tip .meta-category {
  font-size: 12px;
}
aside.tip .meta-date {
  color: #b3b3b2;
  font-size: 10px;
  font-family: arial, sans-serif;
}
aside.tip h2 {
  font-size: 14px;
  margin-bottom: 5px;
}
aside.tip p {
  color: #000;
  margin-bottom: 10px;
}
aside.tip .more {
  font-size: 14px;
  margin-bottom: 0;
}

#highcharts-ifcq {
  position: relative;
}
@media (max-width: 767px) {
  #highcharts-ifcq {
    display: none;
  }
}

#highcharts-nasq-plays {
  position: relative;
  margin-bottom: 20px;
}

aside.tip.nasq-play {
  padding: 0;
  margin: 0;
}
aside.tip.nasq-play:before {
  display: none;
}

#map-canvas .loading {
  min-height: 500px;
}
@media (max-width: 767px) {
  #map-canvas:before {
    border: 1px solid #b3b3b2;
    color: #c09f72;
    padding: 10px;
    display: block;
    content: 'The data visualization you would normally see here is not appropriate to your current viewport. Please visit this page again with your favorite tablet, laptop or desktop computer.';
  }
  #map-canvas img {
    display: none;
  }
}

.listing-main {
  position: relative;
}

.listing {
  margin-bottom: 50px;
}
.listing > ul {
  margin: 0;
}
.listing > ul ul {
  margin: 0 0 20px;
}
.listing h2 {
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 12px;
}
.listing > ul > li {
  padding: 20px 0 20px 300px;
  position: relative;
  border-top: 1px solid #b3b3b2;
  min-height: 220px;
}
.listing > ul > li.divider {
  padding-left: 0;
  min-height: 0;
}
.listing > ul > li:before {
  display: none;
}
@media (max-width: 800px) {
  .listing > ul > li {
    padding-left: 220px;
  }
}
@media (max-width: 600px) {
  .listing > ul > li {
    padding-left: 0;
  }
}
.listing > ul > li:first-child {
  padding-top: 10px;
  border-top: none;
}
.listing > ul > li:first-child img {
  top: 10px;
}
.listing > ul > li img {
  position: absolute;
  top: 20px;
  left: 0;
  width: 280px;
}
@media (max-width: 800px) {
  .listing > ul > li img {
    width: 200px;
  }
}
@media (max-width: 600px) {
  .listing > ul > li img {
    position: static;
    width: auto;
    margin-bottom: 20px;
  }
}
.listing > ul > li .category {
  font-size: 18px;
  margin-bottom: 14px;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
}

.results-header {
  font-style: italic;
  color: #b3b3b2;
  position: relative;
  top: -5px;
}

.listing-preferences > ul > li {
  padding: 20px 0;
}
.listing-preferences > ul > li img {
  position: static;
}

.listing > .listing-search > li .no-thumb {
  border-top: none;
}

.listing-search > li {
  margin-bottom: 0px;
  list-style: none;
}
div.listing-communication-preferences div.subject h2:nth-of-type(2) {
        margin-top: 25px;
}
.listing-communication-preferences {
  padding-top: 15px;
}
.listing-communication-preferences h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.listing-communication-preferences .item {
  padding: 30px 0px 15px 0;
  position: relative;
}
.listing-communication-preferences .item .item-listing {
  border-top: 1px solid #eeeeee;
}
@media (max-width: 470px) {
  .listing-communication-preferences .item {
    padding-right: 0;
  }
  .listing-communication-preferences .item span {
    display: block;
  }
}
.listing-communication-preferences .item select {
  position: absolute;
  right: 0;
  top: 10px;
  width: 210px;
}
@media (max-width: 470px) {
  .listing-communication-preferences .item select {
    position: relative;
    width: 100%;
  }
}

section.listing-main.listing-forecast {
  padding-top: 15px;
}

.listing-filter-button {
  position: absolute;
  top: 12px;
  right: 0;
  color: #c09f72;
  cursor: pointer;
  font-size: 20px;
  padding: 8px 12px 14px;
  display: inline-block;
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 0 0;
  -moz-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  -webkit-transition: all, 0.5s;
  transition: all, 0.5s;
}
.listing-filter-button.open {
  color: #fff;
  background: #b3b3b2;
}

.listing-filter {
  zoom: 1;
  background: #b3b3b2;
  padding: 0 12px;
  text-align: right;
  position: relative;
  top: -5px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px 4px 4px 4px;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
}
.listing-filter:before, .listing-filter:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.listing-filter:after {
  clear: both;
}
@media (max-width: 600px) {
  .listing-filter {
    text-align: left;
  }
}
.listing-filter label {
  color: #2a2a2a;
  display: inline-block;
}
@media (max-width: 600px) {
  .listing-filter label {
    display: block;
  }
}
.listing-filter select {
  width: auto;
  display: inline;
  max-width: 175px;
  margin-bottom: 3px;
}
.listing-filter.open {
  max-height: 100%;
  padding: 5px 12px 5px;
}
@media (max-width: 600px) {
  .listing-filter.open {
    max-height: 300px;
  }
}

.listing.no-thumb > ul > li {
  padding-left: 0;
  min-height: 0;
}
.listing.no-thumb > ul > li:first-child {
  padding-top: 20px;
}
.listing.no-thumb > ul > li p:last-child {
  margin-bottom: 0;
}



@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.site-message {
  background: #5D7858;
  color: #fff;
  text-align: center;
}
.site-message p {
  font-size: 24px;
  line-height: 1.2;
  padding: 20px;
  margin: 0;
}
@media (max-width: 767px) {
  .site-message p {
    font-size: 16px;
    padding: 10px 12px;
  }
}
.site-message.error {
  background: #C13320;
}

article .site-message {
  margin-top: -20px;
  margin-bottom: 20px;
}

.modal .modal-header {
  position: relative;
}
.modal .modal-header .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.modal .modal-body {
  padding-bottom: 0;
}
.modal .modal-footer {
  margin-top: 0;
}
.modal h1 {
  font-family: "NewsGothicNo2W01-Roman", sans-serif;
  text-transform: none;
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  #modal-login .modal-dialog {
    width: 400px;
  }
}

.table-of-contents {
  margin-bottom: 20px;
}
.table-of-contents .button {
  background: #494949;
  margin: 0;
}
.table-of-contents .button.open {
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.table-of-contents i.fa-book {
  margin-right: 10px;
}
.table-of-contents i.fa-angle-down, .table-of-contents i.fa-angle-up {
  margin-left: 10px;
}
.table-of-contents .content {
  background: #494949;
  padding: 10px 20px;
  font-family: "Futura W01 Light", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  -moz-border-radius: 0 3px 3px 3px;
  -webkit-border-radius: 0;
  border-radius: 0 3px 3px 3px;
}
.table-of-contents .content a:hover {
  text-decoration: none;
  color: #fff;
}
.table-of-contents .content a.disabled {
  cursor: default;
  color: #b3b3b2;
}
.table-of-contents .content a.disabled:hover {
  color: #b3b3b2;
}

nav.nav-user {
  position: relative;
  z-index: 100;
}
nav.nav-user > ul {
  margin: 0;
  float: right;
  border-left: 1px solid #4D4D4D;
  position: relative;
}
@media (max-width: 920px) {
  nav.nav-user > ul {
    border: none;
  }
}
@media (max-width: 767px) {
  nav.nav-user > ul {
    display: none;
  }
}
nav.nav-user > ul > li {
  float: left;
}
nav.nav-user > ul > li i {
  padding: 0 10px;
  font-size: 16px;
}
@media (max-width: 990px) {
  nav.nav-user > ul > li i.fa-star, nav.nav-user > ul > li i.fa-plus {
    display: none;
  }
}
@media (max-width: 920px) {
  nav.nav-user > ul > li i.fa-angle-down {
    display: none;
  }
}
nav.nav-user > ul > li > a {
  text-align: center;
  padding: 16px 10px;
  display: block;
  border-right: 1px solid #4D4D4D;
  font-family: "Futura W01 Book", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  background-color: #404040;
}
@media (max-width: 920px) {
  nav.nav-user > ul > li > a {
    border: none;
  }
}
nav.nav-user > ul > li > a:hover {
  text-decoration: none;
}
@media (min-width: 990px) and (max-width: 1170px) {
  nav.nav-user > ul > li > a {
    padding: 16px 5px;
  }
}
nav.nav-user .dropdown {
  position: absolute;
  top: 52px;
  left: -999em;
  right: auto;
  background: #4D4D4D;
  padding: 20px;
  width: 400px;
  border: 1px solid #4D4D4D;
  border-width: 0 1px 1px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0;
  border-radius: 0 0 5px 5px;
}
.advanced-open nav.nav-user .dropdown {
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}
nav.nav-user .dropdown p.more {
  font-style: italic;
  font-size: 12px;
  text-align: right;
  margin: 5px 0 0;
}
nav.nav-user .dropdown p.more a {
  color: #fff;
}
nav.nav-user aside.related-list, nav.nav-user aside.dd-list {
  background: #fff;
  padding: 20px 20px 1px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  max-height: 260px;
  overflow: auto;
}
nav.nav-user aside.dd-list {
  padding: 1px 20px;
}

.favorites-open .favorites > a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjIiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0ZDRkNGQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0.2)), color-stop(100%, #4d4d4d));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.2), #4d4d4d);
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), #4d4d4d);
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), #4d4d4d);
}
.favorites-open .favorites .dropdown {
  left: auto;
  right: 0;
}

.subscriptions-open .subscriptions > a {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjIiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0ZDRkNGQiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0.2)), color-stop(100%, #4d4d4d));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.2), #4d4d4d);
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.2), #4d4d4d);
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), #4d4d4d);
}
.subscriptions-open .subscriptions .dropdown {
  left: auto;
  right: 0;
}

.favorites-list li {
  position: relative;
  padding-right: 30px;
}
.favorites-list li i {
  position: absolute;
  top: 13px;
  right: 0;
  cursor: pointer;
  color: #b3b3b2;
}
.favorites-list li i:hover {
  color: #4D4D4D;
}

#nav-article-utility {
  position: relative;
  font-size: 12px;
  zoom: 1;
}
#nav-article-utility:before, #nav-article-utility:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
#nav-article-utility:after {
  clear: both;
}
@media (min-width: 767px) {
  #nav-article-utility {
    margin-top: 15px;
  }
}
#nav-article-utility ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
@media (max-width: 767px) {
  #nav-article-utility ul {
    position: relative;
    top: auto;
    padding-bottom: 10px;
  }
}
#nav-article-utility li {
  padding: 0 10px;
  display: inline-block;
  color: #b3b3b2;
  font-size: 15px;
}
#nav-article-utility li:before {
  display: none;
}
#nav-article-utility li:first-child {
  padding-left: 0;
}
#nav-article-utility i {
  font-size: 15px;
  margin-right: 4px;
  position: relative;
  top: 1px;
}
#nav-article-utility .section-desc {
  color: #b3b3b2;
  font-weight: bold;
}
#nav-article-utility .back, #nav-article-utility .filter {
  float: right;
  padding-right: 0;
}
@media (max-width: 700px) {
  #nav-article-utility .download, #nav-article-utility .print, #nav-article-utility .back {
    display: none;
  }
}
@media (max-width: 700px) {
  #nav-article-utility .no-mobile {
    display: none;
  }
}
#nav-article-utility .addthis_sharing_toolbox {
  position: absolute;
  font-size: 14px;
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  left: -999em;
  margin-left: -50px;
  top: 28px;
  background: #fff;
  display: inline-block;
  text-align: center;
  padding: 8px 5px 5px;
  color: #fff;
  white-space: nowrap;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
#nav-article-utility .addthis_sharing_toolbox p {
  margin: 0;
}
#nav-article-utility .addthis_sharing_toolbox:before {
  content: '';
  border: 8px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -8px;
}
#nav-article-utility li.open .addthis_sharing_toolbox {
  left: 0;
}
#nav-article-utility li.filter {
  background: #b3b3b2;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #FFF;
  padding: 5px 5px 5px 10px;
  margin: 0;
  vertical-align: middle;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  #nav-article-utility li.filter {
    position: relative;
    height: auto;
  }
}
#nav-article-utility .style-select {
  display: inline-block;
  margin: 0 0 0 5px;
  position: relative;
}
#nav-article-utility .style-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 25px;
  margin: 0;
  line-height: 18px;
  font-size: 15px;
  background-color: #FFF;
  box-shadow: none;
  border: 1px solid white;
}
#nav-article-utility .style-select select::-ms-expand {
  display: none;
}
#nav-article-utility .style-select:after {
  content: "\f078";
  position: absolute;
  font-size: 12px;
  right: 10px;
  top: 20%;
  color: #b3b3b2;
  font-family: 'FontAwesome';
  pointer-events: none;
}

/* this hack is purely for Firefox 34 which doesn’t want to hide the native arrow */
@-moz-document url-prefix() {
  #nav-article-utility .style-select:before {
    content: " ";
    width: 25px;
    height: 29px;
    background-color: white;
    border-radius: 3px;
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
  }
}
/* this hack is purely for IE 9 which needs to use the native arrow instead of the styled arrow */
.lt-ie10 #nav-article-utility .style-select select, html[data-useragent*='MSIE 10.0'] #nav-article-utility .style-select select {
  padding-right: 5px;
}
.lt-ie10 #nav-article-utility .style-select select::-ms-expand, html[data-useragent*='MSIE 10.0'] #nav-article-utility .style-select select::-ms-expand {
  display: block;
}
.lt-ie10 #nav-article-utility .style-select:after, html[data-useragent*='MSIE 10.0'] #nav-article-utility .style-select:after {
  content: '';
}

.tab-content-nav {
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
}
.tab-content-nav li {
  padding: 0;
  display: table-cell;
  font-family: "Futura W01 Medium", sans-serif;
  text-transform: uppercase;
}
.tab-content-nav li:before {
  display: none;
}
.tab-content-nav li a {
  display: block;
  font-size: 12px;
  line-height: 1;
  padding: 16px 10px 12px;
  background: #c09f72;
  color: #fff;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px;
  border-radius: 3px 3px 0 0;
}
.tab-content-nav li a:hover {
  text-decoration: none;
  -moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
}
.tab-content-nav li.active a {
  background: #fff;
  color: #b3b3b2;
  -moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
}
.tab-content-nav li.active a:hover {
  cursor: default;
}

.tab-content {
  display: none;
  background: #fff;
}
.tab-content .link-list {
  padding-top: 20px;
}
.tab-content.active {
  display: block;
}
article .tab-content {
  padding: 20px;
}


#stage {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
article, section.listing-main {
  border-top: 5px solid #b3b3b2;
  padding: 20px 0;
}
aside h1, section.contents-main h1 {
  font-size: 18px;
  margin-bottom: 14px;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
  text-transform: none;
}
.contents-main {
  position: relative;
}
article, section.contents-main {
  border-top: 5px solid #b3b3b2;
  padding: 20px 0 10px 0;
}
.newsheader {
    padding: 20px 0 0px 0 !important;
}
.registerarticle {
    border-top: 5px solid #b3b3b2;
    padding: 20px 0 0px 0;
}
aside h1, section.contents-main h1 {
  font-size: 13pt;
}
section.contents-main.listing-forecast {
  padding-top: 15px;
}
.listing-double h2 {
  font-size: 18px;
}
.listing-double h2 a i {
  color: #b3b3b2;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.listing-double img {
  margin-bottom: 12px;
}
.meta-category {
  font-size: 14px;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
  color: #b3b3b2;
  padding: 0 0 5px;
}
.meta-url {
  font-size: 12px;
  position: relative;
  top: -10px;
}
article img {
  margin-bottom: 20px;
}
figure.rte {
  margin: 5px 20px 20px;
  display: table;
}
figure.rte img {
  margin: 0;
}
figure.rte.left {
  margin-left: 0;
}
figure.rte.right {
  margin-right: 0;
}
figure.rte figcaption {
  display: table-caption;
  caption-side: bottom;
  font-size: 12px;
  font-style: italic;
}
main {
  padding: 40px 0;
}
@media (max-width: 1024px) {
  main {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  main {
    padding: 20px 0;
  }
}
.remember-me input[type=checkbox] {
  margin-left: 0;
}
.landing {
  border-top: 5px solid #b3b3b2;
  padding-top: 20px;
}
.landing img {
  margin-bottom: 20px;
}
span.more {
  display: inline-block;
  float: right;
  font-size: 12px;
}
span.more i {
  color: #c09f72;
  font-size: .8em;
}
p.more i {
  color: #c09f72;
  font-size: .8em;
}
a.gold-image {
  background: #c09f72;
  display: inline;
}
a.gold-image img {
  display: block;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a.gold-image:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
 #logIn i.fa.spin {
  font-size: 20px;
    top: 40%;
}
i.fa-lock, i.fa-unlock {
  color: #b3b3b2;
}
main aside {
  margin-bottom: 20px;
  padding: 30px 0 0px;
   padding-bottom: 25px;
}
main aside:before {
  width: 100%;
  max-width: 365px;
}
main aside img.left {
  margin: 5px 20px 15px 0;
}
.tac-wrap {
  max-height: 300px;
  overflow: auto;
  margin-bottom: 20px;
  padding-right: 20px;
}
.loading {
  min-height: 80px;
  width: 100%;
  position: relative;
  color: #b3b3b2;
  text-align: center;
}
.loading:after {
  content: "\f021";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  font-size: 30px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -moz-animation: fa-spin 1s infinite linear;
  -webkit-animation: fa-spin 1s infinite linear;
  animation: fa-spin 1s infinite linear;
}
th {
  text-align: left;
}
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border: 1px solid #b3b3b2;
  background-color: #fff;
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td {
  padding: 5px 10px;
  line-height: 1.2;
  vertical-align: top;
  border: 1px solid #b3b3b2;
  color: #7a7a7a;
}
table > thead > tr > th,
table > thead > tr > td {
  border-bottom-width: 2px;
  color: #494949;
}
table > tbody > tr:nth-child(odd) > td,
table > tbody > tr:nth-child(odd) > th {
  background-color: #eee;
}
table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #c09f72;
}
table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
table > tbody + tbody {
  border-top: 2px solid #b3b3b2;
}
table table {
  background-color: #fff;
}
.table-container {
  width: 100%;
  overflow: scroll;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.print-only {
  display: none;
}
.datatools-wrapper {
   width: 100%;
   height: 450px;
   overflow-x: auto;
   overflow-y: auto;
   border: 1px solid #BEBEBE;
}
.datatools-wrapper::-webkit-scrollbar {
      width: 15px;
      background-color: #FAFAFA;       
}
.datatools-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.datatools-wrapper::-webkit-scrollbar-button {
    display: none;
}
.datatools-wrapper::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(193,193,193,1); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
.shooju-embed {
    width: 100%;
    height: 450px;
    display: block;
    position: relative;
}
@media (min-width: 1100px) {
    .shooju-embed {
        width: 90%;
        height: 450px;
        display: block;
        position: relative;
        padding-left: 15px;
    }
}
.shooju-link {
     float: left;
     width: 28%;
 }
.shooju-link-admin {
     float: left;
     width: 68%;
 }
.datatools-link {
     float: left;
     width: 100%;
 }
div.col-lg-16.col-sm-16 .member-content-article-title {
    font-size: 28px !important;
    padding-bottom: 20px !important;
    display: block;
    line-height: 1; 
}
p.author {
  font-size: 16px;
  color: #c09f72;
  font-family: "NewsGothicNo2W01-Medium 710407", sans-serif;
}
p.section-title {
    font-size: 25px;
    font-weight: bold;
}