/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @font-face */
@font-face {
  font-family: 'BebasNeue';
  src: url("../font/bebasneue.eot");
  src: url("../font/bebasneue.eot?#iefix") format("embedded-opentype"), url("../font/bebasneue.woff") format("woff"), url("../font/bebasneue.ttf") format("truetype"), url("../font/bebasneue.svg#BebasNeueRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ typography */
/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
  font: normal 14px / 1.5 Helvetica, Arial, sans-serif;
  color: #58595b;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 * See the element-focusable rule in system.base.css.
 */
#skip-link {
  margin: 0;
}
#skip-link a {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

/*
 * Header
 */
#logo {
  /* Wrapping link for logo */
  float: left;
  /* LTR */
  margin: 0;
  padding: 0;
}
#logo img {
  vertical-align: bottom;
}

#name-and-slogan {
  /* Wrapper for website name and slogan */
  float: left;
}

#site-name {
  /* The name of the website */
  margin: 0;
  font-size: 2em;
  line-height: 1.5em;
}
#site-name a:link, #site-name a:visited {
  color: #000;
  text-decoration: none;
}
#site-name a:hover, #site-name a:focus {
  text-decoration: underline;
}

#site-slogan {
  /* The slogan (or tagline) of a website */
  margin: 0;
  font-size: 1em;
}

.region-header {
  /* Wrapper for any blocks placed in the header region */
  clear: both;
  /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main {
  padding-top: 0;
}

/*
 * Content
 */
.breadcrumb {
  /* The path to the current page in the form of a list of links */
  display: none;
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1.title {
  /* Comment title */
  margin: 0;
}

h2.node-title, h2.block-title, h2.title, h2.comment-form {
  /* Comment title */
  margin: 0;
}

h3.title {
  /* Comment title */
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, img.i {
  margin-bottom: 20px;
}

.bd .content ul, .bd .content ol {
  margin-bottom: 20px;
}

tr.even {
  /* Some tables have rows marked even or odd. */
  /* background-color: #eee; */
  /* Drupal core uses a #eee background */
}
tr.odd {
  /* background-color: #eee; */
  /* Drupal core uses a #eee background */
}

div.messages {
  /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */
  margin: 1.5em 0;
  /* Drupal core uses "6px 0" margin */
}
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}
div.status {
  /* Normal priority messages */
}
div.warning {
  /* Medium priority messages */
  /* border: 1px solid #f0c020; */
  /* Drupal core uses: 1px solid #f0c020 */
}

tr.warning {
  /* Medium priority messages */
  /* border: 1px solid #f0c020; */
  /* Drupal core uses: 1px solid #f0c020 */
}

div.error, tr.error {
  /* High priority messages. See also the .error declaration below. */
}

.error {
  /* Errors that are separate from div.messages status messages. */
  /* color: #e55; */
  /* Drupal core uses a #e55 background */
}

.warning {
  /* Warnings that are separate from div.messages status messages. */
  /* color: #e09010; */
  /* Drupal core uses a #e09010 background */
}

.tabs {
  /* See also the tabs.css file. */
}

.region-help {
  /* Help text on a page */
}

.more-help-link {
  /* Link to more help */
}

.region-content {
  /* Wrapper for the actual page content */
}

ul.inline {
  /* List of links generated by theme_links() */
  display: inline;
  padding: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

span.field-label {
  /* The inline field label used by the Fences module */
  padding: 0 1em 0 0;
  /* LTR */
}

.item-list .pager {
  /* A list of page numbers when more than 1 page of content is available */
  padding: 0;
}
.item-list .pager li {
  /* Each page number in the pager list */
  padding: 0 0.5em;
}

.feed-icon {
  /* The link to the RSS or Atom feed for the current list of content */
}

.more-link {
  /* Aggregator, blog, and forum more link */
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
/*
 * Footer
 */
/*
 * Page bottom
 */
.region-bottom {
  /* Wrapper for any blocks placed in the page bottom region */
}

/********************** Additional CSS *************************/
a {
  color: #0054a6;
  text-decoration: underline;
}
a:hover {
  color: #000;
  text-decoration: none;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

h2.pane-title {
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1em;
  text-transform: uppercase;
}

.pane-article-block h2.pane-title {
  margin: 10px 0;
}
.pane-article-block .views-field-title {
  font-size: 16px;
  line-height: 1em;
}
.pane-article-block .views-field-title span {
  font-size: 16px;
  line-height: 1em;
  height: 16px;
}
.pane-article-block .views-field-title a {
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 19px;
  color: #000;
  padding: 0;
  margin: 0;
  letter-spacing: 0.5px;
}
.pane-article-block .views-field-title a:hover {
  color: #0054a6;
}
.pane-article-block .views-field-field-image {
  width: 75px;
  height: 75px;
  display: block;
  float: left;
  margin-right: 10px;
}
.pane-article-block .views-row {
  clear: both;
  border-top: 1px solid #D9D9D9;
  padding: 10px 0;
  margin: 0;
  display: block;
  min-height: 76px;
}
.pane-article-block .views-row-last {
  border-bottom: 1px solid #D9D9D9;
}

.pane-submenu .field-content span {
  line-height: 20px;
  font-size: 20px;
}
.pane-submenu .field-content a {
  color: #000;
  background-color: #FFF;
  text-decoration: none;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 20px;
  letter-spacing: 0.8px;
  line-height: 20px;
  font-weight: normal;
  padding: 0 2px;
}
.pane-submenu .field-content a:hover {
  color: #FFF;
  background-color: #000;
}

div.pane-menu-menu-footer-menu h2.pane-title {
  display: none;
}
div.pane-menu-menu-footer-menu ul.menu {
  list-style-type: none;
  margin: 0;
  padding-bottom: 6px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 6px;
  width: 100%;
  height: 31px;
  display: flex;
  justify-content: center;
}
div.pane-menu-menu-footer-menu ul.menu li {
  display: inherit;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 0;
  text-align: center;
}
div.pane-menu-menu-footer-menu ul.menu li::after {
  content: "//";
  color: #646464;
  font-size: 20px;
  font-weight: bold;
  margin-left: 12px;
  margin-right: 0;
  padding-top: 2px;
}
div.pane-menu-menu-footer-menu ul.menu li:last-child::after {
  display: none;
}
div.pane-menu-menu-footer-menu ul.menu li a {
  -moz-text-blink: none;
  -moz-text-decoration-color: -moz-use-text-color;
  -moz-text-decoration-line: none;
  -moz-text-decoration-style: solid;
  color: #808285;
  cursor: pointer;
  display: block;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 20px;
  height: 26px;
  letter-spacing: 0.5px;
  line-height: 32px;
  text-transform: uppercase;
}
div.pane-menu-menu-footer-menu ul.menu li a:hover {
  color: #545CAF;
}
div.pane-menu-menu-legal-menu h2.pane-title {
  display: none;
}
div.pane-menu-menu-legal-menu ul.menu {
  clear: both;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
  text-align: center;
}
div.pane-menu-menu-legal-menu ul.menu li {
  display: inline;
  font-size: 11px;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div.pane-menu-menu-legal-menu ul.menu li:after {
  color: #27319A;
  content: '//';
  padding-left: 10px;
  padding-right: 5px;
}
div.pane-menu-menu-legal-menu ul.menu li.last:after {
  content: '';
}
div.pane-menu-menu-legal-menu ul.menu li a {
  -moz-text-blink: none;
  -moz-text-decoration-color: -moz-use-text-color;
  -moz-text-decoration-line: none;
  -moz-text-decoration-style: solid;
  color: #808285;
  text-transform: uppercase;
}
div.pane-menu-menu-legal-menu ul.menu li a:hover {
  color: #0054a6;
}

.pane-activity-ticker h2.pane-title {
  margin-bottom: 10px;
  padding-top: 10px;
}

#views_slideshow_cycle_main_activity_ticker-block .views-slideshow-cycle-main-frame-row-item {
  width: 300px;
  float: left;
  margin-right: 20px;
  font-size: 12px;
  line-height: 14px;
}
#views_slideshow_cycle_main_activity_ticker-block .views-slideshow-cycle-main-frame-row-item .views-field-description {
  margin-bottom: 5px;
}
#views_slideshow_cycle_main_activity_ticker-block .views-slideshow-cycle-main-frame-row-item a {
  text-decoration: none;
}
#views_slideshow_cycle_main_activity_ticker-block .views-slideshow-cycle-main-frame-row-item a em {
  font-style: normal;
}
#views_slideshow_cycle_main_activity_ticker-block .views-slideshow-cycle-main-frame-row-item.views-row-2 {
  margin-right: 0;
}

#views_slideshow_cycle_main_featured_slider-block_1 {
  height: 547px;
}
#views_slideshow_cycle_main_featured_slider-block_1 div.slide-title a {
  background-attachment: scroll;
  background-clip: border-box;
  background-color: rgba(0, 0, 0, 0.65);
  background-image: none;
  background-origin: padding-box;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto auto;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 0px;
  padding-top: 18px;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  display: block;
  text-decoration: none !important;
  position: absolute;
  width: 936px;
  overflow: hidden;
}

.view-featured-slider .slide-title a {
  background-attachment: scroll;
  background-clip: border-box;
  background-color: rgba(0, 0, 0, 0.65);
  background-image: none;
  background-origin: padding-box;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto auto;
  padding-bottom: 16px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 18px;
  color: #FFFFFF;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  display: block;
  text-decoration: none !important;
  position: absolute;
  width: 592px;
  overflow: hidden;
}

#views_slideshow_cycle_main_featured_slider-block_1 div.slider-image-caption, .view-featured-slider div.slider-image-caption {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
  bottom: 10px;
  color: #FFFFFF;
  font-style: italic;
  padding: 0 4px;
  position: absolute;
  right: 4px;
}

#views_slideshow_cycle_main_featured_slider-block_1 div.slider-image-caption p, #views_slideshow_cycle_main_featured_slider-block_1 div.slider-image-caption div.slider-image-caption {
  margin: 0;
  display: inline;
}

.view-featured-slider div.slider-image-caption {
  margin: 0;
  display: inline;
}
.view-featured-slider div.slider-image-caption p {
  margin: 0;
  display: inline;
}

.pane-featured-slider {
  overflow: hidden;
  position: relative;
}

.view-featured-slider #views_slideshow_controls_text_pause_featured_slider-block_1, .view-featured-slider .views-slideshow-controls-text-pause {
  display: none;
}

.views_slideshow_controls_text_pause {
  display: none;
}

.view-featured-slider #views_slideshow_controls_text_featured_slider-block_1 {
  position: absolute;
  width: 960px;
  z-index: 999;
}
.view-featured-slider .views-slideshow-controls-text {
  position: absolute;
  width: 640px;
  z-index: 999;
}

#views_slideshow_controls_text_previous_featured_slider-block_1, #views_slideshow_controls_text_next_featured_slider-block_1 {
  padding: 17px;
}

.view-featured-slider .views-slideshow-controls-text-previous, .view-featured-slider .views-slideshow-controls-text-next {
  padding: 17px;
}

#views_slideshow_controls_text_previous_featured_slider-block_1, .view-featured-slider .views-slideshow-controls-text-previous {
  float: left;
}

#views_slideshow_controls_text_next_featured_slider-block_1, .view-featured-slider .views-slideshow-controls-text-next {
  float: right;
}

#views_slideshow_controls_text_previous_featured_slider-block_1, #views_slideshow_controls_text_next_featured_slider-block_1 {
  margin-top: -315px;
}

.view-featured-slider .views-slideshow-controls-text-previous, .view-featured-slider .views-slideshow-controls-text-next {
  margin-top: -225px;
}

#views_slideshow_controls_text_previous_featured_slider-block_1 a, #views_slideshow_controls_text_next_featured_slider-block_1 a {
  display: block;
  height: 45px;
  width: 25px;
  text-indent: -9999px;
  cursor: pointer;
  opacity: 0.5;
  border: 0;
}

.view-featured-slider .views-slideshow-controls-text-previous a, .view-featured-slider .views-slideshow-controls-text-next a {
  display: block;
  height: 45px;
  width: 25px;
  text-indent: -9999px;
  cursor: pointer;
  opacity: 0.5;
  border: 0;
}

#views_slideshow_controls_text_previous_featured_slider-block_1 a, .view-featured-slider .views-slideshow-controls-text-previous a {
  background: url("../img/sprite.png") no-repeat scroll 0 -110px transparent;
}

#views_slideshow_controls_text_next_featured_slider-block_1 a, .view-featured-slider .views-slideshow-controls-text-next a {
  background: url("../img/sprite.png") no-repeat scroll -26px -110px transparent;
}

#views_slideshow_controls_text_previous_featured_slider-block_1 a:hover, #views_slideshow_controls_text_next_featured_slider-block_1 a:hover {
  opacity: 1;
}

.view-featured-slider .views-slideshow-controls-text-previous a:hover, .view-featured-slider .views-slideshow-controls-text-next a:hover {
  opacity: 1;
}

#main #content h1#page-title {
  display: none;
}

.pane-global-header {
  padding-bottom: 10px;
  border-bottom: solid 1px #FFF;
}
.pane-global-header .follow-links {
  margin-bottom: -3px;
  display: inherit;
}

.pane-system-main-menu .pane-content {
  float: right;
  display: inline-block;
}
.pane-system-main-menu h2.pane-title {
  display: none;
}
.pane-system-main-menu ul.menu {
  float: right;
  margin: 2px 0 0 0;
  padding: 0;
}
.pane-system-main-menu ul.menu li {
  float: left;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  padding: 0;
  position: relative;
  margin: 0;
  font-size: 28px;
  line-height: 28px;
}
.pane-system-main-menu ul.menu li:after {
  content: "//";
  color: #ED1C24;
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
  margin-left: 0 12px;
}
.pane-system-main-menu ul.menu li.last {
  background: none;
  padding: 0;
}
.pane-system-main-menu ul.menu li.last:after {
  content: "";
}
.pane-system-main-menu ul.menu li.last a {
  /*padding-right: 0;*/
  margin-right: 0;
}
.pane-system-main-menu ul.menu li a {
  -moz-text-blink: none;
  -moz-text-decoration-color: -moz-use-text-color;
  -moz-text-decoration-line: none;
  -moz-text-decoration-style: solid;
  color: #000000;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 32px;
  margin: 0 10px;
  padding: 0 4px;
  text-decoration: none;
}
.pane-system-main-menu ul.menu li a:hover {
  background: #000;
  color: #fff;
}
.pane-system-main-menu ul.menu li.active-trail a {
  background: #000;
  color: #fff;
}
.pane-system-main-menu ul.menu li a.make-highlighted, .pane-system-main-menu ul.menu li a.stay-highlighted {
  color: #FFF !important;
  background: #000;
}

div#mini-panel-global_header .panel-col-first {
  width: 250px;
}
div#mini-panel-global_header .panel-col-last {
  width: 660px;
}
div#mini-panel-global_header .panel-col-last .panel-separator {
  margin: 0;
}
div#mini-panel-global_header a#logo {
  margin-top: 28px;
}

#mini-panel-global_footer {
  padding-top: 20px;
}
#mini-panel-global_footer div.panel-separator {
  margin: 0;
}

.pane-menu-menu-legal-menu {
  /*margin-top: -25px;*/
}

div#mini-panel-global_header .pane-system-user-menu {
  margin-bottom: 4px;
}
div#mini-panel-global_header .pane-system-user-menu h2.pane-title {
  display: none;
}
div#mini-panel-global_header .pane-system-user-menu ul.menu {
  margin: 0;
  padding: 0;
  text-align: right;
  font-size: 12px;
  color: #000;
  font-weight: bold;
}
div#mini-panel-global_header .pane-system-user-menu ul.menu li {
  list-style: none;
  display: inline-block;
  border-right: 1px solid #DDD;
  padding: 0 0.5em 0 0;
  line-height: 1em;
}
div#mini-panel-global_header .pane-system-user-menu ul.menu li a:hover {
  color: #0452A4;
}
div#mini-panel-global_header .pane-system-user-menu ul.menu li:last-of-type {
  color: #aaa;
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
div#mini-panel-global_header .pane-system-user-menu ul.menu li:last-of-type a {
  color: #0037AB;
  transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  -ms-transition: all 100ms linear;
  text-transform: uppercase;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 20px;
  font-weight: normal;
}
div#mini-panel-global_header .pane-system-user-menu ul.menu li:last-of-type a:hover {
  color: #0452A4;
}
div#mini-panel-global_header .pane-search-form {
  display: inline-block;
  padding-left: 1px;
  text-align: right;
  margin-bottom: 4px;
}
div#mini-panel-global_header .pane-search-form #search-block-form {
  border: 1px solid #DDDDDD;
  height: 19px;
  margin: 0 0 0 auto;
  min-width: 150px;
}
div#mini-panel-global_header .pane-search-form #search-block-form .form-actions input[type="submit"] {
  margin: 0;
  padding: 0;
  background: transparent url("../images/searchicon.png") 0 2px no-repeat;
  border: 0;
  text-indent: -9999px;
  width: 16px;
  height: 19px;
  min-width: 0;
}
div#mini-panel-global_header .pane-search-form #search-block-form input.form-text {
  border: 0 none;
  display: inline-block;
  height: 19px;
  padding: 0;
  width: 120px;
}
div#mini-panel-global_header .form-item-search-block-form input {
  line-height: 12px;
  padding: 1px;
}
div#mini-panel-global_header .pane-follow-site {
  display: inline-block;
  margin-right: 6px;
}
div#mini-panel-global_header .pane-follow-site h2.pane-title {
  display: none;
}

div.follow-links .follow-link {
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
}
div.follow-links a.follow-link-this-site {
  background: url("../img/follow_icons2.jpg") no-repeat -42px 0px;
}
div.follow-links a.follow-link-facebook {
  background: url("../img/follow_icons2.jpg") no-repeat 0px 0px;
}
div.follow-links a.follow-link-twitter {
  background: url("../img/follow_icons2.jpg") no-repeat -21px 0px;
}
div.follow-links a.follow-link-googleplus {
  background: url("../img/follow_icons2.jpg") no-repeat -40px 0px;
}
div#mini-panel-global_header .panel-col-last .pane-search-form form#search-block-form h2 {
  display: none;
}
div#mini-panel-global_header .panel-col-last .pane-search-form form#search-block-form .form-item {
  margin: 0;
}

.panel-2col-stacked .panel-col-first {
  width: 650px;
}
.panel-2col-stacked .panel-col-last {
  width: 300px;
  float: right;
}

.pane-follow-site .pane-content {
  float: right;
}
.pane-follow-site h2.pane-title {
  font-size: 14px;
  float: left;
  color: #676767;
  margin: 0;
  padding: 0;
  margin-top: 4px;
  margin-right: 3px;
}
.pane-follow-site .follow-link {
  /*text-indent: -9999px;*/
  /*float: left;*/
  /* ****** this was needed in 1.0 release ***** */
}
.pane-follow-site div.follow-link-wrapper {
  float: left;
  /* ****** this is needed in 2.0 release, because wrappers were added ***** */
}

/*
 * Join us webform
 */
article.node-webform .submitted, article.node-webform .statistics_counter {
  display: none;
}

#block-node-9490 {
  background-color: #FF5C19;
}

/*
 * Other
 */
h3 {
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: normal;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
}

ul.article-list {
  margin: 0;
}
ul.article-list li {
  border-top: 1px solid #918F8F;
  list-style: none;
  margin: 10px 0 0;
  padding: 20px 0 0;
  position: relative;
  list-style: none;
}
ul.article-list li.article {
  min-height: 140px;
  padding-left: 160px;
}
ul.article-list li.article h3 {
  margin-bottom: 6px;
}
ul.article-list li.article .read-more {
  color: #58595b;
  font-weight: bold;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
}
ul.article-list li.article .read-more:hover {
  color: #0054a6;
}
ul.article-list li.article h3 a {
  color: #000;
  text-decoration: none;
}
ul.article-list li.article h3 a:hover {
  color: #0054a6;
}
ul.article-list li.article .img {
  left: 0;
  position: absolute;
  top: 20px;
}
ul.article-list li.article p {
  margin-bottom: 6px;
  margin-top: 0;
}

#content .field-name-body div.field-item p:first-child {
  font-weight: bold;
}

div.views-field-service-links li {
  display: inline-block;
}
div.views-field-service-links ul {
  margin: 5px 0 0 0;
}

.menu-minipanels .panel-display div.panel-col-first {
  width: auto;
  min-width: 160px;
  max-width: 180px;
}
.menu-minipanels a {
  text-decoration: none;
}
.menu-minipanels .panel-display div.panel-col-last {
  width: 235px;
}
.menu-minipanels .panel-display div.panel-col-last .inside {
  margin: 0;
  padding-left: 7px;
}
.menu-minipanels .panel-display div.panel-col-last .pane-highlight h2.pane-title {
  margin: 0;
  font-size: 22px;
  line-height: 16px;
  font-weight: normal;
  border-bottom: solid 2px #A3A3A3;
  display: inline-block;
  margin-bottom: 10px;
}
.menu-minipanels .panel-display div.panel-col-last .pane-highlight .views-field-title a {
  color: black;
  text-decoration: none;
  font-size: 22px;
  line-height: 16px;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.menu-minipanels .panel-display div.panel-col-last .pane-highlight .views-field-view-node {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.menu-minipanels .panel-display div.panel-col-last .pane-highlight .views-field-view-node span.views-label-view-node {
  color: #1C54A2;
  font-weight: bold;
}
.menu-minipanels .panel-display div.panel-col-last .pane-highlight .views-field-view-node .field-content a {
  color: #58585A;
  font-size: 12px;
  font-weight: bold;
}
.menu-minipanels .panel-display div.panel-col-last .pane-highlight .views-field-body p {
  font-size: 12px;
  line-height: 13px;
  margin-top: 5px;
  margin-bottom: 0;
  color: #777;
}
.menu-minipanels .panel-display div.panel-col-last .pane-highlight .views-field-field-image {
  width: 75px;
  float: right;
  padding-left: 15px;
  padding-right: 15px;
}

.view-id-submenu .view-content .views-row {
  padding-bottom: 3px;
}

.qtip-occupystyle {
  min-width: 400px;
}

.qtip-content {
  padding: 0;
}

.qtip-contentWrapper {
  border: 0;
}

ul.quicktabs-tabs.quicktabs-style-basic li {
  padding: 0;
}
ul.quicktabs-tabs.quicktabs-style-basic li a {
  font: 18px/18px 'BebasNeue', Arial, Helvetica, sans-serif !important;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

#quicktabs-container-article_tabs .views-field-title a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: .5px;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}
#quicktabs-container-article_tabs .views-field-title a:hover {
  color: #0054a6;
}
#quicktabs-container-article_tabs .views-field-field-image img {
  float: left;
  left: auto;
  margin: 0 20px 10px 0;
  position: static;
  top: auto;
}
#quicktabs-container-article_tabs .views-field-body p {
  margin-bottom: 6px;
}
#quicktabs-container-article_tabs div.views-row {
  font-size: 12px;
  line-height: 15px;
  padding: 20px 0 0 0;
  min-height: 0;
  border-top: 1px solid #918F8F;
  list-style: none;
  margin: 20px 0 0;
  position: relative;
}
#quicktabs-container-article_tabs div.views-row.views-row-first {
  border: 0;
  padding: 0;
  margin-top: 10px;
}
#quicktabs-container-article_tabs .views-field-view-node a {
  color: #58595B;
  font-weight: bold;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
}
#quicktabs-container-article_tabs .views-field-view-node a span.sep {
  color: #1E57A9;
}

body.node-type-article #node-content h2.pane-title {
  display: none;
}

.pane-quicktabs-article-tabs {
  margin-top: 20px;
}
.pane-quicktabs-article-tabs h2.pane-title {
  display: none;
}
.pane-quicktabs-article-tabs ul.quicktabs-tabs li {
  border: 0;
  padding: 1px 1px 2px;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  margin-right: 2px;
}
.pane-quicktabs-article-tabs ul.quicktabs-tabs li.active {
  border-bottom: 0;
  padding-top: 6px;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
}
.pane-quicktabs-article-tabs ul.quicktabs-tabs li a {
  background-color: #FFF;
  border: 0;
  color: #AAA;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif !important;
}
.pane-quicktabs-article-tabs ul.quicktabs-tabs li:hover, .pane-quicktabs-article-tabs ul.quicktabs-tabs li a:hover {
  border: 0;
}
.pane-quicktabs-article-tabs ul.quicktabs-tabs.quicktabs-style-basic {
  height: auto;
  font: 'BebasNeue';
  border: 0;
  padding: 0;
}

#quicktabs-container-article_tabs {
  border: solid 1px #918F90;
}

.pane-quicktabs-article-tabs ul.quicktabs-tabs li.active a {
  background-color: #000;
  padding: 2px 8px;
  color: #FFF;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
}

div#views-exposed-form-article-block-block-4 .form-item {
  display: inline-block;
  padding-left: 4px;
}

/* **** newsletter signup block **** */
#join-us-block {
  margin: 0 0 5px 0;
  padding: 0;
  background: #FFF url("../img/signup-newsletter-top.jpg") no-repeat 97.5% 16%;
  border: 2px solid #FF4100;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
#join-us-block h1, #join-us-block h2.pane-title {
  display: none;
}
#join-us-block .logo-section-wrapper {
  display: none;
}
#join-us-block .webform-client-form .webform-component-markup {
  color: #000;
  margin: 0;
  width: 100%;
  display: inline-block;
}
#join-us-block .webform-client-form .webform-component-markup h4.signup-header {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-family: Helvetica,sans-serif;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.035em;
  line-height: 28px;
  padding: 0 4px;
  box-sizing: border-box;
  width: 100%;
}
#join-us-block .webform-client-form .webform-component-markup h4.signup-message {
  color: #000;
  font-family: "BebasNeue",Arial,Helvetica,sans-serif;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 18px;
  margin-top: 4px;
  padding: 0 4px;
  width: 100%;
  max-width: 215px;
  text-transform: uppercase;
}
#join-us-block .webform-client-form .webform-component-markup p {
  color: #000;
  font-family: Helvetica,sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 15px;
  margin-top: 6px;
  padding: 0 4px;
  width: 100%;
  max-width: 215px;
}
#join-us-block .webform-client-form .webform-component--copy {
  display: none;
}
#join-us-block .webform-component--first-name {
  width: 100%;
  margin: 4px 0 0 0;
  padding: 0 2px 0 4px;
  display: inline-block;
  max-width: 146px;
  box-sizing: border-box;
}
#join-us-block .webform-component--first-name input {
  width: 100%;
  border: solid 1px #000;
  font-size: 12px;
  line-height: 18px;
  height: 24px;
  padding: 0 5px;
  color: #666666;
  box-sizing: border-box;
}
#join-us-block .webform-component--last-name {
  width: 100%;
  margin: 4px 0 0 0;
  padding: 0 4px 0 2px;
  display: inline-block;
  max-width: 146px;
  box-sizing: border-box;
}
#join-us-block .webform-component--last-name input {
  width: 100%;
  border: solid 1px #000;
  font-size: 12px;
  line-height: 18px;
  height: 24px;
  padding: 0 5px;
  color: #666666;
  box-sizing: border-box;
}
#join-us-block .webform-component--enter-email {
  width: 100%;
  height: 26px;
  margin: 5px 0;
  padding: 0 4px;
  box-sizing: border-box;
}
#join-us-block .webform-component--enter-email input {
  border: solid 1px #000;
  font-size: 12px;
  width: 100%;
  line-height: 18px;
  height: 24px;
  padding: 0 0 0 5px;
  display: inline-block;
  color: #666666;
  box-sizing: border-box;
}
#join-us-block fieldset.captcha {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
#join-us-block fieldset.captcha legend {
  display: none;
}
#join-us-block fieldset.captcha .fieldset-description {
  display: none;
}
#join-us-block fieldset.captcha .g-recaptcha {
  transform: scale(0.95);
  margin-left: -4px;
}
#join-us-block .field-name-body p {
  margin: 0;
  color: #000;
}
#join-us-block #edit-actions, #join-us-block .form-actions {
  margin: 0 0 5px 0;
  padding: 0;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
}
#join-us-block #edit-submit, #join-us-block #edit-submit--2, #join-us-block input.form-submit {
  text-indent: -9999px;
  background: url("../img/signup.jpg") no-repeat left top;
  width: 101px;
  height: 26px;
  margin-top: 4px;
  border: 0;
}

body fieldset.captcha {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
body fieldset.captcha legend {
  display: none;
}
body fieldset.captcha .fieldset-description {
  display: none;
}
body fieldset.captcha .g-recaptcha {
  transform: scale(0.95);
  margin-left: -4px;
}

/* *** other *** */
div.sharethis-buttons {
  margin-bottom: 20px;
  margin-top: 10px;
}

#date-and-author {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: normal;
  color: #000;
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 18px;
  letter-spacing: 0.5px;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
}

#content-partner {
  text-transform: uppercase;
  font-size: 16px;
  color: #AAA;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-weight: normal;
  letter-spacing: 0.5px;
}
#content-partner span.content-partner-title {
  color: #000;
  text-decoration: underline;
}

body.node-type-article .field-name-field-author, body.node-type-article .field-name-field-content-partner, body.node-type-article .statistics_counter {
  display: none;
}

#sharethis-2 div.sharethis-wrapper {
  margin-top: 10px;
  margin-bottom: 40px;
}

#sharethis, div.panel-col-top {
  margin-bottom: 20px;
}

.panel-3col-33-stacked .panel-separator {
  margin: 0 0 1.5em 0;
}

h2 {
  color: #000;
}

article.node-article .field-name-body > p:first-child:first-letter {
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  float: left;
  display: block;
  font-size: 46px;
  line-height: 10px;
  padding-right: 4px;
  padding-top: 4px;
  font-weight: normal;
}
article a {
  text-decoration: underline;
}
article .field-name-field-image-caption .field-item p {
  color: #58595B;
  margin-top: 0;
  font-style: italic;
  font-size: 12px;
}
article .field-name-field-image-caption .field-item p:before {
  content: 'Photo: ';
}

#mini-panel-read_submenu_panel, #mini-panel-watch_submenu_panel, #mini-panel-look_submenu_panel, #mini-panel-listen_submenu_panel {
  border: 1px solid #A7A5A6;
  padding: 10px;
}

p.search-info {
  display: none;
}

#node-content h1.highlight {
  margin-top: 0;
}
#node-content h1.highlight span {
  background: none repeat scroll 0 0 #000000;
  color: #FFFFFF;
  display: inline-block;
  margin: 0 0 3px;
  padding: 1px 0.1em 0;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 1.25px;
  line-height: 42px;
  text-transform: uppercase;
}
#node-content h1.highlight span span {
  background: none repeat scroll 0 0 #000000;
  color: #FFFFFF;
  display: inline-block;
  margin: 0 0 3px;
  padding: 1px 0.1em 0;
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 1.25px;
  line-height: 42px;
  text-transform: uppercase;
}

h1 {
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 1.25px;
  line-height: 42px;
  text-transform: uppercase;
  color: #000;
}

.panel-2col-stacked .panel-col-last .inside {
  margin: 0;
}

/* carousel */
div.carousel-wrap {
  margin-bottom: 30px;
  position: relative;
}
div.carousel {
  overflow: hidden;
  height: 540px;
  width: 960px;
}
div.carousel ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
div.carousel ul li a {
  text-decoration: none;
}
div.carousel ul li .title {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 24px 0;
  width: 912px;
}
div.carousel ul li .photo-credit {
  background: rgba(0, 0, 0, 0.75);
  bottom: 10px;
  color: #fff;
  font-style: italic;
  padding: 0 4px;
  position: absolute;
  right: 4px;
}

/* -- homepage only # 105 -- */
.homepage div.carousel ul li .title {
  background: rgba(0, 0, 0, 0.65);
  padding: 18px 24px 16px;
}

.lt-ie9 div.carousel ul li .title {
  background: transparent url("../img/title_overlay.png") repeat;
}
.lt-ie9 .homepage div.carousel ul li .title {
  background: transparent url("../img/title_overlay_ie.png") repeat;
}

/* -- homepage only # 105 -- */
div.carousel ul li iframe, div.carousel ul li object, div.carousel ul li embed {
  display: block;
  height: 540px !important;
  width: 960px !important;
}

.bd.homepage .embed embed, .bd.homepage .embed object, .bd.homepage .embed iframe {
  display: block;
  height: 540px !important;
  width: 960px !important;
}

div.carousel ul li img {
  height: 540px;
  width: 960px;
}
div.carousel ul li .title h3 {
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
div.carousel ul li .title p {
  margin-bottom: 6px;
}

/* -- homepage only # 105 -- */
.homepage div.carousel ul li .title h3, .homepage div.carousel ul li .title p {
  margin-bottom: 0px;
}

div.carousel ul li .video-overlay {
  background: url("../img/sprite.png") no-repeat 0 -160px;
  bottom: 34px;
  display: block;
  height: 119px;
  opacity: .75;
  -moz-opacity: .75;
  -webkit-opacity: .75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  position: absolute;
  right: 34px;
  width: 103px;
}
div.carousel ul li:hover .video-overlay {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
div.carousel-wrap #prev {
  cursor: pointer;
  left: 0;
  padding: 17px;
  position: absolute;
  top: 240px;
  opacity: .5;
  -moz-opacity: .5;
  -webkit-opacity: .5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  z-index: 999;
}
div.carousel-wrap #next {
  cursor: pointer;
  left: 0;
  padding: 17px;
  position: absolute;
  top: 240px;
  opacity: .5;
  -moz-opacity: .5;
  -webkit-opacity: .5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  z-index: 999;
  left: auto;
  right: 0;
}
div.carousel-wrap #prev:hover, div.carousel-wrap #next:hover {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
div.carousel-wrap #prev span {
  background: url("../img/sprite.png") no-repeat 0 -110px;
  display: block;
  height: 45px;
  width: 25px;
}
div.carousel-wrap #next span {
  background: url("../img/sprite.png") no-repeat 0 -110px;
  display: block;
  height: 45px;
  width: 25px;
  background-position: -26px -110px;
}
div.carousel-wrap-inner div.carousel {
  height: 360px;
  width: 640px;
}
div.carousel-wrap-inner div.carousel ul li .title {
  width: 592px;
}
div.carousel-wrap-inner div.carousel ul li img {
  height: 360px;
  width: 640px;
}
div.carousel-wrap-inner div.carousel ul li .video-overlay {
  background-position: -110px -160px;
  bottom: 24px;
  height: 78px;
  right: 20px;
  width: 67px;
}
div.carousel-wrap-inner #prev, div.carousel-wrap-inner #next {
  top: 180px;
}
div.gallery {
  clear: both;
  background: #E7E7E8;
  border: 1px solid #918F8F;
  border-width: 1px 0;
  margin: 20px 0;
  padding: 20px;
}
div.gallery .carousel {
  height: 565px;
  width: 604px;
}
div.gallery #next {
  margin-top: -23px;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  top: 50%;
}
div.gallery #prev {
  margin-top: -23px;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  top: 50%;
  left: 20px;
}
div.gallery #next {
  right: auto;
  /*left: 581px;*/
  left: inherit;
  right: 20px;
}
div.gallery ul {
  margin: 0;
  /*height: 465px;*/
  /*overflow: hidden;*/
  position: relative;
}
div.gallery ul li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #E7E7E8;
}

/* Photo Galleries */
.gallery.carousel-wrap .bx-viewport {
  height: auto !important;
  background-color: #E7E7E8;
}

div.gallery ul li:first-child {
  display: block;
}
div.gallery ul li .image-wrap {
  /*float: left;*/
  text-align: center;
  /*height: 465px;*/
  /*width: 604px;*/
}
div.gallery ul li .image-wrap .image-wrap-table {
  /*display: table;*/
  /*height: 465px;*/
  /*table-layout: fixed;*/
  /*width: 604px;*/
}
div.gallery ul li .image-wrap .image-wrap-tr {
  /*display: table-row;*/
  position: relative;
}
div.gallery ul li .image-wrap .image-wrap-td {
  /*display: table-cell;*/
  background: #E7E7E8;
  position: relative;
  vertical-align: middle;
}
div.gallery ul li img {
  display: inline-block;
  height: auto;
  margin: 0;
  /*max-height: 465px;*/
  /*max-width: 620px;*/
  width: auto;
}
div.gallery ul li .caption {
  background: #E7E7E8;
  /*border-left: 1px solid #918F8F;
  -webkit-box-shadow: 0 0 5px #bcbbbb;
     -moz-box-shadow: 0 0 5px #bcbbbb;
      -ms-box-shadow: 0 0 5px #bcbbbb;
       -o-box-shadow: 0 0 5px #bcbbbb;
          box-shadow: 0 0 5px #bcbbbb;
  padding-left: 19px;
  display: table;*/
  /*float: left;*/
  font-size: 12px;
  /*height: 465px;*/
  /*width: 604px;*/
  /*height: 80px;*/
}
div.gallery ul li .caption-wrap-tr {
  /*display: table-row;*/
}
div.gallery ul li .caption-wrap-td {
  /*display: table-cell;
  vertical-align: middle;*/
}
div.gallery ul li .caption p {
  /* border-top: 1px solid #918F8F; */
  margin: 10px;
  padding-top: 10px;
}
div.embed {
  margin: 0 0 20px;
}
div.comments {
  margin-bottom: 20px;
}
div.comments h3 {
  border-bottom: 1px solid #918F8F;
  padding-bottom: 10px;
}

/* Embeds */
/* Comments */
#dsq-global-toolbar {
  display: none;
}

#dsq-account-dropdown a {
  background: #0054A6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  float: right;
  font-size: 12px;
  line-height: 20px;
  padding: 0 7px;
  text-decoration: none;
  text-transform: uppercase;
}

#dsq-content .dsq-avatar {
  clear: both;
}

/* Pager */
.element-invisible {
  display: none;
}

ul.pager {
  border-top: 1px solid #918F8F;
  margin: 0 0 20px;
  padding: 10px 0 0;
  position: relative;
  text-align: center;
}
ul.pager li {
  color: #6d6e71;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-size: 18px;
  list-style: none;
  display: inline-block;
}
ul.pager li.pager-first, ul.pager li.pager-last {
  display: none;
}
ul.pager li.pager-previous {
  left: 0;
  position: absolute;
  top: 10px;
}
ul.pager li.pager-next {
  left: 0;
  position: absolute;
  top: 10px;
  left: auto;
  right: 0;
}
ul.pager li.pager-current {
  padding: 0 6px;
}
ul.pager li a {
  color: #000;
  letter-spacing: 0.5px;
  padding: 0 8px;
  text-transform: uppercase;
  text-decoration: none;
}
ul.pager li.pager-next a {
  padding-right: 0;
}
ul.pager li.pager-previous a {
  padding-left: 0;
}
ul.pager li a:hover {
  color: #0054a6;
}

/* Contact Form */
div.contact-form .form-item, div.contact-form .captcha {
  border-bottom: 1px solid #918F8F;
  float: left;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
div.contact-form .form-required {
  color: #ed1c24;
}
div.contact-form .form-item label {
  color: #000;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  float: left;
  font-size: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  width: 120px;
}
div.contact-form .captcha legend {
  color: #000;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  float: left;
  font-size: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  width: 120px;
  float: none;
  left: 0;
  position: absolute;
  top: 0;
}

.lte-ie7 div.contact-form .captcha legend {
  left: -7px;
}

div.contact-form .form-item label.error {
  display: none !important;
}
div.contact-form .form-item input, div.contact-form .form-item textarea {
  border: 1px solid #e7e7e8;
  background: #e7e7e8;
  padding: 9px;
  max-width: 500px;
  min-width: 500px;
  width: 500px;
}
div.contact-form .form-item input.error {
  border-color: #ED1C24;
}
div.contact-form .form-item textarea {
  min-height: 150px;
  height: 150px;
}
div.contact-form .form-item textarea.error {
  border-color: #ED1C24;
}
div.contact-form .captcha .fieldset-wrapper {
  margin-left: 120px;
}
div.contact-form .captcha .fieldset-description {
  display: none;
}
div.contact-form .captcha .form-item-captcha-response {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
div.contact-form .captcha .form-item-captcha-response label {
  color: #58595B;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  width: 100%;
}
div.contact-form .captcha .form-item-captcha-response .description {
  display: none;
}
div.contact-form .form-actions {
  clear: both;
  margin-bottom: 60px;
  padding-left: 120px;
}
div.contact-form .form-actions input.form-submit {
  background: #000;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.75px;
  padding: 3px 20px 0;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
div.contact-form .form-actions input.form-submit:hover {
  background: #0054a6;
  color: #fff;
}

#webform-component-text p {
  margin: 0px;
}

/* Sign Up Modal */
#sb-wrapper-inner {
  height: 395px !important;
}

body.page-node-10005 #page {
  width: 370px;
  height: 395px;
}
body.page-node-10005 .bd-sign-up {
  padding: 15px 0;
  width: 360px;
}
body.page-node-10005 .bd-sign-up h1 {
  margin: 0;
  padding: 0;
}
body.page-node-10005 .bd-sign-up label {
  text-transform: capitalize;
}
body.page-node-10005 .bd-sign-up .form-item {
  margin-bottom: 10px;
}
body.page-node-10005 .bd-sign-up input {
  border: 1px solid #e7e7e8;
  background: #e7e7e8;
  padding: 9px;
  width: 340px;
}
body.page-node-10005 .bd-sign-up .form-actions {
  margin-bottom: 0;
}
body.page-node-10005 .bd-sign-up .webform-component-markup {
  margin: 10px 0 5px 0;
  height: auto;
  width: 340px;
}
body.page-node-10005 .bd-sign-up .form-actions input {
  background: #000;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.75px;
  padding: 3px 20px 0;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  width: auto;
}

.donate-wrap .form-actions > input {
  background: #000;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.75px;
  padding: 3px 20px 0;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  width: auto;
}

body.page-node-10005 .bd-sign-up .form-actions input:hover, body.page-node-10005 .donate-wrap .form-actions > input:hover {
  background: #918F8F;
}
body.page-node-10005 div#webform-component-donate-link {
  display: none;
}

/* Donate Page */
.bd-donate .content {
  padding-bottom: 20px;
}

p.redirecting {
  background: #E7E7E8;
  line-height: 150px;
  text-align: center;
}

.donate-wrap {
  border: 3px solid #000;
  clear: both;
  padding: 20px;
  margin: 0 0 20px;
}
.donate-wrap form {
  clear: both;
}
.donate-wrap .form-item {
  border-bottom: 1px solid #918F8F;
  padding: 14px 0;
}
.donate-wrap .form-item:first-child {
  padding-top: 0;
}
.donate-wrap .form-item > label {
  color: #000;
  float: left;
  line-height: 35px;
  margin-right: 20px;
  width: 160px;
}
.donate-wrap .form-item > input {
  border: 1px solid #e7e7e8;
  background: #e7e7e8;
  padding: 9px;
  width: 394px;
}
.donate-wrap .form-item > select {
  border: 1px solid #e7e7e8;
  background: #e7e7e8;
  padding: 9px;
  width: 394px;
  width: 412px;
}
.donate-wrap .form-actions {
  padding-top: 14px;
}
.donate-wrap .form-actions > input {
  margin-left: 180px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ sidebar widgets */
.aside .widget {
  margin-bottom: 20px;
}
.aside .more-articles {
  border: 1px solid #918f8f;
}
.aside .more-articles h4 {
  background: #e7e7e8;
  padding: 5px 10px;
  margin: 0;
  letter-spacing: .75px;
}
.aside .more-articles .article-list {
  margin: 0;
  padding: 0 20px 20px;
}
.aside .more-articles .article-list li.article {
  font-size: 12px;
  line-height: 15px;
  padding: 20px 0 0 0;
  min-height: 0;
}
.aside .more-articles .article-list .img {
  float: left;
  left: auto;
  height: 64px;
  margin: 0 20px 10px 0;
  position: static;
  top: auto;
}
.aside .more-articles .article-list .img img {
  height: 64px;
  width: 64px;
}
.aside .more-articles .article-list li.article h3 {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: .5px;
}

/* Ads */
.ad img {
  display: block;
}

/* Join Now */
.aside .join-now {
  color: #fff;
  background: #00a4e6 url("../img/bg_join_now.png") no-repeat 0 100%;
  height: 240px;
  padding: 20px;
}
.aside .join-now.support {
  background: #64d077 url("../img/bg_support_us.png") no-repeat 0 100%;
}
.aside .join-now h3 {
  font-size: 32px;
  margin-bottom: 6px;
  line-height: 42px;
  letter-spacing: 1.25px;
}
.aside .join-now p {
  font-weight: bold;
  margin-bottom: 10px;
}
.aside .join-now a {
  color: #000;
}
.aside .join-now a.sign-up-button {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
  padding: 2px 0 0;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.aside .join-now a.sign-up-button:hover {
  background: #fff;
  color: #000;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ login */
body.page-admin {
  background: #E8E8E8;
  padding-top: 100px;
}

.admin-login {
  background: #f0f0f0;
  background-image: linear-gradient(bottom, #dbdbdb 8%, #f0f0f0 77%);
  background-image: -o-linear-gradient(bottom, #dbdbdb 8%, #f0f0f0 77%);
  background-image: -ms-linear-gradient(bottom, #dbdbdb 8%, #f0f0f0 77%);
  background-image: -moz-linear-gradient(bottom, #dbdbdb 8%, #f0f0f0 77%);
  background-image: -webkit-linear-gradient(bottom, #dbdbdb 8%, #f0f0f0 77%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.08, #dbdbdb), color-stop(0.77, #f0f0f0));
  border: 1px solid #B6B6B6;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
  box-shadow: 0 0 5px #dbdbdb;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  top: 30px;
  width: 360px;
}
.admin-login .item-list {
  display: none !important;
  clear: both;
  font-size: 0.75em;
}
.admin-login .item-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-login .item-list li {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}
.admin-login .form-item {
  margin-bottom: 1em;
  float: left;
  width: 100%;
}
.admin-login .form-item label {
  display: inline-block;
  width: 100px;
}
.admin-login .form-item input {
  border: 1px solid #B6B6B6;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 0.1875em;
  width: 200px;
}
.admin-login .form-item input.error {
  border: 1px solid #f00;
}
.admin-login .form-actions input {
  background: #000;
  border: 0;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  padding: .25em .5em;
}
.admin-login .form-actions input:hover, .admin-login .form-actions input:active {
  background: #444;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ miscelanious */
body.page-node-23926 #node-content h2.pane-title, body.page-node-23921 #node-content h2.pane-title {
  display: none;
}
body.page-node-23926 input.recurring-paypal-banner, body.page-node-23921 input.recurring-paypal-banner {
  background-image: url("../images/occupy-donations_page-monthly.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 120px;
  display: block;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  background-size: 100% auto;
}

body.section-donation-confirmed article div.sharethis-buttons {
  display: none;
}
body.section-donation-confirmed article li.statistics_counter {
  display: none;
}

div.article-tags a {
  margin-right: 20px;
}

#article-info a {
  color: #000;
  text-decoration: underline;
}
#article-info a:hover {
  color: #000;
  text-decoration: underline;
}

div.views-row-first li:first-child {
  border-top: none;
}

ul.article-list {
  padding: 0;
}

div.i-caption p {
  font-size: 12px;
  font-style: italic;
  margin-top: -15px;
}

.item-list .pager {
  padding: 10px 0 0 0;
}

div#join-us-block div#webform-component-enter-email label, div#join-us-block div#webform-component-copy {
  display: none;
}

form#pay-form {
  width: 100%;
}
form#pay-form div.pay-cc-exp-month {
  padding-left: 1px;
}
form#pay-form input.form-text {
  border: solid 2px #000;
  color: #61625A;
  margin-top: 0;
  height: 30px;
}
form#pay-form select.form-select {
  border: solid 2px #000;
  padding: 4px 10px 0;
  height: 34px;
  color: #61625A;
  border-radius: 0;
  background-color: #FFF;
  outline: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  /*Removes default chrome and safari style*/
  -moz-appearance: none;
  /* Removes Default Firefox style*/
  background: url("../images/dropdown_arrow.png") no-repeat;
  /*Adds background-image*/
  background-position: 120px 7px;
  /*Position of the background-image*/
  width: 145px;
  /*Width of select dropdown to give space for arrow image*/
  text-indent: 0.01px;
  /* Removes default arrow from firefox*/
  text-overflow: "";
  /*Removes default arrow from firefox*/
}
form#pay-form input.form-submit {
  background-color: #1951A6;
  border: 0;
  color: #FFF;
  font-weight: normal;
  padding: 5px 15px 2px;
  font-family: 'BebasNeue', Arial, Helvetica, sans-serif;
  font-size: 24px;
  letter-spacing: 1;
}
form#pay-form .pay-cc-type img {
  margin-right: 3px;
}
form#pay-form .pay-cc-type img:last-of-type {
  display: none;
}

body.page-donation-form div#admin-menu, body.page-donation-form div.messages {
  display: none;
}

span.h1-highlight {
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 1.25px;
  line-height: 55px;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #000000;
  box-shadow: -10px 0 black, 10px 0 black;
  left: 10px;
  position: relative;
}

h1 {
  font-family: 'BebasNeue',Arial,Helvetica,sans-serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 1.25px;
  line-height: 42px;
  text-transform: uppercase;
  color: #000;
}

form#views-exposed-form-article-block-block-4 div.form-item {
  display: inline-block;
  padding-left: 7px;
}
form#views-exposed-form-article-block-block-4 div.form-item label.option {
  font-size: 13px;
}

.webform-client-form .webform-component-markup {
  margin: -76px 0 0 0px;
  width: 210px;
  height: 77px;
  color: #000;
}
.webform-client-form .webform-component-markup h4 {
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-family: 'BebasNeue', Arial, Helvetica,sans-serif;
}
.webform-client-form .webform-component-markup p {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: normal;
}

#gam-holder-Occupy-top, #gam-holder-Occupy-bottom {
  width: 300px;
}

.pane-activity-ticker, .view-id-featured_slider {
  /*display:none;*/
}

body.not-front .bx-wrapper .bx-viewport {
  left: 0;
}
body.not-front .pane-custom-featured-slider.wideslider {
  display: none;
}

.lightbox-cont img {
  width: auto;
  /* width: 100%; */
  height: auto;
  max-width: 100%;
}

.author-node-page .submitted, .author-node-page .statistics_counter {
  display: none;
}

#carousel ul {
  padding: 0;
}

.view-bxslider-of-activity-ticker .views-field-title {
  margin-bottom: 6px;
}
.view-bxslider-of-activity-ticker .views-field-title a {
  font-weight: bold;
}

.bxslider div.slider-image-caption {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
  bottom: 00px;
  color: #FFFFFF;
  font-style: italic;
  padding: 0 4px;
  position: absolute;
  right: 0px;
}
.bxslider div.slider-image-caption span {
  display: inline-block;
}
.bxslider div.slider-image-caption span p {
  display: inline-block;
  margin: 0;
}

div.pane-custom-featured-slider ul.bxslider > li {
  display: none;
}

.gam-holder {
  margin: 14px 0;
}

.mean-container .mean-bar {
  background-image: url(../images/logo-white.png);
  background-repeat: no-repeat;
  background-position: 15px 15px;
}

body.mean-container .mean-nav {
  margin-top: 45px;
  background-color: #000;
}
body.mean-container .mean-nav ul li div a.mean-expand {
  border: 0 !important;
  background-color: transparent !important;
}
body.mean-container .mean-nav ul li div a.mean-expand:hover {
  border: 0 !important;
  background-color: transparent !important;
}
body.mean-container .mean-nav ul li a:hover {
  background-color: #333;
}

.pane-menu-menu-mobile-main-menu {
  display: none;
}
.pane-menu-menu-mobile-main-menu > h2 {
  display: none;
}

@media only screen and (max-width: 767px) and (min-width: 320px) {
  #join-us-block #webform-component-enter-email {
    width: 112px;
    margin: 6px 8px 0px -2px;
  }
}
@media only screen and (max-width: 767px) {
  .pane-system-main-menu {
    display: none;
  }

  .pane-global-header .pane-follow-site, .pane-global-header .pane-page-logo {
    display: none !important;
  }
  .pane-global-header .pane-search-form {
    position: relative !important;
    width: 100%;
    margin: 2px 0 10px 0;
  }
  .pane-global-header .pane-search-form input {
    width: 100%;
  }
}
.page-admin-content-partner-link-set .views-view-grid td,
.page-admin-content-partner-no-link .views-view-grid td {
  padding-right: 40px;
}

#discus_thread #dsq-app5 {
  display: none;
}

#discus_thread iframe:first-child {
  display: none !important;
}

#mini-panel-global_header.panel-2col-stacked .panel-col-last .inside {
  display: inline-block;
  text-align: right;
  float: right;
  margin: 20px 0 0 0;
}
#mini-panel-global_header.panel-2col-stacked .panel-col-last .inside .pane-system-user-menu {
  display: inline-block;
}
#mini-panel-global_header.panel-2col-stacked .panel-col-last .inside .pane-system-user-menu ul.menu {
  display: inline;
}
#mini-panel-global_header.panel-2col-stacked .panel-col-last .inside .pane-system-user-menu::after {
  content: "//";
  color: #646464;
  font-size: 20px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
}
#mini-panel-global_header.panel-2col-stacked .panel-col-last .inside .pane-follow-site {
  display: inline-block;
}
#mini-panel-global_header.panel-2col-stacked .panel-col-last .inside .pane-follow-site .follow-link {
  color: transparent;
}
#mini-panel-global_header.panel-2col-stacked .panel-col-last .inside .pane-follow-site::after {
  content: "//";
  color: #646464;
  font-size: 20px;
  font-weight: bold;
  margin-left: 5px;
}

.section-article .panel-2col-stacked .panel-col-first .inside, .panel-page .panel-2col-stacked .panel-col-first .inside {
  margin: 11px .5em 1em 0;
}
.section-article .pane-global-header, .panel-page .pane-global-header {
  padding-bottom: 10px;
  border-bottom: solid 0px #ffffff;
}
.section-article #sharethis, .section-article div.panel-col-top, .panel-page #sharethis, .panel-page div.panel-col-top {
  margin-bottom: 10px;
}

body.page-node-20 #node-content h2.pane-title {
  display: none;
}
body.page-node-20 .bd-donate .content p > span {
  margin-top: -5px;
  margin-bottom: -20px;
  display: block;
}

h3.three-ways-title {
  color: #4DC523;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 40px;
}

.three-ways-section .three-ways-items {
  display: flex;
  justify-content: space-between;
}
.three-ways-section .three-ways-items .three-ways-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 3px solid #4DC523;
  width: 200px;
}
.three-ways-section .three-ways-items .three-ways-item h3 {
  margin-top: 5px;
}
.three-ways-section .three-ways-items .three-ways-item p {
  margin-top: 5px;
  margin-bottom: 15px;
  margin-left: 15px;
  margin-right: 15px;
  line-height: 15px;
}
.three-ways-section .three-ways-items .three-ways-item .three-ways-item-button {
  color: #FFF;
  background-color: #4DC523;
  padding: 4px 15px;
  display: inline-block;
  align-self: center;
  margin-top: auto;
  margin-bottom: 15px;
}
.three-ways-section .three-ways-items .three-ways-item .three-ways-item-paypal-button {
  display: block;
  margin-bottom: 15px;
}
.three-ways-section .three-ways-items .three-ways-item .three-ways-item-paypal-button .recurring-paypal-banner {
  color: #FFF;
  background-color: #4DC523 !important;
  padding: 6px 15px;
  display: inline-block;
}
