/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* Generic */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clear {
  clear: both;
}
.visible {
  display: block;
}

.animated {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

body {
  background: #1e2b37 url(../images/startrek-background.jpg) center top fixed no-repeat;
  background-size: 100% auto;
  color: #979797;
  -webkit-tap-highlight-color:transparent;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  min-height: 100%;
  overflow-x: hidden;
}
  body.parallax {
    background: #1e2b37;
  }

.parallax-background {
  display: none;
}
  body.parallax .parallax-background {
    display: block;
    position: fixed;
    z-index: -1;
    background: transparent url(../images/startrek-background.jpg) center top scroll no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-bottom: 136%;
    left: 0;
    top: 0;
  }
    body.parallax #header .parallax-background {
      position: absolute;
    }

a {
  color: #fff;
  text-decoration: none;
  background: transparent;
  outline: none;
}
a:hover {
  text-decoration: underline;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
#main-wrapper div#content-wrapper {
  /*-webkit-transform: none !important;*/
}
/* Containers */
.container {
  margin: 0 auto;
  max-width: 1480px;
  position: relative;
}
.single-column, .double-column {
  margin-bottom: 2.7%;
  margin-left: 2.7%;
  width: 94.6%;
}

#page_news_article .double-column {
  clear: left;
  overflow: hidden;
}
#content-wrapper, #footer-wrapper {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

/*
  Generic flagged block
  Configuration:
  - generic-flagged-block: required
  - ratio-X_Y: required; based on the aspect ratio (X/Y) of the source image
  - news|event|video|database: required; (video will use a:before to add the "play video" icon)
  - no-title
  - st50: optional; adds the StarTrek 50 logo to the top-right corner (uses a:after)
  - title-overlap: optional; by default the title is displayed on an opaque background under the image, use this class to make the title overlap the image with a semi-transparent background
  - big: optional; by default the block is styled for use in one column; use this class when the block takes 2 columns

  Each element must include a span with the title and an empty em.
  The span can be ommitted when using the no-title class.
  Example:
    <a href="..." class="generic-flagged-block database ratio-4_3 st50" style="background-image: url(...)">
      <span>Database article title</span>
      <em></em>
    </a>
*/
.generic-flagged-block {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  background: #000 no-repeat scroll top center;
  background-size: cover;
  margin-bottom: 82px;
}

  .generic-flagged-block.ratio-2_1 {
    padding-bottom: 48.7%;
  }
  .generic-flagged-block.ratio-16_9 {
    padding-bottom: 56%;
  }
  .generic-flagged-block.ratio-16_10 {
    padding-bottom: 62.5%;
  }
  .generic-flagged-block.ratio-4_3 {
    padding-bottom: 75%;
  }
  .generic-flagged-block.ratio-7_3 {
    padding-bottom: 42%;
  }

  .generic-flagged-block.title-overlap {
    margin-bottom: 2px;
  }
  .generic-flagged-block.no-title {
    margin-bottom: 2px;
  }
  .generic-flagged-block.ratio-10_4 {
    padding-bottom: 42.1%;
  }
  .generic-flagged-block.ratio-100_41 {
    padding-bottom: 42%;
  }

  .generic-flagged-block.st50:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 28px;
    height: 44px;
    background: transparent url(../images/icon-50-badge_56x88.png) no-repeat scroll center center;
    background-size: 28px 44px;
  }

  .generic-flagged-block span {
    display: block;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 20px;
    right: 100px;
    height: 40px;
    line-height: 20px;
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    overflow: hidden;
  }
    .generic-flagged-block:hover span {
      text-decoration: underline;
    }
    .generic-flagged-block.title-overlap span {
      top: auto;
      bottom: 20px;
    }
    .generic-flagged-block.no-title span {
      display: none;
    }

  .generic-flagged-block em {
    display: block;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 100%;
    height: 80px;
    background: #000;
    border-bottom: 2px solid;
  }
    .generic-flagged-block.title-overlap em {
      top: auto;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
    }
    .generic-flagged-block em:after {
      display: inline-block;
      position: absolute;
      right: 0;
      bottom: 0;
      height: 27px;
      line-height: 27px;
      padding: 0 20px;
      font-size: 16px;
      font-weight: bold;
      font-style: normal;
      color: #000;
      text-decoration: none;
    }
    .generic-flagged-block.no-title em {
      height: 0;
      background: transparent;
    }

/* news specific */
  .generic-flagged-block.news em {
    border-bottom-color: #3e7bce;
  }
  .generic-flagged-block.news em:after {
    content: 'News';
    background: #3e7bce;
  }
/* events specific */
  .generic-flagged-block.event em {
    border-bottom-color: #ffcd33;
  }
  .generic-flagged-block.event em:after {
    content: 'Events';
    background: #ffcd33;
  }
/* database specific */
  .generic-flagged-block.database em {
    border-bottom-color: #ffcd33;
  }
  .generic-flagged-block.database em:after {
    content: 'Database';
    background: #ffcd33;
  }
/* video specific */
  .generic-flagged-block.video em {
    border-bottom-color: #ed1c24;
  }
  .generic-flagged-block.video em:after {
    content: 'Video';
    background: #ed1c24;
  }
  .generic-flagged-block.video:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
    background: transparent url(../images/icon-play-video_140x140.png) no-repeat scroll center center;
    background-size: 70px 70px;
  }
    .generic-flagged-block.title-overlap.video:before {
      margin-top: -76px; /* =-35-82/2 */
    }
/* Enf generic flagged block */


/* Helpers */

.noscroll {
  overflow: hidden;
}
.transparent {
  opacity: 0;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

#loading_container {
  text-align: center;
  width: 100%;
  padding: 40px 0;
}
#loading {
  background: url('/images/ST50_load.gif') center center no-repeat;
  background-size: 100% auto;
  width: 60px;
  height: 60px;
  display: inline-block;
}
.half-container {
  width: 47.83%;
}
.float-left {
  float: left;
}
.medium-left-margin {
  margin-left: 4.34%;
}
.big-bottom-margin {
  margin-bottom: 9%;
}


h2 {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  height: 65px;
  line-height: 65px;
  padding-left: 20px;
}

#main-wrapper {
  position: relative;
  z-index: 1;
}
/* Header */

#header-wrapper {
  background: rgba(0, 0, 0, 0.4) url(../images/startrek-header-background.png) repeat-x scroll left bottom;
  background-size: auto 100%;
  clear: both;
  font-family: Helvetica, Arial, sans-serif;
  height: auto;
  position: fixed;
  z-index: 2;
  width: 100%;
}
#header {
  height: 44px;
  text-align: center;
  /*overflow: hidden;*/
}
#header-navigation-wrapper {
  bottom: 0;
  left: 0;
  /*margin-left: 65px;*/
  font-family: Helvetica, Arial, sans-serif;
  /*padding-right: 65px;*/
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
#header-navigation-wrapper.search-expanded {
  margin-left: 0;
}
#header-navigation-wrapper.expanded {
  background-color: #000;
  margin-left: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
#header-navigation {
  position: relative;
}
#header-navigation ul li {
  background-color: #1c2833;
  border-bottom: 1px solid #939aaa;
}
#header-navigation ul li a {
  color: #fff;
  display: block;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  text-decoration: none;
}
#header-search-wrapper {
  height: 44px;
  margin-top: 0;
  position: fixed;
  text-align: center;
  z-index: 5;
  top: 0;
  right: 0;
}
#header-logo {
  display: inline-block;
  margin-top: 0;
}
  #header-logo a {
    display: block;
    width: 151px;
  }
  #header-logo a.no-st-50 {
    margin-right: -35px;
    margin-top: -9px;
  }
    #header-logo a img {
      height: 60px;
      width: auto;
    }
#header-login-wrapper {
  background-color: #000;
  color: #fff;
  font-size: 24px;
/*  height: 45px;
  line-height: 45px;*/
  overflow: hidden;
  padding: 20px;
  /*padding: 10px 20px;*/
  position: relative;
  display: none;
}
#header-login {
  background: url(../images/icon-login_50x100.png) top left no-repeat;
  background-size: auto 200%;
  color: #fff;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  padding-left: 40px;
  padding-right: 0;
  text-decoration: none;
}
#header-login.active {
  background-position: bottom left;
  color: #ffcd33;©
}

#mobile-menu {
  background: #000 url(../images/icon-mobile-menu_130x260.png) bottom center no-repeat;
  background-size: 100% auto;
  cursor: pointer;
  height: 44px;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -ms-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  z-index: 20;
  width: 44px;
}
#mobile-menu img {
  display: block;
  height: auto;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
#mobile-menu.expanded {
/*  left: 100%;
  margin-left: -65px;*/
}
#mobile-menu.expanded img {
  opacity: 1;
}
#mobile-menu + div {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  height: 100%;
  left: 0;
  right: 44px;
}
#menu-logo {
  background-color: #1c2833;
  padding: 10px 20px 0;
}
  #menu-logo img {
    height: auto;
    width: 175px;
  }
#header-search {
  background: #000 url(../images/icon-search_130x130.png) center center no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
}
#header-search:hover {
  background-size: 120% 120%;
}
.mobile-nav-copyright {
  background-color: #000;
  color: #909496;
  font-size: 12px;
  padding: 20px;
}
#mobile-extra-links {
  background-color: #000;
  display: block;
}
  #mobile-extra-links li {
    border-bottom: 1px solid #666;
  }
  #mobile-extra-links li a {
    color: #909496;
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    text-decoration: none;
  }

/* Search box */

#st_search {
  background-color: #000;
  bottom: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 5;
  width: 0;
}
#search_q {
  background-color: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  left: 75px;
  padding: 5px 0;
  position: absolute;
  right: 44px;
  top: 50%;
  -webkit-appearance: none;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
#search_q:-webkit-autofill, #search_q:-webkit-autofill:focus, #search_q:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  -webkit-text-fill-color: #fff !important;
}
#search_q:focus {
  outline: 0;
}
#do-search, #close-search, #search_btn {
  background-image: url(../images/icon-search-form-mobile_130x260.png);
  background-size: 100% auto;
  cursor: pointer;
  height: 44px;
  position: absolute;
  top: 0;
  width: 44px;
}
#close-search {
  background-position: top center;
  left: 0;
  z-index: 5;
}
#do-search, #search_btn {
  background-position: bottom center;
  border: 0;
  right: 0;
}


/* User info */

#user-info {
  margin-top: 20px;
}
#user_info_box {
  display: none;
  margin-top: 20px;
  max-width: 235px;
}
  #user_info_box input {
    background-color: #1a2630;
    border: 0;
    border-bottom: 1px solid #6b7379;
    color: #909496;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    padding: 5%;
    width: 90%;
  }
  #user_info_box input:focus {
    outline: 0;
  }
#form-submit {
  background-color: #ffcd33;
  color: #000;
  display: block;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
  margin-top: 15px;
  text-align: center;
  text-decoration: none;
}
.user-register, .user-forgot-password {
  padding-top: 20px;
  text-align: center;
}
.user-forgot-password {
  text-align: left;
}
.user-register {
  padding-top: 15px;
  text-align: left;
}
  .user-register a, .user-forgot-password a {
    color: #ffcd33;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
  }
#facebook_login_box {
  text-align: center;
}
.fb-mob {
  display: block;
  font-weight: bold;
  padding: 20px 0;
}
#login_form_block .error_list {
  color: red;
  font-size: 16px;
  text-align: center;
}
#fb-login, #fb-connect {
  background-color: #3b5998;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
  text-align: center;
}
#fb-login span, #fb-connect span {
  background: url(/images/bg-button-facebook_22x46.png) center center no-repeat;
  background-size: cover;
  display: inline-block;
  height: 23px;
  margin-right: 12px;
  vertical-align: middle;
  width: 11px;
}
#login_user_profile_link {
  font-weight: bold;
  margin-right: 5px;
}
#logout_btn {
  font-size: 18px;
  margin-left: 5px;
}
#user-profile-image {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: inline-block;
  height: 45px;
  margin-left: 10px;
  overflow: hidden;
  vertical-align: middle;
  width: 45px;
}
#user-profile-image > img {
  left: 50%;
  position: relative;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


/* Block components */

/* Ads module */
.advertisement {
  background: rgba(0, 0, 0, .3);
  width: 100%;
  text-align: center;
  padding: 10% 0;
}
#poll-shop .advertisement {
  display: none;
}

.skip-ad {
  line-height: 60px;
  height: 60px;
  background: #0c1116;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-bottom: 20px;
  color: #ffcd33;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
  .skip-ad:after {
    content: '';
    display: inline-block;
    background: transparent url(../images/img31x58arrow_x.png) no-repeat left top;
    background-size: 100% auto;
    width: 15px;
    height: 13px;
    margin-left: 10px;
  }
#page_news_landing .skip-ad {
  float: left;
  width: 100%;
}
#page_news_landing .advertisement {
  float: left;
}
#page_utility_sitemap .advertisement {
  float: left;
  clear: left;
}

/* You May Like (shop module) */
.hot-item-container {
  display: none;
}
#page_news_landing .hot-item-container .you_may_like {
  display: none;
  margin: 0;
  vertical-align: bottom;
}
#page_events .you_may_like {
  display: none;
}
#page_utility_search .you_may_like {
  display: none;
}
#page_news_landing .you_may_like, #page_news_article .you_may_like {
  display: none;
}

.you_may_like .hot_item_0 {
  margin-bottom: 0;
  width: 100%;
}
#page_utility_sitemap .you_may_like .hot_item_0 {
  margin-bottom: 9%;
}

.you_may_like .image_container {
  background-color: #fff;
  display: block;
  text-align: center;
  padding-top: 2%;
}
.you_may_like .image_container img {
  max-height: 205px;
  max-width: 205px;
  width: 50%;
  height: auto;
  border: 0;
}
.you_may_like h5 {
  background: #fff;
  width: 100%;
  float: left;
  display: block;

}
.you_may_like h5 a {
  color: #666766;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  float: left;
  text-decoration: none;
  padding-left: 11px;
}
.you_may_like .buy_container {
  background: #e5e5e5;
  float: left;
  clear: left;
  width: 100%;
  font-size: 20px;
}
  .you_may_like .buy_container .product_price {
    font-weight: bold;
    color: #181819;
    float: left;
    line-height: 45px;
    text-indent: 11px;
  }
    .you_may_like .buy_container a {
      font-size: 18px;
    }
    .you_may_like .buy_container .product_price span {
      color: #979797;
      text-decoration: line-through;
    }

    .you_may_like .buy_container .buy_now_btn {
      color: #fff;
      background: #3e7bce;
      padding: 15px 29px;
      float: right;
      text-decoration: none;
    }
.blocks_container {
  display: none;
}
  .blocks_container .blocks {
    position: relative;
  }


    /* Database */

    .home-database-block {
/*      background-color: rgba(0,0,0,0.3);
      border-bottom: 2px solid #ffcd33;*/
      display: none;
      position: relative;
    }
    .home-database-block img {
      display: block;
    }
    .home-database-image {
      background-position: top center;
      display: block;
      padding-bottom: 75%;
    }
      .home-database-block h3 {
        bottom: 0;
        position: absolute;
        right: 0;
        z-index: 5;
      }
      .home-database-block h4 {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
      }
        .home-database-block h4 a {
          background-color: rgba(0,0,0,.8);
          color: #fff;
          display: block;
          font-size: 26px;
          font-weight: bold;
          line-height: 20px;
          min-height: 40px;
          padding: 20px;
          padding-right: 132px;
          text-decoration: none;
        }
    .home-database-link {
      background-color: #ffcd33;
      color: #000;
      display: block;
      font-size: 16px;
      font-weight: bold;
      height: 27px;
      line-height: 27px;
      padding: 0 20px;
      text-decoration: none;
    }
    .home-database-link:hover {
      text-decoration: none;
    }

    /* Instagram */

    .home-instagram-block {
      display: none;
      position: relative;
    }
    #insta_widget iframe {
      display: block;
    }
    #instagram-logo {
      background: url(/images/icon-instagram_70x70.png) center center no-repeat;
      background-size: cover;
      height: 35px;
      position: absolute;
      right: 12px;
      top: 10px;
      width: 35px;
    }
    #instagram-text {
      background-color: #ffcd33;
      color: #000;
      font-weight: bold;
      padding: 10px 20px;
    }
    #instagram-text h3 {
      font-size: 26px;
    }
    .instagram_view {
      font-size: 18px;
      margin-top: 5px;
    }
    .instagram_view:empty {
      margin-top: 0;
    }

    /* Events */

    .home-events-block {
/*      background-color: rgba(0,0,0,0.3);
      border-bottom: 2px solid #ffcd33;*/
      margin-bottom: 3%;
      position: relative;
    }
    .home-events-block.event_1 {
      display: none;
    }

    /* Poll */
    #poll-shop #poll_box {
      margin-bottom: 3%;
    }
    .poll-content {
      background-color: #fff;
      color: #000;
      padding: 20px;
    }
    .current-poll {
      background: #3e7bce;
      color: #fff;
      text-align: center;
    }
    #page_home .current-poll {
      background: #3e7bce url(/images/background-poll_880x1476.png) top right no-repeat;
      background-size: 100% auto;
      text-align: center;
    }
    .poll-title {
      color: #000;
      font-size: 30px;
      font-weight: bold;
      line-height: 40px;
      margin-top: 30px;
      text-align: left;
    }
    .poll-content {
      position: relative;
    }
    .poll-options {
      padding-bottom: 20px;
    }
      .poll-content h3, .poll-date {
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: left;
      }
      .poll-date {
        color: #000;
      }
      .poll-content input[type="Submit"] {
        background-color: #1f3d67;
        border: 0;
        bottom: 50px;
        color: #ccc;
        display: block;
        font-size: 16px;
        font-weight: bold;
        height: 45px;
        left: 20px;
        line-height: 45px;
        padding: 0;
        position: absolute;
        text-align: center;
        /*width: 100%;*/
      }
      .poll-unanswered-options {
        padding: 20px 0 100px;
        text-align: left;
      }
      .poll {
        height: 40px;
        line-height: 40px;
      }
        .poll input {
          margin: 0;
          vertical-align: middle;
        }
        .poll label {
          margin-left: 20px;
          vertical-align: middle;
        }
        .poll-answered-options {
          padding: 40px 0;
          text-align: left;
        }
        #page_home .poll-answered-options {
          padding-bottom: 20px;
        }
        #page_poll_archive .poll-answered-options {
          padding: 40px 0 0;
        }
          .poll-answered-options li {
            margin-top: 20px;
            position: relative;
          }
          .poll-answered-options li:first-child {
            margin-top: 0;
          }
            .poll-answered-options li span {
              display: block;
            }
          .poll-answered-options .answer {
            font-size: 18px;
            height: 32px;
            line-height: 32px;
          }
          .poll-answered-options .values {
            color: #000;
            font-size: 16px;
            font-weight: bold;
            height: 20px;
            line-height: 21px;
            padding-left: 5px;
            position: relative;
          }
          .poll-answered-options .percentage {
            background-color: #86d9ff;
            bottom: 0;
            height: 20px;
            left: 0;
            position: absolute;
          }
          .current-poll .poll-answered-options .percentage {
            background-color: #00aeff;
          }
        .go-polls-archive {
          bottom: 20px;
          color: #1c3664;
          display: inline-block;
          font-size: 16px;
          font-weight: bold;
          left: 50%;
          /*margin-top: 20px;*/
          position: absolute;
          -webkit-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          transform: translateX(-50%);
          white-space: nowrap;
        }

/* Trek Trivia Box */
.trivia-container {
  float: left;
  margin-bottom: 6%;
}
#trivia_box {
  color: #fff;
  padding: 5%;
  background: #003c77 url(/images/bg880x1247_trivia_box.png) top right no-repeat;
  background-size: 50% auto;
  float: left;
  width: 90%;
}
#trivia_box h3 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}
#trivia_box .title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  margin-top: 30px;
  text-align: left;
}
#next_trivia {
  background: rgba(10,38,77,.8);
  display: block;
  font-weight: bold;
  margin: 20px 0;
  padding: 0;
}
  #next_trivia a {
    color: #fff;
    display: block;
    font-size: 16px;
    padding: 15px 0;
    text-align: center;
  }
.trivia-answer p {
  margin-top: 20px;
}
.trivia-answer p .correct_answer {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0 0;
  text-align: center;
}
#trivia_container {
}

  #trivia_container input[type="Submit"] {
    background-color: #001e3b;
    border: 0;
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: bold;
    height: 45px;
    line-height: 45px;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .trivia-options {
    padding: 20px 0 40px;
    text-align: left;
  }
  .trivia-options li {
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    margin-top: 20px;
    position: relative;
  }
    .trivia-options li:first-child {
      margin-top: 0;
    }
    .trivia-options li input {
      margin: 0;
      vertical-align: middle;
    }
    .trivia-options li label {
      margin-left: 20px;
      vertical-align: middle;
    }
    .trivia-answers {
      padding: 40px 0;
      text-align: left;
    }
    .result_total {
      font-size: 14px;
      line-height: 16px;
      color: #fff;
      margin: 20px 0;
    }
      .result_total p {
        text-align: center;
      }
        .result_total p a {
          font-weight: bold;
        }
    .result_info {
      float: left;
      width: 100%;
    }

    .correct_user {
      font-size: 18px;
      color: #fff;
      float: left;
      width: 23%;
      margin: 0 0.5%;
      text-align: center;
    }
      .correct_user:last-child {
        margin-right: 0;
      }
      .correct_user p {
        font-size: 10px;
        text-align: center;
        display: block;
      }
/* END Trek Trivia Box*/

  /* News block */

  .related-news-block {
    /*padding-bottom: 8.1%;*/
    position: relative;
  }
  .homepage-related-news .related-news-block {
    padding-bottom: 3%;
  }

/* Homepage featured news */

#homepage-featured-news {
  padding-bottom: 2.7%;
  position: relative;
}

/* Homepage video block */

#homepage-video-block {
  margin-top: 2.7%;
  position: relative;
}

/* Homepage */

#shop-database-ad .advertisement {
  display: none;
}
#ad-instagram-shop .featured-content {
  margin-bottom: 2.7%;
}
#ad-instagram-shop .you_may_like {
  display: block;
}
#shop-database-ad .you_may_like {
  margin-left: 2.7%;
  width: 94.6%;
}

/* Featured content */

#featured-content {
  background-position: top center;
  padding-bottom: 36%;
}
#featured-news-featured-content #featured-content {
  margin-bottom: 3%;
}
.advertisement + #featured-content {
  margin-bottom: 3%;
}

/* Advertisement */

.advertisement {
  margin-bottom: 3%;
}
#page_home .skip-ad {
  margin-bottom: 3%;
  margin-left: -3%;
  width: 106%;
}
#events-video-database-ad .advertisement {
  display: none;
}

/* END Block components */

/* 404 Not Found */
#page_404 #content {
  font-size: 14px;
  color: #fff;
  padding: 20px;
  line-height: 22px;
  margin-bottom: 20px;
}

#page_404 #content h2 {
  font-size: 18px;
}

#page_404 #content h3 {
  text-decoration: none;
  font-size: 16px;
}

#page_404 .double-column {
  background: rgba(0, 0, 0, .3);
}
  #page_404 .double-column div {
    padding: 0 2.7% 2.7%;
    line-height: 26px;
  }

  #page_404 .double-column a {
    font-size: 16px;
    color: #ba0;
    text-decoration: none;
  }
  #page_404 .double-column p {
    font-size: 16px;
  }
/* END 404 Not Found */

/* Poll archive */
.poll-sidebar {
  display: none;
  float: none;
  margin-bottom: 0;
}
.you_may_like .hot_item_1 {
  margin-bottom: 9%;
}

/* END Poll archive */


/* Pagination */
.pagination {
  margin-top: 1px;
  width: 100%;
  background: rgba(0,0,0,.3);
  text-align: center;
  position: relative;
  height: 45px;
  line-height: 45px;
}
  .pagination .img_replace {
    text-indent: -9999px;
    text-transform: uppercase;
    display: inline-block;
  }

  .pagination a.prev, .pagination a.next {
    background: url(/images/img8x27arrows.png) top left no-repeat;
    line-height: 13px;
    height: 13px;
    width: 8px;
    position: absolute;
    margin-top: -7px;
    top: 50%;
    bottom: 0;
  }

  .pagination a.prev, .pagination a.prev:hover {
    left: 15px;
  }
  .pagination a.next, .pagination a.next:hover {
    background-position: bottom left;
    right: 15px;
  }

  .pagination ul {
    width: auto;
  }

  .pagination li {
    margin-right: 13px;
  }
  .pagination li:last-child {
    margin-right: 0;
  }

  .pagination li span, .pagination li a {
    background: url(/images/img30x60pagination.png) top left no-repeat;
    background-size: 100%;
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
  .pagination li span, .pagination li a:hover {
    background-position: bottom left;
  }

.no_results {
  font-size: 14px;
  background: rgba(0,0,0,.3);
  color: #fff;
  padding: 22px;
  margin-bottom: 10px;
}
#page_not_authorized .no_results {
  padding-top: 3%;
}
  #page_not_authorized .no_results h3 {
    margin-bottom: 10px;
  }
  #page_not_authorized .no_results a {
    font-size: 16px;
    color: #ba0;
  }

.actions {
  clear: both;
  margin-bottom: 2.7%;
  overflow: hidden;
}
.actions .newer, .actions .older {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
}
.actions .newer:hover, .actions .older:hover {
  text-decoration: none;
}
.actions .newer {
  float: left;
  padding-left: 60px;
}
.actions .older {
  float: right;
  padding-right: 60px;
}
.actions .newer:before, .actions .older:before {
  background: #000 url(/images/icon-poll-navigation_79x158.png) top left no-repeat;
  background-size: 100% auto;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}
.actions .older:before {
  background-position: bottom left;
  left: auto;
  right: 0;
}

/* END Pagination */


/* Carousel pagination */
.owl-controls {
  height: 45px;
  line-height: 45px;
  background: #141f2b;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}
#page_news_article .owl-controls {
  background: rgba(0, 0, 0, 0.8);
}
  .owl-controls .owl-pagination {
    text-align: center;
  }
    .owl-controls .owl-pagination .owl-page {
      display: inline-block;
      width: 20px;
      height: 45px;
      cursor: pointer;
    }
      .owl-controls .owl-pagination .owl-page span {
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-top: 15px;
        background: transparent url(../images/pagination.png) no-repeat scroll -23px 0;
        background-size: 100px 15px;
      }
        .owl-controls .owl-pagination .owl-page:hover span,
        .owl-controls .owl-pagination .owl-page.active span {
          background-position: 0 0;
        }
  .owl-controls .owl-prev,
  .owl-controls .owl-next {
    position: absolute;
    display: block;
    top: 0;
    width: 47px;
    height: 45px;
  }
    .owl-controls .owl-prev {
      left: 0;
    }
    .owl-controls .owl-next {
      right: 0;
    }
    .owl-controls .owl-prev:after,
    .owl-controls .owl-next:after {
      content: '';
      position: absolute;
      width: 15px;
      height: 15px;
      background: transparent url(../images/pagination.png) no-repeat scroll;
      background-size: 100px 15px;
    }
      .owl-controls .owl-prev:after {
        left: 16px;
        top: 15px;
        background-position: -50px 0;
      }
      .owl-controls .owl-next:after {
        right: 16px;
        top: 15px;
        background-position: -75px 0;
      }
/* End Carousel pagination */

/* Database and Article Slideshow */
#slideshow {
  margin-bottom: 15px;
  overflow: hidden;
}
#slideshow #slideshow-images {
  width: 100%;
  position: relative;
}
  #slideshow #slideshow-images .owl-item.active + .owl-item {
    margin-left: 1px;
  }
  #slideshow #slideshow-images .slideshow-image {
    width: 100%;
  }
    #slideshow #slideshow-images .slideshow-image img {
      width: 100%;
      display: block;
    }
    #page_news_article #slideshow #slideshow-images .slideshow-image img {
      margin: 0;
      clear: none;
    }
    #slideshow #slideshow-images .slideshow-image-details {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: #000;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-style: italic;
      font-weight: normal;
      font-size: 14px;
      line-height: 18px;
      padding: 10px 20px;
    }
  #slideshow #slideshow-thumbnails {
    display: none;
  }
/* END Database and Article Slideshow */

/* Events */
/* Events filters */
#event_filters {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  color: #fff;
}
#event_filters span.note {
  display: none;
}
#event_filters a.selectBox-dropdown {
  color: #ffdb0a;
  font-size: 14px;
  z-index: 999;
}
  #event_filters .selectBox-dropdown .selectBox-label {
    padding-left: 20px;
    line-height: 34px;
  }
  #event_filters .selectBox-dropdown .selectBox-arrow {
    top: 5px;
    right: 12px;
  }

#page_events .selectBox-dropdown-menu {
  font-size: 16px;
}
#page_events .selectBox-options.selectBox-options-bottom {
  padding-left: 10px;
}


/* Events list */
#events_list {
  margin-top: 20px;
}
#events_list ul {
  width: 100%;
}

#events_list li {
  display: block;
  margin-bottom: 20px;
}
#events_list li.blocks_container {
  display: none;
}
  #events_list li li {
    display: inline-block;
    vertical-align: top;
  }

#events_list .pagination {
  display: none;
}

.image_wrapper {
  background: #000;
}
.image_wrapper img {
  width: 100%;
}

.all_dates_locations {
  width: 100%;
  background: rgba(0,0,0,.3);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  display: block;
  line-height: 60px;
  margin-top: 1px;
}
.all_dates_locations.opened {
  background-color: #ffcc33;
}

  .all_dates_locations a {
    padding-left: 20px;
    color: #ffcd33;
    text-decoration: none;
    background: none;
  }
  .all_dates_locations.opened a {
    color: #000;
  }

  .all_dates_locations span {
    position: absolute;
    right: 20px;
    text-indent: -9999px;
    background: url(/images/img31x58arrow_x.png) top center no-repeat;
    background-size: 100% auto;
    height: 15px;
    width: 15px;
    top: 50%;
    margin-top: -7px;
  }

  .all_dates_locations.opened span {
    background-position: bottom center;
  }

.event_title {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  padding: 22px 18px;
  background: #000;
}
.event_description {
  color: #909496;
  font-size: 14px;
  line-height: 16px;
  background: #000;
  padding: 0 10px 18px 22px;
}

.inner_schedule_container {
  display: none;
}
.inner_schedule_container.opened {
  display: block;
}

.schedule_container li {
  margin-top: 1px;
  width: 100%;
}
#events_list li li {
  margin-bottom: 0;
}

.schedule_container .schedule_data_container {
  padding-right: 60px;
  position: relative;
}

  .schedule_container li .schedule_data {
    background-color: #000;
    margin-right: 1px;
    padding: 15px 0 20px 22px;
    display: block;
  }
    .schedule_container li .schedule_data h4 {
      color: #fff;
      font-size: 13px;
      line-height: 15px;
      font-weight: bold;
    }
    .schedule_container li .schedule_data p {
      font-size: 11px;
      line-height: 13px;
    }
  .schedule_container li .event_info {
    background-color: #000;
    width: 60px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
  }
  .schedule_container li .event_info a {
    width: 99%;
    height: 99%;
    display: block;
    background: #000;
  }
  .schedule_container li .event_info a:hover {
    background-color: #fc3;
  }
  .schedule_container li .event_info a span {
    background: url(/images/img32x104arrow_right.png) top center no-repeat;
    width: 16px;
    height: 26px;
    text-indent: -99999px;
    font-size: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -13px;
    background-size: 100% auto;
  }
  .schedule_container li .event_info a:hover span {
    background-position: bottom center;
  }
/* End Events */


/* Footer */

#footer-wrapper {
  background-color: #000;
  clear: both;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#footer {
  max-width: 1360px;
  position: relative;
  text-align: center;
}
#footer-logo {
  background: url(../images/logo-startrek-footer_408x80.png) center center no-repeat;
  background-size: cover;
  display: inline-block;
  height: 40px;
  margin: 35px -10px 25px 0;
  width: 204px;
}
#footer-navigation {
  border-bottom: 1px solid #484a4b;
}
  #footer-navigation ul {
    margin: 0 -2.5%;
    padding: 3% 0;
    width: 105%;
  }
    #footer-navigation ul li {
      display: block;
      height: 50px;
      line-height: 50px;
      padding: 0;
    }
      #footer-navigation ul li a {
        color: #979797;
        display: block;
        font-family: Helvetica, Arial, sans-serif;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        white-space: nowrap;
      }
      #footer-navigation ul li a:hover {
        color: #fff;
        text-decoration: none;
      }
#copyright {
  color: #909496;
  font-family: Tahoma, Arial, sans-serif;
  padding: 30px;
text-align: center;
}
  #copyright p {
    font-size: 12px;
    line-height: 24px;
  }


/* Social icons */

.social-icons {
  right: 170px;
  top: 30px;
}
#footer .social-icons {
  right: 0;
  top: 55px;
}
  .social-icons ul {
    overflow: hidden;
  }
  #header-navigation-wrapper .social-icons ul{
    background-color: #000;
    border-bottom: 1px solid #939aaa;
    border-top: 1px solid #939aaa;
    padding: 20px 10px;
  }
    .social-icons ul li {
      display: inline-block;
      padding: 0 10px;
      position: relative;
    }
    #footer .social-icons ul li {
      padding: 0 15px;
    }
      .social-icons ul li a {
        display: block;
        height: 25px;
        opacity: .55;
        -webkit-transition: opacity 0.25s;
        -moz-transition: opacity 0.25s;
        -ms-transition: opacity 0.25s;
        -o-transition: opacity 0.25s;
        transition: opacity 0.25s;
      }
      .social-icons ul li a:before {
        bottom: -10px;
        content: "";
        left: 0;
        position: absolute;
        right: 0;
        top: -10px;
      }
      .social-icons ul li a:hover {
        opacity: 1;
      }
      .social-icons .facebook {
        background: url(../images/icon-facebook.png) center center no-repeat;
        background-size: cover;
        width: 11px;
      }
      .social-icons .twitter {
        background: url(../images/icon-twitter.png) center center no-repeat;
        background-size: cover;
        width: 21px;
      }
      .social-icons .instagram {
        background: url(../images/icon-instagram.png) center center no-repeat;
        background-size: cover;
        width: 20px;
      }
      .social-icons .youtube {
        background: url(../images/icon-youtube.png) center center no-repeat;
        background-size: cover;
        width: 25px;
      }
      .social-icons .google {
        background: url(../images/icon-googleplus.png) center center no-repeat;
        background-size: cover;
        width: 25px;
      }
      .social-icons .tumblr {
        background: url(../images/icon-tumblr.png) center center no-repeat;
        background-size: cover;
        width: 25px;
      }


/* Content wrapper */
#content-wrapper {
  padding-top: 65px;
  position: relative;
  z-index: 0;
}
#page_home #content-wrapper {
  padding-top: 90px;
}
/* End Content wrapper */


/* Database Phone */
body#page_database #main-wrapper {
  z-index: auto;
  padding-bottom: 44px;
}
body#page_database #content-wrapper {
  z-index: auto;
}
#db-wrapper {
  position: relative;
}
#db-toolbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  color: #ffcc00;
  font-weight: bold;
  font-size: 16px;
  height: 44px;
  line-height: 44px;
  -webkit-transition: bottom 0.25s ease-out;
  -moz-transition: bottom 0.25s ease-out;
  -ms-transition: bottom 0.25s ease-out;
  -o-transition: bottom 0.25s ease-out;
  transition: bottom 0.25s ease-out;
}
  #db-toolbar.hidden {
    bottom: -45px;
  }
  #db-toolbar:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #111926;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  #db-toolbar #db-toolbar-toggle-filters {
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    cursor: pointer;
    padding: 0 18px 0 48px;
    z-index: 2;
  }
    #db-toolbar #db-toolbar-toggle-filters:after {
      content: '';
      position: absolute;
      left: 5px;
      top: 7px;
      width: 27px;
      height: 27px;
      background: transparent url(../images/db-icons.png) no-repeat scroll 0 0;
      background-size: 192px 27px;
    }
  #db-toolbar #db-toolbar-toggle-view-type {
    position: absolute;
    left: 124px;
    top: 0;
    z-index: 2;
  }
    #db-toolbar #db-toolbar-toggle-view-type a {
      float: left;
      cursor: pointer;
      width: 42px;
      height: 44px;
      position: relative;
      opacity: 0.3;
    }
    #db-toolbar #db-toolbar-toggle-view-type a:hover,
    #db-toolbar #db-toolbar-toggle-view-type a.active {
      opacity: 1;
    }
      #db-toolbar #db-toolbar-toggle-view-type a:after {
        content: '';
        position: absolute;
        width: 27px;
        height: 27px;
        left: 6px;
        top: 9px;
        background: transparent url(../images/db-icons.png) no-repeat scroll;
        background-size: 192px 27px;
      }
        #db-toolbar #db-toolbar-toggle-view-type a#db-toolbar-toggle-view-type-timeline:after {
          background-position: -32px 0;
        }
        #db-toolbar #db-toolbar-toggle-view-type a#db-toolbar-toggle-view-type-list:after {
          background-position: -64px 0;
        }
  #db-toolbar #db-toolbar-expand-all {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 17px;
    background: #000;
    cursor: pointer;
    z-index: 2;
  }
#db-filters {
  position: fixed;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  padding: 54px 10px 44px 10px;
  box-sizing: border-box;
  line-height: 20px;
  -webkit-transition: top 0.25s ease-out;
  -moz-transition: top 0.25s ease-out;
  -ms-transition: top 0.25s ease-out;
  -o-transition: top 0.25s ease-out;
  transition: top 0.25s ease-out;
}
  #db-toolbar.show-filters #db-filters {
    top: 0;
  }
  #db-filters:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: rgba(25, 25, 25, 0.9);
    z-index: -1;
  }
  #db-filters #db-filters-content {
    overflow: auto;
    max-height: 100%;
  }
  #db-filters #db-filters-close-btn {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 0;
    top: 0;
    background: transparent url(../images/db-close-filters_130x130.png) no-repeat scroll left top;
    background-size: 44px 44px;
    cursor: pointer;
  }
  #db-filters a {
    color: #999;
  }
    #db-filters a:hover,
    #db-filters .db-filters-section label:hover a {
      color: #fff;
      text-decoration: none;
    }
  #db-filters #db-filters-sort {
    position: relative;
    height: 43px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #2b2b2b;
  }
    #db-wrapper.list #db-filters #db-filters-sort {
      margin-bottom: 0;
      height: 0;
      opacity: 0;
    }
    #db-filters #db-filters-sort a {
      display: block;
      position: absolute;
      top: 0;
      width: 50%;
      font-size: 16px;
      line-height: 43px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      box-sizing: border-box;
      -webkit-transition: color 0.25s ease-out;
      -moz-transition: color 0.25s ease-out;
      -ms-transition: color 0.25s ease-out;
      -o-transition: color 0.25s ease-out;
      transition: color 0.25s ease-out;
    }
      #db-filters #db-filters-sort a#db-filters-sort-star_date {
        left: -13px;
        padding-left: 16px;
      }
      #db-filters #db-filters-sort a#db-filters-sort-air_date {
        right: -13px;
        padding-right: 28px;
      }
      #db-filters #db-filters-sort a.active {
        color: #fff;
        background: #000;
      }
        #db-filters #db-filters-sort a:after {
          content: '';
          position: absolute;
          top: 0;
          bottom: 0;
          width: 0;
          height: 0;
          z-index: 1;
          display: none;
        }
          #db-filters #db-filters-sort a.active:after {
            display: block;
          }
          #db-filters #db-filters-sort a#db-filters-sort-star_date:after {
            right: -26px;
            border-top: 43px solid #000;
            border-right: 26px solid transparent;
          }
          #db-filters #db-filters-sort a#db-filters-sort-air_date:after {
            left: -26px;
            border-bottom: 43px solid #000;
            border-left: 26px solid transparent;
          }

  #db-filters .db-filters-section {
    background: #000;
    margin-bottom: 10px;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: bold;
    opacity: 1;
    overflow: hidden;
  }
    #db-wrapper.timeline.sort-by-star_date #db-filters .db-filters-section#db-filters-section-air-date-categories,
    #db-wrapper.timeline.sort-by-air_date #db-filters .db-filters-section#db-filters-section-star-date-categories,
    #db-wrapper.timeline #db-filters .db-filters-section#db-filters-jump-to-letter {
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      height: 0;
      opacity: 0;
    }
    #db-filters .db-filters-section .db-filters-section-toggle {
      margin-bottom: 8px;
      line-height: 16px;
    }
      #db-filters .db-filters-section .db-filters-section-toggle div {
        color: #fc3;
        cursor: pointer;
      }
        #db-filters .db-filters-section .db-filters-section-toggle div.db-filters-section-toggle-all {
          float: left;
          position: relative;
        }
        #db-filters .db-filters-section .db-filters-section-toggle div.db-filters-section-toggle-none {
          float: right;
          text-align: right;
        }
        #db-filters .db-filters-section .db-filters-section-toggle span {
          display: block;
          text-align: center;
          color: #fff;
          font-size: 13px;
          font-weight: bolder;
        }
    #db-filters .db-filters-section label {
      display: block;
      cursor: pointer;
      position: relative;
      padding-left: 18px;
    }
      #db-filters .db-filters-section label input {
        display: none;
      }
      #db-filters .db-filters-section label .icheckbox_st {
        position: absolute;
        left: 0;
        top: 4px;
      }

    #db-filters .db-filters-section#db-filters-jump-to-letter {
      color: #fff;
      line-height: 25px;
      opacity: 1;
      padding: 16px 25px;
    }
      #db-filters .db-filters-section#db-filters-jump-to-letter span {
        display: block;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 10px;
        font-weight: bold;
        color: #fff;
        padding-left: 5px;
      }
      #db-filters .db-filters-section#db-filters-jump-to-letter a {
        float: left;
        font-weight: bold;
        font-size: 14px;
        line-height: 22px;
        width: 27px;
        margin: 0 2px 2px 0;
        text-align: center;
      }
        #db-filters .db-filters-section#db-filters-jump-to-letter a.active,
        #db-filters .db-filters-section#db-filters-jump-to-letter a:hover {
          background: #fc0;
          color: #000;
          text-decoration: none;
        }

#db-toolbar #db-toolbar-back-to-top {
  display: none;
}
#db-articles {
  margin: -25px 0 0 11px;
  padding-bottom: 30px;
  position: relative;
  min-height: 500px; /* updated from js to match the fitlers height */
}
  #db-wrapper.loading #db-articles {
    background: transparent url(../images/ST50_load.gif) no-repeat scroll center 100px;
  }
  #db-wrapper.list #db-articles {
    margin-top: 0;
  }
  #db-articles:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #fff;
    opacity: 0.5;
  }
    #db-wrapper.loading #db-articles:after {
      display: none;
    }

  #db-wrapper.no-results #db-articles {
    margin: 10px;
  }
    #db-wrapper.no-results #db-articles:after {
      display: none;
    }

#db-articles .db-articles-section {
  margin-top: 25px;
}
  #db-articles .db-articles-section .db-articles-section-title {
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    height: 44px;
    line-height: 44px;
    margin-right: 32px;
    padding-left: 20px;
    cursor: pointer;
    position: relative;
  }
    #db-articles .db-articles-section .db-articles-section-title:after {
      content: '';
      position: absolute;
      right: -30px;
      top: 0;
      width: 0;
      height: 0;
      border-top: 44px solid #000;
      border-right: 30px solid transparent;
    }
    #db-articles .db-articles-section .db-articles-section-title.approximated:before {
      content: '~';
      position: absolute;
      left: 6px;
      top: 0;
      font-size: 20px;
      line-height: 44px;
    }
  #db-articles .db-articles-section .db-articles-section-content-wrapper {
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
  }
    #db-articles .db-articles-section.expanded .db-articles-section-content-wrapper {
      height: auto;
      opacity: 1;
      padding-top: 16px;
    }


#db-articles .db-article {
  margin: 1px 0;
}
  #db-articles .db-article .db-article-header {
    position: relative;
    font-weight: bold;
    margin-left: 20px;
    padding: 12px 0;
  }

    #db-articles .db-article .db-article-header:before {
      content: '';
      opacity: 1;
      position: absolute;
      width: 10px;
      height: 1px;
      left: -20px;
      top: 50%;
      background: #fff;
    }
    #db-articles .db-article .db-article-header .db-article-title {
      color: #fc0;
      font-size: 18px;
      line-height: 20px;
      word-wrap: break-word;
      max-width: 60%;
    }
      #db-articles .db-article.expanded .db-article-header .db-article-title {
        color: #fff;
      }
      #db-articles .db-article .db-article-header .db-article-title span {
        cursor: pointer;
      }
    #db-articles .db-article .db-article-header-separator {
      content: '';
      position: absolute;
      right: 108px;
      left: 60%;
      top: 50%;
      height: 1px;
      background: #fff;
      opacity: 0;
      display: none;
    }
      #db-articles .db-article.expanding .db-article-header-separator,
      #db-articles .db-article.collapsing .db-article-header-separator {
        display: block;
      }
      #db-articles .db-article.expanded .db-article-header-separator {
        display: block;
        opacity: 1;
      }
  #db-articles .db-article .db-article-actions {
    position: absolute;
    width: 100px;
    right: 0;
    top: 50%;
    margin-top: -16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: right 0.25s ease-out, opacity 0.25s ease-out;
    -moz-transition: right 0.25s ease-out, opacity 0.25s ease-out;
    -ms-transition: right 0.25s ease-out, opacity 0.25s ease-out;
    -o-transition: right 0.25s ease-out, opacity 0.25s ease-out;
    transition: right 0.25s ease-out, opacity 0.25s ease-out;
  }
    #db-articles .db-article.expanding .db-article-actions,
    #db-articles .db-article.collapsing .db-article-actions {
      visibility: visible;
    }
    #db-articles .db-article.expanded .db-article-actions {
      opacity: 1;
      display: block;
      visibility: visible;
    }
    #db-articles .db-article .db-article-actions .db-article-action-view,
    #db-articles .db-article .db-article-actions .db-article-action-share {
      float: left;
      width: 32px;
      height: 32px;
      background: transparent url(../images/db-icons.png) no-repeat scroll;
      background-size: 192px 27px;
      text-indent: -100px;
      overflow: hidden;
      font-size: 0.01%;
      cursor: pointer;
    }
      #db-articles .db-article .db-article-actions .db-article-action-view {
        background-position: -96px;
        margin-right: 18px;
      }
      #db-articles .db-article .db-article-actions .db-article-action-share {
        background-position: -128px;
        cursor: pointer;
      }

  #db-articles .db-article .db-article-content-wrapper {
    height: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
    #db-articles .db-article.expanded .db-article-content-wrapper {
      height: auto;
      padding-bottom: 50px;
    }
    #db-articles .db-article .db-article-content-wrapper .db-article-content {
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      opacity: 0;
    }
    #db-articles .db-article.expanded .db-article-content-wrapper .db-article-content {
      -webkit-transform: translateY(0%);
      -moz-transform: translateY(0%);
      -ms-transform: translateY(0%);
      -o-transform: translateY(0%);
      transform: translateY(0%);
      opacity: 1;
    }

  #db-articles .db-article .db-article-description {
    padding: 3px 20px 10px 20px;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
  }
    #db-articles .db-article .db-article-description-read-more {
      color: #fc0;
    }
  #db-articles .db-article .db-article-image {
    float: right;
    width: 31%;
    margin: 3px 20px 10px 20px;
  }
    #db-articles .db-article .db-article-image img {
      width: 100%;
    }

  #db-articles .db-next-page {
    color: #fc0;
    display: block;
    margin: 10px;
    text-align: center;
  }

  #db-articles .loading-next-page {
    height: 150px;
    background: transparent url(../images/ST50_load.gif) no-repeat scroll center center;
    background-size: 60px;
  }
  #db-advertisement {
   display: none;
  }
/* End Database Phone */

/* Database Tablet starts at 800 */
@media (min-width: 800px) {
  #db-articles {
    margin-right: 328px;
  }
    #db-wrapper.no-results #db-articles {
      margin: 20px 328px 20px 10px;
      min-width: 0;
    }
    #db-articles .db-article .db-article-actions {
      width: 85px;
    }
    #db-articles .db-article .db-article-image {
      margin-right: 0;
    }
    #db-advertisement {
      display: block;
      position: absolute;
      z-index: 1;
      right: 10px;
      top: 0;
      width: 308px;
      height: 256px;
    }
      #db-advertisement .advertisement {
        padding: 4px 0;
      }
}
/* End Database Tablet */

/* Database Article */
#db-article {

}
  #db-article #db-article-title {
    padding: 16px 2.7%;
    height: auto;
    line-height: 32px;
  }
  #db-article #db-article-media {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    line-height: 24px;
  }
    #db-article #db-article-title + #db-article-media {
      margin-top: 20px;
    }
    #db-article #db-article-media a {
      font-weight: bold;
    }

body#page_database_article .double-column#db-article-details-double-column {
  margin: 0;
  width: 100%;
}
  #db-article #db-article-social {
    padding: 12px 0 12px 14px;
    background: #141d2c;
    background: rgba(0, 0, 0, 0.3);
    max-height: 21px;
    overflow: hidden;
  }
    #db-article #db-article-social a {
      font-size: 14px;
      font-weight: bold;
      margin: 0 7px;
    }
  #db-article #db-article-details {
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    padding: 30px 20px;
    border-bottom: 2px solid #ffcd33;
    margin-bottom: 30px;
  }
    #db-article #db-article-details #db-article-top-advertisement {
      display: none;
    }
    #db-article #db-article-details p {
      padding: 5px 0;
    }
    #db-article #db-article-details a {
      color: #dba707;
    }
    #db-article #db-article-details #db-article-details-cast-title {
      font-size: 18px;
      font-weight: bold;
      margin-top: 40px;
    }
    #db-article #db-article-details #db-article-details-cast {
      font-weight: bold;
      line-height: 18px;
    }
      #db-article #db-article-details .db-article-details-cast dt {
        font-weight: bold;
        margin-top: 15px;
      }
      #db-article #db-article-details .db-article-details-cast p {
        padding: 0;
      }
  #db-article #db-article-siblings-links {
    line-height: 44px;
    margin-bottom: 20px;
  }
    #db-article #db-article-siblings-links a {
      font-size: 16px;
      font-weight: bold;
      color: #fff;
    }
      #db-article #db-article-siblings-links a span {
        display: none;
      }
      #db-article #db-article-siblings-links a#db-article-previous {
        float: left;
        padding-left: 60px;
        position: relative;
      }
      #db-article #db-article-siblings-links a#db-article-next {
        float: right;
        padding-right: 60px;
        position: relative;
      }
        #db-article #db-article-siblings-links a#db-article-previous:before,
        #db-article #db-article-siblings-links a#db-article-next:before {
          content: '';
          position: absolute;
          top: 0;
          width: 44px;
          height: 44px;
          background: #000 url(../images/prev-next_120x240.png) no-repeat scroll;
          background-size: 44px 88px;
        }
          #db-article #db-article-siblings-links a#db-article-previous:before {
            background-position: 0 0;
            left: 0;
          }
          #db-article #db-article-siblings-links a#db-article-next:before {
            background-position: 0 -44px;
            right: 0;
          }
      #db-article #db-article-siblings-links a#db-article-ep-list {
        display: block;
        clear: both;
        text-align: center;
      }

#db-article-related-articles {
  display: none;
}
/* End Database Article */

/* Videos Landing */
#page_videos .single-column {

}
.single-column.channel_box {
  float: none;
  width: 100%;
  margin-left: 0;
  background-color: rgba(0, 0, 0, .3);
}
#page_videos .ad_content {
  display: none;
}
.single-column.ad_content {
  float: none;
}
.cover_container {
  max-width: 145px;
  display: inline-block;
  vertical-align: top;
}
.cover_container img {
  width: 100%;
  height: auto;
  border: 0;
  display: block;
}
.channel_box a.video-title {
  background: none;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding-left: 10px;
  vertical-align: top;
  padding-top: 10px;
}
.channel_box a span {
  font-size: 14px;
  display: block;
  padding-bottom: 5px;
}
#update_seasons .no_results {
  margin-left: 20px;
  background: none;
}
/* END Videos Landing */


/* Search Results */

#search .gs-title {
  color: #dba707;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}

#search .gs-snippet {
  color: #000;
  font-size: 10px;
  line-height: 14px;
}
#search .gsc-url-bottom {
  color: #909496;
  font-size: 10px;
  line-height: 14px;

}
/* END Search Results */

/* News Landing */
#news-submenu {
  display: none;
  right: 0;
}

#news-filters.mobile-filters {
  display: block;
  margin-bottom: 20px;
}
#news-filters a.selectBox span.selectBox-label {
  min-width: 100px;
  line-height: 34px;
}
#news-filters .selectBox-dropdown .selectBox-arrow {
  top: 5px;
  right: 12px;
}
#news-filters h3 {
  display: none;
}
/*  #page_news_article #news-filters h3 {
    margin-bottom: 17px;
    margin-left: 2.7%;
    color: #fff;
  }
*/
#page_news_landing .selectBox-dropdown, #page_news_article .selectBox-dropdown {
  color: #ffdb0a;
}
.full-width {
  width: 100%;
  float: left;
  clear: left;
}
.full-size {
  width: 100%;
  float: left;
  clear: left;
}
.half-size {
  width: 100%;
  float: left;
}

.box_news {
  border-bottom: 2px solid #3e7bce;
  margin-bottom: 6%;
  background-color: #000;
  position: relative;
  float: left;
}
  .box_news.st50:after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 28px;
    height: 44px;
    background: transparent url(../images/icon-50-badge_56x88.png) no-repeat scroll center center;
    background-size: 28px 44px;
  }

  .box_news a {
    display: block;
  }
  .box_news img {
    width: 100%;
  }
  .box_news .news_info {
    font-size: 14px;
    color: #909496;
    line-height: 16px;
    padding: 4%;
    background-color: #000;
  }
    .box_news.half-size .news_info {
      padding: 4%;
    }
    .box_news.single-column .news_info {
      padding: 4%;
    }
    .ads-and-shop .box_news .news_info {
      padding: 4%;
    }
    .box_news .news_info h3 {
      color: #fff;
      font-weight: bold;
      font-size: 24px;
      line-height: 26px;
      margin-bottom: 2%;
    }
      .box_news.half-size .news_info h3 {
        margin-bottom: 4%;
      }
      .box_news.single-column .news_info h3 {
        margin-bottom: 4%;
      }
      .ads-and-shop .box_news .news_info h3 {
        margin-bottom: 4%;
      }
    #page_news_landing .box_news .news_info p span {
      display: none;
    }
    .box_news .news_info p.date {
      margin-top: 2%;
    }
.second-ads-container + .box_news {
  clear: left;
}

.white-link {
  margin: 1% 0 2% 3%;
}
  .white-link a {
  }

#page_news_landing #video_player {
  width: 100%;
  padding: 0;
  border-bottom: 0;
}
#page_news_landing #video_player #flash-wrapper {
  padding-bottom: 42.39%;
}
.vjs-default-skin .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-left: -2em;
  margin-top: -1.3em;
}
#page_news_landing audio {
  width: 100%;
  padding: 20px 0;
}
/* END News Landing*/

/* News Article */
.single-column.top-ads-container {
  float: left;
  width: 100%;
  margin-left: 0;
}
.single-column.top-ads-container .advertisement {
  margin-bottom: 0;
  padding-bottom: 0;
  background: none;
  padding-top: 1%;
}
.single-column.bottom-ad-container {
  margin-right: 2.7%;
  width: 94.6%;
}
.box-article-container {
  margin: 0;
}
.article-image-container {
  width: 100%;
  display: block;
}
.article-image-container img {
  width: 100%;
  display: block;
}
.article-image-container p {
  background-color: #fff;
  padding: 1% 4%;
  line-height: 1.2;
}

.st_news_img {
  margin-bottom: 0;
}

.article-container {
  padding: 0 4%;
  margin: 0 0 2.7% 0;
  width: 92%;
  background: #fff;
  float: left;
}

.article-container h3 {
  color: #333;
  font-size: 24px;
  padding: 40px 0;
  margin-right: 2.7%;
}
.article-container .socials {
  width: 97.3%;
  margin: 0 2.7% 2.7% 0;
}
.rss_like_wrapper {
  margin: 3% 0;
  display: inline-block;
}

.rss_like_wrapper .sharethis {
  background-image: url('../images/btn46x42share_black.png');
  margin-left: 0;
}
.rss_like_wrapper .rss {
  vertical-align: middle;
  display: inline-block;
  width: 20px;
  height: 21px;
  background: url('../images/btn40x42rss.png') top left no-repeat;
  background-size: cover;
}

#page_news_article .socials .like-this-box {
  margin-left: 0;
}

.article-container .socials p {
  color: #ba0;
  font-size: 14px;
  line-height: 16px;
  margin-right: 1%;
  display: block;
  white-space: nowrap;
  padding-top: 3px;
}

.socials img {
  vertical-align: middle;
}

.article-container .socials p span {
  color: #909496;
}

.author-container {
  display: inline-block;
  margin-right: 1%;
}
  .author-container a {
    color: #ba0;
  }

.article-body {
  float: left;
  width: 100%;
  margin-right: 0;
  color: #000;
  font-size: 14px;
  line-height: 17px;
}

.article-body p {
  margin-bottom: 2%;
}
.article-body a {
  color: #ba0;
}
.article-body img {
  max-width: 100%;
  margin: 2.5% auto;
  display: block;
  clear: both;
}
.article-body ul {
  list-style-type: disc;
  padding: 0 5%;
}
.article-body ol {
  list-style-type: decimal;
  padding: 0 5%;
}

.article-body .video_iframe_container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background: #fff;
}
  .article-body .video_iframe_container iframe, 
  .article-body .video_iframe_container object, 
  .article-body .video_iframe_container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .article-body video {
    width: 100% !important;
    height: auto !important;
  }

.more-url p {
  font-weight: bold;
}
.media-sites {
  color: #000;
  margin-bottom: 2.7%;
}
.media-sites li {
  display: inline-block;;
  margin-right: 1%;
}
.media-sites a {
  color: #000;
  display: block;
  height: 25px;
  width: 25px;
  opacity: .55;
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  -ms-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.media-sites a:hover {
  opacity: 1;
}
.media-sites .facebook {
  background: url(../images/coloricon-facebook.png) center center no-repeat;
  background-size: cover;
}
.media-sites .twitter {
  background: url(../images/coloricon-twitter.png) center center no-repeat;
  background-size: cover;
}
.media-sites .google {
  background: url(../images/coloricon-googleplus.png) center center no-repeat;
  background-size: cover;
}
.media-sites .tumblr {
  background: url(../images/coloricon-tumblr.png) center center no-repeat;
  background-size: cover;
}

#page_news_article .related-content {
  width: 94.6%;
  margin: 0 2.7%;
  float: none;
}

#page_news_article .related-content .related-news-block {
  width: 100%;
}

#page_news_article .you_may_like {
  width: 100%;
}

.comments-ads {
  display: none;
}

#page_news_article .rel_news .generic-flagged-block.news em:after {
  content: none;
}

#page_news_article .rel_news .related-news-block {
  padding-top: 0;
  margin-bottom: 95px;
  margin-left: 0;
}

#related-database-articles {
  width: 100%;
  padding-top: 2.7%;
  clear: left;
}
#page_news_article #related-database-articles {
  padding-top: 0;
}

#page_news_article .bottom-ad-container {
  clear: both;
}

#page_news_article #events-block {
  margin-bottom: 2.7%;
}

#page_news_article #related-database-articles .single-column {
  width: 100%;
}

#related-database-articles .single-column:first-child {
  margin-left: 0;
}

#related-database-articles .single-column:last-child {
  display: none;
}

#page_news_article #related-database-articles .generic-flagged-block.database em::after {
  content: none;

}
#page_news_article  #events-block {
  width: 100%;
}

#page_news_article #events-block .generic-flagged-block.event em:after {
  content: none;
}
.article-body iframe {
  width: 100% !important;
}
/* END News Article */

/* ShareThis button */
.sharethis {
  display: inline-block;
  background: transparent url(../images/btn46x42-share.png) no-repeat scroll left top;
  background-size: 23px 21px;
  width: 23px;
  height: 21px;
  cursor: pointer;
  vertical-align: middle;
  margin: 0 7px;
}
/* END ShareThis button */

/* Facebook Like button */
.like-this-box {
  display: inline-block;
  vertical-align: middle;
  margin: 0 7px;
}
/* END Facebook Like button */

/* Video and episode player */

#video_player {
  background-color: #fff;
  border-bottom: 2px solid #e7151f;
  padding: 2.7%;
}

/* Video detail pages */

#seasons {
  background-color: #000;
  background-color: rgba(0,0,0,.3);
}
  #seasons li {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    margin-left: 15px;
  }
  #seasons li:first-child {
    margin-left: 2.7%;
  }
    #seasons li a {
      font-size: 18px;
      font-weight: bold;
    }
    #seasons li a.selected {
      color: #fbc932;
    }
.clip-list-wrapper {
  background-color: #000;
  background-color: rgba(0,0,0,.3);
  margin-top: 10px;
  overflow: hidden;
}
  .clip-list-wrapper .box_news {
    background-color: transparent;
    border: none;
    float: none;
    margin-bottom: 0;
  }
  .clip-list-wrapper .pagination {
    background: none;
    clear: both;
    height: auto;
    line-height: inherit;
    margin: 0;
  }
  .clip-list-wrapper ul.pagination {
    margin: 0 2.7%;
  }
  .video-clip-block + .pagination {
    padding-bottom: 2.7%;
  }
    .clip-list-wrapper .pagination li {
      display: inline-block;
      font-size: 16px;
      font-weight: bold;
      margin: 0 10px;
    }
      .clip-list-wrapper .pagination li span, .clip-list-wrapper .pagination li a {
        background: none;
        height: auto;
        line-height: inherit;
        width: auto;
      }
      .clip-list-wrapper .pagination li span {
        color: #fbc932;
      }
  .clip-list-wrapper .pagination a.prev, .clip-list-wrapper .pagination a.next {
    background: url(/images/img8x27arrows.png) top left no-repeat;
    line-height: 13px;
    height: 13px;
    width: 8px;
    position: absolute;
    margin-top: -7px;
    top: 50%;
    bottom: 0;
  }

  .clip-list-wrapper .pagination a.prev, .clip-list-wrapper .pagination a.prev:hover {
    left: 0;
  }
  .clip-list-wrapper .pagination a.next, .clip-list-wrapper .pagination a.next:hover {
    background-position: bottom left;
    right: 1px;
  }
  .clip-list-wrapper .sort_container {
    padding: 0 2.7% 20px;
  }
  .clip-list-wrapper .sort_container li {
    display: inline-block;
    margin-left: 20px;
  }
  .clip-list-wrapper .sort_container li:first-child {
    margin-left: 0;
  }
  .clip-list-wrapper .sort_container li a.selected {
    color: #fbc932
  }
  .video-clip-link, .video-clip-link:hover {
    border-bottom: 2px solid #e7151f;
    text-decoration: none;
  }
    .video-clip-link img {
      display: block;
    }
    .video-clip-link span {
      background-color: #000;
      color: #979797;
      display: block;
      font-size: 18px;
      padding: 20px;
    }
      .video-clip-link span strong {
        color: #fff;
        display: block;
        font-size: 26px;
        margin-top: 10px;
      }
      .episodes .video-clip-link span strong {
        margin-bottom: 10px;
        margin-top: 0;
      }
.video-type {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 30px 2.7% 20px;
}
#video-page-bottom-content {
  padding-top: 2.7%;
}
.clip-list-wrapper + #video-page-bottom-content {
  /*margin-top: -10px;*/
}
#video-page-bottom-content .you_may_like {
  display: none;
}
#page_videos_player .like-this-box {
  margin: 0;
}
#page_videos_landing #video-page-bottom-content .double-column .featured-content {
  margin-bottom: 2.7%;
}
#page_videos_landing #video-page-bottom-content .double-column .half-size {
  width: 100%;
}
.video_info {
  color: #000;
}
.video-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}
.video-origin {
  font-size: 18px;
  font-weight: bold;
}
.video_meta {
  /*overflow: hidden;*/
}
  .video_meta .socials {
    margin-top: 20px;
    padding-bottom: 4px;
  }
    .video_meta .socials .like-this-box {
      float: none;
    }
    .socials .comments_box, .video_meta .socials .comments_box {
      display: inline-block;
      margin-left: 10px;
      background-color: #000;
      border-radius: 3px;
      clear: both;
      font-size: 10px;
      padding: 5px;
      position: relative;
      vertical-align: middle;
    }
    .socials .comments_box:before, .video_meta .socials .comments_box:before {
      background-color: #000;
      content: "";
      height: 6px;
      left: 10px;
      position: absolute;
      top: 86%;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      width: 6px;
    }

#current-channel {
  padding: 40px 2.7% 25px;
  position: relative;
}
#st_channel {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  padding-right: 30px;
  position: relative;
}
#st_channel:hover {
  text-decoration: none;
}
#st_channel:after {
  background: url(/images/icon-arrow_41x48.png) top left no-repeat;
  background-size: 100% auto;
  content: "";
  height: 12px;
  right: 0;
  margin-left: 15px;
  margin-top: 8px;
  position: absolute;
  top: 0;
  width: 20px;
}
#st_channel.active {
  color: #fbc932;
}
#st_channel.active:after {
  background-position: bottom left;
}
.clip-list-wrapper:empty {
  display: none;
}
#channels_list {
  background-color: rgba(0, 0, 0, 0.901961);
  display: block;
  font-size: 21px;
  left: 2.7%;
  margin-top: -15px;
  padding: 20px;
  position: absolute;
  top: 100%;
  z-index: 99;
}
#channels_list li {
  margin: 20px 0 0;
}
#channels_list li:first-child {
  margin-top: 0;
}
#video_player #flash-wrapper {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
#video_player #flash-wrapper #flash {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* Comments block */

#comments_form_entries {
  position: relative;
}
#comments_box {
  background-color: #fff;
  border-bottom: 2px solid #0977c4;
  clear: both;
  margin-bottom: 2.7%;
  overflow: hidden;
}
#video-page-bottom-content #comments_box {
  margin-top: 2.7%;
}
#area-wrapper {
  position: relative;
  top: 0;
  left: auto;
  right: auto;
  padding: 0 25px 0 20px;
}
.form_comments {
  text-align: center;
}
  .form_comments textarea {
    border-color: #393939;
    height: 70px;
    margin-top: 0;
    width: 100%;
  }
#recaptcha_div {
  display: inline-block;
  margin-right: 0;
  margin-top: 12px;
}
#comments_header {
  color: #333;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0 15px 20px;
}
#submit-content-wrapper {
  background-color: #e5e5e5;
  margin-top: 17px;
  text-align: right;
}
#submit-content-wrapper a, #submit-content-wrapper input {
  background-color: #0099ff;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
  padding: 0 17px;
}
#submit-content-wrapper input {
  border: 0;
  color: #fff;
  -webkit-appearance: none;
}
#comments {
  background-color: #1a1a1a;
  color: #fff;
  overflow: hidden;
  padding: 20px;
}
#comments li {
  margin-bottom: 40px;
  min-height: 95px;
  /*overflow: hidden;*/
  position: relative;
}
#comments li:last-child {
  margin-bottom: 0;
}
#comments .comments-user-profile {
  clear: left;
  float: left;
}
#comments .user_info {
  color: #fff;
  font-size: 11px;
  float: left;
  margin-left: 15px;
  width: 150px;
}
#comments .user_info .username {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px 0;
  word-wrap: break-word;
}
#comments .box_left {
  left: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  width: auto;
}
#comments .box_right {
  margin-top: 10px;
  padding-left: 0;
  position: relative;
  text-align: right;
  font-size: 14px;
}
  #comments .box_right a {
    color: #ffce00;
    display: inline-block;
    font-size: 11px;
    margin-bottom: 5px;
    position: absolute;
    right: 0;
    top: -25px;
  }
  #comments .box_right a.delete {
    color: #f00;
    top: -60px;
  }
  #comments .box_right p {
    text-align: left;
  }
  #comments:empty {
    padding: 0;
  }
.fb_iframe_widget {
  float: left;
}
.no-profile-image {
  background-color: #000;
  background-color: rgba(0,0,0,.15);
  float: left;
  height: 70px;
  width: 70px;
}

/* Report this */

.ui-dialog-title {
  color: #ffcd33;
  font-size: 15px;
}
.ui-dialog .ui-dialog-buttonpane {
  padding: 0.3em 0.5em 0.5em;
}
.ui-dialog-content {
  font-size: 14px;
  height: 320px !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: none;
  text-align: center;
}
.ui-dialog .ui-dialog-buttonpane button {
  display: inline-block !important;
}
.flag_comment {
  display: block;
  margin-bottom: 5px;
}
.flag_comment {
  width: 100%;
}

/* Tooltip */

.correct_user .user-profile-image {
  border-radius: 50%;
  display: inline-block;
  height: 45px;
  overflow: hidden;
  width: 45px;
}
  .correct_user .user-profile-image img {
    left: 50%;
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }
.result_info {
  text-align: center;
}
  .result_info .correct_user {
    display: inline-block;
    float: none;
    /*margin: 0;*/
    text-align: center;
    /*width: auto;*/
  }

div.ui-tooltip[role="tooltip"] {
  background: #665214 !important;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  color: #fff !important;
  font-size: 12px;
  font-weight: bold;
  padding: 7px 12px;
}
#page_news_landing div.ui-tooltip[role="tooltip"] {
  background: rgba(10,38,77,.8) !important;
}

/* Matter Stream block */

#pixel_quiz_box {
  background: #ffcd33 url(/images/background-matter-stream_880x1476.png) top left no-repeat;
  background-size: 100% auto;
  clear: both;
  color: #000;
  overflow: hidden;
  padding: 20px;
}
  #pixel_quiz_box .users {
    font-size: 16px;
  }
    #pixel_quiz_box .users a {
      color: #000;
      font-weight: bold;
    }
#pixel_quiz_container {
  position: relative;
}
.matter-stream-image {
  height: auto;
  width: 100%;
}
#pixel_quiz_container .vote {
  background-color: #000;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0;
  width: 100%;
}
#quiz-hints {
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: -36px;
}
.request_hint {
  color: #000;
}
.matter-stream-title {
  padding: 0 0 20px;
  font-size: 16px;
  font-weight: bold;
}
.quiz-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 26px;
  margin-top: 15px;
}
.quiz-title + p {
  margin-top: 15px;
}
.users.users-number {
  padding: 15px 0 5px;
}
  #pixel_quiz_box .user-name {
    color: #000;
  }
  #pixel_quiz_box p {
    text-align: center;
  }
    #pixel_quiz_box p a {
      color: #000;
    }
    #pixel_quiz_box #next_quiz a {
      background-color: rgba(102, 82, 20,.85);
      color: #fff;
      display: block;
      font-weight: bold;
      padding: 15px 0;
    }
    #pixel_quiz_box .read-db-article {
      margin-bottom: 20px;
    }
  #pixel_quiz_box .correct_answer {
    display: block;
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0;
    text-align: center;
  }


/* Preload Images */
.preload-images {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
/* End preload Images */

/* Featured Content */
.featured-content {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 35.8695%;
  background: transparent no-repeat scroll center center;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: contain;
}
/* End Featured Content */

/* Register with Facebook */
#page_membership_register .double-column, #page_recover_password .double-column {
  background-color: #000;
  background-color: rgba(0,0,0,.3)
}
#page_membership_register .single-column {
  width: 94.6%;
}
.login-or-register, .forgot-password {
  color: #fff;
  padding: 2.7%;
}
.login-or-register p {
  margin-bottom: 25px;
}
#membership input[type="text"], #membership input[type="password"] {
  background-color: rgba(29,42,53,.9);
  border: 0;
  border-bottom: 1px solid #6e757d;
  color: #fff;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  margin-top: 10px;
  padding: 0;
  text-indent: 10px;
  width: 100%;
}
#membership input:focus {
  outline: none;
}
.lor-button, .button {
  background-color: #3b5998;
  display: inline-block;
  font-weight: bold;
  line-height: 1.25em;
  padding: 15px 40px;
  text-align: center;
}
#membership .forgot_password {
  color: #fbc932;
  display: inline-block;
  margin-right: 20px;
}
#membership .form-buttons {
  padding-top: 20px;
  text-align: center;
}
#membership #signin_username {
  margin-bottom: 20px;
}
.form_row {
  margin: 10px 0;
  text-align: left;
}
  .form_row label {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding-right: 20px;
  }

.error_list {
  color: #f00;
}

.message_success {
  margin-bottom: 20px;
}
body#page_membership_register .message_success {
  color: #fff;
}

/* User registration */

.user-registration-form {
  padding: 10px 2.7% 2.7%;
}
  .user-registration-form .form_row {
    margin: 30px 0;
    text-align: left;
  }
  .user-registration-form .form_row.avatar-row {
/*    margin-bottom: 15px;
    padding-bottom: 15px;*/
  }
  .user-registration-form li:first-child .form_row {
    margin-top: 0;
  }
  .user-registration-form .facebook_btn {
    margin-bottom: 30px;
  }
    .user-registration-form .form_row label {
      margin-bottom: 10px;
      padding-right: 0;
      text-align: left;
      vertical-align: middle;
      width: 100%;
    }
    .user-registration-form #update-avatar .facebook_label, .user-registration-form .radio_list label {
      margin-bottom: 0;
    }
  .user-registration-form .radio_list {
    display: inline-block;
    overflow: hidden;
    padding-bottom: 10px;
    padding-top: 10px;
    vertical-align: middle;
  }
    .user-registration-form .radio_list li {
      float: left;
      margin-left: 30px;
      white-space: nowrap;
    }
    .user-registration-form .radio_list li:first-child {
      margin-left: 0;
    }
    #sf_guard_user_username + span, #sf_guard_user_password + span {
      color: #909496;
      display: block;
      font-size: 14px;
      font-style: italic;
      margin-left: 0;
      margin-top: 10px;
      padding-left: 3px;
    }
    #sf_guard_user_password + span {

    }
    .user-registration-form #recaptcha_div {
      margin-bottom: 2.7%;
      margin-left: 0;
      margin-right: 0;
      max-width: 100%;
    }
    .user-registration-form #submit {
      background-color: #ffcd33;
      color: #000;
      display: block;
      font-size: 16px;
      font-weight: bold;
      height: 45px;
      line-height: 45px;
      margin-bottom: 12px;
      margin-left: 0;
      margin-top: 15px;
      padding: 0;
      width: auto;
    }
    .user-registration-form #cancel {
      color: #fac932;
      display: inline-block;
      margin: 12px 0 10px 0;
    }
    .user-registration-form .checkbox_row {
      clear: both;
      margin-left: 0;
      overflow: hidden;
      padding-left: 30px;
      position: relative;
    }
      .user-registration-form .form_row.checkbox_row label {
        color: #909496;
        font-size: 14px;
        font-weight: normal;
        width: auto;
      }
        .user-registration-form .form_row.checkbox_row label a {
          color: #fac932;
        }
    .user-registration-form .checkbox_row .icheckbox_st {
      left: 5px;
      position: absolute;
      top: 1px;
    }
        .user-registration-form .checkbox_row input[type="checkbox"] {
/*          float: left;
          margin-right: 10px;*/
        }
        .user-registration-form .selectBox .selectBox-label {
          color: #808080;
          font-size: 18px;
          font-weight: normal;
          padding: 7px 8px 5px 12px;
          vertical-align: middle;
        }
        .user-registration-form .dob_row .selectBox .selectBox-label {
          color: #fff;
          font-weight: bold;
        }
    .user-registration-form .selectBox-dropdown .selectBox-arrow {
      background: url(../images/img27x16-yellow_arrow_down.png) 50% center no-repeat;
      background-size: 40% auto;
      left: auto;
      right: 0;
      top: 6px;
    }
    .user-registration-form .form_row .selectBox-dropdown, .user-registration-form .form_row input[type="text"], .user-registration-form .form_row input[type="password"] {
      width: 100% !important;
    }
    .user-registration-form .form_row .selectBox-dropdown {
      /*margin-top: 10px;*/
      min-width: 90px;
    }
    .user-registration-form .form_row.dob_row .selectBox-dropdown {
      width: 25% !important;
    }
    .user-registration-form .form_row.checkbox_row {
      margin-top: 30px;
      margin-bottom: 30px;
    }
    .user-registration-form .iradio_st_yellow-white {
      margin-right: 10px;
    }
    .registration_form > li p:first-child {
      color: #fff;
      font-size: 14px;
      padding: 25px 0;
    }
.user-registration-form .form_buttons {
  text-align: center;
}
.form_row.avatar-row label {
  vertical-align: top;
}
#current_avatar {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
  #current_avatar img {
    background-color: #1c2833;
    display: inline-block;
    height: 150px;
    margin-bottom: 15px;
    margin-right: 15px;
    width: auto;
  }
  #update-avatar {
    display: inline-block;
    /*max-width: 40%;*/
    vertical-align: top;
  }
  #update-avatar .form_row.right_row label {
    width: 0;
  }
  #select-photo {
    background-color: #ffcd33;
    color: #000;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 13px;
    padding: 16px 30px;
    text-align: center;
    width: 105px;
  }
  #update-avatar .select_avatar label {
    font-size: 14px;
    vertical-align: middle;
    width: auto;
  }
  #update-avatar > div:first-child {
    background-color: #ffcd33;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    height: 12px;
    margin-bottom: 0;
    text-align: center;
  }
  #update-avatar > div:first-child .form_row.right_row {
    font-size: 0;
    margin: 0;
    padding: 0;
  }
  #selected-file {
    padding: 10px 0;
  }
  #update-avatar #sf_guard_user_avatar_image {
    bottom: 0;
    cursor: pointer;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  #update-avatar .selectBox-inline {
    display: none !important;
  }
  #update-avatar .selectBox-inline.visible {
    background-color: rgba(0,0,0,.8);
    display: inline-block !important;
    margin-bottom: 10px;
  }
  #upload-photo {
    display: block;
    overflow: hidden;
    padding: 16px 30px;
    position: relative;
    width: 105px;
  }
  .facebook_label {
    margin-left: 0;
  }
  .stop-using-facebook {
    color: #fff;
    margin: 0;
    padding: 15px 0 10px;
  }
  .disconnect_facebook {
    background-color: rgba(0,0,0,.8);
    color: #fff;
    margin-bottom: 25px;
    margin-left: 0;
    max-width: 100%;
  }
    .disconnect_facebook > div {
      padding: 20px;
    }
      .disconnect_facebook > div h4 {
        font-weight: bold;
        margin-bottom: 20px;
      }
        .disconnect_facebook > div #disconnect_btn {
          background-color: #ffcd33;
          color: #000;
          display: inline-block;
          margin-top: 20px;
          padding: 10px 20px;
        }

/* Login page */
.login_register h3 {
  color: #ffcd33;
  font-size: 24px;
  line-height: 26px;
  overflow: hidden;
  padding-left: 35px;
  padding-top: 10px;
  position: relative;
}
.login_register h3:before {
  position: absolute;
  top: 9px;
  left: 0;
  content: '';
  background: url(../images/icon-login_50x100.png) bottom left no-repeat;
  background-size: auto 200%;
  height: 25px;
  width: 25px;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  margin-right: 10px;
}
.login_register {
  padding-bottom: 2%;
}
  .login_register label {
    display: none;
  }

/* Sitemap */
#sitemap {
  background-color: #000;
  padding: 2% 0;
  float: left;
}

  #sitemap .single-column {
    width: 100%;
  }
  #sitemap .left_box {
    float: left;
    width: 94.5%;
    padding: 0 2.7%;
  }

  #sitemap .right_box {
    float: left;
    width: 94.5%;
    padding: 0 2.7%;
  }
    #sitemap .right_box .single-column {
      margin-left: 0;
    }
  #sitemap h3 {
    margin-top: 10%;
  }

  #sitemap h3.no-margin {
    margin-top: 0;
  }

  #sitemap h3 a {
    font-size: 24px;
    font-weight: bold;
  }

  #sitemap h4 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3%;
  }

  #sitemap p {
    color: #fff;
    font-size: 16px;
    margin: 2% 0 5% 0;
  }
    #sitemap .you_may_like p {
      margin: 0;
      color: #000;
    }

  #sitemap ul {
    margin-left: 5%;
  }
    #sitemap ul li {
      margin-bottom: 15px;
    }

    #sitemap ul a {
      color: #dba707;
      line-height: 22px;
      font-size: 18px;
      font-weight: bold;
    }

#page_utility_sitemap .rel_news {
  margin-bottom: 9%;
  float: left;
  width: 100%;
  clear: left;
}

#page_utility_sitemap #events-block {
  width: 100%;
  float: left;
  clear: left;
  margin-bottom: 9%;
}

#page_utility_sitemap .skip-ad {
  float: left;
  width: 100%;
}
/* END Sitemap */

/* Fan Sites */
#fan-sites-contributors {
  margin: 0 2.7%;
}
  #fan-sites-contributors h2 {
    padding-left: 0;
  }
#fan-sites-top-contributors,
#fan-sites-other-contributors {
  overflow: hidden;
}
#fan-sites-top-contributors .contributor,
#fan-sites-other-contributors .contributor {
  background: #000;
  float: left;
  margin: 10px 0 40px 0;
}
  #fan-sites-top-contributors .contributor .contributor-details {
    padding: 18px;
  }
    #fan-sites-top-contributors .contributor .contributor-details .contributor-title,
    #fan-sites-other-contributors .contributor .contributor-title {
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      margin-bottom: 11px;
      word-wrap: break-word;
    }
    #fan-sites-top-contributors .contributor .contributor-details .contributor-thumb,
    #fan-sites-other-contributors .contributor .contributor-thumb {
      width: 59px;
      float: left;
      margin: 5px 0 0 3px;
    }
    #fan-sites-top-contributors .contributor .contributor-details .contributor-thumb img,
    #fan-sites-other-contributors .contributor .contributor-thumb img {
      width: 100%;
    }
    
    #fan-sites-top-contributors .contributor .contributor-details .contributor-description,
    #fan-sites-other-contributors .contributor .contributor-description {
      margin-left: 77px;
      font-size: 14px;
      font-weight: normal;
      line-height: 21px;
      color: #979797;
      word-wrap: break-word;
    }
  #fan-sites-top-contributors .contributor .contributor-news {
    border-top: 1px solid #26323e;
    padding: 14px 70px 14px 20px;
    position: relative;
  }
    #fan-sites-top-contributors .contributor .contributor-news .contributor-news-title {
      font-size: 18px;
      font-weight: bold;
      color: #fff;
      line-height: 20px;
    }
    #fan-sites-top-contributors .contributor .contributor-news .contributor-news-date {
      font-size: 14px;
      font-weight: normal;
      color: #979797;
      text-transform: uppercase;
      margin-top: 5px;
    }
    #fan-sites-top-contributors .contributor .contributor-news .contributor-news-go-link,
    #fan-sites-other-contributors .contributor .contributor-go-link {
      position: absolute;
      width: 60px;
      height: 100%;
      right: 0;
      top: 0;
      border-left: 1px solid #26323e;
    }
      #fan-sites-top-contributors .contributor .contributor-news .contributor-news-go-link:hover,
      #fan-sites-other-contributors .contributor .contributor-go-link:hover {
        background: #fc3;
      }
      #fan-sites-top-contributors .contributor .contributor-news .contributor-news-go-link:after,
      #fan-sites-other-contributors .contributor .contributor-go-link:after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 16px;
        height: 26px;
        margin: -13px 0 0 -8px;
        background: transparent url(../images/img32x104arrow_right.png) no-repeat scroll left top;
        background-size: 16px 52px;
      }
        #fan-sites-top-contributors .contributor .contributor-news .contributor-news-go-link:hover:after,
        #fan-sites-other-contributors .contributor .contributor-go-link:hover:after {
          background-position: left bottom;
        }
#fan-sites-other-contributors {
  position: relative;
}
  #fan-sites-other-contributors .contributor {
    padding: 18px 70px 18px 20px;
    margin: 6px 0 26px 0;
    position: relative;
  }
    #fan-sites-other-contributors .contributor .contributor-description {
      line-height: 14px;
      padding-top: 3px;
    }

#fan-sites-featured-content-wrapper {
  margin-bottom: 17px;
}
#fan-sites-additional-blocks {
  display: none;
}

/* End Fan Sites */

/* Official licensees */
#licensees-list {
  margin: 0 2.7%;
}
  #licensees-list .licensee-category {
    background: #000;
    margin: 10px 0 40px 0;
  }
    #licensees-list .licensee-category h3 {
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      padding: 25px 18px;
      word-wrap: break-word;
    }
    #licensees-list .licensee-category .licensee-item {
      border-top: 1px solid #26323e;
      padding: 18px;
    }
      #licensees-list .licensee-category .licensee-item h4 {
        margin-bottom: 16px;
      }
        #licensees-list .licensee-category .licensee-item h4,
        #licensees-list .licensee-category .licensee-item h4 a {
          color: #fc3;
          font-size: 24px;
          font-weight: bold;
          word-wrap: break-word;
        }
      #licensees-list .licensee-category .licensee-item .licensee-products,
      #licensees-list .licensee-category .licensee-item .licensee-countries {
        margin-top: 11px;
        font-size: 14px;
        font-weight: normal;
        line-height: 21px;
        color: #979797;
        word-wrap: break-word;
      }
        #licensees-list .licensee-category .licensee-item h5 {
          font-size: 18px;
          font-weight: bold;
          color: #979797;
          line-height: 20px;
        }
#licensees-additional-blocks {
  display: none;
}
/* End Official licensees */


/* Trek Talks */
#trek-talks-accordion-menu {
  display: none;
}
#trek-talks-container {
  margin-left: 2.7%;
  width: 94.6%;
}

#trek-talks-intro {
  color: #fff;
  padding: 2.7% 0;
}
  #trek-talks-intro h3 {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 2%;
    font-weight: bold;
  }
  #trek-talks-intro p {
    font-size: 18px;
    line-height: 24px;
  }

  .app-pdf-container {
    background-color: #ffcc32;
    text-align: center;
    line-height: 24px;
    margin: 5% 0;
  }
  .app-pdf-container a.application-pdf {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    height: 46px;
    line-height: 46px;
    position: relative;
  }
  .app-pdf-container a:before {
    content:'';
    background: url('/images/img32x39arrow_down.png');
    background-size: cover;
    height: 20px;
    width: 16px;
    margin-right: 5px;
    display: inline-block;
    top: 5px;
    position: relative;
  }

  #trek-talks-intro .app-pdf-container {
    margin-top: 2%;
    margin-bottom: 2%;
  }

#trek-talks-accordion {
  color: #fff;
}
  #trek-talks {
    display: none;
  }
  #trek-talks-accordion div.trek-talk {
    padding: 0 2.7% 4% 0;
  }
  #trek-talks-accordion div.ui-accordion-content {
    border: none;
    background: transparent;
    padding: 4%;
  }
  #trek-talks-accordion h3 {
    font-size: 24px;
    background-color: #000;
    font-weight: bold;
    position: relative;
    line-height: 45px;
    margin-right: 22px;
    padding: 0 0 0 4%;
  }
  #trek-talks-accordion h3:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 100%;
    top: 0;
    border-left: 22px solid #000;
    border-top: 22px solid #000;
    border-bottom: 22px solid transparent;
    border-right: 22px solid transparent;
  }
  #trek-talks-accordion h3.ui-accordion-header {
    padding: 0 0 0 4%;
    background: #000;
    margin: 0 22px 1.5% 0;
    border: 0;
    border-radius: 0;
  }
  #trek-talks-accordion h3.ui-state-default {
    color: #fff;
  }
  #trek-talks-accordion .topics-content {
    margin-left: 5%;
  }
  #trek-talks-accordion h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    margin: 2.5% 0 1% 0;
  }
  #trek-talks-accordion p {
    font-size: 14px;
    margin-bottom: 1%;
    line-height: 24px;
  }
  #trek-talks-accordion ul {
    list-style-type: disc;
    margin-left: 10%;
    margin-top: 1.5%;
  }
  #trek-talks-accordion ul.no-disc {
    list-style-type: none;
  }
  #trek-talks-accordion .topics-content ul {
    margin-left: 2.5%;
  }
    #trek-talks-accordion li {
      font-size: 14px;
      margin-bottom: 1%;
      line-height: 18px;
    }
  #trek-talks-accordion a {
    color: #fc3;
    font-size: 14px;
  }
  #trek-talks-accordion .app-pdf-container a {
    color: #000;
  }

/* END Trek Talks*/

/* Shop Submenu */
#shop_submenu {
  display: none;
}
/* END Shop Submenu */


