/*
Theme Name: core v10b
Theme URI: http://unregistered.gr/core_v10
Author: Odysseas Kourafalos (Ducklord)
Author URI: http://unregistered.gr
Description: New generation of our fluid-as-liquid, working-on-all-screens magazine-like theme
Version: 0.10.002
Tags: unregistered, core v10,
*/
/* 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 'Didact Gothic', sans-serif;
  vertical-align: baseline; }

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 {
  font: inherit; }

/* 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; }

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto; }

::selection {
  color: rgba(100, 250, 250, 0.9) !important;
  background: rgba(50, 50, 70, 0.5) !important; }

/* example:

@include keyframes(move-the-object) {
  0%   { left: 100px; }
  100% { left: 200px; }
}

.object-to-animate {
  @include animation('move-the-object .5s 1', 'move-the-object-again .5s 1 .5s');
} 

*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s; }

#siteContainer.fade-in {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s; }

#sitecontent.fade-in {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s; }

header.fade-in {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s; }

#hublist.fade-in {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s; }

#sandbox_center.fade-in {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s; }

#core_slideshow.fade-in {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  animation-delay: 2.5s; }

.category-timeout.fade-in, .category-web.fade-in, .category-gaming.fade-in {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  animation-delay: 3s; }

.category-geek-life.fade-in, .category-opinions.fade-in, .category-sci-tech.fade-in {
  -webkit-animation-delay: 3.5s;
  -moz-animation-delay: 3.5s;
  animation-delay: 3.5s; }

.category-apps-software.fade-in, .category-gadgets.fade-in, .category-general.fade-in {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s; }

.category-computers.fade-in, .category-featured.fade-in, .category-tweets.fade-in {
  -webkit-animation-delay: 4.5s;
  -moz-animation-delay: 4.5s;
  animation-delay: 4.5s; }

header {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  float: left;
  width: 100%;
  margin: 1% 0;
  padding: 1% 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  clear: both;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  margin: 0;
  padding: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.5);
  border-collapse: separate;
  transition-property: box-shadow;
  transition-duration: 0.2s;
  position: fixed;
  z-index: 10;
  height: 50px;
  overflow: hidden;
  transition-property: box-shadow, height,background, margin, padding, opacity;
  transition-duration: 0.3s;
  border: none;
  opacity: 0.6; }
  header:hover {
    box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.9); }
  header #top_slice {
    margin: 0;
    padding: 0;
    float: left;
    position: relative;
    z-index: 9;
    width: 100%;
    height: 49px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    transition-property: opacity, height;
    transition-duration: 0.2s;
    overflow: hidden; }
    header #top_slice #logo {
      margin: 0;
      padding: 0;
      position: absolute;
      z-index: 24; }
      header #top_slice #logo a {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
        backface-visibility: hidden;
        perspective: 1000;
        background-color: rgba(0, 0, 0, 0.7);
        color: rgba(255, 255, 255, 0.7);
        opacity: 0.7;
        transition-property: opacity, background-color, color;
        transition-duration: 0.2s;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        width: 310px;
        height: 50px;
        display: block;
        z-index: 2;
        background: url(images/temp/logo.png);
        background-position: 0 -50px;
        transition-property: background-position,opacity,height;
        transition-duration: 0.2s;
        font-size: 0; }
        header #top_slice #logo a:hover {
          opacity: 1;
          background-color: black;
          color: white; }
        header #top_slice #logo a:hover {
          z-index: 24;
          background: url(images/temp/logo.png); }
      header #top_slice #logo h2 {
        position: absolute;
        top: 36px;
        right: auto;
        bottom: auto;
        left: 160px;
        margin: 0;
        padding: 0;
        min-width: 130px;
        z-index: 3;
        font-size: 0.9em;
        color: rgba(255, 255, 255, 0.5);
        transition-property: left;
        transition-duration: 0.2s; }
    header #top_slice #hublist {
      height: 50px;
      position: relative;
      transition-property: height;
      transition-duration: 0.2s;
      z-index: 1;
      margin-left: 270px; }
      header #top_slice #hublist #hubs {
        display: block !important;
        width: 100%;
        transition-property: height;
        transition-duration: 0.2s; }
        header #top_slice #hublist #hubs ol, header #top_slice #hublist #hubs ul {
          margin: 0;
          padding: 0; }
          header #top_slice #hublist #hubs ol li, header #top_slice #hublist #hubs ul li {
            float: right;
            position: relative;
            top: 0;
            width: 150px;
            height: 50px;
            transition-property: height;
            transition-duration: 0.2s;
            overflow: hidden; }
            header #top_slice #hublist #hubs ol li h3, header #top_slice #hublist #hubs ul li h3 {
              position: relative;
              z-index: 3;
              width: 90%;
              padding: 5%;
              background-color: rgba(0, 0, 0, 0.05);
              color: rgba(255, 255, 255, 0.05);
              transition-property: color, background-color;
              transition-duration: 0.2s;
              font-size: 0.9em;
              font-weight: strong;
              line-height: 1.5em; }
            header #top_slice #hublist #hubs ol li .hublistImage, header #top_slice #hublist #hubs ul li .hublistImage {
              position: absolute;
              top: 0;
              right: 0;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 100%;
              display: block;
              -webkit-transform: translate3d(0, 0, 0);
              -moz-transform: translate3d(0, 0, 0);
              -ms-transform: translate3d(0, 0, 0);
              -o-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
              -webkit-backface-visibility: hidden;
              -webkit-perspective: 1000;
              backface-visibility: hidden;
              perspective: 1000;
              box-shadow: inset 0px 0px 40px 5px rgba(0, 0, 0, 0.95);
              border-collapse: separate;
              transition-property: box-shadow;
              transition-duration: 0.2s;
              z-index: 2;
              background-size: cover;
              background-position: center;
              box-shadow: inset 0px 0px 20px 5px rgba(0, 0, 0, 0.8); }
              header #top_slice #hublist #hubs ol li .hublistImage:hover, header #top_slice #hublist #hubs ul li .hublistImage:hover {
                box-shadow: inset 0 0 5px 1px black; }
            header #top_slice #hublist #hubs ol li a, header #top_slice #hublist #hubs ul li a {
              position: absolute;
              top: 0;
              right: 0;
              bottom: 0;
              left: 0;
              width: 100%;
              height: 100%;
              display: block;
              z-index: 15;
              top: 100%;
              transition-duration: 0.1s;
              transition-delay: 0.1s;
              transition-property: top; }
            header #top_slice #hublist #hubs ol li:hover h3, header #top_slice #hublist #hubs ul li:hover h3 {
              background-color: rgba(0, 0, 0, 0.7);
              color: rgba(255, 255, 255, 0.9); }
            header #top_slice #hublist #hubs ol li:hover .hublistImage, header #top_slice #hublist #hubs ul li:hover .hublistImage {
              box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.5); }
            header #top_slice #hublist #hubs ol li:hover .touchclickblocker, header #top_slice #hublist #hubs ul li:hover .touchclickblocker {
              display: none; }
            header #top_slice #hublist #hubs ol li:hover a, header #top_slice #hublist #hubs ul li:hover a {
              top: 0; }
    header #top_slice #hubbutton a {
      float: right;
      position: relative;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      -webkit-perspective: 1000;
      backface-visibility: hidden;
      perspective: 1000;
      width: 50px;
      height: 50px;
      opacity: 0.7;
      transition-property: box-shadow, opacity, color, background;
      transition-duration: 0.2s;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      -webkit-perspective: 1000;
      backface-visibility: hidden;
      perspective: 1000;
      background-color: rgba(0, 0, 0, 0.5);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.5;
      transition-property: opacity, background-color, color;
      transition-duration: 0.2s;
      z-index: 24;
      background: url(images/temp/hubs.png);
      background-position: 0 -25px;
      transition-property: background-position,background,opacity,height;
      border-left: solid 1px rgba(255, 255, 255, 0.5); }
      header #top_slice #hubbutton a:hover {
        opacity: 1;
        cursor: pointer; }
      header #top_slice #hubbutton a:hover {
        opacity: 1;
        background-color: black;
        color: white; }
    header #top_slice #menubutton span {
      float: right;
      position: relative;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      -webkit-perspective: 1000;
      backface-visibility: hidden;
      perspective: 1000;
      width: 50px;
      height: 50px;
      opacity: 0.7;
      transition-property: box-shadow, opacity, color, background;
      transition-duration: 0.2s;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      -webkit-perspective: 1000;
      backface-visibility: hidden;
      perspective: 1000;
      background-color: rgba(0, 0, 0, 0.5);
      color: rgba(255, 255, 255, 0.5);
      opacity: 0.5;
      transition-property: opacity, background-color, color;
      transition-duration: 0.2s;
      z-index: 24;
      background: url(images/temp/menu.png);
      background-position: 0 -25px;
      transition-property: background-position,height;
      border-left: solid 1px rgba(255, 255, 255, 0.5); }
      header #top_slice #menubutton span:hover {
        opacity: 1;
        cursor: pointer; }
      header #top_slice #menubutton span:hover {
        opacity: 1;
        background-color: black;
        color: white; }
  header #bottom_slice {
    float: left;
    position: relative;
    z-index: 8;
    width: 100%;
    overflow: hidden;
    height: 1px;
    background: transparent;
    color: rgba(255, 255, 255, 0);
    opacity: 0.1;
    transition: all 0.6s ease-in-out 0.2s; }
    header #bottom_slice #search_bar {
      float: right;
      position: relative; }
      header #bottom_slice #search_bar .screen-reader-text {
        display: none; }
      header #bottom_slice #search_bar #s {
        float: right;
        position: relative;
        background-clip: padding-box;
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        -ms-border-radius: 5px 0 0 5px;
        -o-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
        box-shadow: inset 0 0 6px 0px rgba(0, 0, 0, 0.9);
        width: 82%;
        height: 47px;
        padding: 0 1% 0 15%;
        margin: 2px 1%;
        border: 0;
        font-size: 1.2em;
        line-height: 1.4em;
        color: rgba(0, 0, 0, 0.8);
        background-color: rgba(255, 255, 255, 0.4);
        background-image: url("images/iconmonstr-magnifier-icon.svg");
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
        transition-property: box-shadow;
        transition-duration: 0.2s; }
        header #bottom_slice #search_bar #s:hover, header #bottom_slice #search_bar #s:active {
          color: rgba(0, 0, 0, 0.9);
          background-color: rgba(255, 255, 255, 0.9);
          box-shadow: inset 0 0 1px 0px rgba(0, 0, 0, 0.8); }
      header #bottom_slice #search_bar #searchsubmit {
        display: none; }
    header #bottom_slice .menubox {
      margin: 0;
      padding: 0;
      background: rgba(0, 0, 0, 0.7); }
    header #bottom_slice #main_menu {
      float: left;
      position: relative;
      text-align: center;
      font-size: 1.1em;
      line-height: 1.6em;
      font-weight: normal; }
      header #bottom_slice #main_menu ul, header #bottom_slice #main_menu ol {
        margin: 0;
        padding: 0; }
      header #bottom_slice #main_menu li {
        display: inline;
        margin: 0;
        padding: 0; }
        header #bottom_slice #main_menu li a {
          background-clip: padding-box;
          -webkit-border-radius: 5px 5px 5px 5px;
          -moz-border-radius: 5px 5px 5px 5px;
          -ms-border-radius: 5px 5px 5px 5px;
          -o-border-radius: 5px 5px 5px 5px;
          border-radius: 5px 5px 5px 5px;
          -webkit-transform: translate3d(0, 0, 0);
          -moz-transform: translate3d(0, 0, 0);
          -ms-transform: translate3d(0, 0, 0);
          -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          -webkit-backface-visibility: hidden;
          -webkit-perspective: 1000;
          backface-visibility: hidden;
          perspective: 1000;
          background-color: rgba(0, 0, 0, 0.7);
          color: rgba(255, 255, 255, 0.7);
          opacity: 0.7;
          transition-property: opacity, background-color, color;
          transition-duration: 0.2s;
          background-color: rgba(255, 255, 255, 0.15);
          float: left;
          display: block;
          width: auto;
          height: 46px;
          margin: 2px;
          padding: 0 8px;
          text-decoration: none;
          font-size: 1em;
          font-weight: normal;
          line-height: 46px; }
          header #bottom_slice #main_menu li a:hover {
            opacity: 1;
            background-color: black;
            color: white; }
          header #bottom_slice #main_menu li a:hover {
            color: rgba(0, 0, 0, 0.9);
            background-color: rgba(255, 255, 255, 0.8); }
    header #bottom_slice #core_social_menu {
      float: right;
      position: relative;
      height: 50px; }
      header #bottom_slice #core_social_menu .social_button {
        float: left;
        position: relative;
        background-clip: padding-box;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        -ms-border-radius: 5px 5px 5px 5px;
        -o-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
        padding: 0;
        opacity: 0.6;
        transition: opacity;
        transition-duration: 0.2s; }
        header #bottom_slice #core_social_menu .social_button:hover {
          opacity: 1; }
      header #bottom_slice #core_social_menu a.social_button.facebook {
        background: #3b5997;
        background-image: url("images/temp/icon-facebook.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
      header #bottom_slice #core_social_menu a.social_button.twitter {
        background: #00aced;
        background-image: url("images/temp/icon-twitter.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
      header #bottom_slice #core_social_menu a.social_button.rss {
        background: #f99b39;
        background-image: url("images/temp/icon-rss.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
      header #bottom_slice #core_social_menu a.social_button.mail {
        background: #673a78;
        background-image: url("images/temp/icon-email.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; }
    header #bottom_slice #core_team_menu {
      float: right;
      position: relative;
      text-align: center;
      background: url(images/temp/theteam.jpg);
      background-size: cover;
      background-position: center 28%;
      transition: background-position;
      transition-duration: 0.2s;
      display: table; }
      header #bottom_slice #core_team_menu a {
        background-clip: padding-box;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        -ms-border-radius: 5px 5px 5px 5px;
        -o-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        opacity: 0.6;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.2);
        background-color: transparent;
        transition: color, background-color;
        transition-duration: 0.2s; }
        header #bottom_slice #core_team_menu a:hover {
          opacity: 1;
          color: rgba(0, 0, 0, 0.9);
          background-color: rgba(255, 255, 255, 0.85);
          background-position: center 62%; }
      header #bottom_slice #core_team_menu:hover {
        background-color: rgba(255, 255, 255, 0.5);
        background-position: center 52%; }
  header:hover, header:active {
    height: auto !important;
    background: rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important; }
    header:hover #top_slice, header:hover #logo, header:hover #logo a, header:hover #hubbutton a, header:hover #menubutton span, header:hover #hublist, header:hover #hublist #hubs li, header:active #top_slice, header:active #logo, header:active #logo a, header:active #hubbutton a, header:active #menubutton span, header:active #hublist, header:active #hublist #hubs li {
      height: 100px !important; }
    header:hover #logo a, header:active #logo a {
      background-position: 0 0 !important; }
    header:hover #logo h2, header:active #logo h2 {
      left: 5px !important; }
    header:hover #hubbutton a, header:hover #menubutton span, header:active #hubbutton a, header:active #menubutton span {
      background-position: 0 0 !important; }
    header:hover #bottom_slice, header:active #bottom_slice {
      height: auto;
      background: rgba(0, 0, 0, 0.5);
      color: rgba(255, 255, 255, 0.8);
      opacity: 1; }

#siteContainer {
  float: left;
  position: relative;
  top: 50px;
  left: 0;
  width: 100%; }

#sitecontent.corev10_index {
  float: left;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  float: left;
  width: 100%;
  margin: 1% 0;
  padding: 1% 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  clear: both; }
  #sitecontent.corev10_index #sandbox_center {
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 0; }
    #sitecontent.corev10_index #sandbox_center #core_slideshow {
      float: left;
      position: relative;
      z-index: 1;
      /* input[type=radio]:hover + label {
      	background: rgba(255,255,255,0.9);
      	border: solid 1px;
      }
      */ }
      #sitecontent.corev10_index #sandbox_center #core_slideshow input {
        display: none;
        float: left;
        position: relative; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
        backface-visibility: hidden;
        perspective: 1000;
        background-color: rgba(0, 0, 0, 0.3);
        color: rgba(255, 255, 255, 0.3);
        opacity: 0.3;
        transition-property: opacity, background-color, color;
        transition-duration: 0.2s;
        z-index: 11;
        float: left;
        position: relative;
        width: auto;
        margin: 0 5px;
        padding: 10px 15px;
        text-decoration: none;
        font-size: 0.8em;
        border: solid 1px rgba(255, 255, 255, 0.8);
        border-top: 0px;
        transition-property: color, background-color; }
        #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover {
          opacity: 0.9;
          background-color: black;
          color: white; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label {
        background: white;
        color: black;
        border-color: white; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow #slide1:checked ~ #slides .inner {
        margin-left: 0; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow #slide2:checked ~ #slides .inner {
        margin-left: -100%; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow #slide3:checked ~ #slides .inner {
        margin-left: -200%; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow #slide4:checked ~ #slides .inner {
        margin-left: -300%; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow #slide5:checked ~ #slides .inner {
        margin-left: -400%; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow #slides {
        height: 100%;
        position: relative; }
        #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: block;
          overflow: hidden; }
          #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner {
            top: 0;
            left: 0;
            position: relative;
            width: 500%;
            height: 100%;
            line-height: 0;
            transition-duration: 0.5s;
            transition-property: margin-left,opacity,transform,moz-transform,webkit-transform; }
            #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost {
              float: left;
              position: relative;
              width: 20%;
              height: 100%;
              display: block; }
              #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost a.slidepost_link {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: block;
                z-index: 10;
                top: 100%;
                transition-duration: 0.1s;
                transition-delay: 0.1s;
                transition-property: top; }
              #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .mainimage {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: block;
                background-position: center center;
                background-size: cover;
                z-indez: 0; }
              #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a {
                -webkit-transform: translate3d(0, 0, 0);
                -moz-transform: translate3d(0, 0, 0);
                -ms-transform: translate3d(0, 0, 0);
                -o-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
                -webkit-backface-visibility: hidden;
                -webkit-perspective: 1000;
                backface-visibility: hidden;
                perspective: 1000;
                background-color: transparent;
                color: rgba(255, 255, 255, 0);
                opacity: 0;
                transition-property: opacity, background-color, color;
                transition-duration: 0.2s;
                z-index: 11;
                float: right;
                position: relative;
                width: auto;
                margin: 0 5px;
                padding: 15px;
                text-decoration: none;
                font-size: 0.8em;
                border: solid 1px rgba(255, 255, 255, 0.8);
                border-top: 0px;
                transition-property: color, background-color; }
                #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover {
                  opacity: 0.9;
                  background-color: black;
                  color: white; }
              #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .content_container {
                position: absolute;
                bottom: 0px;
                width: 100%; }
              #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3 {
                z-index: 1;
                float: left;
                position: relative;
                width: 96%;
                padding: 1% 2%;
                color: rgba(255, 255, 255, 0.3);
                background-color: rgba(0, 0, 0, 0.6);
                font-size: 1.5em;
                line-height: 1.5em;
                transition-duration: 0.5s;
                transition-property: border, color, background-color; }
              #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p {
                overflow: hidden;
                z-index: 1;
                float: left;
                position: relative;
                width: 96%;
                height: 1px;
                margin: 0;
                padding: 0 2% 0;
                font-size: 1.3em;
                line-height: 1.6em;
                font-weight: normal;
                transition-duration: 0.2s;
                transition-property: height, padding;
                color: rgba(255, 255, 255, 0.2);
                background: rgba(0, 0, 0, 0.1); }
      #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3 {
        color: rgba(255, 255, 255, 0.9);
        background-color: rgba(0, 0, 0, 0.9); }
      #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p {
        height: auto;
        padding: 2% 2% 5%;
        color: rgba(255, 255, 255, 0.8);
        background: rgba(0, 0, 0, 0.7); }
      #sitecontent.corev10_index #sandbox_center #core_slideshow:hover input[type=radio] + label, #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
        backface-visibility: hidden;
        perspective: 1000;
        background-color: rgba(0, 0, 0, 0.6);
        color: rgba(255, 255, 255, 0.6);
        opacity: 0.6;
        transition-property: opacity, background-color, color;
        transition-duration: 0.2s;
        transition-property: color, background-color; }
        #sitecontent.corev10_index #sandbox_center #core_slideshow:hover input[type=radio] + label:hover, #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover {
          opacity: 1;
          background-color: black;
          color: white; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow:hover a.slidepost_link {
        top: 0 !important; }
      #sitecontent.corev10_index #sandbox_center #core_slideshow:hover .touchclickblocker {
        display: none; }
    #sitecontent.corev10_index #sandbox_center .postcard {
      float: left;
      position: relative;
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      -webkit-perspective: 1000;
      backface-visibility: hidden;
      perspective: 1000;
      box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.5);
      border-collapse: separate;
      transition-property: box-shadow;
      transition-duration: 0.2s;
      overflow: hidden;
      transition-duration: 0.5s;
      transition-property: box-shadow;
      background: black; }
      #sitecontent.corev10_index #sandbox_center .postcard:hover {
        box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.9); }
      #sitecontent.corev10_index #sandbox_center .postcard a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 10;
        top: 100%;
        transition-duration: 0.1s;
        transition-delay: 0.1s;
        transition-property: top, background-color; }
      #sitecontent.corev10_index #sandbox_center .postcard article {
        width: 100%;
        height: 100%;
        position: relative;
        top: 0;
        left: 0; }
      #sitecontent.corev10_index #sandbox_center .postcard .frontimage {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
        backface-visibility: hidden;
        perspective: 1000;
        box-shadow: inset 0px 0px 40px 5px rgba(0, 0, 0, 0.95);
        border-collapse: separate;
        transition-property: box-shadow;
        transition-duration: 0.2s;
        display: block;
        z-index: 5;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        transition-property: opacity, box-shadow;
        opacity: 1;
        transition-duration: 0.2s; }
        #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover {
          box-shadow: inset 0 0 5px 1px black; }
      #sitecontent.corev10_index #sandbox_center .postcard .middleimage {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 1;
        opacity: 1; }
      #sitecontent.corev10_index #sandbox_center .postcard .backimage {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 0;
        opacity: 1; }
      #sitecontent.corev10_index #sandbox_center .postcard .title {
        position: absolute;
        bottom: 0;
        z-index: 6;
        width: 94%;
        padding: 2% 3%;
        font-size: 1em;
        line-height: 1.3em;
        transition-property: bottom;
        transition-duration: 0.5s;
        background-color: rgba(0, 0, 0, 0.8); }
      #sitecontent.corev10_index #sandbox_center .postcard .category {
        float: left;
        position: relative;
        transition-property: background-color, color, margin;
        transition-duration: 0.5s;
        z-index: 6;
        background-color: rgba(0, 0, 0, 0.5);
        color: rgba(255, 255, 255, 0.5);
        width: auto;
        height: auto;
        font-size: 0.9em;
        line-height: 1em;
        padding: 5px 10px;
        margin: 3px 3px 3px 0; }
      #sitecontent.corev10_index #sandbox_center .postcard .excerpt p {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 1;
        width: 88%;
        height: 90%;
        padding: 5% 6% !important;
        font-size: 1.2em;
        line-height: 1.5em;
        transition-property: color, background-color, box-shadow;
        transition-duration: 0.6s;
        background: transparent;
        color: rgba(255, 255, 255, 0);
        box-shadow: 0px 0px 50px 30px transparent; }
      #sitecontent.corev10_index #sandbox_center .postcard:hover {
        z-index: 2; }
        #sitecontent.corev10_index #sandbox_center .postcard:hover a {
          top: 0; }
        #sitecontent.corev10_index #sandbox_center .postcard:hover .touchclickblocker {
          display: none; }
        #sitecontent.corev10_index #sandbox_center .postcard:hover .frontimage {
          opacity: 0; }
        #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p {
          background: rgba(0, 0, 0, 0.6);
          color: rgba(255, 255, 255, 0.9);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.7); }
        #sitecontent.corev10_index #sandbox_center .postcard:hover .backimage {
          opacity: 0.3; }
        #sitecontent.corev10_index #sandbox_center .postcard:hover .middleimage {
          opacity: 0.3; }
        #sitecontent.corev10_index #sandbox_center .postcard:hover .category {
          margin: 3px 3px 3px -100px;
          background-color: rgba(0, 0, 0, 0.05);
          color: rgba(255, 255, 255, 0.05); }
        #sitecontent.corev10_index #sandbox_center .postcard:hover .title {
          bottom: -70px; }
      #sitecontent.corev10_index #sandbox_center .postcard article {
        background: #7c0000 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-timeout .backimage {
        background: url(images/iconmonstr-video-5-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-web {
        background: #007c00 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-web .backimage {
        background: url(images/iconmonstr-globe-4-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-gaming {
        background: #00007c !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-gaming .backimage {
        background: url(images/iconmonstr-paper-plane-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-opinions {
        background: #7b7c00 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-opinions .backimage {
        background: url(images/iconmonstr-smiley-lips-sealed-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-geek-life {
        background: #7c007b !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-geek-life .backimage {
        background: url(images/iconmonstr-network-6-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-sci-tech {
        background: #007b7c !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-sci-tech .backimage {
        background: url(images/iconmonstr-light-bulb-18-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-apps-software {
        background: #220000 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-apps-software .backimage {
        background: url(images/iconmonstr-save-8-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-gadgets {
        background: #002200 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-gadgets .backimage {
        background: url(images/iconmonstr-smartphone-4-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-general {
        background: #000022 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-general .backimage {
        background: url(images/iconmonstr-barcode-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-computers {
        background: #222200 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-computers .backimage {
        background: url(images/iconmonstr-computer-6-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-featured {
        background: #220022 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-featured .backimage {
        background: url(images/iconmonstr-computer-6-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-tweets {
        background: #002222 !important; }
      #sitecontent.corev10_index #sandbox_center .postcard article.category-tweets .backimage {
        background: url(images/iconmonstr-computer-6-icon.svg) no-repeat;
        background-size: contain;
        background-position: center center; }

/* ________________________( Archive - Search - Index Pages ) */
#archive_top, #hub_top {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  float: left;
  width: 100%;
  margin: 1% 0;
  padding: 1% 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  clear: both;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2); }
  #archive_top h1, #hub_top h1 {
    font-size: 1.5em;
    line-height: 2em;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 1%;
    width: 98%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    text-align: center; }
  #archive_top .archive_text, #archive_top .hub_text, #hub_top .archive_text, #hub_top .hub_text {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
    perspective: 1000;
    float: left;
    width: 100%;
    margin: 1% 0;
    padding: 1% 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    clear: both;
    float: left;
    position: relative;
    width: 90%;
    padding: 1% 5% 2%;
    margin: 0;
    font-size: 1.2em;
    line-height: 1.6em;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2); }
    #archive_top .archive_text:empty, #archive_top .hub_text:empty, #hub_top .archive_text:empty, #hub_top .hub_text:empty {
      display: none; }
    #archive_top .archive_text img, #archive_top .hub_text img, #hub_top .archive_text img, #hub_top .hub_text img {
      float: left;
      position: relative;
      margin: 0 2%; }

/* ______________________________________( Single Posts ) */
.corev10_single #sandbox_center.position-right {
  margin-left: 0;
  float: left; }
.corev10_single #sandbox_center.position-left {
  margin-right: 0;
  float: right; }
.corev10_single #sandbox_center {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  float: left;
  position: relative;
  background-clip: padding-box;
  -webkit-border-radius: 20px 20px 20px 20px;
  -moz-border-radius: 20px 20px 20px 20px;
  -ms-border-radius: 20px 20px 20px 20px;
  -o-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  z-index: 8;
  min-width: 450px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.9);
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.8); }
  .corev10_single #sandbox_center a {
    color: #9696eb;
    text-decoration: none;
    transition-property: color;
    transition-duration: 0.2s;
    font-weight: bold; }
    .corev10_single #sandbox_center a:hover {
      text-decoration: underline;
      color: white; }
  .corev10_single #sandbox_center #single_post_container #maincontent_box {
    position: relative; }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title {
      background-clip: padding-box;
      -webkit-border-radius: 10px 10px 0 0;
      -moz-border-radius: 10px 10px 0 0;
      -ms-border-radius: 10px 10px 0 0;
      -o-border-radius: 10px 10px 0 0;
      border-radius: 10px 10px 0 0;
      position: relative;
      width: 90%;
      margin: 20px 2% 0;
      padding: 2% 3%;
      font-size: 2em;
      font-weight: bold;
      line-height: 1.5em;
      background-color: rgba(0, 0, 0, 0.7); }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line1, .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2 {
      position: relative;
      font-weight: bold;
      color: rgba(255, 255, 255, 0.8); }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a {
      color: rgba(255, 255, 255, 0.7);
      background-color: rgba(0, 0, 0, 0.1);
      padding: 4px 7px;
      margin: 0;
      transition-property: color, background-color;
      transition-duration: 0.2s;
      text-decoration: none;
      font-weight: normal; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover {
        color: rgba(255, 255, 255, 0.9);
        background-color: rgba(0, 0, 0, 0.9); }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags {
      display: inline;
      margin: 2px 2% 10px;
      padding: 1% 2%;
      font-size: 0.9em;
      line-height: 1.4em;
      list-style: none;
      background-color: rgba(0, 0, 0, 0.35); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories li, .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags li {
        display: inline; }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories {
      background-clip: padding-box;
      -webkit-border-radius: 0 0 0 10px;
      -moz-border-radius: 0 0 0 10px;
      -ms-border-radius: 0 0 0 10px;
      -o-border-radius: 0 0 0 10px;
      border-radius: 0 0 0 10px;
      float: left;
      width: 22%; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories a {
        background-clip: padding-box;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        -ms-border-radius: 5px 5px 5px 5px;
        -o-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px; }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags {
      background-clip: padding-box;
      -webkit-border-radius: 0 0 10px 0;
      -moz-border-radius: 0 0 10px 0;
      -ms-border-radius: 0 0 10px 0;
      -o-border-radius: 0 0 10px 0;
      border-radius: 0 0 10px 0;
      float: right;
      width: 62%;
      text-align: right; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags strong {
        float: left; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags a {
        background-clip: padding-box;
        -webkit-border-radius: 5px 5px 5px 5px;
        -moz-border-radius: 5px 5px 5px 5px;
        -ms-border-radius: 5px 5px 5px 5px;
        -o-border-radius: 5px 5px 5px 5px;
        border-radius: 5px 5px 5px 5px; }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date {
      width: 40%;
      height: 34px;
      min-height: 34px;
      margin: 20px 2% 2px;
      padding: 1% 2%;
      font-size: 0.9em;
      line-height: 1em;
      background-color: rgba(0, 0, 0, 0.35); }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author {
      background-clip: padding-box;
      -webkit-border-radius: 10px 0 0 0;
      -moz-border-radius: 10px 0 0 0;
      -ms-border-radius: 10px 0 0 0;
      -o-border-radius: 10px 0 0 0;
      border-radius: 10px 0 0 0;
      float: left;
      clear: both; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2 img, .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author img {
        width: 32px;
        height: 32px; }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date {
      background-clip: padding-box;
      -webkit-border-radius: 0 10px 0 0;
      -moz-border-radius: 0 10px 0 0;
      -ms-border-radius: 0 10px 0 0;
      -o-border-radius: 0 10px 0 0;
      border-radius: 0 10px 0 0;
      float: right;
      text-align: right; }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2 {
      width: auto; }
    .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body {
      float: left;
      width: 100%; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro {
        background-clip: padding-box;
        -webkit-border-radius: 0 0 15px 15px;
        -moz-border-radius: 0 0 15px 15px;
        -ms-border-radius: 0 0 15px 15px;
        -o-border-radius: 0 0 15px 15px;
        border-radius: 0 0 15px 15px;
        font-size: 1.4em;
        line-height: 1.5em;
        border: none;
        color: rgba(255, 255, 255, 0.75);
        background-color: rgba(0, 0, 0, 0.8);
        display: block;
        width: 96%;
        padding: 2%;
        margin: 0 0 10px; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5 {
        background-clip: padding-box;
        -webkit-border-radius: 10px 10px 0 0;
        -moz-border-radius: 10px 10px 0 0;
        -ms-border-radius: 10px 10px 0 0;
        -o-border-radius: 10px 10px 0 0;
        border-radius: 10px 10px 0 0;
        clear: both;
        width: 92%;
        margin: 1% 2% 0;
        padding: 1% 2%;
        border-bottom: solid 1px rgba(0, 0, 0, 0.5);
        background-color: rgba(0, 0, 0, 0.75); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1 {
        font-size: 2.5em;
        line-height: 2em; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2 {
        font-size: 2.1em;
        line-height: 1.9em; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3 {
        font-size: 1.8em;
        line-height: 1.6em; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4 {
        font-size: 1.6em;
        line-height: 1.4em; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5 {
        font-size: 1.3em;
        line-height: 1.1em; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr {
        width: 96%;
        height: 50px;
        padding: 0;
        margin: 0 2%;
        border: none;
        background-color: rgba(255, 255, 255, 0.4); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p {
        background-color: rgba(0, 0, 0, 0.9);
        margin: 0 2%;
        padding: 0.8em 4%;
        font-size: 1.1em;
        line-height: 1.5em; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type {
          border-top: solid 1px rgba(255, 255, 255, 0.2); }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type {
          background-clip: padding-box;
          -webkit-border-radius: 0 0 10px 10px;
          -moz-border-radius: 0 0 10px 10px;
          -ms-border-radius: 0 0 10px 10px;
          -o-border-radius: 0 0 10px 10px;
          border-radius: 0 0 10px 10px;
          margin-bottom: 1%;
          padding-bottom: 20px;
          border-bottom: solid 1px rgba(255, 255, 255, 0.2); }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:empty {
          display: none; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body strong {
        font-weight: bold; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img {
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 1% 0;
        display: inline; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .aligncenter {
        float: left;
        width: 94%;
        height: auto;
        margin: 0 2%;
        padding: 1%;
        display: block;
        clear: both; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alignleft {
        float: left;
        display: inline; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alignright {
        float: right;
        display: inline; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img.alignnone {
        background-clip: padding-box;
        -webkit-border-radius: 2px 2px 2px 2px;
        -moz-border-radius: 2px 2px 2px 2px;
        -ms-border-radius: 2px 2px 2px 2px;
        -o-border-radius: 2px 2px 2px 2px;
        border-radius: 2px 2px 2px 2px;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 1% 0; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img.aligncenter {
        width: 96%;
        max-width: 100%;
        height: auto;
        margin: 0 2%;
        padding: 1% 0; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img.alignleft {
        background-clip: padding-box;
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        -ms-border-radius: 0 5px 5px 0;
        -o-border-radius: 0 5px 5px 0;
        border-radius: 0 5px 5px 0;
        width: 46%;
        height: auto;
        margin: 0 1% 0 2%;
        padding: 0 2% 0 0; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img.alignright {
        background-clip: padding-box;
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        -ms-border-radius: 5px 0 0 5px;
        -o-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
        width: 46%;
        height: auto;
        margin: 0 2% 0 1%;
        padding: 0 0 0 2%; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption {
        display: inline-block;
        background: rgba(0, 0, 0, 0.6);
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 1%;
        text-align: center;
        	/*
        	width: 94%;
            height: auto;
            margin: 0 2%;
            padding: 1%;
        
        	background-color: #f3f3f3;
        	padding-top: 4px;
        	margin: 10px;
        	-moz-border-radius: 3px;
        	-khtml-border-radius: 3px;
        	-webkit-border-radius: 3px;
        	border-radius: 3px;
        	*/ }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption a {
       /*
    	width: 100%;
    	position: relative;
    	float: left;
    	*/ }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption img {
          /*
          width: 100% !important;
          float: left !important;
          margin: 0;
          padding: 0;
          border: 0 none;
          */ }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption p.wp-caption-text {
          /*
          float: left;
          width: 100%;
          font-size: 11px;
          line-height: 17px;
          padding: 0 4px 5px;
          margin: 0;
          */ }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption.alignnone {
        margin: 5px 20px 20px 0;
        width: 100%;
        display: block; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption.alignleft {
        float: left;
        position: relative;
        background-clip: padding-box;
        -webkit-border-radius: 0 10px 10px 0;
        -moz-border-radius: 0 10px 10px 0;
        -ms-border-radius: 0 10px 10px 0;
        -o-border-radius: 0 10px 10px 0;
        border-radius: 0 10px 10px 0;
        margin: 5px 20px 20px 0; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption.alignleft img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption.alignleft p.wp-caption-text {
          background-clip: padding-box;
          -webkit-border-radius: 0 10px 10px 0;
          -moz-border-radius: 0 10px 10px 0;
          -ms-border-radius: 0 10px 10px 0;
          -o-border-radius: 0 10px 10px 0;
          border-radius: 0 10px 10px 0; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption.alignright {
        float: right;
        position: relative;
        background-clip: padding-box;
        -webkit-border-radius: 10px 0 0 10px;
        -moz-border-radius: 10px 0 0 10px;
        -ms-border-radius: 10px 0 0 10px;
        -o-border-radius: 10px 0 0 10px;
        border-radius: 10px 0 0 10px;
        margin: 5px 0 20px 20px; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption.alignright img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption.alignright p.wp-caption-text {
          background-clip: padding-box;
          -webkit-border-radius: 10px 0 0 10px;
          -moz-border-radius: 10px 0 0 10px;
          -ms-border-radius: 10px 0 0 10px;
          -o-border-radius: 10px 0 0 10px;
          border-radius: 10px 0 0 10px; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption img {
        border: 0 none;
        height: auto;
        margin: 0;
        padding: 0;
        width: 100%; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption p.wp-caption-text {
        font-size: 1em;
        line-height: 1.3em;
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.7);
        margin: 0;
        padding: 1%; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext {
        float: left;
        width: 88%;
        margin: 0 2% 20px;
        padding: 20px 4%;
        background-color: rgba(0, 0, 0, 0.5); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .tiled-gallery {
        width: 94%;
        height: auto;
        margin: 10px 2%;
        padding: 1%;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.8);
        border-top: solid 4px rgba(0, 0, 0, 0.6);
        border-bottom: solid 2px rgba(255, 255, 255, 0.2); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .tiled-gallery {
        width: 100%;
        margin: 10px 0;
        padding: 2% 0; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery-item, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .type-square .tiled-gallery-item, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .type-circle .tiled-gallery-item {
        width: 30%;
        height: auto;
        margin: 1% 1.64%;
        padding: auto;
        position: relative;
        border: none;
        transition-property: transform;
        transition-duration: 0.5s; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery-item:hover, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .type-square .tiled-gallery-item:hover {
        transform: translate3d(0, -10px, 10px) scale(1.1); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .type-circle .tiled-gallery-item:hover {
        transform: translate3d(0, -10px, 10px) rotate3d(1, 1, 1, 5deg) scale(1.1); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery-icon {
        width: auto;
        height: auto;
        margin: auto;
        padding: auto;
        position: relative;
        border: none; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .attachment-thumbnail {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        border: none; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote {
        margin: 0 2%;
        padding: 4% 4% 4% 110px;
        border-top: solid 5px rgba(0, 0, 0, 0.8);
        border-bottom: solid 5px rgba(0, 0, 0, 0.8);
        font-size: 1.4em;
        font-style: italic;
        line-height: 1.4em;
        color: rgba(0, 0, 0, 0.9);
        background-color: rgba(255, 255, 255, 0.7);
        background-image: url("images/iconmonstr-quote-icon.svg");
        background-position: top left;
        background-repeat: no-repeat;
        background-size: 100px; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote.alignleft {
        margin: 5px 15px 5px 0;
        width: 30%; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote.alignright {
        margin: 5px 0 5px 15px;
        width: 30%; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote p {
        background: none;
        border: none; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote p:first-of-type {
          border-top: none; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote p:last-of-type {
          background-clip: padding-box;
          -webkit-border-radius: 0 0 0 0;
          -moz-border-radius: 0 0 0 0;
          -ms-border-radius: 0 0 0 0;
          -o-border-radius: 0 0 0 0;
          border-radius: 0 0 0 0;
          margin-bottom: 1%;
          padding-bottom: 20px;
          border-bottom: none; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol {
        background-color: rgba(0, 0, 0, 0.8);
        width: 84%;
        margin: 0 2%;
        padding: 1em 4% 1em 8%;
        clear: both; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul {
        list-style-type: square; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol {
        list-style-type: decimal; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body li {
        border-bottom: solid 1px rgba(255, 255, 255, 0.1);
        font-size: 1em;
        line-height: 1.8em;
        list-style-position: inside;
        margin-bottom: 1em; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box {
        padding: 0 0 1%;
        overflow: auto;
        width: 96%;
        margin: 0 2%;
        border-top: solid 4px rgba(255, 255, 255, 0.5);
        border-bottom: solid 2px rgba(0, 0, 0, 0.5); }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box img {
          float: left;
          position: relative;
          width: 75%;
          margin: 0 1% 0 20%;
          padding: 0 2% 10px; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box img, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box img {
          display: block;
          height: auto; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box ul, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p {
          background-color: rgba(0, 0, 0, 0.75); }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h5, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h1, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h2, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h4, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h5 {
          background-clip: padding-box;
          -webkit-border-radius: 0 0 0 0;
          -moz-border-radius: 0 0 0 0;
          -ms-border-radius: 0 0 0 0;
          -o-border-radius: 0 0 0 0;
          border-radius: 0 0 0 0;
          background-color: rgba(0, 0, 0, 0.8); }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3:first-of-type {
          background-clip: padding-box;
          -webkit-border-radius: 10px 10px 0 0;
          -moz-border-radius: 10px 10px 0 0;
          -ms-border-radius: 10px 10px 0 0;
          -o-border-radius: 10px 10px 0 0;
          border-radius: 10px 10px 0 0;
          background-color: rgba(0, 0, 0, 0.85);
          margin-top: 10px; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p:first-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p:first-of-type {
          padding-top: 2%; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p:last-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p:last-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p:last-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p:last-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p:last-of-type, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p:last-of-type {
          padding-bottom: 1%;
          margin-bottom: 10px; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.ody, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.Ody {
        background-color: rgba(100, 100, 200, 0.4) !important;
        background-image: url("images/team/ducklord.png") !important;
        background-position: 0 0;
        background-repeat: no-repeat; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.galacticus, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.Galacticus {
        background-color: rgba(255, 255, 255, 0.5) !important;
        background-image: url("images/team/galacticus.png") !important;
        background-size: 300px;
        background-position: 0 0;
        background-repeat: no-repeat; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.galacticus h3, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.Galacticus h3 {
          background-color: rgba(255, 255, 255, 0.7) !important;
          color: rgba(0, 0, 0, 0.6); }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.galacticus p.thoughts-text, .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox.Galacticus p.thoughts-text {
          background-color: rgba(255, 255, 255, 0.5) !important;
          color: rgba(0, 0, 0, 0.9); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box {
        background-color: rgba(50, 200, 50, 0.3) !important;
        background-image: url("images/iconmonstr-book-17-icon.svg");
        background-size: 100px;
        background-position: top left;
        background-repeat: no-repeat; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box {
        background-color: rgba(50, 50, 200, 0.3) !important;
        background-image: url("images/iconmonstr-newspaper-3-icon.svg");
        background-size: 100px;
        background-position: top left;
        background-repeat: no-repeat; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box {
        background-color: rgba(200, 50, 50, 0.3) !important;
        background-image: url("images/iconmonstr-danger-10-icon.svg");
        background-size: 100px;
        background-position: top left;
        background-repeat: no-repeat; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3 {
          color: rgba(255, 100, 100, 0.7); }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box {
        background-color: rgba(200, 200, 50, 0.3) !important;
        background-image: url("images/iconmonstr-edit-8-icon.svg");
        background-size: 100px;
        background-position: top left;
        background-repeat: no-repeat; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box {
        background: rgba(255, 255, 255, 0.3);
        background-image: url("images/iconmonstr-quote-2-icon.svg");
        background-size: 100px;
        background-position: top left;
        background-repeat: no-repeat; }
      .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .core_contentbox {
        float: left;
        position: relative;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1;
        clear: both;
        overflow: auto;
        width: 100%;
        height: auto;
        display: block;
        margin: 10px 0;
        padding: 1% 0;
        border-top: solid 4px rgba(0, 0, 0, 0.5);
        border-bottom: solid 3px rgba(255, 255, 255, 0.3);
        text-align: center; }
        .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .core_contentbox iframe {
          width: 100%;
          min-width: 360px;
          min-height: 240px;
          margin: 0 auto;
          height: auto;
          display: block; }
  .corev10_single #sandbox_center #single_post_container #author_bio {
    background-clip: padding-box;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    background-color: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
    float: left;
    width: 96%;
    margin: 20px 0;
    padding: 3px 2%;
    border-top: solid 3px rgba(0, 0, 0, 0.6);
    border-bottom: solid 2px rgba(255, 255, 255, 0.3); }
    .corev10_single #sandbox_center #single_post_container #author_bio #title {
      float: left;
      position: relative;
      width: 98%;
      padding: 1%; }
    .corev10_single #sandbox_center #single_post_container #author_bio #description {
      float: left;
      position: relative;
      background-clip: padding-box;
      -webkit-border-radius: 0 0 5px 5px;
      -moz-border-radius: 0 0 5px 5px;
      -ms-border-radius: 0 0 5px 5px;
      -o-border-radius: 0 0 5px 5px;
      border-radius: 0 0 5px 5px;
      width: 96%;
      padding: 10px 2%;
      margin: 1px 0;
      font-size: 1em;
      line-height: 1.4em;
      color: rgba(255, 255, 255, 0.7);
      background-color: rgba(0, 0, 0, 0.6);
      border-top: solid 1px rgba(255, 255, 255, 0.3); }
    .corev10_single #sandbox_center #single_post_container #author_bio #contact {
      float: right;
      position: relative;
      background-clip: padding-box;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      -ms-border-radius: 5px 5px 5px 5px;
      -o-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
      width: 30%;
      padding: 10px 2%;
      margin: 5px 1% 2px;
      height: auto;
      display: block;
      text-align: center;
      font-size: 1.2em;
      background-color: rgba(255, 255, 255, 0.2);
      color: rgba(0, 0, 0, 0.6);
      transition-property: color, background-color;
      transition-duration: 0.2s; }
      .corev10_single #sandbox_center #single_post_container #author_bio #contact a {
        float: left;
        position: relative;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.6);
        transition-property: color, background-color;
        transition-duration: 0.2s; }
      .corev10_single #sandbox_center #single_post_container #author_bio #contact:hover {
        background-color: rgba(0, 0, 0, 0.9); }
        .corev10_single #sandbox_center #single_post_container #author_bio #contact:hover a {
          color: rgba(255, 255, 255, 0.8); }
  .corev10_single #sandbox_center #single_post_container .single_source {
    background-clip: padding-box;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -ms-border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    background-color: rgba(255, 255, 255, 0.4);
    color: rgba(0, 0, 0, 0.9);
    float: left;
    width: 94%;
    margin: 20px 3%;
    padding: 3px 0;
    border-top: solid 2px rgba(0, 0, 0, 0.1);
    border-bottom: solid 1px rgba(255, 255, 255, 0.6); }
    .corev10_single #sandbox_center #single_post_container .single_source h3 a {
      background-clip: padding-box;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      -ms-border-radius: 5px 5px 5px 5px;
      -o-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
      float: right;
      display: block;
      width: 25%;
      max-width: 200px;
      min-width: 100px;
      margin: 1% 2%;
      padding: 1%;
      background-color: rgba(255, 255, 255, 0.5);
      color: rgba(0, 0, 0, 0.6);
      text-align: center;
      text-decoration: none !important;
      font-size: 1.4em;
      line-height: 1.2em;
      transition-property: background-color, color;
      transition-duration: 0.5s; }
      .corev10_single #sandbox_center #single_post_container .single_source h3 a:hover {
        background-color: rgba(255, 255, 255, 0.9);
        color: rgba(0, 0, 0, 0.9); }
    .corev10_single #sandbox_center #single_post_container .single_source p {
      margin: 0 2%;
      padding: 1.4% 4%;
      font-size: 1em;
      line-height: 1.4em; }
      .corev10_single #sandbox_center #single_post_container .single_source p:last-of-type {
        background-clip: padding-box;
        -webkit-border-radius: 0 0 10px 10px;
        -moz-border-radius: 0 0 10px 10px;
        -ms-border-radius: 0 0 10px 10px;
        -o-border-radius: 0 0 10px 10px;
        border-radius: 0 0 10px 10px; }
  .corev10_single #sandbox_center #single_post_container .source_description {
    float: left;
    width: 96%;
    margin: 1%;
    padding: 1%;
    min-width: 100px; }
  .corev10_single #sandbox_center #single_post_container #single_similar_posts {
    float: left;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
    margin: 30px 0 15px;
    padding: 5px 1%;
    width: 98%;
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    border-bottom: solid 1px rgba(0, 0, 0, 0.2); }
    .corev10_single #sandbox_center #single_post_container #single_similar_posts h2 {
      border-bottom: solid 1px rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      float: left;
      font-size: 1.4em;
      line-height: 1.6em;
      margin: 0;
      padding: 2%;
      width: 96%; }
    .corev10_single #sandbox_center #single_post_container #single_similar_posts ul, .corev10_single #sandbox_center #single_post_container #single_similar_posts ol {
      margin: 0;
      padding: 0;
      width: 100%; }
    .corev10_single #sandbox_center #single_post_container #single_similar_posts li {
      float: left;
      position: relative;
      background-clip: padding-box;
      -webkit-border-radius: 0 0 5px 5px;
      -moz-border-radius: 0 0 5px 5px;
      -ms-border-radius: 0 0 5px 5px;
      -o-border-radius: 0 0 5px 5px;
      border-radius: 0 0 5px 5px;
      background: rgba(0, 0, 0, 0.3);
      display: block;
      height: 120px;
      list-style: none;
      margin: 1%;
      overflow: hidden;
      width: 48%;
      transition-property: color, background-color;
      transition-duration: 0.2s; }
      .corev10_single #sandbox_center #single_post_container #single_similar_posts li a span, .corev10_single #sandbox_center #single_post_container #single_similar_posts li a img {
        height: 94%;
        max-height: 100px;
        margin: 1%;
        padding: 2%;
        font-size: 1em;
        line-height: 1.3em;
        font-weight: normal;
        background: rgba(0, 0, 0, 0.5);
        color: rgba(255, 255, 255, 0.1);
        overflow: hidden;
        position: relative;
        transition-property: color, background-color, width;
        transition-duration: 0.2s;
        border: none; }
      .corev10_single #sandbox_center #single_post_container #single_similar_posts li a img {
        width: 86%;
        float: left;
        background-clip: padding-box;
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        -ms-border-radius: 0 5px 5px 0;
        -o-border-radius: 0 5px 5px 0;
        border-radius: 0 5px 5px 0; }
      .corev10_single #sandbox_center #single_post_container #single_similar_posts li a span {
        width: 2%;
        background-clip: padding-box;
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        -ms-border-radius: 5px 0 0 5px;
        -o-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
        float: right; }
      .corev10_single #sandbox_center #single_post_container #single_similar_posts li a:hover img, .corev10_single #sandbox_center #single_post_container #single_similar_posts li a:hover span {
        background: rgba(0, 0, 0, 0.8);
        color: rgba(255, 255, 255, 0.9); }
      .corev10_single #sandbox_center #single_post_container #single_similar_posts li:hover {
        background: rgba(255, 255, 255, 0.2); }
        .corev10_single #sandbox_center #single_post_container #single_similar_posts li:hover img {
          width: 5%; }
        .corev10_single #sandbox_center #single_post_container #single_similar_posts li:hover span {
          width: 83%; }
  .corev10_single #sandbox_center #single_post_container #single_comments {
    background: rgba(255, 255, 255, 0.2);
    color: white; }
    .corev10_single #sandbox_center #single_post_container #single_comments a {
      color: rgba(255, 255, 255, 0.95); }
      .corev10_single #sandbox_center #single_post_container #single_comments a:hover {
        color: white; }
  .corev10_single #sandbox_center #single_post_container #disqus_thread {
    color: black;
    background: rgba(255, 255, 255, 0.9); }

#single_pagenav {
  float: right;
  margin: 0 5px; }

/* sharedaddy box styling */
/* Jetpack sharedaddy overrides */
/*
.sd-content {
	@include combined-radius(10px,10px,10px,10px);
    width: 92%;
    background: transparentize($cFront, 0.8);
    margin: 10px 2%;
    padding: 2%;
    float: left;
}

.sd-content > ul {
    background: none;
}

.sd-title {
    margin: 1% 2% 0;
}
*/
.sd-content {
  width: 94% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  margin: 0 2% !important;
  padding: 1% !important; }
  .sd-content ul {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important; }
    .sd-content ul li {
      			/*
      			float: left;
      		    display: block;
      		    width: 25%  !important;
      		    min-height: 100px;
      		    margin: 0 !important;
      		    padding: 0 !important;
      		    background: #456 !important;
      		    list-style: none !important;
      		    opacity: 0.7 !important;
      		    border: none !important;
      		    position: relative !important;
      
      
      		    &:hover{
      		        opacity: 1  !important;
      		    }
      
      		    span {
      		    	display: none;
      		    }
      
      			a.share-icon {
      				display: block !important;
      				width: 100% !important;
      				height: 100% !important;
      				margin: 0 !important;
      		    	padding: 0 !important;
      			}
      			*/ }
      .sd-content ul li .share-facebook a.share-icon {
        /*
        background: rgba(59,89,151,1);
        background-image: url('images/temp/icon-facebook.png');
        background-size: contain;
        background-position: center;
        */ }

/* ______________________________________________( 404 Page ) */
body.error404 {
  background: url("images/blackhole.jpg") center fixed !important; }

body.error404 #sitecontent {
  background-clip: padding-box;
  -webkit-border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -ms-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  margin: 5% 10%;
  width: 80%;
  background-color: rgba(0, 0, 0, 0.3); }
  body.error404 #sitecontent #sandbox_center {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
    perspective: 1000;
    background-clip: padding-box;
    -webkit-border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -ms-border-radius: 10px 10px 10px 10px;
    -o-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 96%;
    margin: 1% 2%;
    padding: 0;
    border: none; }

#blackhole {
  margin: 0;
  padding: 0; }
  #blackhole .message {
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
    text-align: center; }
    #blackhole .message h3 {
      width: 96%;
      border-bottom: solid 1px rgba(255, 255, 255, 0.3);
      color: rgba(255, 255, 255, 0.9);
      margin: 1% 1% 2%;
      padding: 1%;
      font-size: 2em;
      line-height: 2em; }
    #blackhole .message p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.4em;
      line-height: 1.8em; }
    #blackhole .message p:nth-child(2) strong {
      font-size: 1.5em;
      color: rgba(200, 255, 200, 0.9);
      font-weight: bold; }
  #blackhole .searchbox {
    float: left;
    width: 100%; }
    #blackhole .searchbox .screen-reader-text {
      display: none; }
    #blackhole .searchbox #s {
      background-clip: padding-box;
      -webkit-border-radius: 5px 5px 5px 5px;
      -moz-border-radius: 5px 5px 5px 5px;
      -ms-border-radius: 5px 5px 5px 5px;
      -o-border-radius: 5px 5px 5px 5px;
      border-radius: 5px 5px 5px 5px;
      float: left;
      width: 96%;
      margin: 2% 1% 1%;
      padding: 0.5% 1%;
      font-size: 1.4em;
      color: rgba(0, 0, 0, 0.7);
      background-color: rgba(255, 255, 255, 0.3);
      border: 0;
      transition-duration: 0.2s;
      transition-property: color, background-color; }
      #blackhole .searchbox #s:hover {
        color: rgba(0, 0, 0, 0.8);
        background-color: rgba(255, 255, 255, 0.4); }
    #blackhole .searchbox #searchsubmit {
      float: right;
      width: 200px;
      margin: 0 1% 2%;
      padding: 0.5% 1%;
      opacity: 0.8;
      transition-duration: 0.2s;
      transition-property: opacity; }
      #blackhole .searchbox #searchsubmit:hover {
        opacity: 1; }

/* ------------------------------- ( Sidebar )------------- */
#sidebar {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  float: left;
  width: 100%;
  margin: 1% 0;
  padding: 1% 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  clear: both;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3); }
  #sidebar .brick {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
    perspective: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
    transition-property: opacity, background-color, color;
    transition-duration: 0.2s;
    border: solid 1px rgba(255, 255, 255, 0.3);
    width: 21%;
    margin: 0.5%;
    padding: 1%;
    font-size: 1em;
    line-height: 1.4em;
    background-color: rgba(0, 0, 0, 0.5); }
    #sidebar .brick:hover {
      opacity: 1;
      background-color: black;
      color: white; }
    #sidebar .brick a {
      text-decoration: none;
      color: white;
      font-weight: strong;
      opacity: 0.8;
      border-bottom: solid 1px rgba(255, 255, 255, 0.1); }
      #sidebar .brick a:hover {
        opacity: 1;
        border-bottom: solid 1px rgba(255, 255, 255, 0.3); }
    #sidebar .brick h3 {
      border-bottom: solid 1px rgba(255, 255, 255, 0.3);
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.2em;
      line-height: 1.5em;
      margin: 2% 1% 15px;
      padding: 3%;
      width: 92%; }
    #sidebar .brick li {
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      -webkit-perspective: 1000;
      backface-visibility: hidden;
      perspective: 1000;
      background-color: rgba(0, 0, 0, 0.8);
      color: rgba(255, 255, 255, 0.8);
      opacity: 0.8;
      transition-property: opacity, background-color, color;
      transition-duration: 0.2s;
      margin: 2% 1% 15px;
      padding: 3%;
      display: block;
      width: 92%;
      border: solid 1px rgba(255, 255, 255, 0.15);
      border-bottom: solid 5px rgba(255, 255, 255, 0.15); }
      #sidebar .brick li:hover {
        opacity: 1;
        background-color: black;
        color: white; }
      #sidebar .brick li:hover {
        border: solid 1px rgba(255, 255, 255, 0.3);
        border-bottom: solid 5px rgba(255, 255, 255, 0.5); }
    #sidebar .brick:hover {
      background-color: rgba(0, 0, 0, 0.7); }
  #sidebar #tag-cloud {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
    perspective: 1000;
    float: left;
    width: 100%;
    margin: 1% 0;
    padding: 1% 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    clear: both;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    float: left;
    margin: 1% 0;
    padding: 1%;
    width: 98%;
    border-right: none;
    border-left: none;
    line-height: 3.3em;
    clear: both; }
    #sidebar #tag-cloud h3 {
      margin: 10px 0 15px;
      padding: 0;
      width: 100%; }
    #sidebar #tag-cloud a {
      -webkit-transform: translate3d(0, 0, 0);
      -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-backface-visibility: hidden;
      -webkit-perspective: 1000;
      backface-visibility: hidden;
      perspective: 1000;
      background-color: rgba(0, 0, 0, 0.8);
      color: rgba(255, 255, 255, 0.8);
      opacity: 0.8;
      transition-property: opacity, background-color, color;
      transition-duration: 0.2s;
      padding: 5px 10px;
      margin: 5px;
      border-bottom: solid 1px rgba(255, 255, 255, 0.2);
      border-right: solid 1px rgba(255, 255, 255, 0.1); }
      #sidebar #tag-cloud a:hover {
        opacity: 1;
        background-color: black;
        color: white; }
    #sidebar #tag-cloud:hover {
      background-color: rgba(0, 0, 0, 0.8); }
      #sidebar #tag-cloud:hover a {
        padding: 8px 10px;
        background-color: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9); }
        #sidebar #tag-cloud:hover a:hover {
          color: rgba(255, 255, 255, 0.95);
          background-color: rgba(255, 255, 255, 0.3);
          border-bottom: solid 1px rgba(255, 255, 255, 0.4);
          border-right: solid 1px rgba(255, 255, 255, 0.3); }
  #sidebar #poll {
    height: auto;
    overflow: hidden; }
    #sidebar #poll .poll-answer {
      margin: 10px 0 15px 0; }
    #sidebar #poll .poll-question {
      font-size: 1.1em;
      line-height: 1.4em;
      padding: 15px 1%; }
    #sidebar #poll .poll-button input {
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      background-color: rgba(255, 255, 255, 0.6);
      border: solid 1px rgba(0, 0, 0, 0.5);
      font-size: 1em;
      display: block;
      float: left;
      padding: 1%;
      margin: 1%;
      width: 40%; }
      #sidebar #poll .poll-button input:hover {
        color: rgba(0, 0, 0, 0.95);
        background-color: rgba(255, 255, 255, 0.9);
        border: solid 1px rgba(0, 0, 0, 0.7); }
    #sidebar #poll .poll-results a {
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      background-color: rgba(0, 0, 0, 0.7);
      border: solid 1px rgba(255, 255, 255, 0.5);
      font-size: 1em;
      display: block;
      float: right;
      padding: 1%;
      margin: 1%;
      width: 40%; }
      #sidebar #poll .poll-results a:hover {
        color: rgba(255, 255, 255, 0.95);
        background-color: rgba(255, 255, 255, 0.15);
        border: solid 1px rgba(255, 255, 255, 0.6); }
  #sidebar #friendly-links .friendly_site_thumb_phoatcom, #sidebar #friendly-links .friendly_site_thumb_greenchef, #sidebar #friendly-links .friendly_site_thumb_osarena, #sidebar #friendly-links .friendly_site_thumb_byteme, #sidebar #friendly-links .friendly_site_thumb_freetools, #sidebar #friendly-links .friendly_site_thumb_algorithmos {
    background: url("images/unregistered_friendly_sites.jpg") repeat scroll 0 0 transparent;
    float: right;
    height: 60px;
    opacity: 0.7;
    transition-duration: 0.2s;
    width: 120px;
    margin: 0;
    padding: 0; }
    #sidebar #friendly-links .friendly_site_thumb_phoatcom a:hover, #sidebar #friendly-links .friendly_site_thumb_greenchef a:hover, #sidebar #friendly-links .friendly_site_thumb_osarena a:hover, #sidebar #friendly-links .friendly_site_thumb_byteme a:hover, #sidebar #friendly-links .friendly_site_thumb_freetools a:hover, #sidebar #friendly-links .friendly_site_thumb_algorithmos a:hover {
      opacity: 1;
      transition-duration: 0.2s; }
  #sidebar #friendly-links .friendly_site_thumb_greenchef {
    background-position: -165px 0; }
  #sidebar #friendly-links .friendly_site_thumb_osarena {
    background-position: -315px 0; }
  #sidebar #friendly-links .friendly_site_thumb_byteme {
    background-position: -462px 0; }
  #sidebar #friendly-links .friendly_site_thumb_freetools {
    background-position: -615px 0; }
  #sidebar #friendly-links .friendly_site_thumb_algorithmos {
    background-position: -770px 0; }
  #sidebar #friendly-links li {
    float: left; }
    #sidebar #friendly-links li a {
      display: block;
      font-size: 1em;
      height: 60px;
      text-decoration: none;
      width: 100%;
      border: none;
      transition-duration: 0.5s; }
    #sidebar #friendly-links li:hover .friendly_site_thumb_phoatcom, #sidebar #friendly-links li:hover .friendly_site_thumb_greenchef, #sidebar #friendly-links li:hover .friendly_site_thumb_osarena, #sidebar #friendly-links li:hover .friendly_site_thumb_byteme, #sidebar #friendly-links li:hover .friendly_site_thumb_freetools, #sidebar #friendly-links li:hover .friendly_site_thumb_algorithmos {
      transform: scale(1.2); }

#sitefooter {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  float: left;
  width: 100%;
  margin: 1% 0;
  padding: 1% 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  clear: both;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  float: left;
  position: relative;
  margin: 5px 0;
  padding: 5px 0;
  position: relative;
  z-index: 15; }
  #sitefooter #core_copyright, #sitefooter #core_design {
    float: left;
    position: relative;
    text-align: left;
    max-width: 46%;
    height: 100%;
    margin: 1px 1%;
    padding: 10px 1%;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.6); }
    #sitefooter #core_copyright a, #sitefooter #core_design a {
      text-decoration: none;
      color: white;
      font-weight: normal;
      opacity: 0.8; }
      #sitefooter #core_copyright a:hover, #sitefooter #core_design a:hover {
        opacity: 1;
        border-bottom: solid 1px rgba(255, 255, 255, 0.3); }
  #sitefooter #core_design {
    float: right;
    text-align: right; }

.adbox {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  float: left;
  width: 100%;
  margin: 1% 0;
  padding: 1% 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  clear: both; }

/* _______________________________________________( Disqus ) */
#single_comments {
  background-clip: padding-box;
  -webkit-border-radius: 5px 5px 15px 15px;
  -moz-border-radius: 5px 5px 15px 15px;
  -ms-border-radius: 5px 5px 15px 15px;
  -o-border-radius: 5px 5px 15px 15px;
  border-radius: 5px 5px 15px 15px;
  float: left;
  width: 94%;
  margin: 20px 1%;
  padding: 5px 2%;
  border: solid 1px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.2);
  color: black; }
  #single_comments a {
    color: black;
    opacity: 0.8; }
    #single_comments a:hover {
      opacity: 1; }

#disqus_thread {
  background-clip: padding-box;
  -webkit-border-radius: 5px 5px 15px 15px;
  -moz-border-radius: 5px 5px 15px 15px;
  -ms-border-radius: 5px 5px 15px 15px;
  -o-border-radius: 5px 5px 15px 15px;
  border-radius: 5px 5px 15px 15px;
  width: 96%;
  margin: 2% auto;
  padding: 2%;
  color: black;
  background: rgba(255, 255, 255, 0.8); }

.dsq-avatar img {
  margin: 0;
  padding: 0; }

/* ____________________________________________( Pagination ) */
.wp-pagenavi {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  backface-visibility: hidden;
  perspective: 1000;
  background-color: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.6;
  transition-property: opacity, background-color, color;
  transition-duration: 0.2s;
  float: right;
  text-align: right;
  font-size: 0.8em;
  margin: 20px 0px 5px 5px;
  padding: 20px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-right: none; }
  .wp-pagenavi:hover {
    opacity: 0.85;
    background-color: black;
    color: white; }
  .wp-pagenavi a {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
    perspective: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
    transition-property: opacity, background-color, color;
    transition-duration: 0.2s;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 2px 10px;
    text-decoration: none;
    font-size: 1.2em;
    border: solid 1px rgba(255, 255, 255, 0.5); }
    .wp-pagenavi a:hover {
      opacity: 1;
      background-color: black;
      color: white; }
    .wp-pagenavi a:hover {
      margin: 0 4px;
      border: solid 2px rgba(255, 255, 255, 0.8);
      border-top: solid 1px rgba(255, 255, 255, 0.8);
      border-bottom: solid 1px rgba(255, 255, 255, 0.8); }
  .wp-pagenavi .current {
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 2px 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: strong;
    border: solid 1px white;
    background: rgba(255, 255, 255, 0.7);
    color: rgba(0, 0, 0, 0.8); }

/* _____________________________( Pagination - Single Pages ) */
/*
.single .wp-pagenavi {
    float: right;
    width: 100%;
    height: 30px;
    margin: 10px 0;
    text-align: right;
    font-size: 0.8em;
    a {
	    width: 20px;
	    height: 20px;
	    margin: 0 5px;
	    padding: 2px 10px;
	    border: solid 1px;
	    text-decoration: none;
	    font-size: 1.1em;
	    font-size: 1.2em;
	    color: transparentize($cBack, 0.1);
	    &:hover {
		    margin: 0 5px;
		    padding: 6px 10px;
		    border: solid 1px;
		    color: transparentize($cFront, 0.1);
		}
	}
	.current {
	    margin: 0 5px;
	    padding: 3px 12px;
	    border: solid 1px;
	    text-decoration: none;
	    font-size: 1.1em;
	    font-size: 1.2em;
	    color: transparentize($cFront, 0.1);
	}

	.single .wp-pagenavi .page {}
	.single .wp-pagenavi .extend {}
	.single .wp-pagenavi .nextpostslink {}
	.single .wp-pagenavi .last {}
}

*/
/* Post Styles */
/* ----------------------------- ( Post Style HalfDark )--------- */
.HalfDark .fluid-vid, .HalfDark_Left .fluid-vid, .HalfDark_Right .fluid-vid, .HalfDark_Slice_1 .fluid-vid, .HalfDark_Slice_2 .fluid-vid, .HalfDark_Slice_3 .fluid-vid, .HalfDark_Slice_4 .fluid-vid {
  background-color: rgba(0, 0, 0, 0.8);
  border-top: solid 4px rgba(0, 0, 0, 0.5);
  border-bottom: solid 3px rgba(255, 255, 255, 0.3); }
.HalfDark #meta_line1 a, .HalfDark #meta_line2 a, .HalfDark_Left #meta_line1 a, .HalfDark_Left #meta_line2 a, .HalfDark_Right #meta_line1 a, .HalfDark_Right #meta_line2 a, .HalfDark_Slice_1 #meta_line1 a, .HalfDark_Slice_1 #meta_line2 a, .HalfDark_Slice_2 #meta_line1 a, .HalfDark_Slice_2 #meta_line2 a, .HalfDark_Slice_3 #meta_line1 a, .HalfDark_Slice_3 #meta_line2 a, .HalfDark_Slice_4 #meta_line1 a, .HalfDark_Slice_4 #meta_line2 a {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.6) !important; }
  .HalfDark #meta_line1 a:hover, .HalfDark #meta_line2 a:hover, .HalfDark_Left #meta_line1 a:hover, .HalfDark_Left #meta_line2 a:hover, .HalfDark_Right #meta_line1 a:hover, .HalfDark_Right #meta_line2 a:hover, .HalfDark_Slice_1 #meta_line1 a:hover, .HalfDark_Slice_1 #meta_line2 a:hover, .HalfDark_Slice_2 #meta_line1 a:hover, .HalfDark_Slice_2 #meta_line2 a:hover, .HalfDark_Slice_3 #meta_line1 a:hover, .HalfDark_Slice_3 #meta_line2 a:hover, .HalfDark_Slice_4 #meta_line1 a:hover, .HalfDark_Slice_4 #meta_line2 a:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: black !important; }
.HalfDark #author_bio, .HalfDark_Left #author_bio, .HalfDark_Right #author_bio, .HalfDark_Slice_1 #author_bio, .HalfDark_Slice_2 #author_bio, .HalfDark_Slice_3 #author_bio, .HalfDark_Slice_4 #author_bio {
  background-clip: padding-box;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  background-color: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  float: left;
  width: 96%;
  margin: 20px 0;
  padding: 3px 2%;
  border-top: solid 3px rgba(0, 0, 0, 0.6);
  border-bottom: solid 2px rgba(255, 255, 255, 0.3); }
  .HalfDark #author_bio #title, .HalfDark_Left #author_bio #title, .HalfDark_Right #author_bio #title, .HalfDark_Slice_1 #author_bio #title, .HalfDark_Slice_2 #author_bio #title, .HalfDark_Slice_3 #author_bio #title, .HalfDark_Slice_4 #author_bio #title {
    float: left;
    position: relative;
    width: 98%;
    padding: 1%; }
  .HalfDark #author_bio #description, .HalfDark_Left #author_bio #description, .HalfDark_Right #author_bio #description, .HalfDark_Slice_1 #author_bio #description, .HalfDark_Slice_2 #author_bio #description, .HalfDark_Slice_3 #author_bio #description, .HalfDark_Slice_4 #author_bio #description {
    float: left;
    position: relative;
    background-clip: padding-box;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    width: 96%;
    padding: 10px 2%;
    margin: 1px 0;
    font-size: 1em;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.6);
    border-top: solid 1px rgba(255, 255, 255, 0.3); }
  .HalfDark #author_bio #contact, .HalfDark_Left #author_bio #contact, .HalfDark_Right #author_bio #contact, .HalfDark_Slice_1 #author_bio #contact, .HalfDark_Slice_2 #author_bio #contact, .HalfDark_Slice_3 #author_bio #contact, .HalfDark_Slice_4 #author_bio #contact {
    float: right;
    position: relative;
    background-clip: padding-box;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -ms-border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    width: 30%;
    padding: 10px 2%;
    margin: 5px 1% 2px;
    height: auto;
    display: block;
    text-align: center;
    font-size: 1.2em;
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(0, 0, 0, 0.6);
    transition-property: color, background-color;
    transition-duration: 0.2s; }
    .HalfDark #author_bio #contact a, .HalfDark_Left #author_bio #contact a, .HalfDark_Right #author_bio #contact a, .HalfDark_Slice_1 #author_bio #contact a, .HalfDark_Slice_2 #author_bio #contact a, .HalfDark_Slice_3 #author_bio #contact a, .HalfDark_Slice_4 #author_bio #contact a {
      float: left;
      position: relative;
      width: 100%;
      height: 100%;
      text-decoration: none;
      color: rgba(0, 0, 0, 0.6);
      transition-property: color, background-color;
      transition-duration: 0.2s; }
    .HalfDark #author_bio #contact:hover, .HalfDark_Left #author_bio #contact:hover, .HalfDark_Right #author_bio #contact:hover, .HalfDark_Slice_1 #author_bio #contact:hover, .HalfDark_Slice_2 #author_bio #contact:hover, .HalfDark_Slice_3 #author_bio #contact:hover, .HalfDark_Slice_4 #author_bio #contact:hover {
      background-color: rgba(0, 0, 0, 0.9); }
      .HalfDark #author_bio #contact:hover a, .HalfDark_Left #author_bio #contact:hover a, .HalfDark_Right #author_bio #contact:hover a, .HalfDark_Slice_1 #author_bio #contact:hover a, .HalfDark_Slice_2 #author_bio #contact:hover a, .HalfDark_Slice_3 #author_bio #contact:hover a, .HalfDark_Slice_4 #author_bio #contact:hover a {
        color: rgba(255, 255, 255, 0.8); }
.HalfDark #single_similar_posts, .HalfDark_Left #single_similar_posts, .HalfDark_Right #single_similar_posts, .HalfDark_Slice_1 #single_similar_posts, .HalfDark_Slice_2 #single_similar_posts, .HalfDark_Slice_3 #single_similar_posts, .HalfDark_Slice_4 #single_similar_posts {
  float: left;
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
  margin: 30px 0 15px;
  padding: 5px 1%;
  width: 98%;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  border-bottom: solid 1px rgba(0, 0, 0, 0.2); }
  .HalfDark #single_similar_posts h2, .HalfDark_Left #single_similar_posts h2, .HalfDark_Right #single_similar_posts h2, .HalfDark_Slice_1 #single_similar_posts h2, .HalfDark_Slice_2 #single_similar_posts h2, .HalfDark_Slice_3 #single_similar_posts h2, .HalfDark_Slice_4 #single_similar_posts h2 {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    float: left;
    font-size: 1.4em;
    line-height: 1.6em;
    margin: 0;
    padding: 2%;
    width: 96%; }
  .HalfDark #single_similar_posts ul, .HalfDark #single_similar_posts ol, .HalfDark_Left #single_similar_posts ul, .HalfDark_Left #single_similar_posts ol, .HalfDark_Right #single_similar_posts ul, .HalfDark_Right #single_similar_posts ol, .HalfDark_Slice_1 #single_similar_posts ul, .HalfDark_Slice_1 #single_similar_posts ol, .HalfDark_Slice_2 #single_similar_posts ul, .HalfDark_Slice_2 #single_similar_posts ol, .HalfDark_Slice_3 #single_similar_posts ul, .HalfDark_Slice_3 #single_similar_posts ol, .HalfDark_Slice_4 #single_similar_posts ul, .HalfDark_Slice_4 #single_similar_posts ol {
    margin: 0;
    padding: 0;
    width: 100%; }
    .HalfDark #single_similar_posts ul li, .HalfDark #single_similar_posts ol li, .HalfDark_Left #single_similar_posts ul li, .HalfDark_Left #single_similar_posts ol li, .HalfDark_Right #single_similar_posts ul li, .HalfDark_Right #single_similar_posts ol li, .HalfDark_Slice_1 #single_similar_posts ul li, .HalfDark_Slice_1 #single_similar_posts ol li, .HalfDark_Slice_2 #single_similar_posts ul li, .HalfDark_Slice_2 #single_similar_posts ol li, .HalfDark_Slice_3 #single_similar_posts ul li, .HalfDark_Slice_3 #single_similar_posts ol li, .HalfDark_Slice_4 #single_similar_posts ul li, .HalfDark_Slice_4 #single_similar_posts ol li {
      float: left;
      position: relative;
      background-clip: padding-box;
      -webkit-border-radius: 0 0 5px 5px;
      -moz-border-radius: 0 0 5px 5px;
      -ms-border-radius: 0 0 5px 5px;
      -o-border-radius: 0 0 5px 5px;
      border-radius: 0 0 5px 5px;
      background: rgba(0, 0, 0, 0.3);
      display: block;
      height: 120px;
      list-style: none;
      margin: 1%;
      overflow: hidden;
      width: 48%;
      transition-property: color, background-color;
      transition-duration: 0.2s; }
      .HalfDark #single_similar_posts ul li a span, .HalfDark #single_similar_posts ul li a img, .HalfDark #single_similar_posts ol li a span, .HalfDark #single_similar_posts ol li a img, .HalfDark_Left #single_similar_posts ul li a span, .HalfDark_Left #single_similar_posts ul li a img, .HalfDark_Left #single_similar_posts ol li a span, .HalfDark_Left #single_similar_posts ol li a img, .HalfDark_Right #single_similar_posts ul li a span, .HalfDark_Right #single_similar_posts ul li a img, .HalfDark_Right #single_similar_posts ol li a span, .HalfDark_Right #single_similar_posts ol li a img, .HalfDark_Slice_1 #single_similar_posts ul li a span, .HalfDark_Slice_1 #single_similar_posts ul li a img, .HalfDark_Slice_1 #single_similar_posts ol li a span, .HalfDark_Slice_1 #single_similar_posts ol li a img, .HalfDark_Slice_2 #single_similar_posts ul li a span, .HalfDark_Slice_2 #single_similar_posts ul li a img, .HalfDark_Slice_2 #single_similar_posts ol li a span, .HalfDark_Slice_2 #single_similar_posts ol li a img, .HalfDark_Slice_3 #single_similar_posts ul li a span, .HalfDark_Slice_3 #single_similar_posts ul li a img, .HalfDark_Slice_3 #single_similar_posts ol li a span, .HalfDark_Slice_3 #single_similar_posts ol li a img, .HalfDark_Slice_4 #single_similar_posts ul li a span, .HalfDark_Slice_4 #single_similar_posts ul li a img, .HalfDark_Slice_4 #single_similar_posts ol li a span, .HalfDark_Slice_4 #single_similar_posts ol li a img {
        height: 94%;
        max-height: 100px;
        margin: 1%;
        padding: 2%;
        font-size: 1em;
        line-height: 1.3em;
        font-weight: normal;
        background: rgba(0, 0, 0, 0.5);
        color: rgba(255, 255, 255, 0.1);
        overflow: hidden;
        position: relative;
        transition-property: color, background-color, width;
        transition-duration: 0.2s;
        border: none; }
      .HalfDark #single_similar_posts ul li a img, .HalfDark #single_similar_posts ol li a img, .HalfDark_Left #single_similar_posts ul li a img, .HalfDark_Left #single_similar_posts ol li a img, .HalfDark_Right #single_similar_posts ul li a img, .HalfDark_Right #single_similar_posts ol li a img, .HalfDark_Slice_1 #single_similar_posts ul li a img, .HalfDark_Slice_1 #single_similar_posts ol li a img, .HalfDark_Slice_2 #single_similar_posts ul li a img, .HalfDark_Slice_2 #single_similar_posts ol li a img, .HalfDark_Slice_3 #single_similar_posts ul li a img, .HalfDark_Slice_3 #single_similar_posts ol li a img, .HalfDark_Slice_4 #single_similar_posts ul li a img, .HalfDark_Slice_4 #single_similar_posts ol li a img {
        width: 86%;
        float: left;
        background-clip: padding-box;
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        -ms-border-radius: 0 5px 5px 0;
        -o-border-radius: 0 5px 5px 0;
        border-radius: 0 5px 5px 0; }
      .HalfDark #single_similar_posts ul li a span, .HalfDark #single_similar_posts ol li a span, .HalfDark_Left #single_similar_posts ul li a span, .HalfDark_Left #single_similar_posts ol li a span, .HalfDark_Right #single_similar_posts ul li a span, .HalfDark_Right #single_similar_posts ol li a span, .HalfDark_Slice_1 #single_similar_posts ul li a span, .HalfDark_Slice_1 #single_similar_posts ol li a span, .HalfDark_Slice_2 #single_similar_posts ul li a span, .HalfDark_Slice_2 #single_similar_posts ol li a span, .HalfDark_Slice_3 #single_similar_posts ul li a span, .HalfDark_Slice_3 #single_similar_posts ol li a span, .HalfDark_Slice_4 #single_similar_posts ul li a span, .HalfDark_Slice_4 #single_similar_posts ol li a span {
        width: 2%;
        background-clip: padding-box;
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        -ms-border-radius: 5px 0 0 5px;
        -o-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
        float: right; }
      .HalfDark #single_similar_posts ul li a:hover img, .HalfDark #single_similar_posts ul li a:hover span, .HalfDark #single_similar_posts ol li a:hover img, .HalfDark #single_similar_posts ol li a:hover span, .HalfDark_Left #single_similar_posts ul li a:hover img, .HalfDark_Left #single_similar_posts ul li a:hover span, .HalfDark_Left #single_similar_posts ol li a:hover img, .HalfDark_Left #single_similar_posts ol li a:hover span, .HalfDark_Right #single_similar_posts ul li a:hover img, .HalfDark_Right #single_similar_posts ul li a:hover span, .HalfDark_Right #single_similar_posts ol li a:hover img, .HalfDark_Right #single_similar_posts ol li a:hover span, .HalfDark_Slice_1 #single_similar_posts ul li a:hover img, .HalfDark_Slice_1 #single_similar_posts ul li a:hover span, .HalfDark_Slice_1 #single_similar_posts ol li a:hover img, .HalfDark_Slice_1 #single_similar_posts ol li a:hover span, .HalfDark_Slice_2 #single_similar_posts ul li a:hover img, .HalfDark_Slice_2 #single_similar_posts ul li a:hover span, .HalfDark_Slice_2 #single_similar_posts ol li a:hover img, .HalfDark_Slice_2 #single_similar_posts ol li a:hover span, .HalfDark_Slice_3 #single_similar_posts ul li a:hover img, .HalfDark_Slice_3 #single_similar_posts ul li a:hover span, .HalfDark_Slice_3 #single_similar_posts ol li a:hover img, .HalfDark_Slice_3 #single_similar_posts ol li a:hover span, .HalfDark_Slice_4 #single_similar_posts ul li a:hover img, .HalfDark_Slice_4 #single_similar_posts ul li a:hover span, .HalfDark_Slice_4 #single_similar_posts ol li a:hover img, .HalfDark_Slice_4 #single_similar_posts ol li a:hover span {
        background: rgba(0, 0, 0, 0.8);
        color: rgba(255, 255, 255, 0.9); }
      .HalfDark #single_similar_posts ul li:hover, .HalfDark #single_similar_posts ol li:hover, .HalfDark_Left #single_similar_posts ul li:hover, .HalfDark_Left #single_similar_posts ol li:hover, .HalfDark_Right #single_similar_posts ul li:hover, .HalfDark_Right #single_similar_posts ol li:hover, .HalfDark_Slice_1 #single_similar_posts ul li:hover, .HalfDark_Slice_1 #single_similar_posts ol li:hover, .HalfDark_Slice_2 #single_similar_posts ul li:hover, .HalfDark_Slice_2 #single_similar_posts ol li:hover, .HalfDark_Slice_3 #single_similar_posts ul li:hover, .HalfDark_Slice_3 #single_similar_posts ol li:hover, .HalfDark_Slice_4 #single_similar_posts ul li:hover, .HalfDark_Slice_4 #single_similar_posts ol li:hover {
        background: rgba(255, 255, 255, 0.2); }
        .HalfDark #single_similar_posts ul li:hover img, .HalfDark #single_similar_posts ol li:hover img, .HalfDark_Left #single_similar_posts ul li:hover img, .HalfDark_Left #single_similar_posts ol li:hover img, .HalfDark_Right #single_similar_posts ul li:hover img, .HalfDark_Right #single_similar_posts ol li:hover img, .HalfDark_Slice_1 #single_similar_posts ul li:hover img, .HalfDark_Slice_1 #single_similar_posts ol li:hover img, .HalfDark_Slice_2 #single_similar_posts ul li:hover img, .HalfDark_Slice_2 #single_similar_posts ol li:hover img, .HalfDark_Slice_3 #single_similar_posts ul li:hover img, .HalfDark_Slice_3 #single_similar_posts ol li:hover img, .HalfDark_Slice_4 #single_similar_posts ul li:hover img, .HalfDark_Slice_4 #single_similar_posts ol li:hover img {
          width: 5%; }
        .HalfDark #single_similar_posts ul li:hover span, .HalfDark #single_similar_posts ol li:hover span, .HalfDark_Left #single_similar_posts ul li:hover span, .HalfDark_Left #single_similar_posts ol li:hover span, .HalfDark_Right #single_similar_posts ul li:hover span, .HalfDark_Right #single_similar_posts ol li:hover span, .HalfDark_Slice_1 #single_similar_posts ul li:hover span, .HalfDark_Slice_1 #single_similar_posts ol li:hover span, .HalfDark_Slice_2 #single_similar_posts ul li:hover span, .HalfDark_Slice_2 #single_similar_posts ol li:hover span, .HalfDark_Slice_3 #single_similar_posts ul li:hover span, .HalfDark_Slice_3 #single_similar_posts ol li:hover span, .HalfDark_Slice_4 #single_similar_posts ul li:hover span, .HalfDark_Slice_4 #single_similar_posts ol li:hover span {
          width: 83%; }

/* ----------------------------- ( Post Style HalfBright )--------- */
.light .corev10_single #sandbox_center a, .HalfBright .corev10_single #sandbox_center a, .HalfBright_Left .corev10_single #sandbox_center a, .HalfBright_Right .corev10_single #sandbox_center a, .HalfBright_Slice_1 .corev10_single #sandbox_center a, .HalfBright_Slice_2 .corev10_single #sandbox_center a, .HalfBright_Slice_3 .corev10_single #sandbox_center a, .HalfBright_Slice_4 .corev10_single #sandbox_center a, .White .corev10_single #sandbox_center a, .White_Left .corev10_single #sandbox_center a, .White_Right .corev10_single #sandbox_center a, .White_Slice_1 .corev10_single #sandbox_center a, .White_Slice_2 .corev10_single #sandbox_center a, .White_Slice_3 .corev10_single #sandbox_center a, .White_Slice_4 .corev10_single #sandbox_center a {
  color: #579; }
  .light .corev10_single #sandbox_center a:hover, .HalfBright .corev10_single #sandbox_center a:hover, .HalfBright_Left .corev10_single #sandbox_center a:hover, .HalfBright_Right .corev10_single #sandbox_center a:hover, .HalfBright_Slice_1 .corev10_single #sandbox_center a:hover, .HalfBright_Slice_2 .corev10_single #sandbox_center a:hover, .HalfBright_Slice_3 .corev10_single #sandbox_center a:hover, .HalfBright_Slice_4 .corev10_single #sandbox_center a:hover, .White .corev10_single #sandbox_center a:hover, .White_Left .corev10_single #sandbox_center a:hover, .White_Right .corev10_single #sandbox_center a:hover, .White_Slice_1 .corev10_single #sandbox_center a:hover, .White_Slice_2 .corev10_single #sandbox_center a:hover, .White_Slice_3 .corev10_single #sandbox_center a:hover, .White_Slice_4 .corev10_single #sandbox_center a:hover {
    color: black; }
.light #author_bio, .HalfBright #author_bio, .HalfBright_Left #author_bio, .HalfBright_Right #author_bio, .HalfBright_Slice_1 #author_bio, .HalfBright_Slice_2 #author_bio, .HalfBright_Slice_3 #author_bio, .HalfBright_Slice_4 #author_bio, .White #author_bio, .White_Left #author_bio, .White_Right #author_bio, .White_Slice_1 #author_bio, .White_Slice_2 #author_bio, .White_Slice_3 #author_bio, .White_Slice_4 #author_bio {
  background-clip: padding-box;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  background-color: rgba(255, 255, 255, 0.4);
  color: rgba(0, 0, 0, 0.9);
  float: left;
  width: 96%;
  margin: 20px 0;
  padding: 3px 2%;
  border-top: solid 3px rgba(255, 255, 255, 0.6);
  border-bottom: solid 2px rgba(0, 0, 0, 0.3); }
  .light #author_bio #title, .HalfBright #author_bio #title, .HalfBright_Left #author_bio #title, .HalfBright_Right #author_bio #title, .HalfBright_Slice_1 #author_bio #title, .HalfBright_Slice_2 #author_bio #title, .HalfBright_Slice_3 #author_bio #title, .HalfBright_Slice_4 #author_bio #title, .White #author_bio #title, .White_Left #author_bio #title, .White_Right #author_bio #title, .White_Slice_1 #author_bio #title, .White_Slice_2 #author_bio #title, .White_Slice_3 #author_bio #title, .White_Slice_4 #author_bio #title {
    float: left;
    position: relative;
    width: 98%;
    padding: 1%; }
  .light #author_bio #description, .HalfBright #author_bio #description, .HalfBright_Left #author_bio #description, .HalfBright_Right #author_bio #description, .HalfBright_Slice_1 #author_bio #description, .HalfBright_Slice_2 #author_bio #description, .HalfBright_Slice_3 #author_bio #description, .HalfBright_Slice_4 #author_bio #description, .White #author_bio #description, .White_Left #author_bio #description, .White_Right #author_bio #description, .White_Slice_1 #author_bio #description, .White_Slice_2 #author_bio #description, .White_Slice_3 #author_bio #description, .White_Slice_4 #author_bio #description {
    float: left;
    position: relative;
    background-clip: padding-box;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    width: 96%;
    padding: 10px 2%;
    margin: 1px 0;
    font-size: 1em;
    line-height: 1.4em;
    color: rgba(0, 0, 0, 0.7);
    background-color: rgba(255, 255, 255, 0.6);
    border-top: solid 1px rgba(0, 0, 0, 0.3); }
  .light #author_bio #contact, .HalfBright #author_bio #contact, .HalfBright_Left #author_bio #contact, .HalfBright_Right #author_bio #contact, .HalfBright_Slice_1 #author_bio #contact, .HalfBright_Slice_2 #author_bio #contact, .HalfBright_Slice_3 #author_bio #contact, .HalfBright_Slice_4 #author_bio #contact, .White #author_bio #contact, .White_Left #author_bio #contact, .White_Right #author_bio #contact, .White_Slice_1 #author_bio #contact, .White_Slice_2 #author_bio #contact, .White_Slice_3 #author_bio #contact, .White_Slice_4 #author_bio #contact {
    float: right;
    position: relative;
    background-clip: padding-box;
    -webkit-border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -ms-border-radius: 5px 5px 5px 5px;
    -o-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    width: 30%;
    padding: 10px 2%;
    margin: 5px 1% 2px;
    height: auto;
    display: block;
    text-align: center;
    font-size: 1.2em;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.6);
    transition-property: color, background-color;
    transition-duration: 0.2s; }
    .light #author_bio #contact a, .HalfBright #author_bio #contact a, .HalfBright_Left #author_bio #contact a, .HalfBright_Right #author_bio #contact a, .HalfBright_Slice_1 #author_bio #contact a, .HalfBright_Slice_2 #author_bio #contact a, .HalfBright_Slice_3 #author_bio #contact a, .HalfBright_Slice_4 #author_bio #contact a, .White #author_bio #contact a, .White_Left #author_bio #contact a, .White_Right #author_bio #contact a, .White_Slice_1 #author_bio #contact a, .White_Slice_2 #author_bio #contact a, .White_Slice_3 #author_bio #contact a, .White_Slice_4 #author_bio #contact a {
      float: left;
      position: relative;
      width: 100%;
      height: 100%;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.6);
      transition-property: color, background-color;
      transition-duration: 0.2s; }
    .light #author_bio #contact:hover, .HalfBright #author_bio #contact:hover, .HalfBright_Left #author_bio #contact:hover, .HalfBright_Right #author_bio #contact:hover, .HalfBright_Slice_1 #author_bio #contact:hover, .HalfBright_Slice_2 #author_bio #contact:hover, .HalfBright_Slice_3 #author_bio #contact:hover, .HalfBright_Slice_4 #author_bio #contact:hover, .White #author_bio #contact:hover, .White_Left #author_bio #contact:hover, .White_Right #author_bio #contact:hover, .White_Slice_1 #author_bio #contact:hover, .White_Slice_2 #author_bio #contact:hover, .White_Slice_3 #author_bio #contact:hover, .White_Slice_4 #author_bio #contact:hover {
      background-color: rgba(0, 0, 0, 0.9); }
      .light #author_bio #contact:hover a, .HalfBright #author_bio #contact:hover a, .HalfBright_Left #author_bio #contact:hover a, .HalfBright_Right #author_bio #contact:hover a, .HalfBright_Slice_1 #author_bio #contact:hover a, .HalfBright_Slice_2 #author_bio #contact:hover a, .HalfBright_Slice_3 #author_bio #contact:hover a, .HalfBright_Slice_4 #author_bio #contact:hover a, .White #author_bio #contact:hover a, .White_Left #author_bio #contact:hover a, .White_Right #author_bio #contact:hover a, .White_Slice_1 #author_bio #contact:hover a, .White_Slice_2 #author_bio #contact:hover a, .White_Slice_3 #author_bio #contact:hover a, .White_Slice_4 #author_bio #contact:hover a {
        color: rgba(255, 255, 255, 0.8); }
.light #single_similar_posts, .HalfBright #single_similar_posts, .HalfBright_Left #single_similar_posts, .HalfBright_Right #single_similar_posts, .HalfBright_Slice_1 #single_similar_posts, .HalfBright_Slice_2 #single_similar_posts, .HalfBright_Slice_3 #single_similar_posts, .HalfBright_Slice_4 #single_similar_posts, .White #single_similar_posts, .White_Left #single_similar_posts, .White_Right #single_similar_posts, .White_Slice_1 #single_similar_posts, .White_Slice_2 #single_similar_posts, .White_Slice_3 #single_similar_posts, .White_Slice_4 #single_similar_posts {
  float: left;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.9);
  margin: 30px 0 15px;
  padding: 5px 1%;
  width: 98%;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  border-bottom: solid 1px rgba(255, 255, 255, 0.2); }
  .light #single_similar_posts h2, .HalfBright #single_similar_posts h2, .HalfBright_Left #single_similar_posts h2, .HalfBright_Right #single_similar_posts h2, .HalfBright_Slice_1 #single_similar_posts h2, .HalfBright_Slice_2 #single_similar_posts h2, .HalfBright_Slice_3 #single_similar_posts h2, .HalfBright_Slice_4 #single_similar_posts h2, .White #single_similar_posts h2, .White_Left #single_similar_posts h2, .White_Right #single_similar_posts h2, .White_Slice_1 #single_similar_posts h2, .White_Slice_2 #single_similar_posts h2, .White_Slice_3 #single_similar_posts h2, .White_Slice_4 #single_similar_posts h2 {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.9);
    float: left;
    font-size: 1.4em;
    line-height: 1.6em;
    margin: 0;
    padding: 2%;
    width: 96%; }
  .light #single_similar_posts ul, .light #single_similar_posts ol, .HalfBright #single_similar_posts ul, .HalfBright #single_similar_posts ol, .HalfBright_Left #single_similar_posts ul, .HalfBright_Left #single_similar_posts ol, .HalfBright_Right #single_similar_posts ul, .HalfBright_Right #single_similar_posts ol, .HalfBright_Slice_1 #single_similar_posts ul, .HalfBright_Slice_1 #single_similar_posts ol, .HalfBright_Slice_2 #single_similar_posts ul, .HalfBright_Slice_2 #single_similar_posts ol, .HalfBright_Slice_3 #single_similar_posts ul, .HalfBright_Slice_3 #single_similar_posts ol, .HalfBright_Slice_4 #single_similar_posts ul, .HalfBright_Slice_4 #single_similar_posts ol, .White #single_similar_posts ul, .White #single_similar_posts ol, .White_Left #single_similar_posts ul, .White_Left #single_similar_posts ol, .White_Right #single_similar_posts ul, .White_Right #single_similar_posts ol, .White_Slice_1 #single_similar_posts ul, .White_Slice_1 #single_similar_posts ol, .White_Slice_2 #single_similar_posts ul, .White_Slice_2 #single_similar_posts ol, .White_Slice_3 #single_similar_posts ul, .White_Slice_3 #single_similar_posts ol, .White_Slice_4 #single_similar_posts ul, .White_Slice_4 #single_similar_posts ol {
    margin: 0;
    padding: 0;
    width: 100%; }
    .light #single_similar_posts ul li, .light #single_similar_posts ol li, .HalfBright #single_similar_posts ul li, .HalfBright #single_similar_posts ol li, .HalfBright_Left #single_similar_posts ul li, .HalfBright_Left #single_similar_posts ol li, .HalfBright_Right #single_similar_posts ul li, .HalfBright_Right #single_similar_posts ol li, .HalfBright_Slice_1 #single_similar_posts ul li, .HalfBright_Slice_1 #single_similar_posts ol li, .HalfBright_Slice_2 #single_similar_posts ul li, .HalfBright_Slice_2 #single_similar_posts ol li, .HalfBright_Slice_3 #single_similar_posts ul li, .HalfBright_Slice_3 #single_similar_posts ol li, .HalfBright_Slice_4 #single_similar_posts ul li, .HalfBright_Slice_4 #single_similar_posts ol li, .White #single_similar_posts ul li, .White #single_similar_posts ol li, .White_Left #single_similar_posts ul li, .White_Left #single_similar_posts ol li, .White_Right #single_similar_posts ul li, .White_Right #single_similar_posts ol li, .White_Slice_1 #single_similar_posts ul li, .White_Slice_1 #single_similar_posts ol li, .White_Slice_2 #single_similar_posts ul li, .White_Slice_2 #single_similar_posts ol li, .White_Slice_3 #single_similar_posts ul li, .White_Slice_3 #single_similar_posts ol li, .White_Slice_4 #single_similar_posts ul li, .White_Slice_4 #single_similar_posts ol li {
      float: left;
      position: relative;
      background-clip: padding-box;
      -webkit-border-radius: 0 0 5px 5px;
      -moz-border-radius: 0 0 5px 5px;
      -ms-border-radius: 0 0 5px 5px;
      -o-border-radius: 0 0 5px 5px;
      border-radius: 0 0 5px 5px;
      background: rgba(255, 255, 255, 0.3);
      display: block;
      height: 120px;
      list-style: none;
      margin: 1%;
      overflow: hidden;
      width: 48%;
      transition-property: color, background-color;
      transition-duration: 0.2s; }
      .light #single_similar_posts ul li a span, .light #single_similar_posts ul li a img, .light #single_similar_posts ol li a span, .light #single_similar_posts ol li a img, .HalfBright #single_similar_posts ul li a span, .HalfBright #single_similar_posts ul li a img, .HalfBright #single_similar_posts ol li a span, .HalfBright #single_similar_posts ol li a img, .HalfBright_Left #single_similar_posts ul li a span, .HalfBright_Left #single_similar_posts ul li a img, .HalfBright_Left #single_similar_posts ol li a span, .HalfBright_Left #single_similar_posts ol li a img, .HalfBright_Right #single_similar_posts ul li a span, .HalfBright_Right #single_similar_posts ul li a img, .HalfBright_Right #single_similar_posts ol li a span, .HalfBright_Right #single_similar_posts ol li a img, .HalfBright_Slice_1 #single_similar_posts ul li a span, .HalfBright_Slice_1 #single_similar_posts ul li a img, .HalfBright_Slice_1 #single_similar_posts ol li a span, .HalfBright_Slice_1 #single_similar_posts ol li a img, .HalfBright_Slice_2 #single_similar_posts ul li a span, .HalfBright_Slice_2 #single_similar_posts ul li a img, .HalfBright_Slice_2 #single_similar_posts ol li a span, .HalfBright_Slice_2 #single_similar_posts ol li a img, .HalfBright_Slice_3 #single_similar_posts ul li a span, .HalfBright_Slice_3 #single_similar_posts ul li a img, .HalfBright_Slice_3 #single_similar_posts ol li a span, .HalfBright_Slice_3 #single_similar_posts ol li a img, .HalfBright_Slice_4 #single_similar_posts ul li a span, .HalfBright_Slice_4 #single_similar_posts ul li a img, .HalfBright_Slice_4 #single_similar_posts ol li a span, .HalfBright_Slice_4 #single_similar_posts ol li a img, .White #single_similar_posts ul li a span, .White #single_similar_posts ul li a img, .White #single_similar_posts ol li a span, .White #single_similar_posts ol li a img, .White_Left #single_similar_posts ul li a span, .White_Left #single_similar_posts ul li a img, .White_Left #single_similar_posts ol li a span, .White_Left #single_similar_posts ol li a img, .White_Right #single_similar_posts ul li a span, .White_Right #single_similar_posts ul li a img, .White_Right #single_similar_posts ol li a span, .White_Right #single_similar_posts ol li a img, .White_Slice_1 #single_similar_posts ul li a span, .White_Slice_1 #single_similar_posts ul li a img, .White_Slice_1 #single_similar_posts ol li a span, .White_Slice_1 #single_similar_posts ol li a img, .White_Slice_2 #single_similar_posts ul li a span, .White_Slice_2 #single_similar_posts ul li a img, .White_Slice_2 #single_similar_posts ol li a span, .White_Slice_2 #single_similar_posts ol li a img, .White_Slice_3 #single_similar_posts ul li a span, .White_Slice_3 #single_similar_posts ul li a img, .White_Slice_3 #single_similar_posts ol li a span, .White_Slice_3 #single_similar_posts ol li a img, .White_Slice_4 #single_similar_posts ul li a span, .White_Slice_4 #single_similar_posts ul li a img, .White_Slice_4 #single_similar_posts ol li a span, .White_Slice_4 #single_similar_posts ol li a img {
        height: 94%;
        max-height: 100px;
        margin: 1%;
        padding: 2%;
        font-size: 1em;
        line-height: 1.3em;
        font-weight: normal;
        background: rgba(255, 255, 255, 0.5);
        color: rgba(0, 0, 0, 0.1);
        overflow: hidden;
        position: relative;
        transition-property: color, background-color, width;
        transition-duration: 0.2s;
        border: none; }
      .light #single_similar_posts ul li a img, .light #single_similar_posts ol li a img, .HalfBright #single_similar_posts ul li a img, .HalfBright #single_similar_posts ol li a img, .HalfBright_Left #single_similar_posts ul li a img, .HalfBright_Left #single_similar_posts ol li a img, .HalfBright_Right #single_similar_posts ul li a img, .HalfBright_Right #single_similar_posts ol li a img, .HalfBright_Slice_1 #single_similar_posts ul li a img, .HalfBright_Slice_1 #single_similar_posts ol li a img, .HalfBright_Slice_2 #single_similar_posts ul li a img, .HalfBright_Slice_2 #single_similar_posts ol li a img, .HalfBright_Slice_3 #single_similar_posts ul li a img, .HalfBright_Slice_3 #single_similar_posts ol li a img, .HalfBright_Slice_4 #single_similar_posts ul li a img, .HalfBright_Slice_4 #single_similar_posts ol li a img, .White #single_similar_posts ul li a img, .White #single_similar_posts ol li a img, .White_Left #single_similar_posts ul li a img, .White_Left #single_similar_posts ol li a img, .White_Right #single_similar_posts ul li a img, .White_Right #single_similar_posts ol li a img, .White_Slice_1 #single_similar_posts ul li a img, .White_Slice_1 #single_similar_posts ol li a img, .White_Slice_2 #single_similar_posts ul li a img, .White_Slice_2 #single_similar_posts ol li a img, .White_Slice_3 #single_similar_posts ul li a img, .White_Slice_3 #single_similar_posts ol li a img, .White_Slice_4 #single_similar_posts ul li a img, .White_Slice_4 #single_similar_posts ol li a img {
        width: 86%;
        float: left;
        background-clip: padding-box;
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        -ms-border-radius: 0 5px 5px 0;
        -o-border-radius: 0 5px 5px 0;
        border-radius: 0 5px 5px 0; }
      .light #single_similar_posts ul li a span, .light #single_similar_posts ol li a span, .HalfBright #single_similar_posts ul li a span, .HalfBright #single_similar_posts ol li a span, .HalfBright_Left #single_similar_posts ul li a span, .HalfBright_Left #single_similar_posts ol li a span, .HalfBright_Right #single_similar_posts ul li a span, .HalfBright_Right #single_similar_posts ol li a span, .HalfBright_Slice_1 #single_similar_posts ul li a span, .HalfBright_Slice_1 #single_similar_posts ol li a span, .HalfBright_Slice_2 #single_similar_posts ul li a span, .HalfBright_Slice_2 #single_similar_posts ol li a span, .HalfBright_Slice_3 #single_similar_posts ul li a span, .HalfBright_Slice_3 #single_similar_posts ol li a span, .HalfBright_Slice_4 #single_similar_posts ul li a span, .HalfBright_Slice_4 #single_similar_posts ol li a span, .White #single_similar_posts ul li a span, .White #single_similar_posts ol li a span, .White_Left #single_similar_posts ul li a span, .White_Left #single_similar_posts ol li a span, .White_Right #single_similar_posts ul li a span, .White_Right #single_similar_posts ol li a span, .White_Slice_1 #single_similar_posts ul li a span, .White_Slice_1 #single_similar_posts ol li a span, .White_Slice_2 #single_similar_posts ul li a span, .White_Slice_2 #single_similar_posts ol li a span, .White_Slice_3 #single_similar_posts ul li a span, .White_Slice_3 #single_similar_posts ol li a span, .White_Slice_4 #single_similar_posts ul li a span, .White_Slice_4 #single_similar_posts ol li a span {
        width: 2%;
        background-clip: padding-box;
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        -ms-border-radius: 5px 0 0 5px;
        -o-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
        float: right; }
      .light #single_similar_posts ul li a:hover img, .light #single_similar_posts ul li a:hover span, .light #single_similar_posts ol li a:hover img, .light #single_similar_posts ol li a:hover span, .HalfBright #single_similar_posts ul li a:hover img, .HalfBright #single_similar_posts ul li a:hover span, .HalfBright #single_similar_posts ol li a:hover img, .HalfBright #single_similar_posts ol li a:hover span, .HalfBright_Left #single_similar_posts ul li a:hover img, .HalfBright_Left #single_similar_posts ul li a:hover span, .HalfBright_Left #single_similar_posts ol li a:hover img, .HalfBright_Left #single_similar_posts ol li a:hover span, .HalfBright_Right #single_similar_posts ul li a:hover img, .HalfBright_Right #single_similar_posts ul li a:hover span, .HalfBright_Right #single_similar_posts ol li a:hover img, .HalfBright_Right #single_similar_posts ol li a:hover span, .HalfBright_Slice_1 #single_similar_posts ul li a:hover img, .HalfBright_Slice_1 #single_similar_posts ul li a:hover span, .HalfBright_Slice_1 #single_similar_posts ol li a:hover img, .HalfBright_Slice_1 #single_similar_posts ol li a:hover span, .HalfBright_Slice_2 #single_similar_posts ul li a:hover img, .HalfBright_Slice_2 #single_similar_posts ul li a:hover span, .HalfBright_Slice_2 #single_similar_posts ol li a:hover img, .HalfBright_Slice_2 #single_similar_posts ol li a:hover span, .HalfBright_Slice_3 #single_similar_posts ul li a:hover img, .HalfBright_Slice_3 #single_similar_posts ul li a:hover span, .HalfBright_Slice_3 #single_similar_posts ol li a:hover img, .HalfBright_Slice_3 #single_similar_posts ol li a:hover span, .HalfBright_Slice_4 #single_similar_posts ul li a:hover img, .HalfBright_Slice_4 #single_similar_posts ul li a:hover span, .HalfBright_Slice_4 #single_similar_posts ol li a:hover img, .HalfBright_Slice_4 #single_similar_posts ol li a:hover span, .White #single_similar_posts ul li a:hover img, .White #single_similar_posts ul li a:hover span, .White #single_similar_posts ol li a:hover img, .White #single_similar_posts ol li a:hover span, .White_Left #single_similar_posts ul li a:hover img, .White_Left #single_similar_posts ul li a:hover span, .White_Left #single_similar_posts ol li a:hover img, .White_Left #single_similar_posts ol li a:hover span, .White_Right #single_similar_posts ul li a:hover img, .White_Right #single_similar_posts ul li a:hover span, .White_Right #single_similar_posts ol li a:hover img, .White_Right #single_similar_posts ol li a:hover span, .White_Slice_1 #single_similar_posts ul li a:hover img, .White_Slice_1 #single_similar_posts ul li a:hover span, .White_Slice_1 #single_similar_posts ol li a:hover img, .White_Slice_1 #single_similar_posts ol li a:hover span, .White_Slice_2 #single_similar_posts ul li a:hover img, .White_Slice_2 #single_similar_posts ul li a:hover span, .White_Slice_2 #single_similar_posts ol li a:hover img, .White_Slice_2 #single_similar_posts ol li a:hover span, .White_Slice_3 #single_similar_posts ul li a:hover img, .White_Slice_3 #single_similar_posts ul li a:hover span, .White_Slice_3 #single_similar_posts ol li a:hover img, .White_Slice_3 #single_similar_posts ol li a:hover span, .White_Slice_4 #single_similar_posts ul li a:hover img, .White_Slice_4 #single_similar_posts ul li a:hover span, .White_Slice_4 #single_similar_posts ol li a:hover img, .White_Slice_4 #single_similar_posts ol li a:hover span {
        background: rgba(255, 255, 255, 0.8);
        color: rgba(0, 0, 0, 0.9); }
      .light #single_similar_posts ul li:hover, .light #single_similar_posts ol li:hover, .HalfBright #single_similar_posts ul li:hover, .HalfBright #single_similar_posts ol li:hover, .HalfBright_Left #single_similar_posts ul li:hover, .HalfBright_Left #single_similar_posts ol li:hover, .HalfBright_Right #single_similar_posts ul li:hover, .HalfBright_Right #single_similar_posts ol li:hover, .HalfBright_Slice_1 #single_similar_posts ul li:hover, .HalfBright_Slice_1 #single_similar_posts ol li:hover, .HalfBright_Slice_2 #single_similar_posts ul li:hover, .HalfBright_Slice_2 #single_similar_posts ol li:hover, .HalfBright_Slice_3 #single_similar_posts ul li:hover, .HalfBright_Slice_3 #single_similar_posts ol li:hover, .HalfBright_Slice_4 #single_similar_posts ul li:hover, .HalfBright_Slice_4 #single_similar_posts ol li:hover, .White #single_similar_posts ul li:hover, .White #single_similar_posts ol li:hover, .White_Left #single_similar_posts ul li:hover, .White_Left #single_similar_posts ol li:hover, .White_Right #single_similar_posts ul li:hover, .White_Right #single_similar_posts ol li:hover, .White_Slice_1 #single_similar_posts ul li:hover, .White_Slice_1 #single_similar_posts ol li:hover, .White_Slice_2 #single_similar_posts ul li:hover, .White_Slice_2 #single_similar_posts ol li:hover, .White_Slice_3 #single_similar_posts ul li:hover, .White_Slice_3 #single_similar_posts ol li:hover, .White_Slice_4 #single_similar_posts ul li:hover, .White_Slice_4 #single_similar_posts ol li:hover {
        background: rgba(0, 0, 0, 0.2); }
        .light #single_similar_posts ul li:hover img, .light #single_similar_posts ol li:hover img, .HalfBright #single_similar_posts ul li:hover img, .HalfBright #single_similar_posts ol li:hover img, .HalfBright_Left #single_similar_posts ul li:hover img, .HalfBright_Left #single_similar_posts ol li:hover img, .HalfBright_Right #single_similar_posts ul li:hover img, .HalfBright_Right #single_similar_posts ol li:hover img, .HalfBright_Slice_1 #single_similar_posts ul li:hover img, .HalfBright_Slice_1 #single_similar_posts ol li:hover img, .HalfBright_Slice_2 #single_similar_posts ul li:hover img, .HalfBright_Slice_2 #single_similar_posts ol li:hover img, .HalfBright_Slice_3 #single_similar_posts ul li:hover img, .HalfBright_Slice_3 #single_similar_posts ol li:hover img, .HalfBright_Slice_4 #single_similar_posts ul li:hover img, .HalfBright_Slice_4 #single_similar_posts ol li:hover img, .White #single_similar_posts ul li:hover img, .White #single_similar_posts ol li:hover img, .White_Left #single_similar_posts ul li:hover img, .White_Left #single_similar_posts ol li:hover img, .White_Right #single_similar_posts ul li:hover img, .White_Right #single_similar_posts ol li:hover img, .White_Slice_1 #single_similar_posts ul li:hover img, .White_Slice_1 #single_similar_posts ol li:hover img, .White_Slice_2 #single_similar_posts ul li:hover img, .White_Slice_2 #single_similar_posts ol li:hover img, .White_Slice_3 #single_similar_posts ul li:hover img, .White_Slice_3 #single_similar_posts ol li:hover img, .White_Slice_4 #single_similar_posts ul li:hover img, .White_Slice_4 #single_similar_posts ol li:hover img {
          width: 5%; }
        .light #single_similar_posts ul li:hover span, .light #single_similar_posts ol li:hover span, .HalfBright #single_similar_posts ul li:hover span, .HalfBright #single_similar_posts ol li:hover span, .HalfBright_Left #single_similar_posts ul li:hover span, .HalfBright_Left #single_similar_posts ol li:hover span, .HalfBright_Right #single_similar_posts ul li:hover span, .HalfBright_Right #single_similar_posts ol li:hover span, .HalfBright_Slice_1 #single_similar_posts ul li:hover span, .HalfBright_Slice_1 #single_similar_posts ol li:hover span, .HalfBright_Slice_2 #single_similar_posts ul li:hover span, .HalfBright_Slice_2 #single_similar_posts ol li:hover span, .HalfBright_Slice_3 #single_similar_posts ul li:hover span, .HalfBright_Slice_3 #single_similar_posts ol li:hover span, .HalfBright_Slice_4 #single_similar_posts ul li:hover span, .HalfBright_Slice_4 #single_similar_posts ol li:hover span, .White #single_similar_posts ul li:hover span, .White #single_similar_posts ol li:hover span, .White_Left #single_similar_posts ul li:hover span, .White_Left #single_similar_posts ol li:hover span, .White_Right #single_similar_posts ul li:hover span, .White_Right #single_similar_posts ol li:hover span, .White_Slice_1 #single_similar_posts ul li:hover span, .White_Slice_1 #single_similar_posts ol li:hover span, .White_Slice_2 #single_similar_posts ul li:hover span, .White_Slice_2 #single_similar_posts ol li:hover span, .White_Slice_3 #single_similar_posts ul li:hover span, .White_Slice_3 #single_similar_posts ol li:hover span, .White_Slice_4 #single_similar_posts ul li:hover span, .White_Slice_4 #single_similar_posts ol li:hover span {
          width: 83%; }
.light header, .HalfBright header, .HalfBright_Left header, .HalfBright_Right header, .HalfBright_Slice_1 header, .HalfBright_Slice_2 header, .HalfBright_Slice_3 header, .HalfBright_Slice_4 header, .White header, .White_Left header, .White_Right header, .White_Slice_1 header, .White_Slice_2 header, .White_Slice_3 header, .White_Slice_4 header {
  background-color: rgba(255, 255, 255, 0.6);
  color: black;
  border-top: solid 1px rgba(0, 0, 0, 0.3);
  border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
  .light header #top_slice, .HalfBright header #top_slice, .HalfBright_Left header #top_slice, .HalfBright_Right header #top_slice, .HalfBright_Slice_1 header #top_slice, .HalfBright_Slice_2 header #top_slice, .HalfBright_Slice_3 header #top_slice, .HalfBright_Slice_4 header #top_slice, .White header #top_slice, .White_Left header #top_slice, .White_Right header #top_slice, .White_Slice_1 header #top_slice, .White_Slice_2 header #top_slice, .White_Slice_3 header #top_slice, .White_Slice_4 header #top_slice {
    background-color: rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px rgba(0, 0, 0, 0.5); }
    .light header #top_slice #logo a, .HalfBright header #top_slice #logo a, .HalfBright_Left header #top_slice #logo a, .HalfBright_Right header #top_slice #logo a, .HalfBright_Slice_1 header #top_slice #logo a, .HalfBright_Slice_2 header #top_slice #logo a, .HalfBright_Slice_3 header #top_slice #logo a, .HalfBright_Slice_4 header #top_slice #logo a, .White header #top_slice #logo a, .White_Left header #top_slice #logo a, .White_Right header #top_slice #logo a, .White_Slice_1 header #top_slice #logo a, .White_Slice_2 header #top_slice #logo a, .White_Slice_3 header #top_slice #logo a, .White_Slice_4 header #top_slice #logo a {
      background-color: rgba(255, 255, 255, 0.7);
      color: rgba(0, 0, 0, 0.7);
      background-image: url(images/temp/logo_black.png); }
      .light header #top_slice #logo a:hover, .HalfBright header #top_slice #logo a:hover, .HalfBright_Left header #top_slice #logo a:hover, .HalfBright_Right header #top_slice #logo a:hover, .HalfBright_Slice_1 header #top_slice #logo a:hover, .HalfBright_Slice_2 header #top_slice #logo a:hover, .HalfBright_Slice_3 header #top_slice #logo a:hover, .HalfBright_Slice_4 header #top_slice #logo a:hover, .White header #top_slice #logo a:hover, .White_Left header #top_slice #logo a:hover, .White_Right header #top_slice #logo a:hover, .White_Slice_1 header #top_slice #logo a:hover, .White_Slice_2 header #top_slice #logo a:hover, .White_Slice_3 header #top_slice #logo a:hover, .White_Slice_4 header #top_slice #logo a:hover {
        background-color: white;
        color: black; }
    .light header #top_slice #logo h2, .HalfBright header #top_slice #logo h2, .HalfBright_Left header #top_slice #logo h2, .HalfBright_Right header #top_slice #logo h2, .HalfBright_Slice_1 header #top_slice #logo h2, .HalfBright_Slice_2 header #top_slice #logo h2, .HalfBright_Slice_3 header #top_slice #logo h2, .HalfBright_Slice_4 header #top_slice #logo h2, .White header #top_slice #logo h2, .White_Left header #top_slice #logo h2, .White_Right header #top_slice #logo h2, .White_Slice_1 header #top_slice #logo h2, .White_Slice_2 header #top_slice #logo h2, .White_Slice_3 header #top_slice #logo h2, .White_Slice_4 header #top_slice #logo h2 {
      color: rgba(0, 0, 0, 0.5); }
    .light header #top_slice #hublist #hubs ol li h3, .light header #top_slice #hublist #hubs ul li h3, .HalfBright header #top_slice #hublist #hubs ol li h3, .HalfBright header #top_slice #hublist #hubs ul li h3, .HalfBright_Left header #top_slice #hublist #hubs ol li h3, .HalfBright_Left header #top_slice #hublist #hubs ul li h3, .HalfBright_Right header #top_slice #hublist #hubs ol li h3, .HalfBright_Right header #top_slice #hublist #hubs ul li h3, .HalfBright_Slice_1 header #top_slice #hublist #hubs ol li h3, .HalfBright_Slice_1 header #top_slice #hublist #hubs ul li h3, .HalfBright_Slice_2 header #top_slice #hublist #hubs ol li h3, .HalfBright_Slice_2 header #top_slice #hublist #hubs ul li h3, .HalfBright_Slice_3 header #top_slice #hublist #hubs ol li h3, .HalfBright_Slice_3 header #top_slice #hublist #hubs ul li h3, .HalfBright_Slice_4 header #top_slice #hublist #hubs ol li h3, .HalfBright_Slice_4 header #top_slice #hublist #hubs ul li h3, .White header #top_slice #hublist #hubs ol li h3, .White header #top_slice #hublist #hubs ul li h3, .White_Left header #top_slice #hublist #hubs ol li h3, .White_Left header #top_slice #hublist #hubs ul li h3, .White_Right header #top_slice #hublist #hubs ol li h3, .White_Right header #top_slice #hublist #hubs ul li h3, .White_Slice_1 header #top_slice #hublist #hubs ol li h3, .White_Slice_1 header #top_slice #hublist #hubs ul li h3, .White_Slice_2 header #top_slice #hublist #hubs ol li h3, .White_Slice_2 header #top_slice #hublist #hubs ul li h3, .White_Slice_3 header #top_slice #hublist #hubs ol li h3, .White_Slice_3 header #top_slice #hublist #hubs ul li h3, .White_Slice_4 header #top_slice #hublist #hubs ol li h3, .White_Slice_4 header #top_slice #hublist #hubs ul li h3 {
      color: rgba(0, 0, 0, 0.05);
      background-color: rgba(255, 255, 255, 0.05); }
    .light header #top_slice #hublist #hubs ol li .hublistImage, .light header #top_slice #hublist #hubs ul li .hublistImage, .HalfBright header #top_slice #hublist #hubs ol li .hublistImage, .HalfBright header #top_slice #hublist #hubs ul li .hublistImage, .HalfBright_Left header #top_slice #hublist #hubs ol li .hublistImage, .HalfBright_Left header #top_slice #hublist #hubs ul li .hublistImage, .HalfBright_Right header #top_slice #hublist #hubs ol li .hublistImage, .HalfBright_Right header #top_slice #hublist #hubs ul li .hublistImage, .HalfBright_Slice_1 header #top_slice #hublist #hubs ol li .hublistImage, .HalfBright_Slice_1 header #top_slice #hublist #hubs ul li .hublistImage, .HalfBright_Slice_2 header #top_slice #hublist #hubs ol li .hublistImage, .HalfBright_Slice_2 header #top_slice #hublist #hubs ul li .hublistImage, .HalfBright_Slice_3 header #top_slice #hublist #hubs ol li .hublistImage, .HalfBright_Slice_3 header #top_slice #hublist #hubs ul li .hublistImage, .HalfBright_Slice_4 header #top_slice #hublist #hubs ol li .hublistImage, .HalfBright_Slice_4 header #top_slice #hublist #hubs ul li .hublistImage, .White header #top_slice #hublist #hubs ol li .hublistImage, .White header #top_slice #hublist #hubs ul li .hublistImage, .White_Left header #top_slice #hublist #hubs ol li .hublistImage, .White_Left header #top_slice #hublist #hubs ul li .hublistImage, .White_Right header #top_slice #hublist #hubs ol li .hublistImage, .White_Right header #top_slice #hublist #hubs ul li .hublistImage, .White_Slice_1 header #top_slice #hublist #hubs ol li .hublistImage, .White_Slice_1 header #top_slice #hublist #hubs ul li .hublistImage, .White_Slice_2 header #top_slice #hublist #hubs ol li .hublistImage, .White_Slice_2 header #top_slice #hublist #hubs ul li .hublistImage, .White_Slice_3 header #top_slice #hublist #hubs ol li .hublistImage, .White_Slice_3 header #top_slice #hublist #hubs ul li .hublistImage, .White_Slice_4 header #top_slice #hublist #hubs ol li .hublistImage, .White_Slice_4 header #top_slice #hublist #hubs ul li .hublistImage {
      box-shadow: inset 0px 0px 20px 5px rgba(255, 255, 255, 0.8); }
      .light header #top_slice #hublist #hubs ol li .hublistImage:hover, .light header #top_slice #hublist #hubs ul li .hublistImage:hover, .HalfBright header #top_slice #hublist #hubs ol li .hublistImage:hover, .HalfBright header #top_slice #hublist #hubs ul li .hublistImage:hover, .HalfBright_Left header #top_slice #hublist #hubs ol li .hublistImage:hover, .HalfBright_Left header #top_slice #hublist #hubs ul li .hublistImage:hover, .HalfBright_Right header #top_slice #hublist #hubs ol li .hublistImage:hover, .HalfBright_Right header #top_slice #hublist #hubs ul li .hublistImage:hover, .HalfBright_Slice_1 header #top_slice #hublist #hubs ol li .hublistImage:hover, .HalfBright_Slice_1 header #top_slice #hublist #hubs ul li .hublistImage:hover, .HalfBright_Slice_2 header #top_slice #hublist #hubs ol li .hublistImage:hover, .HalfBright_Slice_2 header #top_slice #hublist #hubs ul li .hublistImage:hover, .HalfBright_Slice_3 header #top_slice #hublist #hubs ol li .hublistImage:hover, .HalfBright_Slice_3 header #top_slice #hublist #hubs ul li .hublistImage:hover, .HalfBright_Slice_4 header #top_slice #hublist #hubs ol li .hublistImage:hover, .HalfBright_Slice_4 header #top_slice #hublist #hubs ul li .hublistImage:hover, .White header #top_slice #hublist #hubs ol li .hublistImage:hover, .White header #top_slice #hublist #hubs ul li .hublistImage:hover, .White_Left header #top_slice #hublist #hubs ol li .hublistImage:hover, .White_Left header #top_slice #hublist #hubs ul li .hublistImage:hover, .White_Right header #top_slice #hublist #hubs ol li .hublistImage:hover, .White_Right header #top_slice #hublist #hubs ul li .hublistImage:hover, .White_Slice_1 header #top_slice #hublist #hubs ol li .hublistImage:hover, .White_Slice_1 header #top_slice #hublist #hubs ul li .hublistImage:hover, .White_Slice_2 header #top_slice #hublist #hubs ol li .hublistImage:hover, .White_Slice_2 header #top_slice #hublist #hubs ul li .hublistImage:hover, .White_Slice_3 header #top_slice #hublist #hubs ol li .hublistImage:hover, .White_Slice_3 header #top_slice #hublist #hubs ul li .hublistImage:hover, .White_Slice_4 header #top_slice #hublist #hubs ol li .hublistImage:hover, .White_Slice_4 header #top_slice #hublist #hubs ul li .hublistImage:hover {
        box-shadow: inset 0 0 5px 1px white; }
    .light header #top_slice #hublist #hubs ol li:hover h3, .light header #top_slice #hublist #hubs ul li:hover h3, .HalfBright header #top_slice #hublist #hubs ol li:hover h3, .HalfBright header #top_slice #hublist #hubs ul li:hover h3, .HalfBright_Left header #top_slice #hublist #hubs ol li:hover h3, .HalfBright_Left header #top_slice #hublist #hubs ul li:hover h3, .HalfBright_Right header #top_slice #hublist #hubs ol li:hover h3, .HalfBright_Right header #top_slice #hublist #hubs ul li:hover h3, .HalfBright_Slice_1 header #top_slice #hublist #hubs ol li:hover h3, .HalfBright_Slice_1 header #top_slice #hublist #hubs ul li:hover h3, .HalfBright_Slice_2 header #top_slice #hublist #hubs ol li:hover h3, .HalfBright_Slice_2 header #top_slice #hublist #hubs ul li:hover h3, .HalfBright_Slice_3 header #top_slice #hublist #hubs ol li:hover h3, .HalfBright_Slice_3 header #top_slice #hublist #hubs ul li:hover h3, .HalfBright_Slice_4 header #top_slice #hublist #hubs ol li:hover h3, .HalfBright_Slice_4 header #top_slice #hublist #hubs ul li:hover h3, .White header #top_slice #hublist #hubs ol li:hover h3, .White header #top_slice #hublist #hubs ul li:hover h3, .White_Left header #top_slice #hublist #hubs ol li:hover h3, .White_Left header #top_slice #hublist #hubs ul li:hover h3, .White_Right header #top_slice #hublist #hubs ol li:hover h3, .White_Right header #top_slice #hublist #hubs ul li:hover h3, .White_Slice_1 header #top_slice #hublist #hubs ol li:hover h3, .White_Slice_1 header #top_slice #hublist #hubs ul li:hover h3, .White_Slice_2 header #top_slice #hublist #hubs ol li:hover h3, .White_Slice_2 header #top_slice #hublist #hubs ul li:hover h3, .White_Slice_3 header #top_slice #hublist #hubs ol li:hover h3, .White_Slice_3 header #top_slice #hublist #hubs ul li:hover h3, .White_Slice_4 header #top_slice #hublist #hubs ol li:hover h3, .White_Slice_4 header #top_slice #hublist #hubs ul li:hover h3 {
      background-color: rgba(255, 255, 255, 0.7);
      color: rgba(0, 0, 0, 0.9); }
    .light header #top_slice #hublist #hubs ol li:hover .hublistImage, .light header #top_slice #hublist #hubs ul li:hover .hublistImage, .HalfBright header #top_slice #hublist #hubs ol li:hover .hublistImage, .HalfBright header #top_slice #hublist #hubs ul li:hover .hublistImage, .HalfBright_Left header #top_slice #hublist #hubs ol li:hover .hublistImage, .HalfBright_Left header #top_slice #hublist #hubs ul li:hover .hublistImage, .HalfBright_Right header #top_slice #hublist #hubs ol li:hover .hublistImage, .HalfBright_Right header #top_slice #hublist #hubs ul li:hover .hublistImage, .HalfBright_Slice_1 header #top_slice #hublist #hubs ol li:hover .hublistImage, .HalfBright_Slice_1 header #top_slice #hublist #hubs ul li:hover .hublistImage, .HalfBright_Slice_2 header #top_slice #hublist #hubs ol li:hover .hublistImage, .HalfBright_Slice_2 header #top_slice #hublist #hubs ul li:hover .hublistImage, .HalfBright_Slice_3 header #top_slice #hublist #hubs ol li:hover .hublistImage, .HalfBright_Slice_3 header #top_slice #hublist #hubs ul li:hover .hublistImage, .HalfBright_Slice_4 header #top_slice #hublist #hubs ol li:hover .hublistImage, .HalfBright_Slice_4 header #top_slice #hublist #hubs ul li:hover .hublistImage, .White header #top_slice #hublist #hubs ol li:hover .hublistImage, .White header #top_slice #hublist #hubs ul li:hover .hublistImage, .White_Left header #top_slice #hublist #hubs ol li:hover .hublistImage, .White_Left header #top_slice #hublist #hubs ul li:hover .hublistImage, .White_Right header #top_slice #hublist #hubs ol li:hover .hublistImage, .White_Right header #top_slice #hublist #hubs ul li:hover .hublistImage, .White_Slice_1 header #top_slice #hublist #hubs ol li:hover .hublistImage, .White_Slice_1 header #top_slice #hublist #hubs ul li:hover .hublistImage, .White_Slice_2 header #top_slice #hublist #hubs ol li:hover .hublistImage, .White_Slice_2 header #top_slice #hublist #hubs ul li:hover .hublistImage, .White_Slice_3 header #top_slice #hublist #hubs ol li:hover .hublistImage, .White_Slice_3 header #top_slice #hublist #hubs ul li:hover .hublistImage, .White_Slice_4 header #top_slice #hublist #hubs ol li:hover .hublistImage, .White_Slice_4 header #top_slice #hublist #hubs ul li:hover .hublistImage {
      box-shadow: inset 0px 0px 3px 1px rgba(255, 255, 255, 0.5); }
    .light header #top_slice #hubbutton a, .HalfBright header #top_slice #hubbutton a, .HalfBright_Left header #top_slice #hubbutton a, .HalfBright_Right header #top_slice #hubbutton a, .HalfBright_Slice_1 header #top_slice #hubbutton a, .HalfBright_Slice_2 header #top_slice #hubbutton a, .HalfBright_Slice_3 header #top_slice #hubbutton a, .HalfBright_Slice_4 header #top_slice #hubbutton a, .White header #top_slice #hubbutton a, .White_Left header #top_slice #hubbutton a, .White_Right header #top_slice #hubbutton a, .White_Slice_1 header #top_slice #hubbutton a, .White_Slice_2 header #top_slice #hubbutton a, .White_Slice_3 header #top_slice #hubbutton a, .White_Slice_4 header #top_slice #hubbutton a {
      color: rgba(0, 0, 0, 0.5);
      background-color: rgba(255, 255, 255, 0.5);
      border-left: solid 1px rgba(0, 0, 0, 0.5);
      background-image: url(images/temp/hubs_black.png); }
      .light header #top_slice #hubbutton a:hover, .HalfBright header #top_slice #hubbutton a:hover, .HalfBright_Left header #top_slice #hubbutton a:hover, .HalfBright_Right header #top_slice #hubbutton a:hover, .HalfBright_Slice_1 header #top_slice #hubbutton a:hover, .HalfBright_Slice_2 header #top_slice #hubbutton a:hover, .HalfBright_Slice_3 header #top_slice #hubbutton a:hover, .HalfBright_Slice_4 header #top_slice #hubbutton a:hover, .White header #top_slice #hubbutton a:hover, .White_Left header #top_slice #hubbutton a:hover, .White_Right header #top_slice #hubbutton a:hover, .White_Slice_1 header #top_slice #hubbutton a:hover, .White_Slice_2 header #top_slice #hubbutton a:hover, .White_Slice_3 header #top_slice #hubbutton a:hover, .White_Slice_4 header #top_slice #hubbutton a:hover {
        color: black;
        background-color: white; }
    .light header #top_slice #menubutton span, .HalfBright header #top_slice #menubutton span, .HalfBright_Left header #top_slice #menubutton span, .HalfBright_Right header #top_slice #menubutton span, .HalfBright_Slice_1 header #top_slice #menubutton span, .HalfBright_Slice_2 header #top_slice #menubutton span, .HalfBright_Slice_3 header #top_slice #menubutton span, .HalfBright_Slice_4 header #top_slice #menubutton span, .White header #top_slice #menubutton span, .White_Left header #top_slice #menubutton span, .White_Right header #top_slice #menubutton span, .White_Slice_1 header #top_slice #menubutton span, .White_Slice_2 header #top_slice #menubutton span, .White_Slice_3 header #top_slice #menubutton span, .White_Slice_4 header #top_slice #menubutton span {
      border-left: solid 1px rgba(0, 0, 0, 0.5);
      background-image: url(images/temp/menu_black.png);
      color: rgba(0, 0, 0, 0.5);
      background-color: rgba(255, 255, 255, 0.5); }
      .light header #top_slice #menubutton span:hover, .HalfBright header #top_slice #menubutton span:hover, .HalfBright_Left header #top_slice #menubutton span:hover, .HalfBright_Right header #top_slice #menubutton span:hover, .HalfBright_Slice_1 header #top_slice #menubutton span:hover, .HalfBright_Slice_2 header #top_slice #menubutton span:hover, .HalfBright_Slice_3 header #top_slice #menubutton span:hover, .HalfBright_Slice_4 header #top_slice #menubutton span:hover, .White header #top_slice #menubutton span:hover, .White_Left header #top_slice #menubutton span:hover, .White_Right header #top_slice #menubutton span:hover, .White_Slice_1 header #top_slice #menubutton span:hover, .White_Slice_2 header #top_slice #menubutton span:hover, .White_Slice_3 header #top_slice #menubutton span:hover, .White_Slice_4 header #top_slice #menubutton span:hover {
        color: black;
        background-color: white; }
  .light header #bottom_slice, .HalfBright header #bottom_slice, .HalfBright_Left header #bottom_slice, .HalfBright_Right header #bottom_slice, .HalfBright_Slice_1 header #bottom_slice, .HalfBright_Slice_2 header #bottom_slice, .HalfBright_Slice_3 header #bottom_slice, .HalfBright_Slice_4 header #bottom_slice, .White header #bottom_slice, .White_Left header #bottom_slice, .White_Right header #bottom_slice, .White_Slice_1 header #bottom_slice, .White_Slice_2 header #bottom_slice, .White_Slice_3 header #bottom_slice, .White_Slice_4 header #bottom_slice {
    color: transparent;
    background-color: rgba(255, 255, 255, 0); }
    .light header #bottom_slice #search_bar #s, .HalfBright header #bottom_slice #search_bar #s, .HalfBright_Left header #bottom_slice #search_bar #s, .HalfBright_Right header #bottom_slice #search_bar #s, .HalfBright_Slice_1 header #bottom_slice #search_bar #s, .HalfBright_Slice_2 header #bottom_slice #search_bar #s, .HalfBright_Slice_3 header #bottom_slice #search_bar #s, .HalfBright_Slice_4 header #bottom_slice #search_bar #s, .White header #bottom_slice #search_bar #s, .White_Left header #bottom_slice #search_bar #s, .White_Right header #bottom_slice #search_bar #s, .White_Slice_1 header #bottom_slice #search_bar #s, .White_Slice_2 header #bottom_slice #search_bar #s, .White_Slice_3 header #bottom_slice #search_bar #s, .White_Slice_4 header #bottom_slice #search_bar #s {
      background-color: rgba(0, 0, 0, 0.4);
      color: rgba(255, 255, 255, 0.8); }
      .light header #bottom_slice #search_bar #s:hover, .HalfBright header #bottom_slice #search_bar #s:hover, .HalfBright_Left header #bottom_slice #search_bar #s:hover, .HalfBright_Right header #bottom_slice #search_bar #s:hover, .HalfBright_Slice_1 header #bottom_slice #search_bar #s:hover, .HalfBright_Slice_2 header #bottom_slice #search_bar #s:hover, .HalfBright_Slice_3 header #bottom_slice #search_bar #s:hover, .HalfBright_Slice_4 header #bottom_slice #search_bar #s:hover, .White header #bottom_slice #search_bar #s:hover, .White_Left header #bottom_slice #search_bar #s:hover, .White_Right header #bottom_slice #search_bar #s:hover, .White_Slice_1 header #bottom_slice #search_bar #s:hover, .White_Slice_2 header #bottom_slice #search_bar #s:hover, .White_Slice_3 header #bottom_slice #search_bar #s:hover, .White_Slice_4 header #bottom_slice #search_bar #s:hover {
        background-color: rgba(0, 0, 0, 0.5);
        color: rgba(255, 255, 255, 0.9); }
    .light header #bottom_slice .menubox, .HalfBright header #bottom_slice .menubox, .HalfBright_Left header #bottom_slice .menubox, .HalfBright_Right header #bottom_slice .menubox, .HalfBright_Slice_1 header #bottom_slice .menubox, .HalfBright_Slice_2 header #bottom_slice .menubox, .HalfBright_Slice_3 header #bottom_slice .menubox, .HalfBright_Slice_4 header #bottom_slice .menubox, .White header #bottom_slice .menubox, .White_Left header #bottom_slice .menubox, .White_Right header #bottom_slice .menubox, .White_Slice_1 header #bottom_slice .menubox, .White_Slice_2 header #bottom_slice .menubox, .White_Slice_3 header #bottom_slice .menubox, .White_Slice_4 header #bottom_slice .menubox {
      background-color: rgba(255, 255, 255, 0.7); }
    .light header #bottom_slice #main_menu li a, .HalfBright header #bottom_slice #main_menu li a, .HalfBright_Left header #bottom_slice #main_menu li a, .HalfBright_Right header #bottom_slice #main_menu li a, .HalfBright_Slice_1 header #bottom_slice #main_menu li a, .HalfBright_Slice_2 header #bottom_slice #main_menu li a, .HalfBright_Slice_3 header #bottom_slice #main_menu li a, .HalfBright_Slice_4 header #bottom_slice #main_menu li a, .White header #bottom_slice #main_menu li a, .White_Left header #bottom_slice #main_menu li a, .White_Right header #bottom_slice #main_menu li a, .White_Slice_1 header #bottom_slice #main_menu li a, .White_Slice_2 header #bottom_slice #main_menu li a, .White_Slice_3 header #bottom_slice #main_menu li a, .White_Slice_4 header #bottom_slice #main_menu li a {
      color: rgba(0, 0, 0, 0.7);
      background-color: rgba(0, 0, 0, 0.15); }
      .light header #bottom_slice #main_menu li a:hover, .HalfBright header #bottom_slice #main_menu li a:hover, .HalfBright_Left header #bottom_slice #main_menu li a:hover, .HalfBright_Right header #bottom_slice #main_menu li a:hover, .HalfBright_Slice_1 header #bottom_slice #main_menu li a:hover, .HalfBright_Slice_2 header #bottom_slice #main_menu li a:hover, .HalfBright_Slice_3 header #bottom_slice #main_menu li a:hover, .HalfBright_Slice_4 header #bottom_slice #main_menu li a:hover, .White header #bottom_slice #main_menu li a:hover, .White_Left header #bottom_slice #main_menu li a:hover, .White_Right header #bottom_slice #main_menu li a:hover, .White_Slice_1 header #bottom_slice #main_menu li a:hover, .White_Slice_2 header #bottom_slice #main_menu li a:hover, .White_Slice_3 header #bottom_slice #main_menu li a:hover, .White_Slice_4 header #bottom_slice #main_menu li a:hover {
        background-color: rgba(0, 0, 0, 0.8);
        color: rgba(255, 255, 255, 0.9); }
    .light header #bottom_slice #core_team_menu a, .HalfBright header #bottom_slice #core_team_menu a, .HalfBright_Left header #bottom_slice #core_team_menu a, .HalfBright_Right header #bottom_slice #core_team_menu a, .HalfBright_Slice_1 header #bottom_slice #core_team_menu a, .HalfBright_Slice_2 header #bottom_slice #core_team_menu a, .HalfBright_Slice_3 header #bottom_slice #core_team_menu a, .HalfBright_Slice_4 header #bottom_slice #core_team_menu a, .White header #bottom_slice #core_team_menu a, .White_Left header #bottom_slice #core_team_menu a, .White_Right header #bottom_slice #core_team_menu a, .White_Slice_1 header #bottom_slice #core_team_menu a, .White_Slice_2 header #bottom_slice #core_team_menu a, .White_Slice_3 header #bottom_slice #core_team_menu a, .White_Slice_4 header #bottom_slice #core_team_menu a {
      background-color: rgba(255, 255, 255, 0);
      color: rgba(0, 0, 0, 0.2); }
      .light header #bottom_slice #core_team_menu a:hover, .HalfBright header #bottom_slice #core_team_menu a:hover, .HalfBright_Left header #bottom_slice #core_team_menu a:hover, .HalfBright_Right header #bottom_slice #core_team_menu a:hover, .HalfBright_Slice_1 header #bottom_slice #core_team_menu a:hover, .HalfBright_Slice_2 header #bottom_slice #core_team_menu a:hover, .HalfBright_Slice_3 header #bottom_slice #core_team_menu a:hover, .HalfBright_Slice_4 header #bottom_slice #core_team_menu a:hover, .White header #bottom_slice #core_team_menu a:hover, .White_Left header #bottom_slice #core_team_menu a:hover, .White_Right header #bottom_slice #core_team_menu a:hover, .White_Slice_1 header #bottom_slice #core_team_menu a:hover, .White_Slice_2 header #bottom_slice #core_team_menu a:hover, .White_Slice_3 header #bottom_slice #core_team_menu a:hover, .White_Slice_4 header #bottom_slice #core_team_menu a:hover {
        background-color: rgba(0, 0, 0, 0.85);
        color: rgba(255, 255, 255, 0.9); }
    .light header #bottom_slice #core_team_menu:hover, .HalfBright header #bottom_slice #core_team_menu:hover, .HalfBright_Left header #bottom_slice #core_team_menu:hover, .HalfBright_Right header #bottom_slice #core_team_menu:hover, .HalfBright_Slice_1 header #bottom_slice #core_team_menu:hover, .HalfBright_Slice_2 header #bottom_slice #core_team_menu:hover, .HalfBright_Slice_3 header #bottom_slice #core_team_menu:hover, .HalfBright_Slice_4 header #bottom_slice #core_team_menu:hover, .White header #bottom_slice #core_team_menu:hover, .White_Left header #bottom_slice #core_team_menu:hover, .White_Right header #bottom_slice #core_team_menu:hover, .White_Slice_1 header #bottom_slice #core_team_menu:hover, .White_Slice_2 header #bottom_slice #core_team_menu:hover, .White_Slice_3 header #bottom_slice #core_team_menu:hover, .White_Slice_4 header #bottom_slice #core_team_menu:hover {
      background-color: rgba(0, 0, 0, 0.5); }
  .light header:hover, .light header:active, .HalfBright header:hover, .HalfBright header:active, .HalfBright_Left header:hover, .HalfBright_Left header:active, .HalfBright_Right header:hover, .HalfBright_Right header:active, .HalfBright_Slice_1 header:hover, .HalfBright_Slice_1 header:active, .HalfBright_Slice_2 header:hover, .HalfBright_Slice_2 header:active, .HalfBright_Slice_3 header:hover, .HalfBright_Slice_3 header:active, .HalfBright_Slice_4 header:hover, .HalfBright_Slice_4 header:active, .White header:hover, .White header:active, .White_Left header:hover, .White_Left header:active, .White_Right header:hover, .White_Right header:active, .White_Slice_1 header:hover, .White_Slice_1 header:active, .White_Slice_2 header:hover, .White_Slice_2 header:active, .White_Slice_3 header:hover, .White_Slice_3 header:active, .White_Slice_4 header:hover, .White_Slice_4 header:active {
    background-color: rgba(255, 255, 255, 0.8) !important; }
    .light header:hover #bottom_slice, .light header:active #bottom_slice, .HalfBright header:hover #bottom_slice, .HalfBright header:active #bottom_slice, .HalfBright_Left header:hover #bottom_slice, .HalfBright_Left header:active #bottom_slice, .HalfBright_Right header:hover #bottom_slice, .HalfBright_Right header:active #bottom_slice, .HalfBright_Slice_1 header:hover #bottom_slice, .HalfBright_Slice_1 header:active #bottom_slice, .HalfBright_Slice_2 header:hover #bottom_slice, .HalfBright_Slice_2 header:active #bottom_slice, .HalfBright_Slice_3 header:hover #bottom_slice, .HalfBright_Slice_3 header:active #bottom_slice, .HalfBright_Slice_4 header:hover #bottom_slice, .HalfBright_Slice_4 header:active #bottom_slice, .White header:hover #bottom_slice, .White header:active #bottom_slice, .White_Left header:hover #bottom_slice, .White_Left header:active #bottom_slice, .White_Right header:hover #bottom_slice, .White_Right header:active #bottom_slice, .White_Slice_1 header:hover #bottom_slice, .White_Slice_1 header:active #bottom_slice, .White_Slice_2 header:hover #bottom_slice, .White_Slice_2 header:active #bottom_slice, .White_Slice_3 header:hover #bottom_slice, .White_Slice_3 header:active #bottom_slice, .White_Slice_4 header:hover #bottom_slice, .White_Slice_4 header:active #bottom_slice {
      background-color: rgba(255, 255, 255, 0.5);
      color: rgba(0, 0, 0, 0.8); }
.light #sitecontent.corev10_index, .HalfBright #sitecontent.corev10_index, .HalfBright_Left #sitecontent.corev10_index, .HalfBright_Right #sitecontent.corev10_index, .HalfBright_Slice_1 #sitecontent.corev10_index, .HalfBright_Slice_2 #sitecontent.corev10_index, .HalfBright_Slice_3 #sitecontent.corev10_index, .HalfBright_Slice_4 #sitecontent.corev10_index, .White #sitecontent.corev10_index, .White_Left #sitecontent.corev10_index, .White_Right #sitecontent.corev10_index, .White_Slice_1 #sitecontent.corev10_index, .White_Slice_2 #sitecontent.corev10_index, .White_Slice_3 #sitecontent.corev10_index, .White_Slice_4 #sitecontent.corev10_index {
  background-color: rgba(255, 255, 255, 0.6);
  color: black; }
  .light #sitecontent.corev10_index #sandbox_center, .HalfBright #sitecontent.corev10_index #sandbox_center, .HalfBright_Left #sitecontent.corev10_index #sandbox_center, .HalfBright_Right #sitecontent.corev10_index #sandbox_center, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center, .White #sitecontent.corev10_index #sandbox_center, .White_Left #sitecontent.corev10_index #sandbox_center, .White_Right #sitecontent.corev10_index #sandbox_center, .White_Slice_1 #sitecontent.corev10_index #sandbox_center, .White_Slice_2 #sitecontent.corev10_index #sandbox_center, .White_Slice_3 #sitecontent.corev10_index #sandbox_center, .White_Slice_4 #sitecontent.corev10_index #sandbox_center {
    border-top: solid 1px rgba(0, 0, 0, 0.3);
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.6); }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .White #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label {
      background-color: rgba(255, 255, 255, 0.3);
      color: rgba(0, 0, 0, 0.3);
      border: solid 1px rgba(0, 0, 0, 0.8); }
      .light #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .White #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio] + label:hover {
        background-color: white;
        color: black; }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .White #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow input[type=radio]:checked + label {
      background-color: black;
      color: white;
      border-color: black; }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .White #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a {
      background-color: rgba(255, 255, 255, 0);
      color: transparent;
      border: solid 1px rgba(0, 0, 0, 0.8); }
      .light #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .White #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .category a:hover {
        background-color: white;
        color: black; }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .White #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost h3 {
      color: rgba(0, 0, 0, 0.3);
      background-color: rgba(255, 255, 255, 0.6); }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .White #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow #slides #overflow .inner .slidepost .excerpt p {
      color: rgba(0, 0, 0, 0.2);
      background-color: rgba(255, 255, 255, 0.1); }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .White #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost h3 {
      background-color: rgba(255, 255, 255, 0.9);
      color: rgba(0, 0, 0, 0.9); }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .White #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .excerpt p {
      background-color: rgba(255, 255, 255, 0.7);
      color: rgba(0, 0, 0, 0.8); }
    .light #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .light #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .White #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .White #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a {
      color: rgba(0, 0, 0, 0.6);
      background-color: rgba(255, 255, 255, 0.6); }
      .light #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .light #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .HalfBright #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .HalfBright_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .HalfBright_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .White #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .White #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .White_Left #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .White_Right #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .White_Slice_1 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .White_Slice_2 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .White_Slice_3 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost input[type=radio] + label:hover, .White_Slice_4 #sitecontent.corev10_index #sandbox_center #core_slideshow:hover #slides #overflow .inner .slidepost .category a:hover {
        color: black;
        background-color: white; }
    .light #sitecontent.corev10_index #sandbox_center .postcard, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard, .White #sitecontent.corev10_index #sandbox_center .postcard, .White_Left #sitecontent.corev10_index #sandbox_center .postcard, .White_Right #sitecontent.corev10_index #sandbox_center .postcard, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard {
      background-color: white; }
      .light #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .White #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .White_Left #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .White_Right #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .frontimage, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .frontimage {
        box-shadow: inset 0px 0px 40px 5px rgba(255, 255, 255, 0.95); }
        .light #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .White #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .White_Left #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .White_Right #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .frontimage:hover {
          box-shadow: inset 0 0 5px 1px white; }
      .light #sitecontent.corev10_index #sandbox_center .postcard .title, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard .title, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard .title, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard .title, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .title, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .title, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .title, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .title, .White #sitecontent.corev10_index #sandbox_center .postcard .title, .White_Left #sitecontent.corev10_index #sandbox_center .postcard .title, .White_Right #sitecontent.corev10_index #sandbox_center .postcard .title, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .title, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .title, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .title, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .title {
        background-color: rgba(255, 255, 255, 0.8); }
      .light #sitecontent.corev10_index #sandbox_center .postcard .category, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard .category, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard .category, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard .category, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .category, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .category, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .category, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .category, .White #sitecontent.corev10_index #sandbox_center .postcard .category, .White_Left #sitecontent.corev10_index #sandbox_center .postcard .category, .White_Right #sitecontent.corev10_index #sandbox_center .postcard .category, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .category, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .category, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .category, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .category {
        color: rgba(0, 0, 0, 0.5);
        background-color: rgba(255, 255, 255, 0.5); }
      .light #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .White #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .White_Left #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .White_Right #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard .excerpt p {
        background-color: rgba(255, 255, 255, 0);
        color: transparent;
        box-shadow: 0px 0px 50px 30px rgba(255, 255, 255, 0); }
      .light #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .White #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .White_Left #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .White_Right #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard:hover .excerpt p {
        background-color: rgba(255, 255, 255, 0.6);
        color: rgba(0, 0, 0, 0.9);
        box-shadow: 0px 0px 3px 0px rgba(255, 255, 255, 0.7); }
      .light #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .HalfBright #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .HalfBright_Left #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .HalfBright_Right #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .HalfBright_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .HalfBright_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .HalfBright_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .HalfBright_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .White #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .White_Left #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .White_Right #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .White_Slice_1 #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .White_Slice_2 #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .White_Slice_3 #sitecontent.corev10_index #sandbox_center .postcard:hover .category, .White_Slice_4 #sitecontent.corev10_index #sandbox_center .postcard:hover .category {
        background-color: rgba(255, 255, 255, 0.05);
        color: rgba(0, 0, 0, 0.05); }
.light #archive_top, .light #hub_top, .HalfBright #archive_top, .HalfBright #hub_top, .HalfBright_Left #archive_top, .HalfBright_Left #hub_top, .HalfBright_Right #archive_top, .HalfBright_Right #hub_top, .HalfBright_Slice_1 #archive_top, .HalfBright_Slice_1 #hub_top, .HalfBright_Slice_2 #archive_top, .HalfBright_Slice_2 #hub_top, .HalfBright_Slice_3 #archive_top, .HalfBright_Slice_3 #hub_top, .HalfBright_Slice_4 #archive_top, .HalfBright_Slice_4 #hub_top, .White #archive_top, .White #hub_top, .White_Left #archive_top, .White_Left #hub_top, .White_Right #archive_top, .White_Right #hub_top, .White_Slice_1 #archive_top, .White_Slice_1 #hub_top, .White_Slice_2 #archive_top, .White_Slice_2 #hub_top, .White_Slice_3 #archive_top, .White_Slice_3 #hub_top, .White_Slice_4 #archive_top, .White_Slice_4 #hub_top {
  background-color: rgba(255, 255, 255, 0.2);
  color: black; }
  .light #archive_top h3, .light #hub_top h3, .HalfBright #archive_top h3, .HalfBright #hub_top h3, .HalfBright_Left #archive_top h3, .HalfBright_Left #hub_top h3, .HalfBright_Right #archive_top h3, .HalfBright_Right #hub_top h3, .HalfBright_Slice_1 #archive_top h3, .HalfBright_Slice_1 #hub_top h3, .HalfBright_Slice_2 #archive_top h3, .HalfBright_Slice_2 #hub_top h3, .HalfBright_Slice_3 #archive_top h3, .HalfBright_Slice_3 #hub_top h3, .HalfBright_Slice_4 #archive_top h3, .HalfBright_Slice_4 #hub_top h3, .White #archive_top h3, .White #hub_top h3, .White_Left #archive_top h3, .White_Left #hub_top h3, .White_Right #archive_top h3, .White_Right #hub_top h3, .White_Slice_1 #archive_top h3, .White_Slice_1 #hub_top h3, .White_Slice_2 #archive_top h3, .White_Slice_2 #hub_top h3, .White_Slice_3 #archive_top h3, .White_Slice_3 #hub_top h3, .White_Slice_4 #archive_top h3, .White_Slice_4 #hub_top h3 {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.8); }
.light .archive_text, .light .hub_text, .HalfBright .archive_text, .HalfBright .hub_text, .HalfBright_Left .archive_text, .HalfBright_Left .hub_text, .HalfBright_Right .archive_text, .HalfBright_Right .hub_text, .HalfBright_Slice_1 .archive_text, .HalfBright_Slice_1 .hub_text, .HalfBright_Slice_2 .archive_text, .HalfBright_Slice_2 .hub_text, .HalfBright_Slice_3 .archive_text, .HalfBright_Slice_3 .hub_text, .HalfBright_Slice_4 .archive_text, .HalfBright_Slice_4 .hub_text, .White .archive_text, .White .hub_text, .White_Left .archive_text, .White_Left .hub_text, .White_Right .archive_text, .White_Right .hub_text, .White_Slice_1 .archive_text, .White_Slice_1 .hub_text, .White_Slice_2 .archive_text, .White_Slice_2 .hub_text, .White_Slice_3 .archive_text, .White_Slice_3 .hub_text, .White_Slice_4 .archive_text, .White_Slice_4 .hub_text {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.7);
  border-bottom: solid 1px rgba(0, 0, 0, 0.2); }
.light .corev10_single #sandbox_center, .HalfBright .corev10_single #sandbox_center, .HalfBright_Left .corev10_single #sandbox_center, .HalfBright_Right .corev10_single #sandbox_center, .HalfBright_Slice_1 .corev10_single #sandbox_center, .HalfBright_Slice_2 .corev10_single #sandbox_center, .HalfBright_Slice_3 .corev10_single #sandbox_center, .HalfBright_Slice_4 .corev10_single #sandbox_center, .White .corev10_single #sandbox_center, .White_Left .corev10_single #sandbox_center, .White_Right .corev10_single #sandbox_center, .White_Slice_1 .corev10_single #sandbox_center, .White_Slice_2 .corev10_single #sandbox_center, .White_Slice_3 .corev10_single #sandbox_center, .White_Slice_4 .corev10_single #sandbox_center {
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.3);
  color: rgba(0, 0, 0, 0.8); }
  .light .corev10_single #sandbox_center a, .HalfBright .corev10_single #sandbox_center a, .HalfBright_Left .corev10_single #sandbox_center a, .HalfBright_Right .corev10_single #sandbox_center a, .HalfBright_Slice_1 .corev10_single #sandbox_center a, .HalfBright_Slice_2 .corev10_single #sandbox_center a, .HalfBright_Slice_3 .corev10_single #sandbox_center a, .HalfBright_Slice_4 .corev10_single #sandbox_center a, .White .corev10_single #sandbox_center a, .White_Left .corev10_single #sandbox_center a, .White_Right .corev10_single #sandbox_center a, .White_Slice_1 .corev10_single #sandbox_center a, .White_Slice_2 .corev10_single #sandbox_center a, .White_Slice_3 .corev10_single #sandbox_center a, .White_Slice_4 .corev10_single #sandbox_center a {
    color: #579; }
    .light .corev10_single #sandbox_center a:hover, .HalfBright .corev10_single #sandbox_center a:hover, .HalfBright_Left .corev10_single #sandbox_center a:hover, .HalfBright_Right .corev10_single #sandbox_center a:hover, .HalfBright_Slice_1 .corev10_single #sandbox_center a:hover, .HalfBright_Slice_2 .corev10_single #sandbox_center a:hover, .HalfBright_Slice_3 .corev10_single #sandbox_center a:hover, .HalfBright_Slice_4 .corev10_single #sandbox_center a:hover, .White .corev10_single #sandbox_center a:hover, .White_Left .corev10_single #sandbox_center a:hover, .White_Right .corev10_single #sandbox_center a:hover, .White_Slice_1 .corev10_single #sandbox_center a:hover, .White_Slice_2 .corev10_single #sandbox_center a:hover, .White_Slice_3 .corev10_single #sandbox_center a:hover, .White_Slice_4 .corev10_single #sandbox_center a:hover {
      color: black; }
  .light .corev10_single #sandbox_center #meta_line1, .light .corev10_single #sandbox_center #meta_line2, .HalfBright .corev10_single #sandbox_center #meta_line1, .HalfBright .corev10_single #sandbox_center #meta_line2, .HalfBright_Left .corev10_single #sandbox_center #meta_line1, .HalfBright_Left .corev10_single #sandbox_center #meta_line2, .HalfBright_Right .corev10_single #sandbox_center #meta_line1, .HalfBright_Right .corev10_single #sandbox_center #meta_line2, .HalfBright_Slice_1 .corev10_single #sandbox_center #meta_line1, .HalfBright_Slice_1 .corev10_single #sandbox_center #meta_line2, .HalfBright_Slice_2 .corev10_single #sandbox_center #meta_line1, .HalfBright_Slice_2 .corev10_single #sandbox_center #meta_line2, .HalfBright_Slice_3 .corev10_single #sandbox_center #meta_line1, .HalfBright_Slice_3 .corev10_single #sandbox_center #meta_line2, .HalfBright_Slice_4 .corev10_single #sandbox_center #meta_line1, .HalfBright_Slice_4 .corev10_single #sandbox_center #meta_line2, .White .corev10_single #sandbox_center #meta_line1, .White .corev10_single #sandbox_center #meta_line2, .White_Left .corev10_single #sandbox_center #meta_line1, .White_Left .corev10_single #sandbox_center #meta_line2, .White_Right .corev10_single #sandbox_center #meta_line1, .White_Right .corev10_single #sandbox_center #meta_line2, .White_Slice_1 .corev10_single #sandbox_center #meta_line1, .White_Slice_1 .corev10_single #sandbox_center #meta_line2, .White_Slice_2 .corev10_single #sandbox_center #meta_line1, .White_Slice_2 .corev10_single #sandbox_center #meta_line2, .White_Slice_3 .corev10_single #sandbox_center #meta_line1, .White_Slice_3 .corev10_single #sandbox_center #meta_line2, .White_Slice_4 .corev10_single #sandbox_center #meta_line1, .White_Slice_4 .corev10_single #sandbox_center #meta_line2 {
    color: rgba(0, 0, 0, 0.8) !important; }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_title {
    background-color: rgba(255, 255, 255, 0.7); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a {
    color: rgba(0, 0, 0, 0.7);
    background-color: rgba(255, 255, 255, 0.1); }
    .light .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox a:hover {
      color: rgba(0, 0, 0, 0.9);
      background-color: rgba(255, 255, 255, 0.9); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_categories, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_tags {
    background-color: rgba(255, 255, 255, 0.35); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #meta_line2, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_author, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #metabox #mainpost_date {
    background-color: rgba(255, 255, 255, 0.35); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .postintro {
    color: rgba(0, 0, 0, 0.75);
    background-color: rgba(0, 0, 0, 0.08); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h1, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h2, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h3, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h4, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body h5 {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.75); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body hr {
    background-color: rgba(0, 0, 0, 0.4); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p {
    background-color: rgba(255, 255, 255, 0.9); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:first-of-type {
    border-top: solid 1px rgba(0, 0, 0, 0.2); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p:last-of-type {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .wp-caption {
    background: rgba(255, 255, 255, 0.6); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body p.wp-caption-text {
    color: rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.7); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body img {
    background-color: rgba(255, 255, 255, 0.9); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .imgtext {
    background-color: rgba(255, 255, 255, 0.5); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .gallery {
    background-color: rgba(255, 255, 255, 0.8);
    border-top: solid 4px rgba(255, 255, 255, 0.6);
    border-bottom: solid 2px rgba(0, 0, 0, 0.2); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body blockquote {
    border-top: solid 5px rgba(255, 255, 255, 0.8);
    border-bottom: solid 5px rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.7); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol {
    background-color: rgba(255, 255, 255, 0.8); }
    .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ul li, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body ol li {
      border-bottom: solid 1px rgba(0, 0, 0, 0.1); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox {
    border-top: solid 4px rgba(0, 0, 0, 0.5);
    border-bottom: solid 2px rgba(255, 255, 255, 0.5); }
    .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box p, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box p, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box p, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box p, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box p, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox p {
      background-color: rgba(255, 255, 255, 0.75); }
    .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box h3, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .note-box h3, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .alert-box h3, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .update-box h3, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .info-box h3, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .corebox h3 {
      background-color: rgba(255, 255, 255, 0.85); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .quote-box {
    background-color: rgba(0, 0, 0, 0.3); }
  .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source {
    background-color: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
    border-top: solid 2px rgba(255, 255, 255, 0.1);
    border-bottom: solid 1px rgba(0, 0, 0, 0.6); }
    .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a {
      background-color: rgba(0, 0, 0, 0.5);
      color: rgba(255, 255, 255, 0.6); }
      .light .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .HalfBright .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .HalfBright_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .HalfBright_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .HalfBright_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .HalfBright_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .HalfBright_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .HalfBright_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .White .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .White_Left .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .White_Right .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .White_Slice_1 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .White_Slice_2 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .White_Slice_3 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover, .White_Slice_4 .corev10_single #sandbox_center #single_post_container #maincontent_box #mainpost_body .single_source h3 a:hover {
        background-color: rgba(0, 0, 0, 0.9);
        color: rgba(255, 255, 255, 0.9); }
  .light .corev10_single #sandbox_center .sd-content, .HalfBright .corev10_single #sandbox_center .sd-content, .HalfBright_Left .corev10_single #sandbox_center .sd-content, .HalfBright_Right .corev10_single #sandbox_center .sd-content, .HalfBright_Slice_1 .corev10_single #sandbox_center .sd-content, .HalfBright_Slice_2 .corev10_single #sandbox_center .sd-content, .HalfBright_Slice_3 .corev10_single #sandbox_center .sd-content, .HalfBright_Slice_4 .corev10_single #sandbox_center .sd-content, .White .corev10_single #sandbox_center .sd-content, .White_Left .corev10_single #sandbox_center .sd-content, .White_Right .corev10_single #sandbox_center .sd-content, .White_Slice_1 .corev10_single #sandbox_center .sd-content, .White_Slice_2 .corev10_single #sandbox_center .sd-content, .White_Slice_3 .corev10_single #sandbox_center .sd-content, .White_Slice_4 .corev10_single #sandbox_center .sd-content {
    background: rgba(0, 0, 0, 0.2) !important; }
.light body.error404 #sitecontent, .HalfBright body.error404 #sitecontent, .HalfBright_Left body.error404 #sitecontent, .HalfBright_Right body.error404 #sitecontent, .HalfBright_Slice_1 body.error404 #sitecontent, .HalfBright_Slice_2 body.error404 #sitecontent, .HalfBright_Slice_3 body.error404 #sitecontent, .HalfBright_Slice_4 body.error404 #sitecontent, .White body.error404 #sitecontent, .White_Left body.error404 #sitecontent, .White_Right body.error404 #sitecontent, .White_Slice_1 body.error404 #sitecontent, .White_Slice_2 body.error404 #sitecontent, .White_Slice_3 body.error404 #sitecontent, .White_Slice_4 body.error404 #sitecontent {
  background-color: rgba(255, 255, 255, 0.3); }
  .light body.error404 #sitecontent #sandbox_center, .HalfBright body.error404 #sitecontent #sandbox_center, .HalfBright_Left body.error404 #sitecontent #sandbox_center, .HalfBright_Right body.error404 #sitecontent #sandbox_center, .HalfBright_Slice_1 body.error404 #sitecontent #sandbox_center, .HalfBright_Slice_2 body.error404 #sitecontent #sandbox_center, .HalfBright_Slice_3 body.error404 #sitecontent #sandbox_center, .HalfBright_Slice_4 body.error404 #sitecontent #sandbox_center, .White body.error404 #sitecontent #sandbox_center, .White_Left body.error404 #sitecontent #sandbox_center, .White_Right body.error404 #sitecontent #sandbox_center, .White_Slice_1 body.error404 #sitecontent #sandbox_center, .White_Slice_2 body.error404 #sitecontent #sandbox_center, .White_Slice_3 body.error404 #sitecontent #sandbox_center, .White_Slice_4 body.error404 #sitecontent #sandbox_center {
    background-color: rgba(255, 255, 255, 0.7); }
  .light body.error404 #sitecontent #blackhole .message h3, .HalfBright body.error404 #sitecontent #blackhole .message h3, .HalfBright_Left body.error404 #sitecontent #blackhole .message h3, .HalfBright_Right body.error404 #sitecontent #blackhole .message h3, .HalfBright_Slice_1 body.error404 #sitecontent #blackhole .message h3, .HalfBright_Slice_2 body.error404 #sitecontent #blackhole .message h3, .HalfBright_Slice_3 body.error404 #sitecontent #blackhole .message h3, .HalfBright_Slice_4 body.error404 #sitecontent #blackhole .message h3, .White body.error404 #sitecontent #blackhole .message h3, .White_Left body.error404 #sitecontent #blackhole .message h3, .White_Right body.error404 #sitecontent #blackhole .message h3, .White_Slice_1 body.error404 #sitecontent #blackhole .message h3, .White_Slice_2 body.error404 #sitecontent #blackhole .message h3, .White_Slice_3 body.error404 #sitecontent #blackhole .message h3, .White_Slice_4 body.error404 #sitecontent #blackhole .message h3 {
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 0.9); }
  .light body.error404 #sitecontent #blackhole .message p, .HalfBright body.error404 #sitecontent #blackhole .message p, .HalfBright_Left body.error404 #sitecontent #blackhole .message p, .HalfBright_Right body.error404 #sitecontent #blackhole .message p, .HalfBright_Slice_1 body.error404 #sitecontent #blackhole .message p, .HalfBright_Slice_2 body.error404 #sitecontent #blackhole .message p, .HalfBright_Slice_3 body.error404 #sitecontent #blackhole .message p, .HalfBright_Slice_4 body.error404 #sitecontent #blackhole .message p, .White body.error404 #sitecontent #blackhole .message p, .White_Left body.error404 #sitecontent #blackhole .message p, .White_Right body.error404 #sitecontent #blackhole .message p, .White_Slice_1 body.error404 #sitecontent #blackhole .message p, .White_Slice_2 body.error404 #sitecontent #blackhole .message p, .White_Slice_3 body.error404 #sitecontent #blackhole .message p, .White_Slice_4 body.error404 #sitecontent #blackhole .message p {
    color: rgba(0, 0, 0, 0.7); }
  .light body.error404 #sitecontent #blackhole .searchbox #s, .HalfBright body.error404 #sitecontent #blackhole .searchbox #s, .HalfBright_Left body.error404 #sitecontent #blackhole .searchbox #s, .HalfBright_Right body.error404 #sitecontent #blackhole .searchbox #s, .HalfBright_Slice_1 body.error404 #sitecontent #blackhole .searchbox #s, .HalfBright_Slice_2 body.error404 #sitecontent #blackhole .searchbox #s, .HalfBright_Slice_3 body.error404 #sitecontent #blackhole .searchbox #s, .HalfBright_Slice_4 body.error404 #sitecontent #blackhole .searchbox #s, .White body.error404 #sitecontent #blackhole .searchbox #s, .White_Left body.error404 #sitecontent #blackhole .searchbox #s, .White_Right body.error404 #sitecontent #blackhole .searchbox #s, .White_Slice_1 body.error404 #sitecontent #blackhole .searchbox #s, .White_Slice_2 body.error404 #sitecontent #blackhole .searchbox #s, .White_Slice_3 body.error404 #sitecontent #blackhole .searchbox #s, .White_Slice_4 body.error404 #sitecontent #blackhole .searchbox #s {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(0, 0, 0, 0.3); }
    .light body.error404 #sitecontent #blackhole .searchbox #s:hover, .HalfBright body.error404 #sitecontent #blackhole .searchbox #s:hover, .HalfBright_Left body.error404 #sitecontent #blackhole .searchbox #s:hover, .HalfBright_Right body.error404 #sitecontent #blackhole .searchbox #s:hover, .HalfBright_Slice_1 body.error404 #sitecontent #blackhole .searchbox #s:hover, .HalfBright_Slice_2 body.error404 #sitecontent #blackhole .searchbox #s:hover, .HalfBright_Slice_3 body.error404 #sitecontent #blackhole .searchbox #s:hover, .HalfBright_Slice_4 body.error404 #sitecontent #blackhole .searchbox #s:hover, .White body.error404 #sitecontent #blackhole .searchbox #s:hover, .White_Left body.error404 #sitecontent #blackhole .searchbox #s:hover, .White_Right body.error404 #sitecontent #blackhole .searchbox #s:hover, .White_Slice_1 body.error404 #sitecontent #blackhole .searchbox #s:hover, .White_Slice_2 body.error404 #sitecontent #blackhole .searchbox #s:hover, .White_Slice_3 body.error404 #sitecontent #blackhole .searchbox #s:hover, .White_Slice_4 body.error404 #sitecontent #blackhole .searchbox #s:hover {
      color: rgba(255, 255, 255, 0.8);
      background-color: rgba(0, 0, 0, 0.4); }
.light #sidebar, .HalfBright #sidebar, .HalfBright_Left #sidebar, .HalfBright_Right #sidebar, .HalfBright_Slice_1 #sidebar, .HalfBright_Slice_2 #sidebar, .HalfBright_Slice_3 #sidebar, .HalfBright_Slice_4 #sidebar, .White #sidebar, .White_Left #sidebar, .White_Right #sidebar, .White_Slice_1 #sidebar, .White_Slice_2 #sidebar, .White_Slice_3 #sidebar, .White_Slice_4 #sidebar {
  background: rgba(255, 255, 255, 0.6);
  color: black;
  border-top: solid 1px rgba(0, 0, 0, 0.3);
  border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
  .light #sidebar .brick, .HalfBright #sidebar .brick, .HalfBright_Left #sidebar .brick, .HalfBright_Right #sidebar .brick, .HalfBright_Slice_1 #sidebar .brick, .HalfBright_Slice_2 #sidebar .brick, .HalfBright_Slice_3 #sidebar .brick, .HalfBright_Slice_4 #sidebar .brick, .White #sidebar .brick, .White_Left #sidebar .brick, .White_Right #sidebar .brick, .White_Slice_1 #sidebar .brick, .White_Slice_2 #sidebar .brick, .White_Slice_3 #sidebar .brick, .White_Slice_4 #sidebar .brick {
    color: rgba(0, 0, 0, 0.8);
    border: solid 1px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.5); }
    .light #sidebar .brick a, .HalfBright #sidebar .brick a, .HalfBright_Left #sidebar .brick a, .HalfBright_Right #sidebar .brick a, .HalfBright_Slice_1 #sidebar .brick a, .HalfBright_Slice_2 #sidebar .brick a, .HalfBright_Slice_3 #sidebar .brick a, .HalfBright_Slice_4 #sidebar .brick a, .White #sidebar .brick a, .White_Left #sidebar .brick a, .White_Right #sidebar .brick a, .White_Slice_1 #sidebar .brick a, .White_Slice_2 #sidebar .brick a, .White_Slice_3 #sidebar .brick a, .White_Slice_4 #sidebar .brick a {
      color: black;
      border-bottom: solid 1px rgba(0, 0, 0, 0.1); }
      .light #sidebar .brick a:hover, .HalfBright #sidebar .brick a:hover, .HalfBright_Left #sidebar .brick a:hover, .HalfBright_Right #sidebar .brick a:hover, .HalfBright_Slice_1 #sidebar .brick a:hover, .HalfBright_Slice_2 #sidebar .brick a:hover, .HalfBright_Slice_3 #sidebar .brick a:hover, .HalfBright_Slice_4 #sidebar .brick a:hover, .White #sidebar .brick a:hover, .White_Left #sidebar .brick a:hover, .White_Right #sidebar .brick a:hover, .White_Slice_1 #sidebar .brick a:hover, .White_Slice_2 #sidebar .brick a:hover, .White_Slice_3 #sidebar .brick a:hover, .White_Slice_4 #sidebar .brick a:hover {
        border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
    .light #sidebar .brick h3, .HalfBright #sidebar .brick h3, .HalfBright_Left #sidebar .brick h3, .HalfBright_Right #sidebar .brick h3, .HalfBright_Slice_1 #sidebar .brick h3, .HalfBright_Slice_2 #sidebar .brick h3, .HalfBright_Slice_3 #sidebar .brick h3, .HalfBright_Slice_4 #sidebar .brick h3, .White #sidebar .brick h3, .White_Left #sidebar .brick h3, .White_Right #sidebar .brick h3, .White_Slice_1 #sidebar .brick h3, .White_Slice_2 #sidebar .brick h3, .White_Slice_3 #sidebar .brick h3, .White_Slice_4 #sidebar .brick h3 {
      border-bottom: solid 1px rgba(0, 0, 0, 0.3);
      color: rgba(0, 0, 0, 0.8); }
    .light #sidebar .brick li, .HalfBright #sidebar .brick li, .HalfBright_Left #sidebar .brick li, .HalfBright_Right #sidebar .brick li, .HalfBright_Slice_1 #sidebar .brick li, .HalfBright_Slice_2 #sidebar .brick li, .HalfBright_Slice_3 #sidebar .brick li, .HalfBright_Slice_4 #sidebar .brick li, .White #sidebar .brick li, .White_Left #sidebar .brick li, .White_Right #sidebar .brick li, .White_Slice_1 #sidebar .brick li, .White_Slice_2 #sidebar .brick li, .White_Slice_3 #sidebar .brick li, .White_Slice_4 #sidebar .brick li {
      background-color: rgba(255, 255, 255, 0.8);
      color: rgba(0, 0, 0, 0.8);
      border: solid 1px rgba(0, 0, 0, 0.15);
      border-bottom: solid 5px rgba(0, 0, 0, 0.15); }
      .light #sidebar .brick li:hover, .HalfBright #sidebar .brick li:hover, .HalfBright_Left #sidebar .brick li:hover, .HalfBright_Right #sidebar .brick li:hover, .HalfBright_Slice_1 #sidebar .brick li:hover, .HalfBright_Slice_2 #sidebar .brick li:hover, .HalfBright_Slice_3 #sidebar .brick li:hover, .HalfBright_Slice_4 #sidebar .brick li:hover, .White #sidebar .brick li:hover, .White_Left #sidebar .brick li:hover, .White_Right #sidebar .brick li:hover, .White_Slice_1 #sidebar .brick li:hover, .White_Slice_2 #sidebar .brick li:hover, .White_Slice_3 #sidebar .brick li:hover, .White_Slice_4 #sidebar .brick li:hover {
        background-color: white;
        color: black;
        border: solid 1px rgba(0, 0, 0, 0.3);
        border-bottom: solid 5px rgba(0, 0, 0, 0.5); }
    .light #sidebar .brick:hover, .HalfBright #sidebar .brick:hover, .HalfBright_Left #sidebar .brick:hover, .HalfBright_Right #sidebar .brick:hover, .HalfBright_Slice_1 #sidebar .brick:hover, .HalfBright_Slice_2 #sidebar .brick:hover, .HalfBright_Slice_3 #sidebar .brick:hover, .HalfBright_Slice_4 #sidebar .brick:hover, .White #sidebar .brick:hover, .White_Left #sidebar .brick:hover, .White_Right #sidebar .brick:hover, .White_Slice_1 #sidebar .brick:hover, .White_Slice_2 #sidebar .brick:hover, .White_Slice_3 #sidebar .brick:hover, .White_Slice_4 #sidebar .brick:hover {
      background-color: rgba(255, 255, 255, 0.7);
      color: black; }
  .light #sidebar #tag-cloud, .HalfBright #sidebar #tag-cloud, .HalfBright_Left #sidebar #tag-cloud, .HalfBright_Right #sidebar #tag-cloud, .HalfBright_Slice_1 #sidebar #tag-cloud, .HalfBright_Slice_2 #sidebar #tag-cloud, .HalfBright_Slice_3 #sidebar #tag-cloud, .HalfBright_Slice_4 #sidebar #tag-cloud, .White #sidebar #tag-cloud, .White_Left #sidebar #tag-cloud, .White_Right #sidebar #tag-cloud, .White_Slice_1 #sidebar #tag-cloud, .White_Slice_2 #sidebar #tag-cloud, .White_Slice_3 #sidebar #tag-cloud, .White_Slice_4 #sidebar #tag-cloud {
    background: rgba(255, 255, 255, 0.6);
    color: black;
    border-top: solid 1px rgba(0, 0, 0, 0.3);
    border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
    .light #sidebar #tag-cloud a, .HalfBright #sidebar #tag-cloud a, .HalfBright_Left #sidebar #tag-cloud a, .HalfBright_Right #sidebar #tag-cloud a, .HalfBright_Slice_1 #sidebar #tag-cloud a, .HalfBright_Slice_2 #sidebar #tag-cloud a, .HalfBright_Slice_3 #sidebar #tag-cloud a, .HalfBright_Slice_4 #sidebar #tag-cloud a, .White #sidebar #tag-cloud a, .White_Left #sidebar #tag-cloud a, .White_Right #sidebar #tag-cloud a, .White_Slice_1 #sidebar #tag-cloud a, .White_Slice_2 #sidebar #tag-cloud a, .White_Slice_3 #sidebar #tag-cloud a, .White_Slice_4 #sidebar #tag-cloud a {
      background-color: rgba(255, 255, 255, 0.8);
      color: rgba(0, 0, 0, 0.8);
      border-bottom: solid 1px rgba(0, 0, 0, 0.2);
      border-right: solid 1px rgba(0, 0, 0, 0.1); }
      .light #sidebar #tag-cloud a:hover, .HalfBright #sidebar #tag-cloud a:hover, .HalfBright_Left #sidebar #tag-cloud a:hover, .HalfBright_Right #sidebar #tag-cloud a:hover, .HalfBright_Slice_1 #sidebar #tag-cloud a:hover, .HalfBright_Slice_2 #sidebar #tag-cloud a:hover, .HalfBright_Slice_3 #sidebar #tag-cloud a:hover, .HalfBright_Slice_4 #sidebar #tag-cloud a:hover, .White #sidebar #tag-cloud a:hover, .White_Left #sidebar #tag-cloud a:hover, .White_Right #sidebar #tag-cloud a:hover, .White_Slice_1 #sidebar #tag-cloud a:hover, .White_Slice_2 #sidebar #tag-cloud a:hover, .White_Slice_3 #sidebar #tag-cloud a:hover, .White_Slice_4 #sidebar #tag-cloud a:hover {
        color: rgba(0, 0, 0, 0.95);
        background-color: rgba(0, 0, 0, 0.3);
        border-bottom: solid 1px rgba(0, 0, 0, 0.4);
        border-right: solid 1px rgba(0, 0, 0, 0.3); }
    .light #sidebar #tag-cloud:hover, .HalfBright #sidebar #tag-cloud:hover, .HalfBright_Left #sidebar #tag-cloud:hover, .HalfBright_Right #sidebar #tag-cloud:hover, .HalfBright_Slice_1 #sidebar #tag-cloud:hover, .HalfBright_Slice_2 #sidebar #tag-cloud:hover, .HalfBright_Slice_3 #sidebar #tag-cloud:hover, .HalfBright_Slice_4 #sidebar #tag-cloud:hover, .White #sidebar #tag-cloud:hover, .White_Left #sidebar #tag-cloud:hover, .White_Right #sidebar #tag-cloud:hover, .White_Slice_1 #sidebar #tag-cloud:hover, .White_Slice_2 #sidebar #tag-cloud:hover, .White_Slice_3 #sidebar #tag-cloud:hover, .White_Slice_4 #sidebar #tag-cloud:hover {
      background-color: white;
      color: black; }
      .light #sidebar #tag-cloud:hover a, .HalfBright #sidebar #tag-cloud:hover a, .HalfBright_Left #sidebar #tag-cloud:hover a, .HalfBright_Right #sidebar #tag-cloud:hover a, .HalfBright_Slice_1 #sidebar #tag-cloud:hover a, .HalfBright_Slice_2 #sidebar #tag-cloud:hover a, .HalfBright_Slice_3 #sidebar #tag-cloud:hover a, .HalfBright_Slice_4 #sidebar #tag-cloud:hover a, .White #sidebar #tag-cloud:hover a, .White_Left #sidebar #tag-cloud:hover a, .White_Right #sidebar #tag-cloud:hover a, .White_Slice_1 #sidebar #tag-cloud:hover a, .White_Slice_2 #sidebar #tag-cloud:hover a, .White_Slice_3 #sidebar #tag-cloud:hover a, .White_Slice_4 #sidebar #tag-cloud:hover a {
        background-color: rgba(0, 0, 0, 0.2);
        color: rgba(0, 0, 0, 0.9); }
  .light #sidebar #poll .poll-button input, .HalfBright #sidebar #poll .poll-button input, .HalfBright_Left #sidebar #poll .poll-button input, .HalfBright_Right #sidebar #poll .poll-button input, .HalfBright_Slice_1 #sidebar #poll .poll-button input, .HalfBright_Slice_2 #sidebar #poll .poll-button input, .HalfBright_Slice_3 #sidebar #poll .poll-button input, .HalfBright_Slice_4 #sidebar #poll .poll-button input, .White #sidebar #poll .poll-button input, .White_Left #sidebar #poll .poll-button input, .White_Right #sidebar #poll .poll-button input, .White_Slice_1 #sidebar #poll .poll-button input, .White_Slice_2 #sidebar #poll .poll-button input, .White_Slice_3 #sidebar #poll .poll-button input, .White_Slice_4 #sidebar #poll .poll-button input {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.6);
    border: solid 1px rgba(255, 255, 255, 0.5); }
    .light #sidebar #poll .poll-button input:hover, .HalfBright #sidebar #poll .poll-button input:hover, .HalfBright_Left #sidebar #poll .poll-button input:hover, .HalfBright_Right #sidebar #poll .poll-button input:hover, .HalfBright_Slice_1 #sidebar #poll .poll-button input:hover, .HalfBright_Slice_2 #sidebar #poll .poll-button input:hover, .HalfBright_Slice_3 #sidebar #poll .poll-button input:hover, .HalfBright_Slice_4 #sidebar #poll .poll-button input:hover, .White #sidebar #poll .poll-button input:hover, .White_Left #sidebar #poll .poll-button input:hover, .White_Right #sidebar #poll .poll-button input:hover, .White_Slice_1 #sidebar #poll .poll-button input:hover, .White_Slice_2 #sidebar #poll .poll-button input:hover, .White_Slice_3 #sidebar #poll .poll-button input:hover, .White_Slice_4 #sidebar #poll .poll-button input:hover {
      color: rgba(255, 255, 255, 0.95);
      background-color: rgba(0, 0, 0, 0.9);
      border: solid 1px rgba(255, 255, 255, 0.7); }
  .light #sidebar #poll .poll-results a, .HalfBright #sidebar #poll .poll-results a, .HalfBright_Left #sidebar #poll .poll-results a, .HalfBright_Right #sidebar #poll .poll-results a, .HalfBright_Slice_1 #sidebar #poll .poll-results a, .HalfBright_Slice_2 #sidebar #poll .poll-results a, .HalfBright_Slice_3 #sidebar #poll .poll-results a, .HalfBright_Slice_4 #sidebar #poll .poll-results a, .White #sidebar #poll .poll-results a, .White_Left #sidebar #poll .poll-results a, .White_Right #sidebar #poll .poll-results a, .White_Slice_1 #sidebar #poll .poll-results a, .White_Slice_2 #sidebar #poll .poll-results a, .White_Slice_3 #sidebar #poll .poll-results a, .White_Slice_4 #sidebar #poll .poll-results a {
    color: rgba(0, 0, 0, 0.9);
    background-color: rgba(255, 255, 255, 0.7);
    border: solid 1px rgba(0, 0, 0, 0.5); }
    .light #sidebar #poll .poll-results a:hover, .HalfBright #sidebar #poll .poll-results a:hover, .HalfBright_Left #sidebar #poll .poll-results a:hover, .HalfBright_Right #sidebar #poll .poll-results a:hover, .HalfBright_Slice_1 #sidebar #poll .poll-results a:hover, .HalfBright_Slice_2 #sidebar #poll .poll-results a:hover, .HalfBright_Slice_3 #sidebar #poll .poll-results a:hover, .HalfBright_Slice_4 #sidebar #poll .poll-results a:hover, .White #sidebar #poll .poll-results a:hover, .White_Left #sidebar #poll .poll-results a:hover, .White_Right #sidebar #poll .poll-results a:hover, .White_Slice_1 #sidebar #poll .poll-results a:hover, .White_Slice_2 #sidebar #poll .poll-results a:hover, .White_Slice_3 #sidebar #poll .poll-results a:hover, .White_Slice_4 #sidebar #poll .poll-results a:hover {
      color: rgba(0, 0, 0, 0.95);
      background-color: rgba(0, 0, 0, 0.15);
      border: solid 1px rgba(0, 0, 0, 0.6); }
.light #sitefooter, .HalfBright #sitefooter, .HalfBright_Left #sitefooter, .HalfBright_Right #sitefooter, .HalfBright_Slice_1 #sitefooter, .HalfBright_Slice_2 #sitefooter, .HalfBright_Slice_3 #sitefooter, .HalfBright_Slice_4 #sitefooter, .White #sitefooter, .White_Left #sitefooter, .White_Right #sitefooter, .White_Slice_1 #sitefooter, .White_Slice_2 #sitefooter, .White_Slice_3 #sitefooter, .White_Slice_4 #sitefooter {
  background: rgba(255, 255, 255, 0.6);
  color: black;
  border-top: solid 1px rgba(0, 0, 0, 0.3);
  border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
  .light #sitefooter #core_copyright, .light #sitefooter #core_design, .HalfBright #sitefooter #core_copyright, .HalfBright #sitefooter #core_design, .HalfBright_Left #sitefooter #core_copyright, .HalfBright_Left #sitefooter #core_design, .HalfBright_Right #sitefooter #core_copyright, .HalfBright_Right #sitefooter #core_design, .HalfBright_Slice_1 #sitefooter #core_copyright, .HalfBright_Slice_1 #sitefooter #core_design, .HalfBright_Slice_2 #sitefooter #core_copyright, .HalfBright_Slice_2 #sitefooter #core_design, .HalfBright_Slice_3 #sitefooter #core_copyright, .HalfBright_Slice_3 #sitefooter #core_design, .HalfBright_Slice_4 #sitefooter #core_copyright, .HalfBright_Slice_4 #sitefooter #core_design, .White #sitefooter #core_copyright, .White #sitefooter #core_design, .White_Left #sitefooter #core_copyright, .White_Left #sitefooter #core_design, .White_Right #sitefooter #core_copyright, .White_Right #sitefooter #core_design, .White_Slice_1 #sitefooter #core_copyright, .White_Slice_1 #sitefooter #core_design, .White_Slice_2 #sitefooter #core_copyright, .White_Slice_2 #sitefooter #core_design, .White_Slice_3 #sitefooter #core_copyright, .White_Slice_3 #sitefooter #core_design, .White_Slice_4 #sitefooter #core_copyright, .White_Slice_4 #sitefooter #core_design {
    color: rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.6); }
    .light #sitefooter #core_copyright a, .light #sitefooter #core_design a, .HalfBright #sitefooter #core_copyright a, .HalfBright #sitefooter #core_design a, .HalfBright_Left #sitefooter #core_copyright a, .HalfBright_Left #sitefooter #core_design a, .HalfBright_Right #sitefooter #core_copyright a, .HalfBright_Right #sitefooter #core_design a, .HalfBright_Slice_1 #sitefooter #core_copyright a, .HalfBright_Slice_1 #sitefooter #core_design a, .HalfBright_Slice_2 #sitefooter #core_copyright a, .HalfBright_Slice_2 #sitefooter #core_design a, .HalfBright_Slice_3 #sitefooter #core_copyright a, .HalfBright_Slice_3 #sitefooter #core_design a, .HalfBright_Slice_4 #sitefooter #core_copyright a, .HalfBright_Slice_4 #sitefooter #core_design a, .White #sitefooter #core_copyright a, .White #sitefooter #core_design a, .White_Left #sitefooter #core_copyright a, .White_Left #sitefooter #core_design a, .White_Right #sitefooter #core_copyright a, .White_Right #sitefooter #core_design a, .White_Slice_1 #sitefooter #core_copyright a, .White_Slice_1 #sitefooter #core_design a, .White_Slice_2 #sitefooter #core_copyright a, .White_Slice_2 #sitefooter #core_design a, .White_Slice_3 #sitefooter #core_copyright a, .White_Slice_3 #sitefooter #core_design a, .White_Slice_4 #sitefooter #core_copyright a, .White_Slice_4 #sitefooter #core_design a {
      color: black; }
      .light #sitefooter #core_copyright a:hover, .light #sitefooter #core_design a:hover, .HalfBright #sitefooter #core_copyright a:hover, .HalfBright #sitefooter #core_design a:hover, .HalfBright_Left #sitefooter #core_copyright a:hover, .HalfBright_Left #sitefooter #core_design a:hover, .HalfBright_Right #sitefooter #core_copyright a:hover, .HalfBright_Right #sitefooter #core_design a:hover, .HalfBright_Slice_1 #sitefooter #core_copyright a:hover, .HalfBright_Slice_1 #sitefooter #core_design a:hover, .HalfBright_Slice_2 #sitefooter #core_copyright a:hover, .HalfBright_Slice_2 #sitefooter #core_design a:hover, .HalfBright_Slice_3 #sitefooter #core_copyright a:hover, .HalfBright_Slice_3 #sitefooter #core_design a:hover, .HalfBright_Slice_4 #sitefooter #core_copyright a:hover, .HalfBright_Slice_4 #sitefooter #core_design a:hover, .White #sitefooter #core_copyright a:hover, .White #sitefooter #core_design a:hover, .White_Left #sitefooter #core_copyright a:hover, .White_Left #sitefooter #core_design a:hover, .White_Right #sitefooter #core_copyright a:hover, .White_Right #sitefooter #core_design a:hover, .White_Slice_1 #sitefooter #core_copyright a:hover, .White_Slice_1 #sitefooter #core_design a:hover, .White_Slice_2 #sitefooter #core_copyright a:hover, .White_Slice_2 #sitefooter #core_design a:hover, .White_Slice_3 #sitefooter #core_copyright a:hover, .White_Slice_3 #sitefooter #core_design a:hover, .White_Slice_4 #sitefooter #core_copyright a:hover, .White_Slice_4 #sitefooter #core_design a:hover {
        border-bottom: solid 1px rgba(0, 0, 0, 0.3); }
.light .adbox, .HalfBright .adbox, .HalfBright_Left .adbox, .HalfBright_Right .adbox, .HalfBright_Slice_1 .adbox, .HalfBright_Slice_2 .adbox, .HalfBright_Slice_3 .adbox, .HalfBright_Slice_4 .adbox, .White .adbox, .White_Left .adbox, .White_Right .adbox, .White_Slice_1 .adbox, .White_Slice_2 .adbox, .White_Slice_3 .adbox, .White_Slice_4 .adbox {
  background: rgba(255, 255, 255, 0.6);
  color: black; }
.light #single_comments, .HalfBright #single_comments, .HalfBright_Left #single_comments, .HalfBright_Right #single_comments, .HalfBright_Slice_1 #single_comments, .HalfBright_Slice_2 #single_comments, .HalfBright_Slice_3 #single_comments, .HalfBright_Slice_4 #single_comments, .White #single_comments, .White_Left #single_comments, .White_Right #single_comments, .White_Slice_1 #single_comments, .White_Slice_2 #single_comments, .White_Slice_3 #single_comments, .White_Slice_4 #single_comments {
  border: solid 1px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.9); }
  .light #single_comments a, .HalfBright #single_comments a, .HalfBright_Left #single_comments a, .HalfBright_Right #single_comments a, .HalfBright_Slice_1 #single_comments a, .HalfBright_Slice_2 #single_comments a, .HalfBright_Slice_3 #single_comments a, .HalfBright_Slice_4 #single_comments a, .White #single_comments a, .White_Left #single_comments a, .White_Right #single_comments a, .White_Slice_1 #single_comments a, .White_Slice_2 #single_comments a, .White_Slice_3 #single_comments a, .White_Slice_4 #single_comments a {
    color: rgba(0, 0, 0, 0.95); }
    .light #single_comments a:hover, .HalfBright #single_comments a:hover, .HalfBright_Left #single_comments a:hover, .HalfBright_Right #single_comments a:hover, .HalfBright_Slice_1 #single_comments a:hover, .HalfBright_Slice_2 #single_comments a:hover, .HalfBright_Slice_3 #single_comments a:hover, .HalfBright_Slice_4 #single_comments a:hover, .White #single_comments a:hover, .White_Left #single_comments a:hover, .White_Right #single_comments a:hover, .White_Slice_1 #single_comments a:hover, .White_Slice_2 #single_comments a:hover, .White_Slice_3 #single_comments a:hover, .White_Slice_4 #single_comments a:hover {
      color: black; }
.light #disqus_thread, .HalfBright #disqus_thread, .HalfBright_Left #disqus_thread, .HalfBright_Right #disqus_thread, .HalfBright_Slice_1 #disqus_thread, .HalfBright_Slice_2 #disqus_thread, .HalfBright_Slice_3 #disqus_thread, .HalfBright_Slice_4 #disqus_thread, .White #disqus_thread, .White_Left #disqus_thread, .White_Right #disqus_thread, .White_Slice_1 #disqus_thread, .White_Slice_2 #disqus_thread, .White_Slice_3 #disqus_thread, .White_Slice_4 #disqus_thread {
  color: black;
  background: white; }
.light .wp-pagenavi, .HalfBright .wp-pagenavi, .HalfBright_Left .wp-pagenavi, .HalfBright_Right .wp-pagenavi, .HalfBright_Slice_1 .wp-pagenavi, .HalfBright_Slice_2 .wp-pagenavi, .HalfBright_Slice_3 .wp-pagenavi, .HalfBright_Slice_4 .wp-pagenavi, .White .wp-pagenavi, .White_Left .wp-pagenavi, .White_Right .wp-pagenavi, .White_Slice_1 .wp-pagenavi, .White_Slice_2 .wp-pagenavi, .White_Slice_3 .wp-pagenavi, .White_Slice_4 .wp-pagenavi {
  background-color: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.6);
  border: solid 1px rgba(0, 0, 0, 0.2); }
  .light .wp-pagenavi a, .HalfBright .wp-pagenavi a, .HalfBright_Left .wp-pagenavi a, .HalfBright_Right .wp-pagenavi a, .HalfBright_Slice_1 .wp-pagenavi a, .HalfBright_Slice_2 .wp-pagenavi a, .HalfBright_Slice_3 .wp-pagenavi a, .HalfBright_Slice_4 .wp-pagenavi a, .White .wp-pagenavi a, .White_Left .wp-pagenavi a, .White_Right .wp-pagenavi a, .White_Slice_1 .wp-pagenavi a, .White_Slice_2 .wp-pagenavi a, .White_Slice_3 .wp-pagenavi a, .White_Slice_4 .wp-pagenavi a {
    background-color: rgba(255, 255, 255, 0.8);
    color: rgba(0, 0, 0, 0.8);
    border: solid 1px rgba(0, 0, 0, 0.5); }
    .light .wp-pagenavi a:hover, .HalfBright .wp-pagenavi a:hover, .HalfBright_Left .wp-pagenavi a:hover, .HalfBright_Right .wp-pagenavi a:hover, .HalfBright_Slice_1 .wp-pagenavi a:hover, .HalfBright_Slice_2 .wp-pagenavi a:hover, .HalfBright_Slice_3 .wp-pagenavi a:hover, .HalfBright_Slice_4 .wp-pagenavi a:hover, .White .wp-pagenavi a:hover, .White_Left .wp-pagenavi a:hover, .White_Right .wp-pagenavi a:hover, .White_Slice_1 .wp-pagenavi a:hover, .White_Slice_2 .wp-pagenavi a:hover, .White_Slice_3 .wp-pagenavi a:hover, .White_Slice_4 .wp-pagenavi a:hover {
      background-color: white;
      color: black;
      border: solid 2px rgba(0, 0, 0, 0.8);
      border-top: solid 1px rgba(0, 0, 0, 0.8);
      border-bottom: solid 1px rgba(0, 0, 0, 0.8); }
  .light .wp-pagenavi:hover, .HalfBright .wp-pagenavi:hover, .HalfBright_Left .wp-pagenavi:hover, .HalfBright_Right .wp-pagenavi:hover, .HalfBright_Slice_1 .wp-pagenavi:hover, .HalfBright_Slice_2 .wp-pagenavi:hover, .HalfBright_Slice_3 .wp-pagenavi:hover, .HalfBright_Slice_4 .wp-pagenavi:hover, .White .wp-pagenavi:hover, .White_Left .wp-pagenavi:hover, .White_Right .wp-pagenavi:hover, .White_Slice_1 .wp-pagenavi:hover, .White_Slice_2 .wp-pagenavi:hover, .White_Slice_3 .wp-pagenavi:hover, .White_Slice_4 .wp-pagenavi:hover {
    background-color: white;
    color: black; }
  .light .wp-pagenavi .current, .HalfBright .wp-pagenavi .current, .HalfBright_Left .wp-pagenavi .current, .HalfBright_Right .wp-pagenavi .current, .HalfBright_Slice_1 .wp-pagenavi .current, .HalfBright_Slice_2 .wp-pagenavi .current, .HalfBright_Slice_3 .wp-pagenavi .current, .HalfBright_Slice_4 .wp-pagenavi .current, .White .wp-pagenavi .current, .White_Left .wp-pagenavi .current, .White_Right .wp-pagenavi .current, .White_Slice_1 .wp-pagenavi .current, .White_Slice_2 .wp-pagenavi .current, .White_Slice_3 .wp-pagenavi .current, .White_Slice_4 .wp-pagenavi .current {
    border: solid 1px black;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.8); }
.light .single .wp-pagenavi a, .HalfBright .single .wp-pagenavi a, .HalfBright_Left .single .wp-pagenavi a, .HalfBright_Right .single .wp-pagenavi a, .HalfBright_Slice_1 .single .wp-pagenavi a, .HalfBright_Slice_2 .single .wp-pagenavi a, .HalfBright_Slice_3 .single .wp-pagenavi a, .HalfBright_Slice_4 .single .wp-pagenavi a, .White .single .wp-pagenavi a, .White_Left .single .wp-pagenavi a, .White_Right .single .wp-pagenavi a, .White_Slice_1 .single .wp-pagenavi a, .White_Slice_2 .single .wp-pagenavi a, .White_Slice_3 .single .wp-pagenavi a, .White_Slice_4 .single .wp-pagenavi a {
  color: rgba(255, 255, 255, 0.9); }
  .light .single .wp-pagenavi a:hover, .HalfBright .single .wp-pagenavi a:hover, .HalfBright_Left .single .wp-pagenavi a:hover, .HalfBright_Right .single .wp-pagenavi a:hover, .HalfBright_Slice_1 .single .wp-pagenavi a:hover, .HalfBright_Slice_2 .single .wp-pagenavi a:hover, .HalfBright_Slice_3 .single .wp-pagenavi a:hover, .HalfBright_Slice_4 .single .wp-pagenavi a:hover, .White .single .wp-pagenavi a:hover, .White_Left .single .wp-pagenavi a:hover, .White_Right .single .wp-pagenavi a:hover, .White_Slice_1 .single .wp-pagenavi a:hover, .White_Slice_2 .single .wp-pagenavi a:hover, .White_Slice_3 .single .wp-pagenavi a:hover, .White_Slice_4 .single .wp-pagenavi a:hover {
    color: rgba(0, 0, 0, 0.9); }
.light .single .wp-pagenavi .current, .HalfBright .single .wp-pagenavi .current, .HalfBright_Left .single .wp-pagenavi .current, .HalfBright_Right .single .wp-pagenavi .current, .HalfBright_Slice_1 .single .wp-pagenavi .current, .HalfBright_Slice_2 .single .wp-pagenavi .current, .HalfBright_Slice_3 .single .wp-pagenavi .current, .HalfBright_Slice_4 .single .wp-pagenavi .current, .White .single .wp-pagenavi .current, .White_Left .single .wp-pagenavi .current, .White_Right .single .wp-pagenavi .current, .White_Slice_1 .single .wp-pagenavi .current, .White_Slice_2 .single .wp-pagenavi .current, .White_Slice_3 .single .wp-pagenavi .current, .White_Slice_4 .single .wp-pagenavi .current {
  color: rgba(0, 0, 0, 0.9); }
.light .format-aside .title, .light .format-quote .title, .HalfBright .format-aside .title, .HalfBright .format-quote .title, .HalfBright_Left .format-aside .title, .HalfBright_Left .format-quote .title, .HalfBright_Right .format-aside .title, .HalfBright_Right .format-quote .title, .HalfBright_Slice_1 .format-aside .title, .HalfBright_Slice_1 .format-quote .title, .HalfBright_Slice_2 .format-aside .title, .HalfBright_Slice_2 .format-quote .title, .HalfBright_Slice_3 .format-aside .title, .HalfBright_Slice_3 .format-quote .title, .HalfBright_Slice_4 .format-aside .title, .HalfBright_Slice_4 .format-quote .title, .White .format-aside .title, .White .format-quote .title, .White_Left .format-aside .title, .White_Left .format-quote .title, .White_Right .format-aside .title, .White_Right .format-quote .title, .White_Slice_1 .format-aside .title, .White_Slice_1 .format-quote .title, .White_Slice_2 .format-aside .title, .White_Slice_2 .format-quote .title, .White_Slice_3 .format-aside .title, .White_Slice_3 .format-quote .title, .White_Slice_4 .format-aside .title, .White_Slice_4 .format-quote .title {
  color: rgba(0, 0, 0, 0.3) !important; }
  .light .format-aside .title:hover, .light .format-quote .title:hover, .HalfBright .format-aside .title:hover, .HalfBright .format-quote .title:hover, .HalfBright_Left .format-aside .title:hover, .HalfBright_Left .format-quote .title:hover, .HalfBright_Right .format-aside .title:hover, .HalfBright_Right .format-quote .title:hover, .HalfBright_Slice_1 .format-aside .title:hover, .HalfBright_Slice_1 .format-quote .title:hover, .HalfBright_Slice_2 .format-aside .title:hover, .HalfBright_Slice_2 .format-quote .title:hover, .HalfBright_Slice_3 .format-aside .title:hover, .HalfBright_Slice_3 .format-quote .title:hover, .HalfBright_Slice_4 .format-aside .title:hover, .HalfBright_Slice_4 .format-quote .title:hover, .White .format-aside .title:hover, .White .format-quote .title:hover, .White_Left .format-aside .title:hover, .White_Left .format-quote .title:hover, .White_Right .format-aside .title:hover, .White_Right .format-quote .title:hover, .White_Slice_1 .format-aside .title:hover, .White_Slice_1 .format-quote .title:hover, .White_Slice_2 .format-aside .title:hover, .White_Slice_2 .format-quote .title:hover, .White_Slice_3 .format-aside .title:hover, .White_Slice_3 .format-quote .title:hover, .White_Slice_4 .format-aside .title:hover, .White_Slice_4 .format-quote .title:hover {
    color: black !important; }
.light .format-image .title, .light .format-video .title, .light .format-gallery .title, .HalfBright .format-image .title, .HalfBright .format-video .title, .HalfBright .format-gallery .title, .HalfBright_Left .format-image .title, .HalfBright_Left .format-video .title, .HalfBright_Left .format-gallery .title, .HalfBright_Right .format-image .title, .HalfBright_Right .format-video .title, .HalfBright_Right .format-gallery .title, .HalfBright_Slice_1 .format-image .title, .HalfBright_Slice_1 .format-video .title, .HalfBright_Slice_1 .format-gallery .title, .HalfBright_Slice_2 .format-image .title, .HalfBright_Slice_2 .format-video .title, .HalfBright_Slice_2 .format-gallery .title, .HalfBright_Slice_3 .format-image .title, .HalfBright_Slice_3 .format-video .title, .HalfBright_Slice_3 .format-gallery .title, .HalfBright_Slice_4 .format-image .title, .HalfBright_Slice_4 .format-video .title, .HalfBright_Slice_4 .format-gallery .title, .White .format-image .title, .White .format-video .title, .White .format-gallery .title, .White_Left .format-image .title, .White_Left .format-video .title, .White_Left .format-gallery .title, .White_Right .format-image .title, .White_Right .format-video .title, .White_Right .format-gallery .title, .White_Slice_1 .format-image .title, .White_Slice_1 .format-video .title, .White_Slice_1 .format-gallery .title, .White_Slice_2 .format-image .title, .White_Slice_2 .format-video .title, .White_Slice_2 .format-gallery .title, .White_Slice_3 .format-image .title, .White_Slice_3 .format-video .title, .White_Slice_3 .format-gallery .title, .White_Slice_4 .format-image .title, .White_Slice_4 .format-video .title, .White_Slice_4 .format-gallery .title {
  color: rgba(0, 0, 0, 0.05) !important;
  background-color: rgba(255, 255, 255, 0.05) !important; }
.light .format-image:hover .title, .light .format-video:hover .title, .light .format-gallery:hover .title, .HalfBright .format-image:hover .title, .HalfBright .format-video:hover .title, .HalfBright .format-gallery:hover .title, .HalfBright_Left .format-image:hover .title, .HalfBright_Left .format-video:hover .title, .HalfBright_Left .format-gallery:hover .title, .HalfBright_Right .format-image:hover .title, .HalfBright_Right .format-video:hover .title, .HalfBright_Right .format-gallery:hover .title, .HalfBright_Slice_1 .format-image:hover .title, .HalfBright_Slice_1 .format-video:hover .title, .HalfBright_Slice_1 .format-gallery:hover .title, .HalfBright_Slice_2 .format-image:hover .title, .HalfBright_Slice_2 .format-video:hover .title, .HalfBright_Slice_2 .format-gallery:hover .title, .HalfBright_Slice_3 .format-image:hover .title, .HalfBright_Slice_3 .format-video:hover .title, .HalfBright_Slice_3 .format-gallery:hover .title, .HalfBright_Slice_4 .format-image:hover .title, .HalfBright_Slice_4 .format-video:hover .title, .HalfBright_Slice_4 .format-gallery:hover .title, .White .format-image:hover .title, .White .format-video:hover .title, .White .format-gallery:hover .title, .White_Left .format-image:hover .title, .White_Left .format-video:hover .title, .White_Left .format-gallery:hover .title, .White_Right .format-image:hover .title, .White_Right .format-video:hover .title, .White_Right .format-gallery:hover .title, .White_Slice_1 .format-image:hover .title, .White_Slice_1 .format-video:hover .title, .White_Slice_1 .format-gallery:hover .title, .White_Slice_2 .format-image:hover .title, .White_Slice_2 .format-video:hover .title, .White_Slice_2 .format-gallery:hover .title, .White_Slice_3 .format-image:hover .title, .White_Slice_3 .format-video:hover .title, .White_Slice_3 .format-gallery:hover .title, .White_Slice_4 .format-image:hover .title, .White_Slice_4 .format-video:hover .title, .White_Slice_4 .format-gallery:hover .title {
  color: black !important;
  background-color: rgba(255, 255, 255, 0.5) !important; }
.light .single-format-image #siteContainer, .light .single-format-gallery #siteContainer, .light .single-format-video #siteContainer, .light .single-format-quote #siteContainer, .HalfBright .single-format-image #siteContainer, .HalfBright .single-format-gallery #siteContainer, .HalfBright .single-format-video #siteContainer, .HalfBright .single-format-quote #siteContainer, .HalfBright_Left .single-format-image #siteContainer, .HalfBright_Left .single-format-gallery #siteContainer, .HalfBright_Left .single-format-video #siteContainer, .HalfBright_Left .single-format-quote #siteContainer, .HalfBright_Right .single-format-image #siteContainer, .HalfBright_Right .single-format-gallery #siteContainer, .HalfBright_Right .single-format-video #siteContainer, .HalfBright_Right .single-format-quote #siteContainer, .HalfBright_Slice_1 .single-format-image #siteContainer, .HalfBright_Slice_1 .single-format-gallery #siteContainer, .HalfBright_Slice_1 .single-format-video #siteContainer, .HalfBright_Slice_1 .single-format-quote #siteContainer, .HalfBright_Slice_2 .single-format-image #siteContainer, .HalfBright_Slice_2 .single-format-gallery #siteContainer, .HalfBright_Slice_2 .single-format-video #siteContainer, .HalfBright_Slice_2 .single-format-quote #siteContainer, .HalfBright_Slice_3 .single-format-image #siteContainer, .HalfBright_Slice_3 .single-format-gallery #siteContainer, .HalfBright_Slice_3 .single-format-video #siteContainer, .HalfBright_Slice_3 .single-format-quote #siteContainer, .HalfBright_Slice_4 .single-format-image #siteContainer, .HalfBright_Slice_4 .single-format-gallery #siteContainer, .HalfBright_Slice_4 .single-format-video #siteContainer, .HalfBright_Slice_4 .single-format-quote #siteContainer, .White .single-format-image #siteContainer, .White .single-format-gallery #siteContainer, .White .single-format-video #siteContainer, .White .single-format-quote #siteContainer, .White_Left .single-format-image #siteContainer, .White_Left .single-format-gallery #siteContainer, .White_Left .single-format-video #siteContainer, .White_Left .single-format-quote #siteContainer, .White_Right .single-format-image #siteContainer, .White_Right .single-format-gallery #siteContainer, .White_Right .single-format-video #siteContainer, .White_Right .single-format-quote #siteContainer, .White_Slice_1 .single-format-image #siteContainer, .White_Slice_1 .single-format-gallery #siteContainer, .White_Slice_1 .single-format-video #siteContainer, .White_Slice_1 .single-format-quote #siteContainer, .White_Slice_2 .single-format-image #siteContainer, .White_Slice_2 .single-format-gallery #siteContainer, .White_Slice_2 .single-format-video #siteContainer, .White_Slice_2 .single-format-quote #siteContainer, .White_Slice_3 .single-format-image #siteContainer, .White_Slice_3 .single-format-gallery #siteContainer, .White_Slice_3 .single-format-video #siteContainer, .White_Slice_3 .single-format-quote #siteContainer, .White_Slice_4 .single-format-image #siteContainer, .White_Slice_4 .single-format-gallery #siteContainer, .White_Slice_4 .single-format-video #siteContainer, .White_Slice_4 .single-format-quote #siteContainer {
  background-color: rgba(255, 255, 255, 0.5) !important; }
  .light .single-format-image #siteContainer #single_similar_posts li, .light .single-format-gallery #siteContainer #single_similar_posts li, .light .single-format-video #siteContainer #single_similar_posts li, .light .single-format-quote #siteContainer #single_similar_posts li, .HalfBright .single-format-image #siteContainer #single_similar_posts li, .HalfBright .single-format-gallery #siteContainer #single_similar_posts li, .HalfBright .single-format-video #siteContainer #single_similar_posts li, .HalfBright .single-format-quote #siteContainer #single_similar_posts li, .HalfBright_Left .single-format-image #siteContainer #single_similar_posts li, .HalfBright_Left .single-format-gallery #siteContainer #single_similar_posts li, .HalfBright_Left .single-format-video #siteContainer #single_similar_posts li, .HalfBright_Left .single-format-quote #siteContainer #single_similar_posts li, .HalfBright_Right .single-format-image #siteContainer #single_similar_posts li, .HalfBright_Right .single-format-gallery #siteContainer #single_similar_posts li, .HalfBright_Right .single-format-video #siteContainer #single_similar_posts li, .HalfBright_Right .single-format-quote #siteContainer #single_similar_posts li, .HalfBright_Slice_1 .single-format-image #siteContainer #single_similar_posts li, .HalfBright_Slice_1 .single-format-gallery #siteContainer #single_similar_posts li, .HalfBright_Slice_1 .single-format-video #siteContainer #single_similar_posts li, .HalfBright_Slice_1 .single-format-quote #siteContainer #single_similar_posts li, .HalfBright_Slice_2 .single-format-image #siteContainer #single_similar_posts li, .HalfBright_Slice_2 .single-format-gallery #siteContainer #single_similar_posts li, .HalfBright_Slice_2 .single-format-video #siteContainer #single_similar_posts li, .HalfBright_Slice_2 .single-format-quote #siteContainer #single_similar_posts li, .HalfBright_Slice_3 .single-format-image #siteContainer #single_similar_posts li, .HalfBright_Slice_3 .single-format-gallery #siteContainer #single_similar_posts li, .HalfBright_Slice_3 .single-format-video #siteContainer #single_similar_posts li, .HalfBright_Slice_3 .single-format-quote #siteContainer #single_similar_posts li, .HalfBright_Slice_4 .single-format-image #siteContainer #single_similar_posts li, .HalfBright_Slice_4 .single-format-gallery #siteContainer #single_similar_posts li, .HalfBright_Slice_4 .single-format-video #siteContainer #single_similar_posts li, .HalfBright_Slice_4 .single-format-quote #siteContainer #single_similar_posts li, .White .single-format-image #siteContainer #single_similar_posts li, .White .single-format-gallery #siteContainer #single_similar_posts li, .White .single-format-video #siteContainer #single_similar_posts li, .White .single-format-quote #siteContainer #single_similar_posts li, .White_Left .single-format-image #siteContainer #single_similar_posts li, .White_Left .single-format-gallery #siteContainer #single_similar_posts li, .White_Left .single-format-video #siteContainer #single_similar_posts li, .White_Left .single-format-quote #siteContainer #single_similar_posts li, .White_Right .single-format-image #siteContainer #single_similar_posts li, .White_Right .single-format-gallery #siteContainer #single_similar_posts li, .White_Right .single-format-video #siteContainer #single_similar_posts li, .White_Right .single-format-quote #siteContainer #single_similar_posts li, .White_Slice_1 .single-format-image #siteContainer #single_similar_posts li, .White_Slice_1 .single-format-gallery #siteContainer #single_similar_posts li, .White_Slice_1 .single-format-video #siteContainer #single_similar_posts li, .White_Slice_1 .single-format-quote #siteContainer #single_similar_posts li, .White_Slice_2 .single-format-image #siteContainer #single_similar_posts li, .White_Slice_2 .single-format-gallery #siteContainer #single_similar_posts li, .White_Slice_2 .single-format-video #siteContainer #single_similar_posts li, .White_Slice_2 .single-format-quote #siteContainer #single_similar_posts li, .White_Slice_3 .single-format-image #siteContainer #single_similar_posts li, .White_Slice_3 .single-format-gallery #siteContainer #single_similar_posts li, .White_Slice_3 .single-format-video #siteContainer #single_similar_posts li, .White_Slice_3 .single-format-quote #siteContainer #single_similar_posts li, .White_Slice_4 .single-format-image #siteContainer #single_similar_posts li, .White_Slice_4 .single-format-gallery #siteContainer #single_similar_posts li, .White_Slice_4 .single-format-video #siteContainer #single_similar_posts li, .White_Slice_4 .single-format-quote #siteContainer #single_similar_posts li {
    background: rgba(255, 255, 255, 0.3) !important; }
.light .fluid-vid, .HalfBright .fluid-vid, .HalfBright_Left .fluid-vid, .HalfBright_Right .fluid-vid, .HalfBright_Slice_1 .fluid-vid, .HalfBright_Slice_2 .fluid-vid, .HalfBright_Slice_3 .fluid-vid, .HalfBright_Slice_4 .fluid-vid, .White .fluid-vid, .White_Left .fluid-vid, .White_Right .fluid-vid, .White_Slice_1 .fluid-vid, .White_Slice_2 .fluid-vid, .White_Slice_3 .fluid-vid, .White_Slice_4 .fluid-vid {
  background-color: rgba(255, 255, 255, 0.8);
  border-top: solid 4px rgba(255, 255, 255, 0.5);
  border-bottom: solid 3px rgba(0, 0, 0, 0.3); }

/* -------------------------------- ( CPT: Slice 1 of 4; )--------- */
/* -------------------------------- ( CPT: Slice 2 of 4; )--------- */
/* -------------------------------- ( CPT: Slice 3 of 4; )--------- */
/* -------------------------------- ( CPT: Slice 4 of 4; )--------- */
.Black .corev10_single #sandbox_center, .Black_Left .corev10_single #sandbox_center, .Black_Right .corev10_single #sandbox_center, .Black_Slice_1 .corev10_single #sandbox_center, .Black_Slice_2 .corev10_single #sandbox_center, .Black_Slice_3 .corev10_single #sandbox_center, .Black_Slice_4 .corev10_single #sandbox_center {
  background-color: rgba(0, 0, 0, 0.99) !important; }
  .Black .corev10_single #sandbox_center .postintro, .Black_Left .corev10_single #sandbox_center .postintro, .Black_Right .corev10_single #sandbox_center .postintro, .Black_Slice_1 .corev10_single #sandbox_center .postintro, .Black_Slice_2 .corev10_single #sandbox_center .postintro, .Black_Slice_3 .corev10_single #sandbox_center .postintro, .Black_Slice_4 .corev10_single #sandbox_center .postintro {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-top: solid 5px rgba(255, 255, 255, 0.08) !important; }
  .Black .corev10_single #sandbox_center h1, .Black .corev10_single #sandbox_center h2, .Black .corev10_single #sandbox_center h3, .Black .corev10_single #sandbox_center h4, .Black .corev10_single #sandbox_center h5, .Black .corev10_single #sandbox_center hr, .Black .corev10_single #sandbox_center ul, .Black .corev10_single #sandbox_center ol, .Black .corev10_single #sandbox_center .gallery, .Black_Left .corev10_single #sandbox_center h1, .Black_Left .corev10_single #sandbox_center h2, .Black_Left .corev10_single #sandbox_center h3, .Black_Left .corev10_single #sandbox_center h4, .Black_Left .corev10_single #sandbox_center h5, .Black_Left .corev10_single #sandbox_center hr, .Black_Left .corev10_single #sandbox_center ul, .Black_Left .corev10_single #sandbox_center ol, .Black_Left .corev10_single #sandbox_center .gallery, .Black_Right .corev10_single #sandbox_center h1, .Black_Right .corev10_single #sandbox_center h2, .Black_Right .corev10_single #sandbox_center h3, .Black_Right .corev10_single #sandbox_center h4, .Black_Right .corev10_single #sandbox_center h5, .Black_Right .corev10_single #sandbox_center hr, .Black_Right .corev10_single #sandbox_center ul, .Black_Right .corev10_single #sandbox_center ol, .Black_Right .corev10_single #sandbox_center .gallery, .Black_Slice_1 .corev10_single #sandbox_center h1, .Black_Slice_1 .corev10_single #sandbox_center h2, .Black_Slice_1 .corev10_single #sandbox_center h3, .Black_Slice_1 .corev10_single #sandbox_center h4, .Black_Slice_1 .corev10_single #sandbox_center h5, .Black_Slice_1 .corev10_single #sandbox_center hr, .Black_Slice_1 .corev10_single #sandbox_center ul, .Black_Slice_1 .corev10_single #sandbox_center ol, .Black_Slice_1 .corev10_single #sandbox_center .gallery, .Black_Slice_2 .corev10_single #sandbox_center h1, .Black_Slice_2 .corev10_single #sandbox_center h2, .Black_Slice_2 .corev10_single #sandbox_center h3, .Black_Slice_2 .corev10_single #sandbox_center h4, .Black_Slice_2 .corev10_single #sandbox_center h5, .Black_Slice_2 .corev10_single #sandbox_center hr, .Black_Slice_2 .corev10_single #sandbox_center ul, .Black_Slice_2 .corev10_single #sandbox_center ol, .Black_Slice_2 .corev10_single #sandbox_center .gallery, .Black_Slice_3 .corev10_single #sandbox_center h1, .Black_Slice_3 .corev10_single #sandbox_center h2, .Black_Slice_3 .corev10_single #sandbox_center h3, .Black_Slice_3 .corev10_single #sandbox_center h4, .Black_Slice_3 .corev10_single #sandbox_center h5, .Black_Slice_3 .corev10_single #sandbox_center hr, .Black_Slice_3 .corev10_single #sandbox_center ul, .Black_Slice_3 .corev10_single #sandbox_center ol, .Black_Slice_3 .corev10_single #sandbox_center .gallery, .Black_Slice_4 .corev10_single #sandbox_center h1, .Black_Slice_4 .corev10_single #sandbox_center h2, .Black_Slice_4 .corev10_single #sandbox_center h3, .Black_Slice_4 .corev10_single #sandbox_center h4, .Black_Slice_4 .corev10_single #sandbox_center h5, .Black_Slice_4 .corev10_single #sandbox_center hr, .Black_Slice_4 .corev10_single #sandbox_center ul, .Black_Slice_4 .corev10_single #sandbox_center ol, .Black_Slice_4 .corev10_single #sandbox_center .gallery {
    background-color: rgba(255, 255, 255, 0.08) !important; }
  .Black .corev10_single #sandbox_center h1:first-of-type, .Black_Left .corev10_single #sandbox_center h1:first-of-type, .Black_Right .corev10_single #sandbox_center h1:first-of-type, .Black_Slice_1 .corev10_single #sandbox_center h1:first-of-type, .Black_Slice_2 .corev10_single #sandbox_center h1:first-of-type, .Black_Slice_3 .corev10_single #sandbox_center h1:first-of-type, .Black_Slice_4 .corev10_single #sandbox_center h1:first-of-type {
    background-color: none !important; }
  .Black .corev10_single #sandbox_center p, .Black_Left .corev10_single #sandbox_center p, .Black_Right .corev10_single #sandbox_center p, .Black_Slice_1 .corev10_single #sandbox_center p, .Black_Slice_2 .corev10_single #sandbox_center p, .Black_Slice_3 .corev10_single #sandbox_center p, .Black_Slice_4 .corev10_single #sandbox_center p {
    background-color: rgba(255, 255, 255, 0.05) !important; }
  .Black .corev10_single #sandbox_center .corebox, .Black .corev10_single #sandbox_center #author_bio, .Black .corev10_single #sandbox_center .single_source, .Black .corev10_single #sandbox_center #single_similar_posts, .Black_Left .corev10_single #sandbox_center .corebox, .Black_Left .corev10_single #sandbox_center #author_bio, .Black_Left .corev10_single #sandbox_center .single_source, .Black_Left .corev10_single #sandbox_center #single_similar_posts, .Black_Right .corev10_single #sandbox_center .corebox, .Black_Right .corev10_single #sandbox_center #author_bio, .Black_Right .corev10_single #sandbox_center .single_source, .Black_Right .corev10_single #sandbox_center #single_similar_posts, .Black_Slice_1 .corev10_single #sandbox_center .corebox, .Black_Slice_1 .corev10_single #sandbox_center #author_bio, .Black_Slice_1 .corev10_single #sandbox_center .single_source, .Black_Slice_1 .corev10_single #sandbox_center #single_similar_posts, .Black_Slice_2 .corev10_single #sandbox_center .corebox, .Black_Slice_2 .corev10_single #sandbox_center #author_bio, .Black_Slice_2 .corev10_single #sandbox_center .single_source, .Black_Slice_2 .corev10_single #sandbox_center #single_similar_posts, .Black_Slice_3 .corev10_single #sandbox_center .corebox, .Black_Slice_3 .corev10_single #sandbox_center #author_bio, .Black_Slice_3 .corev10_single #sandbox_center .single_source, .Black_Slice_3 .corev10_single #sandbox_center #single_similar_posts, .Black_Slice_4 .corev10_single #sandbox_center .corebox, .Black_Slice_4 .corev10_single #sandbox_center #author_bio, .Black_Slice_4 .corev10_single #sandbox_center .single_source, .Black_Slice_4 .corev10_single #sandbox_center #single_similar_posts {
    background-color: rgba(255, 255, 255, 0.09) !important; }
  .Black .corev10_single #sandbox_center #meta_line1, .Black .corev10_single #sandbox_center #meta_line2, .Black_Left .corev10_single #sandbox_center #meta_line1, .Black_Left .corev10_single #sandbox_center #meta_line2, .Black_Right .corev10_single #sandbox_center #meta_line1, .Black_Right .corev10_single #sandbox_center #meta_line2, .Black_Slice_1 .corev10_single #sandbox_center #meta_line1, .Black_Slice_1 .corev10_single #sandbox_center #meta_line2, .Black_Slice_2 .corev10_single #sandbox_center #meta_line1, .Black_Slice_2 .corev10_single #sandbox_center #meta_line2, .Black_Slice_3 .corev10_single #sandbox_center #meta_line1, .Black_Slice_3 .corev10_single #sandbox_center #meta_line2, .Black_Slice_4 .corev10_single #sandbox_center #meta_line1, .Black_Slice_4 .corev10_single #sandbox_center #meta_line2 {
    border-bottom: solid 1px rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.5) !important; }
    .Black .corev10_single #sandbox_center #meta_line1 a, .Black .corev10_single #sandbox_center #meta_line2 a, .Black_Left .corev10_single #sandbox_center #meta_line1 a, .Black_Left .corev10_single #sandbox_center #meta_line2 a, .Black_Right .corev10_single #sandbox_center #meta_line1 a, .Black_Right .corev10_single #sandbox_center #meta_line2 a, .Black_Slice_1 .corev10_single #sandbox_center #meta_line1 a, .Black_Slice_1 .corev10_single #sandbox_center #meta_line2 a, .Black_Slice_2 .corev10_single #sandbox_center #meta_line1 a, .Black_Slice_2 .corev10_single #sandbox_center #meta_line2 a, .Black_Slice_3 .corev10_single #sandbox_center #meta_line1 a, .Black_Slice_3 .corev10_single #sandbox_center #meta_line2 a, .Black_Slice_4 .corev10_single #sandbox_center #meta_line1 a, .Black_Slice_4 .corev10_single #sandbox_center #meta_line2 a {
      background-color: rgba(255, 255, 255, 0) !important;
      color: rgba(255, 255, 255, 0.4) !important; }
      .Black .corev10_single #sandbox_center #meta_line1 a:hover, .Black .corev10_single #sandbox_center #meta_line2 a:hover, .Black_Left .corev10_single #sandbox_center #meta_line1 a:hover, .Black_Left .corev10_single #sandbox_center #meta_line2 a:hover, .Black_Right .corev10_single #sandbox_center #meta_line1 a:hover, .Black_Right .corev10_single #sandbox_center #meta_line2 a:hover, .Black_Slice_1 .corev10_single #sandbox_center #meta_line1 a:hover, .Black_Slice_1 .corev10_single #sandbox_center #meta_line2 a:hover, .Black_Slice_2 .corev10_single #sandbox_center #meta_line1 a:hover, .Black_Slice_2 .corev10_single #sandbox_center #meta_line2 a:hover, .Black_Slice_3 .corev10_single #sandbox_center #meta_line1 a:hover, .Black_Slice_3 .corev10_single #sandbox_center #meta_line2 a:hover, .Black_Slice_4 .corev10_single #sandbox_center #meta_line1 a:hover, .Black_Slice_4 .corev10_single #sandbox_center #meta_line2 a:hover {
        background-color: rgba(255, 255, 255, 0.8) !important;
        color: black !important; }
  .Black .corev10_single #sandbox_center #mainpost_title h1, .Black_Left .corev10_single #sandbox_center #mainpost_title h1, .Black_Right .corev10_single #sandbox_center #mainpost_title h1, .Black_Slice_1 .corev10_single #sandbox_center #mainpost_title h1, .Black_Slice_2 .corev10_single #sandbox_center #mainpost_title h1, .Black_Slice_3 .corev10_single #sandbox_center #mainpost_title h1, .Black_Slice_4 .corev10_single #sandbox_center #mainpost_title h1 {
    background: none !important;
    color: rgba(255, 255, 255, 0.4) !important; }

.White .corev10_single #sandbox_center a, .White_Left .corev10_single #sandbox_center a, .White_Right .corev10_single #sandbox_center a, .White_Slice_1 .corev10_single #sandbox_center a, .White_Slice_2 .corev10_single #sandbox_center a, .White_Slice_3 .corev10_single #sandbox_center a, .White_Slice_4 .corev10_single #sandbox_center a {
  color: #579; }
  .White .corev10_single #sandbox_center a:hover, .White_Left .corev10_single #sandbox_center a:hover, .White_Right .corev10_single #sandbox_center a:hover, .White_Slice_1 .corev10_single #sandbox_center a:hover, .White_Slice_2 .corev10_single #sandbox_center a:hover, .White_Slice_3 .corev10_single #sandbox_center a:hover, .White_Slice_4 .corev10_single #sandbox_center a:hover {
    color: black; }
.White .corev10_single #sandbox_center, .White_Left .corev10_single #sandbox_center, .White_Right .corev10_single #sandbox_center, .White_Slice_1 .corev10_single #sandbox_center, .White_Slice_2 .corev10_single #sandbox_center, .White_Slice_3 .corev10_single #sandbox_center, .White_Slice_4 .corev10_single #sandbox_center {
  background-color: rgba(255, 255, 255, 0.99) !important; }
  .White .corev10_single #sandbox_center .postintro, .White_Left .corev10_single #sandbox_center .postintro, .White_Right .corev10_single #sandbox_center .postintro, .White_Slice_1 .corev10_single #sandbox_center .postintro, .White_Slice_2 .corev10_single #sandbox_center .postintro, .White_Slice_3 .corev10_single #sandbox_center .postintro, .White_Slice_4 .corev10_single #sandbox_center .postintro {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-top: solid 5px rgba(0, 0, 0, 0.08) !important; }
  .White .corev10_single #sandbox_center h1, .White .corev10_single #sandbox_center h2, .White .corev10_single #sandbox_center h3, .White .corev10_single #sandbox_center h4, .White .corev10_single #sandbox_center h5, .White .corev10_single #sandbox_center hr, .White .corev10_single #sandbox_center ul, .White .corev10_single #sandbox_center ol, .White .corev10_single #sandbox_center .gallery, .White_Left .corev10_single #sandbox_center h1, .White_Left .corev10_single #sandbox_center h2, .White_Left .corev10_single #sandbox_center h3, .White_Left .corev10_single #sandbox_center h4, .White_Left .corev10_single #sandbox_center h5, .White_Left .corev10_single #sandbox_center hr, .White_Left .corev10_single #sandbox_center ul, .White_Left .corev10_single #sandbox_center ol, .White_Left .corev10_single #sandbox_center .gallery, .White_Right .corev10_single #sandbox_center h1, .White_Right .corev10_single #sandbox_center h2, .White_Right .corev10_single #sandbox_center h3, .White_Right .corev10_single #sandbox_center h4, .White_Right .corev10_single #sandbox_center h5, .White_Right .corev10_single #sandbox_center hr, .White_Right .corev10_single #sandbox_center ul, .White_Right .corev10_single #sandbox_center ol, .White_Right .corev10_single #sandbox_center .gallery, .White_Slice_1 .corev10_single #sandbox_center h1, .White_Slice_1 .corev10_single #sandbox_center h2, .White_Slice_1 .corev10_single #sandbox_center h3, .White_Slice_1 .corev10_single #sandbox_center h4, .White_Slice_1 .corev10_single #sandbox_center h5, .White_Slice_1 .corev10_single #sandbox_center hr, .White_Slice_1 .corev10_single #sandbox_center ul, .White_Slice_1 .corev10_single #sandbox_center ol, .White_Slice_1 .corev10_single #sandbox_center .gallery, .White_Slice_2 .corev10_single #sandbox_center h1, .White_Slice_2 .corev10_single #sandbox_center h2, .White_Slice_2 .corev10_single #sandbox_center h3, .White_Slice_2 .corev10_single #sandbox_center h4, .White_Slice_2 .corev10_single #sandbox_center h5, .White_Slice_2 .corev10_single #sandbox_center hr, .White_Slice_2 .corev10_single #sandbox_center ul, .White_Slice_2 .corev10_single #sandbox_center ol, .White_Slice_2 .corev10_single #sandbox_center .gallery, .White_Slice_3 .corev10_single #sandbox_center h1, .White_Slice_3 .corev10_single #sandbox_center h2, .White_Slice_3 .corev10_single #sandbox_center h3, .White_Slice_3 .corev10_single #sandbox_center h4, .White_Slice_3 .corev10_single #sandbox_center h5, .White_Slice_3 .corev10_single #sandbox_center hr, .White_Slice_3 .corev10_single #sandbox_center ul, .White_Slice_3 .corev10_single #sandbox_center ol, .White_Slice_3 .corev10_single #sandbox_center .gallery, .White_Slice_4 .corev10_single #sandbox_center h1, .White_Slice_4 .corev10_single #sandbox_center h2, .White_Slice_4 .corev10_single #sandbox_center h3, .White_Slice_4 .corev10_single #sandbox_center h4, .White_Slice_4 .corev10_single #sandbox_center h5, .White_Slice_4 .corev10_single #sandbox_center hr, .White_Slice_4 .corev10_single #sandbox_center ul, .White_Slice_4 .corev10_single #sandbox_center ol, .White_Slice_4 .corev10_single #sandbox_center .gallery {
    background-color: rgba(0, 0, 0, 0.08) !important; }
  .White .corev10_single #sandbox_center h1:first-of-type, .White_Left .corev10_single #sandbox_center h1:first-of-type, .White_Right .corev10_single #sandbox_center h1:first-of-type, .White_Slice_1 .corev10_single #sandbox_center h1:first-of-type, .White_Slice_2 .corev10_single #sandbox_center h1:first-of-type, .White_Slice_3 .corev10_single #sandbox_center h1:first-of-type, .White_Slice_4 .corev10_single #sandbox_center h1:first-of-type {
    background-color: none !important; }
  .White .corev10_single #sandbox_center p, .White_Left .corev10_single #sandbox_center p, .White_Right .corev10_single #sandbox_center p, .White_Slice_1 .corev10_single #sandbox_center p, .White_Slice_2 .corev10_single #sandbox_center p, .White_Slice_3 .corev10_single #sandbox_center p, .White_Slice_4 .corev10_single #sandbox_center p {
    background-color: rgba(0, 0, 0, 0.05) !important; }
  .White .corev10_single #sandbox_center .corebox, .White .corev10_single #sandbox_center #author_bio, .White .corev10_single #sandbox_center .single_source, .White .corev10_single #sandbox_center #single_similar_posts, .White_Left .corev10_single #sandbox_center .corebox, .White_Left .corev10_single #sandbox_center #author_bio, .White_Left .corev10_single #sandbox_center .single_source, .White_Left .corev10_single #sandbox_center #single_similar_posts, .White_Right .corev10_single #sandbox_center .corebox, .White_Right .corev10_single #sandbox_center #author_bio, .White_Right .corev10_single #sandbox_center .single_source, .White_Right .corev10_single #sandbox_center #single_similar_posts, .White_Slice_1 .corev10_single #sandbox_center .corebox, .White_Slice_1 .corev10_single #sandbox_center #author_bio, .White_Slice_1 .corev10_single #sandbox_center .single_source, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts, .White_Slice_2 .corev10_single #sandbox_center .corebox, .White_Slice_2 .corev10_single #sandbox_center #author_bio, .White_Slice_2 .corev10_single #sandbox_center .single_source, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts, .White_Slice_3 .corev10_single #sandbox_center .corebox, .White_Slice_3 .corev10_single #sandbox_center #author_bio, .White_Slice_3 .corev10_single #sandbox_center .single_source, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts, .White_Slice_4 .corev10_single #sandbox_center .corebox, .White_Slice_4 .corev10_single #sandbox_center #author_bio, .White_Slice_4 .corev10_single #sandbox_center .single_source, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts {
    background-color: rgba(0, 0, 0, 0.09) !important; }
    .White .corev10_single #sandbox_center .corebox h1, .White .corev10_single #sandbox_center .corebox h2, .White .corev10_single #sandbox_center .corebox h3, .White .corev10_single #sandbox_center .corebox h4, .White .corev10_single #sandbox_center .corebox h5, .White .corev10_single #sandbox_center .corebox p, .White .corev10_single #sandbox_center .corebox ul, .White .corev10_single #sandbox_center .corebox ol, .White .corev10_single #sandbox_center #author_bio h1, .White .corev10_single #sandbox_center #author_bio h2, .White .corev10_single #sandbox_center #author_bio h3, .White .corev10_single #sandbox_center #author_bio h4, .White .corev10_single #sandbox_center #author_bio h5, .White .corev10_single #sandbox_center #author_bio p, .White .corev10_single #sandbox_center #author_bio ul, .White .corev10_single #sandbox_center #author_bio ol, .White .corev10_single #sandbox_center .single_source h1, .White .corev10_single #sandbox_center .single_source h2, .White .corev10_single #sandbox_center .single_source h3, .White .corev10_single #sandbox_center .single_source h4, .White .corev10_single #sandbox_center .single_source h5, .White .corev10_single #sandbox_center .single_source p, .White .corev10_single #sandbox_center .single_source ul, .White .corev10_single #sandbox_center .single_source ol, .White .corev10_single #sandbox_center #single_similar_posts h1, .White .corev10_single #sandbox_center #single_similar_posts h2, .White .corev10_single #sandbox_center #single_similar_posts h3, .White .corev10_single #sandbox_center #single_similar_posts h4, .White .corev10_single #sandbox_center #single_similar_posts h5, .White .corev10_single #sandbox_center #single_similar_posts p, .White .corev10_single #sandbox_center #single_similar_posts ul, .White .corev10_single #sandbox_center #single_similar_posts ol, .White_Left .corev10_single #sandbox_center .corebox h1, .White_Left .corev10_single #sandbox_center .corebox h2, .White_Left .corev10_single #sandbox_center .corebox h3, .White_Left .corev10_single #sandbox_center .corebox h4, .White_Left .corev10_single #sandbox_center .corebox h5, .White_Left .corev10_single #sandbox_center .corebox p, .White_Left .corev10_single #sandbox_center .corebox ul, .White_Left .corev10_single #sandbox_center .corebox ol, .White_Left .corev10_single #sandbox_center #author_bio h1, .White_Left .corev10_single #sandbox_center #author_bio h2, .White_Left .corev10_single #sandbox_center #author_bio h3, .White_Left .corev10_single #sandbox_center #author_bio h4, .White_Left .corev10_single #sandbox_center #author_bio h5, .White_Left .corev10_single #sandbox_center #author_bio p, .White_Left .corev10_single #sandbox_center #author_bio ul, .White_Left .corev10_single #sandbox_center #author_bio ol, .White_Left .corev10_single #sandbox_center .single_source h1, .White_Left .corev10_single #sandbox_center .single_source h2, .White_Left .corev10_single #sandbox_center .single_source h3, .White_Left .corev10_single #sandbox_center .single_source h4, .White_Left .corev10_single #sandbox_center .single_source h5, .White_Left .corev10_single #sandbox_center .single_source p, .White_Left .corev10_single #sandbox_center .single_source ul, .White_Left .corev10_single #sandbox_center .single_source ol, .White_Left .corev10_single #sandbox_center #single_similar_posts h1, .White_Left .corev10_single #sandbox_center #single_similar_posts h2, .White_Left .corev10_single #sandbox_center #single_similar_posts h3, .White_Left .corev10_single #sandbox_center #single_similar_posts h4, .White_Left .corev10_single #sandbox_center #single_similar_posts h5, .White_Left .corev10_single #sandbox_center #single_similar_posts p, .White_Left .corev10_single #sandbox_center #single_similar_posts ul, .White_Left .corev10_single #sandbox_center #single_similar_posts ol, .White_Right .corev10_single #sandbox_center .corebox h1, .White_Right .corev10_single #sandbox_center .corebox h2, .White_Right .corev10_single #sandbox_center .corebox h3, .White_Right .corev10_single #sandbox_center .corebox h4, .White_Right .corev10_single #sandbox_center .corebox h5, .White_Right .corev10_single #sandbox_center .corebox p, .White_Right .corev10_single #sandbox_center .corebox ul, .White_Right .corev10_single #sandbox_center .corebox ol, .White_Right .corev10_single #sandbox_center #author_bio h1, .White_Right .corev10_single #sandbox_center #author_bio h2, .White_Right .corev10_single #sandbox_center #author_bio h3, .White_Right .corev10_single #sandbox_center #author_bio h4, .White_Right .corev10_single #sandbox_center #author_bio h5, .White_Right .corev10_single #sandbox_center #author_bio p, .White_Right .corev10_single #sandbox_center #author_bio ul, .White_Right .corev10_single #sandbox_center #author_bio ol, .White_Right .corev10_single #sandbox_center .single_source h1, .White_Right .corev10_single #sandbox_center .single_source h2, .White_Right .corev10_single #sandbox_center .single_source h3, .White_Right .corev10_single #sandbox_center .single_source h4, .White_Right .corev10_single #sandbox_center .single_source h5, .White_Right .corev10_single #sandbox_center .single_source p, .White_Right .corev10_single #sandbox_center .single_source ul, .White_Right .corev10_single #sandbox_center .single_source ol, .White_Right .corev10_single #sandbox_center #single_similar_posts h1, .White_Right .corev10_single #sandbox_center #single_similar_posts h2, .White_Right .corev10_single #sandbox_center #single_similar_posts h3, .White_Right .corev10_single #sandbox_center #single_similar_posts h4, .White_Right .corev10_single #sandbox_center #single_similar_posts h5, .White_Right .corev10_single #sandbox_center #single_similar_posts p, .White_Right .corev10_single #sandbox_center #single_similar_posts ul, .White_Right .corev10_single #sandbox_center #single_similar_posts ol, .White_Slice_1 .corev10_single #sandbox_center .corebox h1, .White_Slice_1 .corev10_single #sandbox_center .corebox h2, .White_Slice_1 .corev10_single #sandbox_center .corebox h3, .White_Slice_1 .corev10_single #sandbox_center .corebox h4, .White_Slice_1 .corev10_single #sandbox_center .corebox h5, .White_Slice_1 .corev10_single #sandbox_center .corebox p, .White_Slice_1 .corev10_single #sandbox_center .corebox ul, .White_Slice_1 .corev10_single #sandbox_center .corebox ol, .White_Slice_1 .corev10_single #sandbox_center #author_bio h1, .White_Slice_1 .corev10_single #sandbox_center #author_bio h2, .White_Slice_1 .corev10_single #sandbox_center #author_bio h3, .White_Slice_1 .corev10_single #sandbox_center #author_bio h4, .White_Slice_1 .corev10_single #sandbox_center #author_bio h5, .White_Slice_1 .corev10_single #sandbox_center #author_bio p, .White_Slice_1 .corev10_single #sandbox_center #author_bio ul, .White_Slice_1 .corev10_single #sandbox_center #author_bio ol, .White_Slice_1 .corev10_single #sandbox_center .single_source h1, .White_Slice_1 .corev10_single #sandbox_center .single_source h2, .White_Slice_1 .corev10_single #sandbox_center .single_source h3, .White_Slice_1 .corev10_single #sandbox_center .single_source h4, .White_Slice_1 .corev10_single #sandbox_center .single_source h5, .White_Slice_1 .corev10_single #sandbox_center .single_source p, .White_Slice_1 .corev10_single #sandbox_center .single_source ul, .White_Slice_1 .corev10_single #sandbox_center .single_source ol, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts h1, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts h2, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts h3, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts h4, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts h5, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts p, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts ul, .White_Slice_1 .corev10_single #sandbox_center #single_similar_posts ol, .White_Slice_2 .corev10_single #sandbox_center .corebox h1, .White_Slice_2 .corev10_single #sandbox_center .corebox h2, .White_Slice_2 .corev10_single #sandbox_center .corebox h3, .White_Slice_2 .corev10_single #sandbox_center .corebox h4, .White_Slice_2 .corev10_single #sandbox_center .corebox h5, .White_Slice_2 .corev10_single #sandbox_center .corebox p, .White_Slice_2 .corev10_single #sandbox_center .corebox ul, .White_Slice_2 .corev10_single #sandbox_center .corebox ol, .White_Slice_2 .corev10_single #sandbox_center #author_bio h1, .White_Slice_2 .corev10_single #sandbox_center #author_bio h2, .White_Slice_2 .corev10_single #sandbox_center #author_bio h3, .White_Slice_2 .corev10_single #sandbox_center #author_bio h4, .White_Slice_2 .corev10_single #sandbox_center #author_bio h5, .White_Slice_2 .corev10_single #sandbox_center #author_bio p, .White_Slice_2 .corev10_single #sandbox_center #author_bio ul, .White_Slice_2 .corev10_single #sandbox_center #author_bio ol, .White_Slice_2 .corev10_single #sandbox_center .single_source h1, .White_Slice_2 .corev10_single #sandbox_center .single_source h2, .White_Slice_2 .corev10_single #sandbox_center .single_source h3, .White_Slice_2 .corev10_single #sandbox_center .single_source h4, .White_Slice_2 .corev10_single #sandbox_center .single_source h5, .White_Slice_2 .corev10_single #sandbox_center .single_source p, .White_Slice_2 .corev10_single #sandbox_center .single_source ul, .White_Slice_2 .corev10_single #sandbox_center .single_source ol, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts h1, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts h2, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts h3, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts h4, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts h5, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts p, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts ul, .White_Slice_2 .corev10_single #sandbox_center #single_similar_posts ol, .White_Slice_3 .corev10_single #sandbox_center .corebox h1, .White_Slice_3 .corev10_single #sandbox_center .corebox h2, .White_Slice_3 .corev10_single #sandbox_center .corebox h3, .White_Slice_3 .corev10_single #sandbox_center .corebox h4, .White_Slice_3 .corev10_single #sandbox_center .corebox h5, .White_Slice_3 .corev10_single #sandbox_center .corebox p, .White_Slice_3 .corev10_single #sandbox_center .corebox ul, .White_Slice_3 .corev10_single #sandbox_center .corebox ol, .White_Slice_3 .corev10_single #sandbox_center #author_bio h1, .White_Slice_3 .corev10_single #sandbox_center #author_bio h2, .White_Slice_3 .corev10_single #sandbox_center #author_bio h3, .White_Slice_3 .corev10_single #sandbox_center #author_bio h4, .White_Slice_3 .corev10_single #sandbox_center #author_bio h5, .White_Slice_3 .corev10_single #sandbox_center #author_bio p, .White_Slice_3 .corev10_single #sandbox_center #author_bio ul, .White_Slice_3 .corev10_single #sandbox_center #author_bio ol, .White_Slice_3 .corev10_single #sandbox_center .single_source h1, .White_Slice_3 .corev10_single #sandbox_center .single_source h2, .White_Slice_3 .corev10_single #sandbox_center .single_source h3, .White_Slice_3 .corev10_single #sandbox_center .single_source h4, .White_Slice_3 .corev10_single #sandbox_center .single_source h5, .White_Slice_3 .corev10_single #sandbox_center .single_source p, .White_Slice_3 .corev10_single #sandbox_center .single_source ul, .White_Slice_3 .corev10_single #sandbox_center .single_source ol, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts h1, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts h2, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts h3, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts h4, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts h5, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts p, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts ul, .White_Slice_3 .corev10_single #sandbox_center #single_similar_posts ol, .White_Slice_4 .corev10_single #sandbox_center .corebox h1, .White_Slice_4 .corev10_single #sandbox_center .corebox h2, .White_Slice_4 .corev10_single #sandbox_center .corebox h3, .White_Slice_4 .corev10_single #sandbox_center .corebox h4, .White_Slice_4 .corev10_single #sandbox_center .corebox h5, .White_Slice_4 .corev10_single #sandbox_center .corebox p, .White_Slice_4 .corev10_single #sandbox_center .corebox ul, .White_Slice_4 .corev10_single #sandbox_center .corebox ol, .White_Slice_4 .corev10_single #sandbox_center #author_bio h1, .White_Slice_4 .corev10_single #sandbox_center #author_bio h2, .White_Slice_4 .corev10_single #sandbox_center #author_bio h3, .White_Slice_4 .corev10_single #sandbox_center #author_bio h4, .White_Slice_4 .corev10_single #sandbox_center #author_bio h5, .White_Slice_4 .corev10_single #sandbox_center #author_bio p, .White_Slice_4 .corev10_single #sandbox_center #author_bio ul, .White_Slice_4 .corev10_single #sandbox_center #author_bio ol, .White_Slice_4 .corev10_single #sandbox_center .single_source h1, .White_Slice_4 .corev10_single #sandbox_center .single_source h2, .White_Slice_4 .corev10_single #sandbox_center .single_source h3, .White_Slice_4 .corev10_single #sandbox_center .single_source h4, .White_Slice_4 .corev10_single #sandbox_center .single_source h5, .White_Slice_4 .corev10_single #sandbox_center .single_source p, .White_Slice_4 .corev10_single #sandbox_center .single_source ul, .White_Slice_4 .corev10_single #sandbox_center .single_source ol, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts h1, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts h2, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts h3, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts h4, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts h5, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts p, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts ul, .White_Slice_4 .corev10_single #sandbox_center #single_similar_posts ol {
      color: rgba(0, 0, 0, 0.8) !important; }
  .White .corev10_single #sandbox_center #meta_line1, .White .corev10_single #sandbox_center #meta_line2, .White_Left .corev10_single #sandbox_center #meta_line1, .White_Left .corev10_single #sandbox_center #meta_line2, .White_Right .corev10_single #sandbox_center #meta_line1, .White_Right .corev10_single #sandbox_center #meta_line2, .White_Slice_1 .corev10_single #sandbox_center #meta_line1, .White_Slice_1 .corev10_single #sandbox_center #meta_line2, .White_Slice_2 .corev10_single #sandbox_center #meta_line1, .White_Slice_2 .corev10_single #sandbox_center #meta_line2, .White_Slice_3 .corev10_single #sandbox_center #meta_line1, .White_Slice_3 .corev10_single #sandbox_center #meta_line2, .White_Slice_4 .corev10_single #sandbox_center #meta_line1, .White_Slice_4 .corev10_single #sandbox_center #meta_line2 {
    border-bottom: solid 1px rgba(0, 0, 0, 0.12) !important;
    color: rgba(0, 0, 0, 0.5) !important; }
    .White .corev10_single #sandbox_center #meta_line1 a, .White .corev10_single #sandbox_center #meta_line2 a, .White_Left .corev10_single #sandbox_center #meta_line1 a, .White_Left .corev10_single #sandbox_center #meta_line2 a, .White_Right .corev10_single #sandbox_center #meta_line1 a, .White_Right .corev10_single #sandbox_center #meta_line2 a, .White_Slice_1 .corev10_single #sandbox_center #meta_line1 a, .White_Slice_1 .corev10_single #sandbox_center #meta_line2 a, .White_Slice_2 .corev10_single #sandbox_center #meta_line1 a, .White_Slice_2 .corev10_single #sandbox_center #meta_line2 a, .White_Slice_3 .corev10_single #sandbox_center #meta_line1 a, .White_Slice_3 .corev10_single #sandbox_center #meta_line2 a, .White_Slice_4 .corev10_single #sandbox_center #meta_line1 a, .White_Slice_4 .corev10_single #sandbox_center #meta_line2 a {
      background-color: transparent !important;
      color: rgba(0, 0, 0, 0.4) !important; }
      .White .corev10_single #sandbox_center #meta_line1 a:hover, .White .corev10_single #sandbox_center #meta_line2 a:hover, .White_Left .corev10_single #sandbox_center #meta_line1 a:hover, .White_Left .corev10_single #sandbox_center #meta_line2 a:hover, .White_Right .corev10_single #sandbox_center #meta_line1 a:hover, .White_Right .corev10_single #sandbox_center #meta_line2 a:hover, .White_Slice_1 .corev10_single #sandbox_center #meta_line1 a:hover, .White_Slice_1 .corev10_single #sandbox_center #meta_line2 a:hover, .White_Slice_2 .corev10_single #sandbox_center #meta_line1 a:hover, .White_Slice_2 .corev10_single #sandbox_center #meta_line2 a:hover, .White_Slice_3 .corev10_single #sandbox_center #meta_line1 a:hover, .White_Slice_3 .corev10_single #sandbox_center #meta_line2 a:hover, .White_Slice_4 .corev10_single #sandbox_center #meta_line1 a:hover, .White_Slice_4 .corev10_single #sandbox_center #meta_line2 a:hover {
        background-color: rgba(0, 0, 0, 0.8) !important;
        color: white !important; }
  .White .corev10_single #sandbox_center #mainpost_title h1, .White_Left .corev10_single #sandbox_center #mainpost_title h1, .White_Right .corev10_single #sandbox_center #mainpost_title h1, .White_Slice_1 .corev10_single #sandbox_center #mainpost_title h1, .White_Slice_2 .corev10_single #sandbox_center #mainpost_title h1, .White_Slice_3 .corev10_single #sandbox_center #mainpost_title h1, .White_Slice_4 .corev10_single #sandbox_center #mainpost_title h1 {
    background: none !important;
    color: rgba(0, 0, 0, 0.4) !important; }

.Black_Slice_1 #sandbox_center, .HalfDark_Slice_1 #sandbox_center, .HalfBright_Slice_1 #sandbox_center, .White_Slice_1 #sandbox_center, .Slice_1 #sandbox_center, .Black_Slice_2 #sandbox_center, .HalfDark_Slice_2 #sandbox_center, .HalfBright_Slice_2 #sandbox_center, .White_Slice_2 #sandbox_center, .Slice_2 #sandbox_center, .Black_Slice_3 #sandbox_center, .HalfDark_Slice_3 #sandbox_center, .HalfBright_Slice_3 #sandbox_center, .White_Slice_3 #sandbox_center, .Slice_3 #sandbox_center, .Black_Slice_4 #sandbox_center, .HalfDark_Slice_4 #sandbox_center, .HalfBright_Slice_4 #sandbox_center, .White_Slice_4 #sandbox_center, .Slice_4 #sandbox_center {
  width: 28%; }
.Black_Slice_1 #mainpost_categories, .Black_Slice_1 #mainpost_tags, .HalfDark_Slice_1 #mainpost_categories, .HalfDark_Slice_1 #mainpost_tags, .HalfBright_Slice_1 #mainpost_categories, .HalfBright_Slice_1 #mainpost_tags, .White_Slice_1 #mainpost_categories, .White_Slice_1 #mainpost_tags, .Slice_1 #mainpost_categories, .Slice_1 #mainpost_tags, .Black_Slice_2 #mainpost_categories, .Black_Slice_2 #mainpost_tags, .HalfDark_Slice_2 #mainpost_categories, .HalfDark_Slice_2 #mainpost_tags, .HalfBright_Slice_2 #mainpost_categories, .HalfBright_Slice_2 #mainpost_tags, .White_Slice_2 #mainpost_categories, .White_Slice_2 #mainpost_tags, .Slice_2 #mainpost_categories, .Slice_2 #mainpost_tags, .Black_Slice_3 #mainpost_categories, .Black_Slice_3 #mainpost_tags, .HalfDark_Slice_3 #mainpost_categories, .HalfDark_Slice_3 #mainpost_tags, .HalfBright_Slice_3 #mainpost_categories, .HalfBright_Slice_3 #mainpost_tags, .White_Slice_3 #mainpost_categories, .White_Slice_3 #mainpost_tags, .Slice_3 #mainpost_categories, .Slice_3 #mainpost_tags, .Black_Slice_4 #mainpost_categories, .Black_Slice_4 #mainpost_tags, .HalfDark_Slice_4 #mainpost_categories, .HalfDark_Slice_4 #mainpost_tags, .HalfBright_Slice_4 #mainpost_categories, .HalfBright_Slice_4 #mainpost_tags, .White_Slice_4 #mainpost_categories, .White_Slice_4 #mainpost_tags, .Slice_4 #mainpost_categories, .Slice_4 #mainpost_tags {
  width: 94% !important;
  margin: 2px 1% !important;
  padding: 1% 2% !important;
  font-size: 1em !important;
  line-height: 1.8em !important;
  -webkit-border-radius: 0, 0, 0, 0 !important;
  -moz-border-radius: 0, 0, 0, 0 !important;
  -ms-border-radius: 0, 0, 0, 0 !important;
  -o-border-radius: 0, 0, 0, 0 !important;
  border-radius: 0, 0, 0, 0 !important; }
.Black_Slice_1 #mainpost_tags, .HalfDark_Slice_1 #mainpost_tags, .HalfBright_Slice_1 #mainpost_tags, .White_Slice_1 #mainpost_tags, .Slice_1 #mainpost_tags, .Black_Slice_2 #mainpost_tags, .HalfDark_Slice_2 #mainpost_tags, .HalfBright_Slice_2 #mainpost_tags, .White_Slice_2 #mainpost_tags, .Slice_2 #mainpost_tags, .Black_Slice_3 #mainpost_tags, .HalfDark_Slice_3 #mainpost_tags, .HalfBright_Slice_3 #mainpost_tags, .White_Slice_3 #mainpost_tags, .Slice_3 #mainpost_tags, .Black_Slice_4 #mainpost_tags, .HalfDark_Slice_4 #mainpost_tags, .HalfBright_Slice_4 #mainpost_tags, .White_Slice_4 #mainpost_tags, .Slice_4 #mainpost_tags {
  margin-bottom: 10px !important;
  -webkit-border-radius: 0, 0, 10px, 10px !important;
  -moz-border-radius: 0, 0, 10px, 10px !important;
  -ms-border-radius: 0, 0, 10px, 10px !important;
  -o-border-radius: 0, 0, 10px, 10px !important;
  border-radius: 0, 0, 10px, 10px !important; }
.Black_Slice_1 .postintro, .HalfDark_Slice_1 .postintro, .HalfBright_Slice_1 .postintro, .White_Slice_1 .postintro, .Slice_1 .postintro, .Black_Slice_2 .postintro, .HalfDark_Slice_2 .postintro, .HalfBright_Slice_2 .postintro, .White_Slice_2 .postintro, .Slice_2 .postintro, .Black_Slice_3 .postintro, .HalfDark_Slice_3 .postintro, .HalfBright_Slice_3 .postintro, .White_Slice_3 .postintro, .Slice_3 .postintro, .Black_Slice_4 .postintro, .HalfDark_Slice_4 .postintro, .HalfBright_Slice_4 .postintro, .White_Slice_4 .postintro, .Slice_4 .postintro {
  width: 96% !important;
  padding: 2% !important; }
.Black_Slice_1 .corebox, .HalfDark_Slice_1 .corebox, .HalfBright_Slice_1 .corebox, .White_Slice_1 .corebox, .Slice_1 .corebox, .Black_Slice_2 .corebox, .HalfDark_Slice_2 .corebox, .HalfBright_Slice_2 .corebox, .White_Slice_2 .corebox, .Slice_2 .corebox, .Black_Slice_3 .corebox, .HalfDark_Slice_3 .corebox, .HalfBright_Slice_3 .corebox, .White_Slice_3 .corebox, .Slice_3 .corebox, .Black_Slice_4 .corebox, .HalfDark_Slice_4 .corebox, .HalfBright_Slice_4 .corebox, .White_Slice_4 .corebox, .Slice_4 .corebox {
  margin-top: 10px !important;
  margin-bottom: 10px !important; }

.Black_Slice_1 .corev10_single #sandbox_center, .HalfDark_Slice_1 .corev10_single #sandbox_center, .HalfBright_Slice_1 .corev10_single #sandbox_center, .White_Slice_1 .corev10_single #sandbox_center, .Slice_1 .corev10_single #sandbox_center, .HalfDark_Left .corev10_single #sandbox_center, .HalfBright_Left .corev10_single #sandbox_center, .White_Left .corev10_single #sandbox_center, .Black_Left .corev10_single #sandbox_center, #sandbox_center.position-left .corev10_single #sandbox_center {
  float: left !important;
  margin: 25px 0 10px !important;
  border-radius: 0 20px 20px 0; }

.Black_Slice_2 .corev10_single #sandbox_center, .HalfDark_Slice_2 .corev10_single #sandbox_center, .HalfBright_Slice_2 .corev10_single #sandbox_center, .White_Slice_2 .corev10_single #sandbox_center, .Slice_2 .corev10_single #sandbox_center {
  float: left !important;
  margin: 25px 20% 10px !important; }

.Black_Slice_3 .corev10_single #sandbox_center, .HalfDark_Slice_3 .corev10_single #sandbox_center, .HalfBright_Slice_3 .corev10_single #sandbox_center, .White_Slice_3 .corev10_single #sandbox_center, .Slice_3 .corev10_single #sandbox_center {
  float: right !important;
  margin: 25px 20% 10px !important; }

.Black_Slice_4 .corev10_single #sandbox_center, .HalfDark_Slice_4 .corev10_single #sandbox_center, .HalfBright_Slice_4 .corev10_single #sandbox_center, .White_Slice_4 .corev10_single #sandbox_center, .Slice_4 .corev10_single #sandbox_center, .HalfDark_Right .corev10_single #sandbox_center, .HalfBright_Right .corev10_single #sandbox_center, .White_Right .corev10_single #sandbox_center, .Black_Right .corev10_single #sandbox_center, #sandbox_center.position-right .corev10_single #sandbox_center {
  float: right !important;
  margin: 25px 0 10px !important;
  border-radius: 20px 0 0 20px; }

.format-aside .excerpt, .format-aside .category, .format-quote .excerpt, .format-quote .category {
  display: none !important; }
.format-aside .title, .format-quote .title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 6 !important;
  width: 94% !important;
  padding: 2% 3%;
  font-size: 1.8em !important;
  line-height: 1.7em !important;
  transition-property: color !important;
  color: rgba(255, 255, 255, 0.3) !important; }
.format-aside:hover .title, .format-quote:hover .title {
  color: white !important;
  z-index: 1 !important; }
.format-aside:hover .backimage, .format-quote:hover .backimage {
  opacity: 0.5 !important; }

.format-image .excerpt, .format-image .category, .format-image .backimage, .format-video .excerpt, .format-video .category, .format-video .backimage, .format-gallery .excerpt, .format-gallery .category, .format-gallery .backimage {
  display: none !important; }
.format-image .title, .format-video .title, .format-gallery .title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 6 !important;
  width: 94% !important;
  padding: 2% 3% !important;
  font-size: 1.8em !important;
  line-height: 1.7em !important;
  transition-property: color, background-color !important;
  color: rgba(255, 255, 255, 0.05) !important;
  background-color: rgba(0, 0, 0, 0.05) !important; }
.format-image #mainpost_title, .format-video #mainpost_title, .format-gallery #mainpost_title {
  text-align: center !important; }
  .format-image #mainpost_title h1, .format-video #mainpost_title h1, .format-gallery #mainpost_title h1 {
    text-align: center !important; }
.format-image .wp-caption, .format-video .wp-caption, .format-gallery .wp-caption {
  background: none; }
.format-image:hover .title, .format-video:hover .title, .format-gallery:hover .title {
  color: white !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 1 !important; }
.format-image:hover .frontimage, .format-video:hover .frontimage, .format-gallery:hover .frontimage {
  opacity: 0.2 !important; }

.single-format-image #siteContainer, .single-format-gallery #siteContainer, .single-format-video #siteContainer, .single-format-quote #siteContainer {
  background-color: rgba(0, 0, 0, 0.5) !important; }
.single-format-image .wp-caption, .single-format-gallery .wp-caption, .single-format-video .wp-caption, .single-format-quote .wp-caption {
  background: none !important;
  padding: 2% !important;
  margin: 20px 0 !important;
  width: 96% !important;
  font-size: 1.1em !important;
  line-height: 1.3em !important; }
.single-format-image #sandbox_center, .single-format-gallery #sandbox_center, .single-format-video #sandbox_center, .single-format-quote #sandbox_center {
  background-clip: padding-box;
  -webkit-border-radius: 0 0 20px 20px;
  -moz-border-radius: 0 0 20px 20px;
  -ms-border-radius: 0 0 20px 20px;
  -o-border-radius: 0 0 20px 20px;
  border-radius: 0 0 20px 20px;
  width: 90% !important;
  margin: 10px 5% 0 !important; }
.single-format-image .normalbox, .single-format-gallery .normalbox, .single-format-video .normalbox, .single-format-quote .normalbox {
  width: 70% !important;
  margin: 0 15% !important; }
.single-format-image #single_similar_posts li, .single-format-gallery #single_similar_posts li, .single-format-video #single_similar_posts li, .single-format-quote #single_similar_posts li {
  float: left;
  position: relative;
  background-clip: padding-box;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  background: rgba(0, 0, 0, 0.3) !important;
  display: block !important;
  height: 120px !important;
  list-style: none !important;
  margin: 1% 0.5% !important;
  overflow: hidden !important;
  width: 32% !important;
  transition-property: color, background-color !important;
  transition-duration: 0.2s !important; }

@media screen and (min-width: 1701px) {
  #sandbox_center {
    width: 48%;
    margin: 25px 26% 10px; }

  #core_slideshow {
    width: 39.8%;
    height: 510px;
    margin: 0.5% 0.1%; }

  .postcard {
    width: 19%;
    height: 251px;
    margin: 0.5%; }

  #bottom_slice #search_bar {
    width: 20%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #main_menu {
    width: 60%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #core_social_menu {
    width: 15%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #core_social_menu .social_button {
    width: 23%;
    margin: 0 1%;
    height: 50px; }

  #bottom_slice #core_team_menu {
    width: 5%;
    height: 50px;
    margin: 2px 0; }

  #recentcomments, #popularthreads {
    float: left; }

  #friendly-links, #poll {
    float: right; } }
@media screen and (min-width: 1401px) and (max-width: 1700px) {
  #sandbox_center {
    width: 56%;
    margin: 25px 22% 10px; }

  #core_slideshow {
    width: 39.8%;
    height: 508px;
    margin: 0.5% 0.1%; }

  .postcard {
    width: 19%;
    height: 251px;
    margin: 0.5%; }

  #bottom_slice #search_bar {
    width: 30%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #main_menu {
    width: 70%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #core_social_menu {
    width: 20%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #core_social_menu .social_button {
    width: 23%;
    margin: 0 1%;
    height: 50px; }

  #bottom_slice #core_team_menu {
    width: 10%;
    height: 50px;
    margin: 2px 0; }

  #recentcomments, #popularthreads {
    float: left; }

  #friendly-links, #poll {
    float: right; } }
@media screen and (min-width: 1051px) and (max-width: 1400px) {
  #sandbox_center {
    width: 70%;
    margin: 25px 15% 10px; }

  .postcard {
    width: 24%;
    height: 251px;
    margin: 0.5%; }

  #core_slideshow {
    width: 49.8%;
    height: 506px;
    margin: 0.5% 0.1%; }

  #bottom_slice #search_bar {
    width: 40%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #main_menu {
    width: 60%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #core_social_menu {
    width: 25%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #core_social_menu .social_button {
    width: 23%;
    margin: 0 1%;
    height: 50px; }

  #bottom_slice #core_team_menu {
    width: 15%;
    height: 50px;
    margin: 2px 0; }

  #recentcomments, #popularthreads {
    float: left; }

  #friendly-links, #poll {
    float: right; } }
@media screen and (min-width: 901px) and (max-width: 1050px) {
  #sandbox_center {
    width: 90%;
    margin: 25px 5% 10px; }

  .postcard {
    width: 49%;
    height: 251px;
    margin: 0.5%; }

  #core_slideshow {
    width: 99.8%;
    height: 510px;
    margin: 0.5% 0.1%; }

  #sidebar .brick {
    width: 42%;
    margin: 0.5%;
    padding: 1%; }

  #friendly-links, #poll, #recentcomments, #popularthreads {
    width: 46%;
    margin: 0.5%;
    padding: 1%; }

  #friendly-links, #popularthreads {
    float: right; }

  #recentcomments, #poll {
    float: left; }

  #bottom_slice #search_bar {
    width: 100%;
    height: 50px;
    margin: 2px 0; }
    #bottom_slice #search_bar #s {
      width: 90%;
      padding: 0 1% 0 7%; }

  #bottom_slice #main_menu {
    width: 100%;
    height: auto;
    margin: 2px 0;
    float: left; }

  #bottom_slice #main_menu li a {
    float: none;
    display: inline-block; }

  #bottom_slice #core_social_menu {
    width: 48%;
    height: 50px;
    margin: 2px 1%; }

  #bottom_slice #core_social_menu .social_button {
    width: 23%;
    margin: 0 1%;
    height: 50px; }

  #bottom_slice #core_team_menu {
    width: 48%;
    height: 50px;
    margin: 2px 1%; } }
@media screen and (min-width: 601px) and (max-width: 900px) {
  #sandbox_center {
    width: 96%;
    margin: 25px 2% 10px !important; }

  .postcard {
    width: 49%;
    height: 251px;
    margin: 0.5%; }

  #core_slideshow {
    width: 99.8%;
    height: 510px;
    margin: 0.5% 0.1%; }

  #bottom_slice #search_bar {
    width: 100%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #main_menu {
    width: 100%;
    height: auto;
    margin: 2px 0;
    float: left; }

  #bottom_slice #main_menu li a {
    float: none;
    display: inline-block; }

  #bottom_slice #core_social_menu {
    width: 48%;
    height: 50px;
    margin: 2px 1%; }

  #bottom_slice #core_social_menu .social_button {
    width: 23%;
    margin: 0 1%;
    height: 50px; }

  #bottom_slice #core_team_menu {
    width: 48%;
    height: 50px;
    margin: 2px 1%; }

  #sidebar .brick {
    width: 42%;
    margin: 0.5%;
    padding: 1%; }

  #friendly-links, #poll, #recentcomments, #popularthreads {
    width: 46%;
    margin: 0.5%;
    padding: 1%; }

  #friendly-links, #popularthreads {
    float: right; }

  #recentcomments, #poll {
    float: left; } }
@media screen and (max-width: 600px) {
  #sandbox_center {
    width: 98%;
    margin: 25px 1% 10px !important; }

  .postcard {
    width: 98%;
    height: 251px;
    margin: 1%; }

  #core_slideshow {
    width: 99%;
    height: 510px;
    margin: 0.5%; }

  #sidebar .brick {
    width: 92%;
    margin: 3% 2%;
    padding: 2%;
    float: left; }

  #friendly-links, #poll, #recentcomments, #popularthreads {
    width: 92%;
    margin: 3% 2%;
    padding: 2%;
    float: left; }

  #bottom_slice #search_bar {
    width: 100%;
    height: 50px;
    margin: 2px 0; }

  #bottom_slice #main_menu {
    width: 100%;
    height: auto;
    margin: 2px 0;
    float: left; }

  #bottom_slice #main_menu li a {
    display: block;
    width: 42% !important;
    height: auto; }

  #main_menu li:nth-child(odd) a {
    float: left;
    border-right: 1px solid white; }

  #main_menu li:nth-child(even) a {
    float: right !important;
    border-left: 1px solid white; }

  #bottom_slice #core_social_menu {
    width: 68%;
    height: 50px;
    margin: 2px 1%; }

  #bottom_slice #core_social_menu .social_button {
    width: 23%;
    margin: 0 1%;
    height: 50px; }

  #bottom_slice #core_team_menu {
    width: 28%;
    height: 50px;
    margin: 2px 1%; } }
body {
  background-attachment: fixed;
  background-size: cover; }

/* ________________________( Fluid YouTube Embeds Float Fix ) */
.fluid-vid {
  float: left;
  position: relative;
  background-clip: padding-box;
  -webkit-border-radius: 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px;
  -ms-border-radius: 10px 10px 10px 10px;
  -o-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
  clear: both;
  overflow: auto;
  width: 98%;
  height: auto;
  display: block;
  margin: 10px 0;
  padding: 1%;
  border-top: solid 4px rgba(0, 0, 0, 0.5);
  border-bottom: solid 3px rgba(255, 255, 255, 0.3); }

.fluid-vid iframe {
  width: 100%;
  min-height: 200px;
  margin: 0;
  padding: 0; }

/* ________________________( Hide ShareDaddy Buttons in Hubs ) */
.single-hubs .sharedaddy {
  display: none; }

body, html {
  margin-top: 0 !important; }

.touchclickblocker {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 6; }

#core_team_menu {
  display: none !important; }

.format-image #mainpost_title, .format-video #mainpost_title, .format-gallery #mainpost_title {
  text-align: center !important; }

.tiled-gallery-item img {
  width: 100% !important;
  height: auto !important; }

/*# sourceMappingURL=style.css.map */
