/* TABLE OF CONTENTS
------------------------------
@IMPORTS

VARIABLES

GLOBALS

MODULES................Reusable objects

SECTIONS
- TOP BAR..............Leaderboard and magazine subscription space
- HEADER...............Logo, search bar, and main navigation
- MAIN SECTION.........Home page layout properties
- SKIINNY COLUMN.......Elements in skinny column
- ARTICLE..............Article and content styles
- RESULTS..............Archive page elements
- STREAM COLUMN........Banner ad and channel feed results
- FOOTER...............Yep... it's the footer

@MEDIA QUERIES
*/
/* @IMPORTS
------------------------------ */
.button {
  border: 1px solid #DDDDDF;
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e8eff3), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #e8eff3, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #e8eff3 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #e8eff3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e8eff3', GradientType=0);
  box-shadow: inset 0 1px 0 #FFF, inset 0 -1px 1px #e1ebef;
  color: #333333;
  text-decoration: none;
  line-height: 1em;
  padding: 7px 0;
}
.button:hover {
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f2f6f8), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #f2f6f8, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #f2f6f8 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #f2f6f8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#f2f6f8', GradientType=0);
  text-shadow: 0 -1px 0 #FFF;
  color: #806773;
}
.wide-content-column {
  width: 720px;
}
.wide-content-column form.search-query-box {
  font-size: 19px;
  height: 40px;
  line-height: 1em;
}
.wide-content-column form.search-query-box input {
  height: 45px;
}
.wide-content-column form.search-query-box input[type="text"] {
  width: 463px;
}
.wide-content-column form.search-query-box input[type="submit"] {
  border: 1px solid #8E8E8E;
  font-weight: 400;
  width: 150px;
  padding-left: 12px;
  padding-right: 12px;
}
/* VARIABLES
------------------------------ */
/*#F0F3F6*/
/* GLOBALS
------------------------------ */
body {
  background: #FFF;
  color: #333333;
  font: 400 14px 'Droid Sans', 'Museo Sans', 'Noto Sans', 'Open Sans', 'Source Sans Pro', 'Istok Web', 'Oxygen', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1em;
  -webkit-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
body.mobile-nav {
  margin-left: 165px;
  overflow-x: hidden;
}
a,
button {
  color: #08340C;
}
a:hover,
button:hover {
  color: #806773;
}
a,
button,
.title a span {
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  transition: all 150ms linear;
}
::-moz-selection {
  color: #FFF;
  background: #08340C;
}
::selection {
  color: #FFF;
  background: #08340C;
}
.container {
  width: 1088px;
}
#top-bar,
header.main,
section.main {
  clear: both;
  margin: 0 auto 20px;
  width: 1088px;
}
#top-bar:after,
header.main:after,
section.main:after {
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  content: "";
  font-size: 0;
}
time.date sup {
  font-style: italic;
  font-weight: normal;
  font-size: 10px;
  opacity: 0.7;
  text-transform: none;
  vertical-align: 3px;
}
.story p {
  text-align: justify;
}
.right {
  float: right;
}
.disabled,
.disabled a,
.disabled a:hover {
  color: #dedede !important;
  cursor: default;
  background: none !important;
}
.see-all a {
  color: #717972;
}
/* MODULES
------------------------------ */
form.search-query-box input[type="text"],
form.search input[type="text"] {
  float: left;
  padding: 6px;
  border: 1px solid #DDDDDF;
  border-right: 0;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
}
form.search-query-box button[type="submit"],
form.search button[type="submit"],
form.search-query-box input[type="submit"],
form.search input[type="submit"] {
  border: 1px solid #DDDDDF;
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e8eff3), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #e8eff3, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #e8eff3 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #e8eff3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e8eff3', GradientType=0);
  box-shadow: inset 0 1px 0 #FFF, inset 0 -1px 1px #e1ebef;
  color: #333333;
  text-decoration: none;
  line-height: 1em;
  padding: 7px 0;
  float: left;
  padding: 7px 0 8px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  margin: 0;
}
form.search-query-box button[type="submit"]:hover,
form.search button[type="submit"]:hover,
form.search-query-box input[type="submit"]:hover,
form.search input[type="submit"]:hover {
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f2f6f8), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #f2f6f8, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #f2f6f8 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #f2f6f8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#f2f6f8', GradientType=0);
  text-shadow: 0 -1px 0 #FFF;
  color: #806773;
}
form.search-query-box button[type="submit"]:hover,
form.search button[type="submit"]:hover,
form.search-query-box input[type="submit"]:hover,
form.search input[type="submit"]:hover {
  cursor: pointer;
}
form.search {
  margin-top: 25px;
  width: 330px;
}
form.search input[type="text"] {
  font-size: 12px;
  width: 297px;
  height: 29px;
}
form.search button[type="submit"],
form.search input[type="submit"] {
  border: 1px solid #DDDDDF;
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e8eff3), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #e8eff3, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #e8eff3 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #e8eff3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e8eff3', GradientType=0);
  box-shadow: inset 0 1px 0 #FFF, inset 0 -1px 1px #e1ebef;
  color: #333333;
  text-decoration: none;
  line-height: 1em;
  padding: 7px 0;
  width: 33px;
  height: 29px;
}
form.search button[type="submit"]:hover,
form.search input[type="submit"]:hover {
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f2f6f8), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #f2f6f8, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #f2f6f8 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #f2f6f8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#f2f6f8', GradientType=0);
  text-shadow: 0 -1px 0 #FFF;
  color: #806773;
}
.follow {
  float: right;
  margin-right: 30px;
  margin-top: 33px;
}
.follow li {
  float: left;
}
.follow li a {
  text-decoration: none;
  font-size: 15px;
}
.follow li.facebook a {
  color: #3b5998;
}
.follow li.twitter a {
  color: #18b8ee;
}
.follow li.linkedin a {
  color: #388db4;
}
.follow li.googleplus a {
  color: #db4a39;
}
.follow li.rss a {
  color: #F08034;
}
.follow li a:hover {
  color: #806773;
}
.page-numbers {
  padding-top: 25px;
  clear: both;
  font-size: 14px;
}
.page-numbers li {
  float: left;
  border-right: none;
}
.page-numbers li:first-child span,
.page-numbers li:first-child a {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.page-numbers li:last-child a {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  border-right: 1px solid #DDDDDF;
}
.page-numbers li span,
.page-numbers li a {
  border: 1px solid #DDDDDF;
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e8eff3), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #e8eff3, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #e8eff3 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #e8eff3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e8eff3', GradientType=0);
  box-shadow: inset 0 1px 0 #FFF, inset 0 -1px 1px #e1ebef;
  line-height: 1em;
  padding: 7px 0;
  display: block;
  padding: 7px 20px;
  color: #333333;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  margin-right: -1px;
}
.page-numbers li span:hover,
.page-numbers li a:hover {
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f2f6f8), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #f2f6f8, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #f2f6f8 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #f2f6f8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#f2f6f8', GradientType=0);
  text-shadow: 0 -1px 0 #FFF;
  color: #806773;
}
.page-numbers li a:hover {
  color: #806773;
  text-shadow: 0 -1px 0 #FFF;
}
.page-numbers li span.current,
.page-numbers li span.dots {
  background: #FFF;
}
/* TOP BAR
------------------------------ */
#top-bar {
  padding: 9px 0;
  width: 100%;
  border-bottom: 0px solid #DDDDDF;
  background: #f2f6f8;
}
#top-bar #login {
  margin-top: 0px;
  width: 99%;
}
#top-bar #login li {
  float: left;
  font-size: 11px;
  line-height: 2em;
  margin-left: 15px;
}
#top-bar #login li:first-child {
  background-image: url('http://i.opensystemsmedia.com/?f=gif&h=19&src=http://www.opensystemsmedia.com/images/osplogo.100.gif');
  background-repeat: no-repeat;
  background-position-x: -22px;
  padding-left: 40px;
  margin-left: 0px;
  background-position-y: 0px;
}
#top-bar #login li.reg {
  float: right;
}
#top-bar #login li.reg a {
  background-color: #717972;
  padding: 2px 7px;
  border-radius: 2px;
  color: white;
}
#top-bar #login li a {
  color: #7B7377;
  text-decoration: none;
}
#top-bar .leaderboard {
  float: left;
  width: 728px;
  height: 90px;
}
#top-bar .container {
  position: relative;
}
#top-bar .container .mag-promo {
  /*float:right;*/
  -moz-opacity: 0.8;
  opacity: 0.8;
  position: absolute;
  right: 0px;
  height: 243px;
  overflow: hidden;
  padding: 10px 8px;
  width: 330px;
  /*height:90px;*/
  border: 1px solid #DDDDDF;
  border-top: 4px solid #08340C;
  background: #FFF;
  font-size: 14px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
#top-bar .container .mag-promo em {
  font-style: italic;
}
#top-bar .container .mag-promo strong {
  display: block;
  color: #191919;
  text-transform: uppercase;
  font-weight: 400;
}
#top-bar .container .mag-promo ul {
  float: left;
  margin-top: 7px;
}
#top-bar .container .mag-promo li {
  margin-bottom: 3px;
}
#top-bar .container .mag-promo li.subscribe {
  list-style: none;
  margin-left: 0;
  margin-bottom: 5px;
}
#top-bar .container .mag-promo li.subscribe a {
  background: #08340C;
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  padding: 3px 1.25em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#top-bar .container .mag-promo li.subscribe a:hover {
  background: #806773;
}
#top-bar .container .mag-promo .mag-covers {
  float: right;
  position: relative;
  height: 98px;
  overflow: hidden;
  width: 167px;
  margin-right: -15px;
  margin-top: -12px;
}
#top-bar .container .mag-promo .mag-covers img {
  height: 80px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  -webkit-transform: rotate(9deg);
  -moz-transform: rotate(9deg);
  -o-transform: rotate(9deg);
  transform: rotate(9deg);
  -ms-transform: rotate(9deg);
  position: absolute;
  top: 30px;
  right: 0;
}
#top-bar .container .mag-promo .mag-covers img:first-child {
  right: 100px;
}
#top-bar .container .mag-promo .mag-covers img:nth-child(2) {
  right: 50px;
}
#top-bar .container .mag-promo #square-button-ads {
  position: absolute;
  bottom: 8px;
  height: 125px;
  width: 283px;
  left: 21px;
}
#top-bar .container .mag-promo #square-button-ads .wrapper {
  height: 125px;
  width: 125px;
  border-left: 4px solid #08340C;
}
#top-bar .container .mag-promo #square-button-ads .wrapper.even {
  float: left;
}
#top-bar .container .mag-promo #square-button-ads .wrapper.odd {
  float: right;
}
/* HEADER
------------------------------ */
header.main {
  margin-bottom: 0;
}
header.main .logo img {
  float: left;
  margin-right: 30px;
  margin-bottom: 18px;
}
header.main nav.content-types {
  clear: both;
}
header.main nav.content-types ul {
  /*float:right;*/
  line-height: 2em;
  font-size: 14px;
}
header.main nav.content-types ul li {
  float: left;
  padding: 5px 13px 10px 3px;
}
header.main form.search {
  float: none;
  margin-top: 0;
}
header.main nav.pre-nav {
  height: 130px;
}
header.main div.follow {
  display: none;
}
header.main nav.main {
  clear: both;
  font-size: 12px;
}
header.main nav.main ul.topics,
header.main nav.main ul.issue {
  /*background:@background;*/
  border-bottom: 25px solid #FFF;
  border-top: 4px solid #08340C;
  z-index: 10;
}
header.main nav.main ul.topics li a,
header.main nav.main ul.issue li a {
  display: inline-block;
  padding: 0 5px 0 11px;
  color: #6D6D6F;
  text-decoration: none;
  line-height: 42px;
  height: 42px;
  overflow: hidden;
}
header.main nav.main ul.topics li a:hover,
header.main nav.main ul.issue li a:hover {
  color: #806773;
  text-shadow: 0 -1px 0 #FFF;
}
header.main nav.main ul.topics li a[title="trending"],
header.main nav.main ul.issue li a[title="trending"] {
  font-size: 12px;
  font-weight: bold;
  margin-left: 9px;
}
header.main nav.main ul.topics li a[title="rss"],
header.main nav.main ul.issue li a[title="rss"] {
  font-size: 12px;
  font-weight: bold;
  margin-left: 9px;
  color: #e0742e;
}
header.main nav.main ul.topics ul.sub-menu,
header.main nav.main ul.issue ul.sub-menu {
  display: none;
  position: absolute;
  background: #f2f6f8;
  background-repeat: repeat-x;
  background-image: -webkit-linear-gradient(top, #d1dfe6 0, #e5edf1 1px, #f2f6f8 8px);
  background-image: -moz-linear-gradient(top, #d1dfe6 0, #e5edf1 1px, #f2f6f8 8px);
  background-image: -ms-linear-gradient(top, #d1dfe6 0, #e5edf1 1px, #f2f6f8 8px);
  background-image: -o-linear-gradient(top, #d1dfe6 0, #e5edf1 1px, #f2f6f8 8px);
  background-image: linear-gradient(to bottom, #d1dfe6 0, #e5edf1 1px, #f2f6f8 8px);
  z-index: 10;
  width: 243px;
}
header.main nav.main ul.topics ul.sub-menu a,
header.main nav.main ul.issue ul.sub-menu a {
  display: block;
  width: 243px;
}
header.main nav.main ul.topics ul.sub-menu ul.sub-menu,
header.main nav.main ul.issue ul.sub-menu ul.sub-menu {
  margin-left: 32px;
  border-left: 1px solid #dedede;
}
header.main nav.main ul.topics {
  float: left;
  width: 878px;
  height: 72px;
}
header.main nav.main ul.topics li {
  float: left;
}
header.main nav.main ul.topics li.current-menu-item > a {
  color: #08340C;
}
header.main nav.main ul.topics li.home a {
  font-size: 12px;
}
header.main nav.main ul.issue {
  float: right;
  width: 210px;
  height: 72px;
}
header.main nav.main ul.issue li {
  float: right;
}
header.main nav.main ul.issue li:first-child {
  display: none;
}
header.main nav.main ul.issue li a {
  padding: 0 15px;
  border-left: 1px solid #DDDDDF;
}
/* MAIN SECTION
------------------------------ */
section.main {
  min-height: 400px;
}
section.main .featured {
  float: left;
  width: 538px;
  margin: 0 28px 25px 0;
  position: relative;
}
section.main .featured .jcarousel-clip {
  overflow: hidden;
}
section.main .featured .slider li {
  width: 538px;
  clear: none !important;
}
section.main .featured .slider-controls {
  position: absolute;
  top: 130px;
  left: 15px;
  right: 15px;
  width: 508px;
  font-size: 20px;
  display: none;
}
section.main .featured .slider-controls a {
  text-decoration: none;
  color: #FFF;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.75);
}
section.main .featured .slider-controls a.slider-prev {
  float: left;
}
section.main .featured .slider-controls a.slider-next {
  float: right;
}
section.main .featured .slider-controls a:hover {
  color: #806773;
}
section.main #skinny-column.results {
  overflow-y: scroll;
  padding-right: 12px;
  /* Track */
  /* Handle */
}
section.main #skinny-column.results::-webkit-scrollbar {
  width: 7px;
}
section.main #skinny-column.results::-webkit-scrollbar-track {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  border: 1px solid #DDDDDF;
}
section.main #skinny-column.results::-webkit-scrollbar-thumb {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  background: #DDDDDF;
}
section.main #skinny-column.results li.result.home {
  margin-bottom: 24px;
}
section.main #skinny-column.results li.result.home img {
  margin-bottom: 23px;
}
section.main #skinny-column.results li.result label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6em;
  font-weight: bold;
}
section.main #skinny-column.results li.result.sponsored label.sponsored-label {
  color: #f17B77;
}
section.main #skinny-column.results li.result.sponsored h4 a {
  color: #af574D !important;
}
section.main #skinny-column.results li.result.articles label {
  color: #449803;
}
section.main #skinny-column.results li.result time {
  display: block;
  padding-bottom: 0px;
  line-height: 1em;
}
section.main #skinny-column.results li.result.sponsored time {
  display: none;
}
section.main #skinny-column.results li.result.noimage p {
  margin-top: 7px;
  line-height: 1.3em;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
section.main #skinny-column.results li.result:first-child h4 {
  font-size: 15px;
}
#home-sections {
  width: 758px;
  float: left;
}
#home-sections .home-section {
  width: 349px;
  margin: 0 30px 30px 0;
  background: #f2f6f8;
  padding: 15px 15px 0;
  border-bottom: 1px solid #DDDDDF;
}
#home-sections .home-section h4 {
  margin-bottom: 15px;
}
#home-sections .home-section h4 a {
  display: inline-block;
  padding: 3px 8px;
  background: #08340C;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #FFF;
  text-decoration: none;
  margin-left: -1px;
}
#home-sections .home-section h4 a:hover {
  background: #806773;
}
#home-sections .home-section li {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3em;
  width: 100%;
}
#home-sections .home-section li a {
  color: #191919;
  text-decoration: none;
}
#home-sections .home-section li a:hover {
  color: #806773;
}
#home-sections .home-section li.image {
  height: 280px;
  position: relative;
  border: 1px solid #6D6D6F;
  background-position: center center;
  background-repeat: no-repeat;
}
#home-sections .home-section li.image a {
  position: absolute;
  bottom: 0;
  display: block;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px;
  font: 400 14px 'Museo Sans', 'Droid Serif', 'Glegoo', 'Bitter', 'Doppio One', 'Arvo', 'Oxygen', 'Ek Mukta', 'Roboto', Georgia, 'Times New Roman', serif;
  line-height: 1.3em;
  color: #FFF;
  width: 100%;
}
#home-sections .home-section li.image a:hover {
  color: #806773;
}
#home-sections .home-section li:last-child {
  margin-bottom: 20px;
}
/* SKIINNY COLUMN
------------------------------ */
#skinny-column {
  z-index: 10;
  float: left;
  margin-right: 30px;
  width: 160px;
  font-size: 14px;
}
#skinny-column .share-options li,
#skinny-column .content-types li {
  position: relative;
  z-index: 2;
  height: 44px;
  overflow: hidden;
}
#skinny-column .share-options li:first-child,
#skinny-column .content-types li:first-child {
  position: absolute;
  z-index: 1;
}
#skinny-column .share-options li a,
#skinny-column .content-types li a {
  display: block;
  padding: 14px 15px;
  width: 160px;
  text-decoration: none;
  background: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
#skinny-column .share-options li a i,
#skinny-column .content-types li a i {
  margin-right: 0.5em !important;
}
#skinny-column .share-options li a.addthis_button_facebook_like,
#skinny-column .content-types li a.addthis_button_facebook_like {
  padding-top: 12px;
}
#skinny-column .share-options li a.addthis_button_tweet,
#skinny-column .content-types li a.addthis_button_tweet {
  padding-top: 13px;
}
#skinny-column .share-options li a.addthis_button_linkedin_counter,
#skinny-column .content-types li a.addthis_button_linkedin_counter {
  padding-top: 13px;
}
#skinny-column .share-options li.facebook a,
#skinny-column .content-types li.facebook a {
  color: #3b5998;
}
#skinny-column .share-options li.facebook a:hover,
#skinny-column .content-types li.facebook a:hover {
  background: #3b5998;
}
#skinny-column .share-options li.twitter a,
#skinny-column .content-types li.twitter a {
  color: #18b8ee;
}
#skinny-column .share-options li.twitter a:hover,
#skinny-column .content-types li.twitter a:hover {
  background: #18b8ee;
}
#skinny-column .share-options li.linkedin a,
#skinny-column .content-types li.linkedin a {
  color: #388db4;
}
#skinny-column .share-options li.linkedin a:hover,
#skinny-column .content-types li.linkedin a:hover {
  background: #388db4;
}
#skinny-column .share-options li.email a,
#skinny-column .content-types li.email a {
  color: #DD4B39;
}
#skinny-column .share-options li.email a:hover,
#skinny-column .content-types li.email a:hover {
  background: #DD4B39;
}
#skinny-column .share-options li.print a,
#skinny-column .content-types li.print a {
  color: #606366;
}
#skinny-column .share-options li.print a:hover,
#skinny-column .content-types li.print a:hover {
  background: #606366;
}
#skinny-column .share-options li.share a,
#skinny-column .content-types li.share a {
  background: #08340C;
  color: #FFF;
  font-weight: 700;
}
#skinny-column .share-options li.share a:hover,
#skinny-column .content-types li.share a:hover {
  background: #f2f6f8;
  color: #806773;
}
#skinny-column .share-options li a:hover,
#skinny-column .content-types li a:hover {
  color: #FFF;
}
#skinny-column .content-types li:first-child {
  position: relative;
}
#skinny-column .content-types.current li:first-child a,
#skinny-column .content-types li.current-menu-item a {
  background: #08340C;
  padding: 13px 15px;
  font-weight: 700;
  color: #FFF;
}
#skinny-column .content-types.current li:first-child a:hover,
#skinny-column .content-types li.current-menu-item a:hover {
  background: #806773;
  color: #FFF;
}
#skinny-column .content-types li a:hover {
  background: #f2f6f8;
  color: #806773;
}
#skinny-column .topics {
  margin-top: 20px;
  border-top: 3px solid #08340C;
  background: #f2f6f8;
  padding-bottom: 2px;
}
#skinny-column .topics li a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #333333;
}
#skinny-column .topics li a:hover {
  color: #806773;
}
#skinny-column .topics li.current-item a {
  color: #08340C;
}
#skinny-column .skyscraper {
  padding: 0px 0;
}
/* ARTICLE
------------------------------ */
article {
  float: right;
  width: 898px;
}
article #article-controls {
  z-index: 10;
  clear: both;
  margin-bottom: 13px;
  padding: 0px 0px 5px 0px;
  width: 898px;
  /*border-top:1px solid @borders;*/
  border-bottom: 1px solid #DDDDDF;
  background: #FFF;
  font-size: 14px;
}
article #article-controls:after {
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  content: "";
  font-size: 0;
}
article #article-controls.stick:after {
  position: absolute;
  bottom: 0;
  visibility: visible;
  margin-bottom: -4px;
  width: 898px;
  height: 3px;
  background: url(../images/article-controls.png) no-repeat 50% 0;
}
article #article-controls .date {
  float: left;
  padding: 8px 0;
  width: 163px;
  color: #414142;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 1px;
}
article #article-controls .article-label {
  float: left;
  padding: 8px 15px;
  width: 605px;
  color: #191919;
  text-transform: uppercase;
  font-weight: 700;
}
article #article-controls .article-label a {
  text-decoration: none;
  text-transform: none;
  opacity: 0.7;
}
article #article-controls .article-title {
  float: left;
  display: none;
  overflow: hidden;
  padding: 8px 15px;
  width: 582px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: italic;
  font-family: 'Museo Sans', 'Droid Serif', 'Glegoo', 'Bitter', 'Doppio One', 'Arvo', 'Oxygen', 'Ek Mukta', 'Roboto', Georgia, 'Times New Roman', serif;
}
article #article-controls #article-nav {
  float: right;
  width: 130px;
}
article #article-controls #article-nav a {
  border: 1px solid #DDDDDF;
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e8eff3), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #e8eff3, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #e8eff3 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #e8eff3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e8eff3', GradientType=0);
  box-shadow: inset 0 1px 0 #FFF, inset 0 -1px 1px #e1ebef;
  color: #333333;
  text-decoration: none;
  line-height: 1em;
  padding: 7px 0;
  float: left;
  display: block;
  width: 65px;
  text-align: center;
}
article #article-controls #article-nav a:hover {
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f2f6f8), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #f2f6f8, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #f2f6f8 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #f2f6f8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#f2f6f8', GradientType=0);
  text-shadow: 0 -1px 0 #FFF;
  color: #806773;
}
article #article-controls #article-nav a[rel=prev] {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
article #article-controls #article-nav a[rel=next] {
  border-left: 0;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
article.sponsored label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.9em;
  font-weight: bold;
  color: #f17B77;
}
article h1 {
  clear: both;
  margin: 0 60px 23px 0;
  font: 400 35px 'Museo Sans', 'Droid Serif', 'Glegoo', 'Bitter', 'Doppio One', 'Arvo', 'Oxygen', 'Ek Mukta', 'Roboto', Georgia, 'Times New Roman', serif;
  line-height: 1.2em;
}
article h1 a {
  color: #191919;
  text-decoration: none;
}
article #content {
  float: left;
  margin-right: 30px;
  width: 538px;
  font-size: 18px;
  /*
		li, li.bullets, p.bullets, p.Bullets{
		list-style:outside disc;
		margin:0 0 5px 1.25em;
		line-height: 1.2em;
		}
		ol li, li.numbered-bullets{
		list-style:decimal
		}
		*/
  /* short term hack to fix line height of news figure captions */
}
article #content.wide-content-column {
  width: 720px;
  clear: left;
}
article #content .comment-share {
  margin-bottom: 19px;
}
article #content .comment-share a {
  color: #3e3e3e;
}
article #content .show-comments {
  vertical-align: top;
}
article #content .authors {
  line-height: 34px;
  padding: 3px 10px;
  color: #FFF;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  background: #000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 10px 10px 10px 0px;
  display: inline-block;
  position: relative;
}
article #content .authors a {
  color: #FFF;
  text-decoration: none;
}
article #content .authors a:hover {
  color: #806773;
}
article #content .authors a span[itemprop="name"] {
  font-weight: 700;
  color: #08340C;
}
article #content .authors a span[itemprop="affiliation"] {
  font-weight: normal;
  margin-left: 7px;
  font-size: 11px;
  letter-spacing: 1px;
}
article #content .authors img {
  margin: 0 10px 0 -5px;
}
article #content .authors.noimage {
  background: #FFF;
  color: #7B7377;
  /*border-top:1px solid #d9d9d9;*/
  border-bottom: 2px solid #c9c9c9;
  border-left: 1px solid #ececec;
  padding: 4px;
  margin: 0 0 10px;
  width: 100%;
}
article #content .authors.noimage span.author {
  display: block;
}
article #content .authors.noimage span.author .addthis_toolbox {
  display: inline-block;
  margin-left: 11px;
  white-space: nowrap;
  width: 110px;
  vertical-align: middle;
}
article #content .authors.noimage a {
  color: #7B7377;
}
article #content .authors.noimage a + a {
  margin-top: 0px;
}
article #content .authors.noimage a:hover {
  color: #806773;
}
article #content .authors.noimage img {
  margin: 0 10px 0 0;
}
article #content .figure_intro {
  margin: 5px 0 25px;
  max-width: 100%;
  border: 1px solid #6D6D6F;
}
article #content .figure_intro.right {
  margin: 7px 0px 13px 12px;
}
article #content .wp-caption.aligncenter {
  width: auto !important;
}
article #content .wp-caption.aligncenter .wp-caption-text {
  text-align: center;
  line-height: 1em;
}
article #content p,
article #content h3,
article #content ul,
article #content ol,
article #content div.description,
article #content .body {
  margin: 0 0 25px;
  line-height: 1.7em;
}
article #content .abstract {
  color: #191919;
  font-weight: 700;
}
article #content .abstract .figure_intro {
  float: right;
  margin-left: 15px;
}
article #content .deck {
  color: #333333;
  font-size: 19px;
  line-height: 1.5em;
}
article #content time {
  display: block;
  padding-bottom: 21px;
  color: #808080;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
article #content .drop-cap {
  font-size: 46px;
  font-weight: 700;
  float: left;
  margin: 10px 4px 0 -1px;
}
article #content code,
article #content .codecharacter,
article #content .codeparagraph {
  font-size: 12px;
  font-family: Cambria, courier;
}
article #content pre code {
  display: block;
}
article #content h2,
article #content p.heading-1,
article #content p.Heading-1,
article #content p.reference-heading,
article #content .osp-head-1,
article #content p.referenceheading {
  margin: 0 0 15px;
  color: #191919;
  font-weight: 700;
  font-size: 20px;
  line-height: 1em;
  padding-top: 10px;
  text-align: left;
}
article #content h2,
article #content p.heading-2,
article #content p.Heading-2,
article #content .osp-head-2 {
  margin: 0 0 15px;
  color: #191919;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  padding-top: 10px;
  text-align: left;
}
article #content blockquote {
  margin-left: 30px;
  font-size: 12px;
  color: #7B7377;
  line-height: 1.3em;
}
article #content .confidential {
  background-color: black;
  color: black;
}
article #content p.reference-heading,
article #content p.referenceheading {
  border-bottom: 1px solid #DDDDDF;
  padding-bottom: 15px;
}
article #content p.references-list,
article #content p.referenceslist {
  font-style: italic;
  font-size: 14px;
  margin: 0 0 15px;
}
article #content p.author-bio,
article #content p.authorbio {
  background: #f2f6f8;
  padding: 15px;
  margin-top: 50px;
  font-style: italic;
  font-size: 13px;
  text-align: left;
}
article #content p.author-bio + p.author-bio,
article #content p.authorbio + p.authorbio {
  margin-top: 25px;
}
article #content p.contact-info,
article #content p.contactinfo {
  font-size: 14px;
}
article #content p.footnote {
  font-size: 11px;
  color: #989898;
}
article #content .superscript {
  vertical-align: super;
  font-size: smaller;
}
article #content .story i,
article #content .story em {
  font-style: italic;
}
article #content .story p.Bullets,
article #content .story p.numberedbullets,
article #content .story p.bullets {
  font-size: 15px;
  margin: 2px 20px 20px 20px;
}
article #content .story ol,
article #content .story ul {
  margin: -0.5em 0 1.5em;
}
article #content .story ol ol,
article #content .story ul ul {
  margin: 0 0 0 1.5em;
}
article #content .story li.numbered-bullets,
article #content .story li.bullets,
article #content .story li.Bullets,
article #content .story p.numberedbullets,
article #content .story ul li {
  list-style: none;
  background: url(http://cloud1.opensystemsmedia.com/arrows/9.gif) no-repeat 10px 8px;
  margin: 0 0 5px;
  padding: 0 30px;
  font-size: 15px;
  line-height: 1.5em;
}
article #content .story li.numbered-bullets,
article #content .story ol li {
  list-style: decimal;
  background: none;
  padding: 0 4px;
  margin: 0 35px 5px 35px;
}
article #content .story ol {
  margin-bottom: 21px;
}
article #content span.bold,
article #content p.heading-2,
article #content p.Heading-2 {
  font-weight: 700;
}
article #content span.italics {
  font-style: italic;
}
article #content .interview-question,
article #content .interviewquestion {
  font-weight: bold;
  color: #08340C;
}
article #content .interview-name {
  font-weight: bold;
}
article #content .body table[width="215"] td[align="center"] {
  line-height: 1.1em;
}
article #content .download {
  margin-bottom: 25px;
  border-top: 3px solid #08340C;
  border-right: 1px solid #DDDDDF;
  border-bottom: 1px solid #DDDDDF;
  border-left: 1px solid #DDDDDF;
  padding: 10px 8px;
  background: #FFF;
  font-size: 14px;
  max-height: 84px;
  overflow: hidden;
}
article #content .download strong {
  display: block;
  color: #191919;
  /*text-transform:uppercase;*/
  font-weight: 400;
  margin-bottom: 12px;
}
article #content .download a {
  border: 1px solid #DDDDDF;
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e8eff3), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #e8eff3, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #e8eff3 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #e8eff3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e8eff3', GradientType=0);
  box-shadow: inset 0 1px 0 #FFF, inset 0 -1px 1px #e1ebef;
  color: #333333;
  text-decoration: none;
  line-height: 1em;
  padding: 7px 0;
  display: inline-block;
  padding: 7px 10px;
  color: #08340C;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 700;
}
article #content .download a:hover {
  background: #f2f6f8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f2f6f8), color-stop(1, #f2f6f8));
  background: -ms-linear-gradient(bottom, #f2f6f8, #f2f6f8);
  background: -moz-linear-gradient(center bottom, #f2f6f8 0%, #f2f6f8 100%);
  background: -o-linear-gradient(#f2f6f8, #f2f6f8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#f2f6f8', GradientType=0);
  text-shadow: 0 -1px 0 #FFF;
  color: #806773;
}
article #content .download a i {
  margin-right: 5px;
}
article #content .download a:hover {
  color: #806773;
}
article #content .download img {
  float: right;
  height: 137px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  -webkit-transform: rotate(9deg);
  -moz-transform: rotate(9deg);
  -o-transform: rotate(9deg);
  transform: rotate(9deg);
  -ms-transform: rotate(9deg);
  margin-right: 22px;
  margin-top: -12px;
}
article #content figure,
article #content p.figures {
  margin: 0px 0px 20px 0px;
}
article #content figcaption,
article #content .wp-caption,
article #content p.figures {
  font-size: 13px;
  line-height: 1.2em;
  text-align: center;
  color: #6D6D6F;
}
article #content .fig-zoom {
  font-size: 9px;
  margin-top: 10px;
  color: #8c8c8c;
}
article #content img.aligncenter,
article #content figure td[align="center"] img {
  display: block;
  margin: 0 auto 25px;
  width: 100%;
  height: auto;
}
article #content #trending {
  margin: 0 0 50px;
}
article #content #trending .addthis-content-row {
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.5em;
  font-size: 17px;
}
article #content #trending .addthis-content-footer {
  padding: 0;
}
article #content a[rel="tag"] {
  color: #333333;
  text-decoration: none;
  padding-bottom: 2px;
  white-space: nowrap;
}
article #content a[rel="tag"].active {
  color: #08340C;
  text-decoration: underline;
}
article #content a[rel="tag"].active.loading {
  text-decoration: none;
  color: #333333;
  background: url(http://cloud2.opensystemsmedia.com/share/images/pulse.gif) repeat-x 100% 17px;
  background-size: 31px 26%;
}
article #content a[rel="tag"].active.finished {
  text-decoration: none;
  background: url(http://cloud2.opensystemsmedia.com/share/images/animated_arrow.gif) repeat-x 100% 17px;
  background-size: 10px 4px;
}
article #content .keywords {
  float: left;
  margin: 20px 0px 50px 0px;
  padding: 13px 15px;
  border-top: 3px solid #806773;
  background: #f2f6f8;
  width: 100%;
}
article #content .keywords h2 {
  display: none;
}
article #content .keywords li {
  float: left;
  margin: 0 10px 5px 0;
  font-size: 14px;
  list-style: none;
  line-height: 1.3em;
}
article #content .keywords li:before {
  content: "#";
}
article #content .keywords li a {
  color: #08340C;
  text-decoration: underline;
}
article .breadcrumbs li {
  float: left;
  padding-right: 14px;
}
article .breadcrumbs li a {
  margin: -1px 0 0 -2px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #f6f6ef;
  padding: 3px 6px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 1px #a8a8a8;
  -moz-box-shadow: 1px 1px 1px #a8a8a8;
  box-shadow: 1px 1px 1px #a8a8a8;
}
article .breadcrumbs li:first-child {
  padding-left: 0;
}
article .alert {
  background: #FFFBCB;
  padding: 6px 7px;
  border: 1px solid #EFD66D;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 20px;
}
article .alert strong {
  margin-right: 5px;
}
/* RESULTS
------------------------------ */
.results {
  float: left;
  width: 538px;
}
.results h1 {
  font-size: 26px;
  padding-bottom: 25px;
  line-height: 1.2em;
  /*text-transform:capitalize*/
}
.results li.result {
  clear: both;
  font-size: 14px;
}
.results li.result .title {
  position: relative;
  height: 280px;
  width: 100%;
  background-color: #08340C;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center;
  border: 1px solid #6D6D6F;
}
.results li.result .title .term {
  position: absolute;
  top: 15px;
  left: 15px;
}
.results li.result .title .term a {
  display: inline-block;
  padding: 3px 8px;
  background: #08340C;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  color: #FFF;
  text-decoration: none;
}
.results li.result .title .term a:hover {
  background: #806773;
}
.results li.result .title h2 a {
  float: left;
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px;
  color: #FFF;
}
.results li.result .title h2 a:hover {
  color: #806773;
}
.results li.result h2 {
  font: 400 26px 'Museo Sans', 'Droid Serif', 'Glegoo', 'Bitter', 'Doppio One', 'Arvo', 'Oxygen', 'Ek Mukta', 'Roboto', Georgia, 'Times New Roman', serif;
  line-height: 1.3em;
}
.results li.result h2 a {
  text-decoration: none;
}
.results li.result h3,
.results li.result h4 {
  font: 700 20px 'Droid Sans', 'Museo Sans', 'Noto Sans', 'Open Sans', 'Source Sans Pro', 'Istok Web', 'Oxygen', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.3em;
}
.results li.result h3 a,
.results li.result h4 a {
  color: #191919;
  text-decoration: none;
}
.results li.result h3 a:hover,
.results li.result h4 a:hover {
  color: #806773;
}
.results li.result h4 {
  font-size: 13px;
}
.results li.result time {
  display: block;
  padding-bottom: 2px;
  color: #808080;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.results li.result .authors {
  float: left;
  position: relative;
  z-index: 2;
  margin: -9px 0 0;
  width: 100%;
  padding: 0 15px;
  /*height:38px;*/
  font-size: 13px;
  font-family: 'Museo Sans', 'Droid Serif', 'Glegoo', 'Bitter', 'Doppio One', 'Arvo', 'Oxygen', 'Ek Mukta', 'Roboto', Georgia, 'Times New Roman', serif;
}
.results li.result .authors i {
  margin-right: 12px;
}
.results li.result .authors img {
  border: 2px solid #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-right: 6px;
  margin-left: -46px;
  height: 32px;
  width: 31px;
  background: url(../images/mystery-man.png) no-repeat 50% 50%;
  margin-top: 3px;
}
.results li.result .authors a {
  text-decoration: none;
  /*text-transform:uppercase;*/
  font-weight: 700;
  display: inline-block;
  padding-left: 43px;
  font-family: 'Droid Sans', 'Museo Sans', 'Noto Sans', 'Open Sans', 'Source Sans Pro', 'Istok Web', 'Oxygen', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  line-height: 1.6em;
}
.results li.result .authors a span[itemprop="name"] {
  font-weight: 700;
}
.results li.result .authors a span[itemprop="affiliation"] {
  font-weight: bold;
  -moz-opacity: 0.7;
  opacity: 0.7;
  color: #414142;
  font-size: 10px;
  margin: 0px 4px 0px 5px;
  text-transform: uppercase;
}
.results li.result p {
  line-height: 1.5em;
  margin: 10px 0 25px;
  color: #333333;
  border-bottom: 1px dotted #6D6D6F;
  padding: 0 15px 25px;
  float: left;
  max-height: 7.5em;
  width: 100%;
}
.results li.result.sponsored label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6em;
  font-weight: bold;
  color: #f17B77;
}
.results li.result.sponsored h3 a {
  color: #af574D !important;
}
.results li.result.sponsored p {
  color: #7e7e7e !important;
}
.results li.result.sponsored div.authors a {
  color: #B46B64 !important;
}
.results li.result.sponsored .featuredimage {
  border: 1px solid #af574D !important;
}
.results li.result.noimage .title {
  background: none;
  border: none;
  height: auto;
  position: inherit;
}
.results li.result.noimage h2 {
  text-shadow: none;
  position: inherit;
}
.results li.result.noimage h2 a {
  background: none;
  color: #333333;
  display: inline;
  padding: 0;
  position: inherit;
}
.results li.result.noimage h2 a:hover {
  color: #806773;
}
.results li.result.noimage .authors {
  margin: 0;
  padding: 10px 0;
  height: auto;
}
.results li.result.noimage .authors img {
  display: none;
}
.results li.result.noimage .authors a {
  padding-left: 0;
}
.results li.result.noimage p {
  margin-top: 0;
  padding: 0 0 25px;
  width: 100%;
  max-height: 7em;
}
.results li.result.smallimage .featuredimage {
  float: left;
  border: 1px solid #6D6D6F;
}
.results li.result.smallimage h2 {
  text-shadow: none;
  position: inherit;
  padding-bottom: 15px;
}
.results li.result.smallimage h2 a {
  background: none;
  color: #333333;
  height: auto;
  padding: 0;
}
.results li.result.smallimage h2 a:hover {
  color: #806773;
}
.results li.result.smallimage h3 {
  padding-bottom: 10px;
}
.results li.result.smallimage p {
  margin: 0;
  float: right;
  width: 407px;
  padding: 0;
  border: 0;
  max-height: 4.5em;
}
.results li.result.smallimage .authors {
  border-bottom: 1px dotted #6D6D6F;
  padding-bottom: 25px;
  margin-bottom: 25px;
  /*height:63px;*/
}
.results li.result.videos {
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.results li.result .title h2 {
  font-size: 20px;
}
.results.featured li.result h2 {
  max-height: 111px;
}
.results.featured li.result .authors a + a {
  display: none;
}
/* STREAM COLUMN
------------------------------ */
#stream-column {
  z-index: 10;
  float: right;
  width: 330px;
}
#stream-column.stick {
  margin-left: 568px;
}
#stream-column.timed_out #current-topic h3 {
  /*background-color:#EE3438;*/
}
#stream-column h3 {
  padding: 14px 0 13px;
  border-bottom: 1px solid #392e34;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  background-color: #806773;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
}
#stream-column h3 a {
  color: #FFF;
  text-decoration: none;
}
#stream-column h4 {
  background: #f2f6f8;
  padding: 20px 15px 0;
  text-transform: capitalize;
}
#stream-column h4 a {
  color: #191919;
  text-decoration: none;
  border-bottom: 1px dotted #8c8c8c;
}
#stream-column #current-topic ul {
  padding: 12px 15px 1px;
  background: #f2f6f8;
}
#stream-column #current-topic ul li {
  margin: 0 0 10px 1.25em;
  list-style: outside disc;
  font-size: 14px;
  line-height: 1.45em;
}
#stream-column .mag-promo {
  float: left;
  padding: 15px 15px 12px;
  background: #f2f6f8;
  border: 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #DDDDDF;
  height: auto;
}
#stream-column .mag-promo ul {
  margin-top: 15px;
}
#stream-column .square,
#stream-column .half-page {
  padding: 15px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  background: #f2f6f8;
}
/* FOOTER
------------------------------ */
.footer_leaderboard {
  background-color: white;
  z-index: 10000;
  position: relative;
  clear: both;
  margin: 0px auto !important;
  border-top: 1px solid #cecece;
  padding: 1px;
}
.footer_leaderboard .RTP_RCMD2,
.footer_leaderboard .RTP_RCMD2 [data-rtp-id="rtp_rcmd2_tpl_1"] {
  overflow: auto;
  font-family: inherit !important;
  margin-bottom: 20px;
}
.footer_leaderboard .RTP_RCMD2 .rtp_rcmd2_title {
  overflow: visible !important;
  margin-top: 10px;
  font-weight: bold;
}
.footer_leaderboard .RTP_RCMD2 .rtp_rcmd2_item_inner {
  background-color: transparent !important;
  border: 1px dotted #efefef;
  border-radius: 5px 4px;
}
.footer_leaderboard .RTP_RCMD2 .rtp_rcmd2_img_container {
  height: 145px !important;
}
.footer_leaderboard .RTP_RCMD2 .rtp_rcmd2_link {
  font-weight: bold;
}
.footer_leaderboard .RTP_RCMD2 .rtp_rcmd2_label h4 {
  color: orange !important;
}
footer {
  padding: 25px 0;
  height: 300px;
  border-top: 1px solid #DDDDDF;
  background: #f2f6f8;
  font-size: 14px;
  z-index: 10000;
  position: relative;
}
footer .title {
  float: left;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #191919;
}
footer .follow {
  margin: 0;
}
footer nav {
  float: right;
  margin-top: -31px;
}
footer nav li {
  float: left;
  margin: 0 0 30px 15px;
}
footer nav ul ul {
  display: none;
}
footer nav.main {
  float: left;
  clear: both;
  margin-top: 0;
}
footer nav.main li {
  margin: 0 15px 30px 0;
}
footer .app_store,
footer .awards {
  float: right;
  margin-bottom: 30px;
}
footer .copyright {
  clear: both;
  padding-top: 30px;
  border-top: 1px solid #DDDDDF;
  margin-bottom: 15px;
}
footer .refresh {
  color: #999999;
  font-size: 12px;
}
footer .refresh a {
  text-decoration: none;
  color: #999999;
}
/* @MEDIA QUERIES
/* TABLETS (LANDSCAPE)
------------------------------ */
@media only screen and (min-width: 918px) and (max-width: 1108px) {
  .container,
  header.main,
  section.main,
  header.main ul.topics {
    width: 898px !important;
  }
  #top-bar .mag-promo strong,
  #top-bar .mag-promo ul li:last-child,
  .mag-promo img.tiny-logo,
  #top-bar .mag-covers img,
  nav.main ul.issue,
  .SFF header.main .follow,
  .DSP header.main .follow,
  .VITA header.main .follow,
  .skyscraper,
  footer .app_store,
  footer .awards,
  .submit-news-link {
    display: none !important;
  }
  #top-bar .mag-promo {
    width: 140px !important;
  }
  #top-bar .mag-promo ul {
    margin-top: 0 !important;
  }
  #top-bar .mag-promo ul li {
    margin-left: 0 !important;
    list-style: none !important;
  }
  #top-bar .mag-promo ul li.subscribe a {
    padding: 3px 0.65em !important;
  }
  #top-bar .mag-promo #square-button-ads {
    left: 5px !important;
  }
  #top-bar .mag-promo .mag-covers {
    height: 81px !important;
    margin-top: -22px !important;
  }
  .featured .slider-controls {
    display: block;
  }
  #home-sections,
  .home-section {
    width: 538px !important;
    margin: 0 0 30px !important;
  }
  #skinny-column {
    width: 330px !important;
    margin-right: 0px !important;
    margin-bottom: 50px !important;
  }
  #skinny-column.content-skinny {
    display: none !important;
  }
}
/* TABLETS (PORTRAIAT)
------------------------------ */
@media only screen and (max-width: 918px) {
  .container,
  header.main,
  section.main,
  header.main ul.topics,
  article,
  article #article-controls,
  article #article-controls:after {
    width: 728px !important;
  }
  #top-bar .mag-promo,
  .submit-news-link,
  nav.main ul.issue,
  header.main .follow,
  #stream-column,
  footer .app_store,
  footer .awards {
    display: none !important;
  }
  header.main .logo img {
    margin-right: 0;
  }
  nav.main ul.topics {
    height: 70px;
    overflow: hidden;
  }
  form.search {
    width: 225px !important;
  }
  form.search li:last-child,
  form.search li:nth-last-child(2) {
    display: none;
  }
  form.search input[type="text"] {
    width: 196.875px;
  }
  form.search button[type="submit"] {
    width: 28.125px;
  }
  .home-section:nth-child(even) {
    margin-right: 0 !important;
  }
  #skinny-column {
    width: 160px;
    margin: 0;
    position: absolute;
    margin-top: 64px;
  }
  #skinny-column.results {
    display: block !important;
    margin-top: 0;
    position: inherit;
  }
  #skinny-column .content-types {
    margin-top: -64px;
  }
  #skinny-column .share-options li {
    margin-left: 0;
    display: block;
  }
  #skinny-column .share-options li:first-child {
    display: none !important;
  }
  #skinny-column .skyscraper {
    display: block !important;
  }
  #skinny-column.content-skinny {
    display: none !important;
  }
  .results {
    float: right;
  }
  article #article-controls .article-title {
    width: 423px !important;
    margin-left: 25px;
  }
  article h1 {
    font-size: 31px;
    margin-right: 0;
    float: right;
    width: 538px;
  }
  article #content {
    float: right;
    margin-right: 0;
  }
  footer nav {
    display: none;
  }
  footer nav.main {
    display: block;
  }
}
/* SMARTPHONES (PORTRAIT)
------------------------------ */
@media only screen and (max-width: 420px) {
  .container,
  header.main,
  section.main,
  header.main ul.topics,
  .featured,
  .featured .slider li,
  .results,
  #home-sections,
  .home-section,
  article,
  article #article-controls,
  article #article-controls:after,
  article h1,
  article #content,
  article #content table,
  article #content figure img {
    width: 308px !important;
  }
  #top-bar,
  nav.main ul.issue,
  nav.main ul.issue li,
  #skinny-column,
  #stream-column,
  article #article-controls .article-title,
  form.search ul,
  footer .refresh {
    display: none !important;
  }
  header.main .logo img {
    max-width: 308px;
    height: auto;
    margin-top: 70px;
  }
  header.main nav.main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  header.main nav.main ul.topics {
    width: 100% !important;
  }
  header.main nav.main ul.topics li {
    display: none;
    position: absolute;
    width: 160px;
    overflow: hidden;
  }
  header.main nav.main ul.topics li:first-child {
    display: block !important;
  }
  header.main nav.main ul.issue {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: auto;
  }
  header.main nav.main ul.issue li:first-child {
    display: block !important;
  }
  header.main nav.main ul.issue li:first-child a {
    border-left: 0;
  }
  form.search {
    position: absolute;
    top: 10px;
    z-index: 2;
    width: 68% !important;
    left: 50%;
    margin-left: -34%;
  }
  form.search input[type="text"] {
    width: 85%;
  }
  form.search button[type="submit"] {
    width: 15%;
  }
  section.main .featured {
    margin-right: 0;
  }
  section.main .featured .slider-controls {
    width: 278px;
  }
  .results li.result.smallimage p {
    width: 182px !important;
  }
  #home-section {
    margin-top: 30px;
  }
  article h1 {
    font-size: 30px;
    margin-right: 0;
  }
  footer .follow {
    float: left;
    margin-bottom: 15px;
  }
  footer nav.main {
    margin-bottom: 20px;
  }
  footer nav.main li {
    margin-bottom: 5px;
  }
}
#disqus_thread .install,
#disqus_thread .discovery-options {
  display: none;
}
