@charset "utf-8";
/*<![CDATA[*/
/*
 * Use the Bootstrap customizer to create custom CSS versions for the project
 * See @link: http://getbootstrap.com/customize/#less-variables-section
 */
/*<![CDATA[*/
/*
 * Include global LESS variables here
 * Can replicate Bootstrap vars for clearer code, or include customized versions
 * See @link: http://getbootstrap.com/customize/#grid-system for defaults or to download custom build
 */
/*
 * Custom Bootstrap variables defined for use in this theme
 * NOTE: that IE8 with a scrollbar requires 22px of chrome reduce screen resolution by this amount
 * Keep these values in sync in twig.js for reference in enquire.js
 
 
 * Requested updated 6/12/2014
 * Force Tablet portrait to use Desktop layout
 
 */
/*
 * Custom Bootstrap variables not required to be defined,
 * just used for reference when rebuilding
 *
 
@grid-columns:				30; 	// Each column represents about 42px on HD Desktop layout (PSD)
@grid-gutter-width:			16px;
@container-tablet:			(@screen-desktop - @grid-gutter-width); // Forced to Desktop
@container-desktop:			(@screen-desktop - @grid-gutter-width);
@container-large-desktop:	(@screen-lg-desktop - @grid-gutter-width);
@navbar-height:				56px;
/**/
/* Utility variables */
/*]]>*/
/*<![CDATA[*/
/* Twig modified, so Diff any updated version */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*
 * Modified to accept alpha values for @start and @stop to allow transparency
 * For solid gradients, pass background color and image URL for older browsers.
 * If using alpha, do not pass bgcolor, or the background will be solid!
 *
 * Top-to-bottom direction
*/
/*
 * Extra mixins and functions
 */
/*
 * Can't seem to use variables as properties
 *
 .calc(@attr; @calc) {
	@attr: -webkit-calc(e(@calc)); 
	@attr: -moz-calc(e(@calc)); 
	@attr: -o-calc(e(@calc)); 
	@attr: calc(e(@calc)); 
}
/**/
/* Bootstrap mixins */
/**/
/*
 * retina.less
 *
 * Twig modified helper mixin for applying high-resolution background images
 * See @link: http://www.retinajs.com
 * Usage: .retina(path, width, height) instead of background-image{} for bgs with retina versions
 * Enclose path in double-quotes to avoid compile error with single quotes in backtick'd javascript function
 * All retina versions should end @2x.EXT per Apple's suggestion
 *
 * Also see retina.js for swapping out retina files for inline images
 */
/*
 * Twig SVG mixin to replace .svg with .png for background images
 * Usage: .svg(path) instead of background-image{} for bgs with retina versions
 * Enclose path in double-quotes to avoid compile error with single quotes in backtick'd javascript function
 * PNG must be same dimensions as SVG, and be uploaded into the same folder
 */
/**/
/*]]>*/
/*<![CDATA[*/
/*
 * Custom font-face fonts
 * Typekit.com, Google Fonts etc.
 *
 * For Typekit, use a mixin to select one of the 
 * variations in fallback for IE
 *
 * Museo-Sans (100, 300, 500, 700, 900)
 * 	100		"museo-sans-n1", "museo-sans" 
 * 	300 	"museo-sans-n3", "museo-sans"
 * 	500 	"museo-sans-n5", "museo-sans"
 * 	700 	"museo-sans-n7", "museo-sans"
 * 	900 	"museo-sans-n9", "museo-sans"
 *
 *
 * Roboto (100, 300, 400, 500, 700, 900) with Italic versions
 *	100		Ultra-Light (Thin)
 *	300		Book (Light)
 *	400		Normal
 *	500		Medium
 *	700		Bold
 *	900		Ultra-Bold (Black)
 *
 *
 * Signika (300, 400, 600, 700)
 *	300		Light
 *	400		Normal
 *	600		Semi-Bold
 *	700		Bold
 *
 *
 * Montserrat (400, 700)
 *	400		Normal
 *	700		Bold
 *
 *
 * Open Sans (400, 400italic, 700, 700italic)
 *	400		Normal
 *	700		Bold
 *

.ff-museo(@variation: 5; @style: normal) {
	font-family: "museo-sans-n@{variation}", "museo-sans", Helmet, Freesans, sans-serif;
	font-style: @style;
	font-weight: (@variation * 100);
}

.ff-roboto(@variation: 4; @style: normal) {
	font-family: "Roboto", Helmet, Freesans, sans-serif;
	font-style: @style;
	font-weight: (@variation * 100);
}
*/
/* Set default font */
/*]]>*/
/* Simple mixins */
/* Tags */
noscript #no-js-warning {
  background-color: #2a4b7c;
  color: #fff;
  font-size: 12px;
  left: 0;
  padding: 15px 8px;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 99999;
}
body {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #000;
}
a {
  color: #015fb6;
}
a:hover,
a:focus {
  color: #164a6e;
}
img {
  /* Same as .img-responsive bootstrap class */
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #000;
  line-height: 1.3em;
}
fieldset {
  border: none;
}
label {
  cursor: pointer;
}
label.inactive {
  cursor: default;
}
figcaption {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #999;
  font-style: italic;
  font-size: 11px;
  margin: 5px 0;
}
p {
  font-size: 16px;
  color: #3e3e3e;
  margin: 0 0 1.6em;
}
/* Static classes */
.hidden {
  display: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.accessible {
  position: absolute !important;
  left: -9999px !important;
}
.nowrap {
  white-space: nowrap;
}
.zoom {
  *zoom: 1;
}
.clearer {
  /* Apply to a clearing <div> following floated elements */
  display: block;
  height: 0;
  font-size: 0;
  overflow: hidden;
  float: none;
  clear: both;
}
.tight {
  margin: 0 !important;
}
.t16 {
  font-size: 16px !important;
}
.t14 {
  font-size: 14px !important;
}
.t12 {
  font-size: 12px !important;
}
/* Used in twig_match_column_heights() */
.equal-heights.equalized .equal-heights-column.collapsed {
  margin-bottom: 16px;
}
.equal-heights.equalized .equal-heights-column-inner {
  min-height: 100%;
}
.equal-heights.equalized .equal-heights-column-inner:before,
.equal-heights.equalized .equal-heights-column-inner:after {
  content: " ";
  display: table;
}
.equal-heights.equalized .equal-heights-column-inner:after {
  clear: both;
}
/**/
/* General styles */
.btn-default {
  border: none;
  background-color: #262626;
  background-image: url('');
  background-image: -ms-linear-gradient(top, #3a3a3a 0%, #262626 100%);
  background-image: -moz-linear-gradient(top, #3a3a3a 0%, #262626 100%);
  background-image: -o-linear-gradient(top, #3a3a3a 0%, #262626 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3a3a3a), color-stop(1, #262626));
  background-image: -webkit-linear-gradient(top, #3a3a3a 0%, #262626 100%);
  background-image: linear-gradient(to bottom, #3a3a3a 0%, #262626 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3a3a3a', endColorstr='#ff262626', GradientType=0);
  color: #fff;
}
.btn-default:hover,
.btn-default:focus {
  background-color: #262626;
  color: #fff;
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  -webkit-opacity: 0.85;
  opacity: 0.85;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
  filter: alpha(opacity=85);
}
.btn-red {
  border-color: #97001C !important;
  background-color: #a9091f;
  background-image: url('');
  background-image: -ms-linear-gradient(top, #c02e4b 0%, #a9091f 100%);
  background-image: -moz-linear-gradient(top, #c02e4b 0%, #a9091f 100%);
  background-image: -o-linear-gradient(top, #c02e4b 0%, #a9091f 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c02e4b), color-stop(1, #a9091f));
  background-image: -webkit-linear-gradient(top, #c02e4b 0%, #a9091f 100%);
  background-image: linear-gradient(to bottom, #c02e4b 0%, #a9091f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc02e4b', endColorstr='#ffa9091f', GradientType=0);
  color: #fff;
}
.btn-red:hover,
.btn-red:focus {
  background-color: #a9091f;
  color: #fff;
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  -webkit-opacity: 0.85;
  opacity: 0.85;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
  filter: alpha(opacity=85);
}
.btn-xs {
  font-size: 10px;
  font-weight: bold;
  text-shadow: none;
}
.idx-up {
  color: #329232;
}
.idx-down {
  color: #ff0000;
}
ul.menu {
  *zoom: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.menu:before,
ul.menu:after {
  content: " ";
  display: table;
}
ul.menu:after {
  clear: both;
}
ul.menu li {
  margin: 0;
  padding: 0;
}
/* DOM */
#wrapper {
  min-width: 320px;
}
header#top-bar {
  background: #dedede url("../images/bgs/top-bar_x.png") left bottom repeat-x scroll;
  color: #4b4b4b;
  font-size: 12px;
  min-height: 38px;
}
header#masthead {
  background: #040404 url("../images/bgs/masthead_x.png") left top no-repeat scroll;
  -webkit-background-size: 50% 56px;
  -moz-background-size: 50% 56px;
  -o-background-size: 50% 56px;
  background-size: 50% 56px;
}
header#masthead .masthead-inner > .row > div {
  background-color: #040404;
}
header#masthead .masthead-inner > .row > div#main-nav-container {
  min-height: 0;
}
header#masthead #twt-logo {
  background: transparent url("../images/bgs/masthead_x.png") left top repeat-x scroll;
}
header#masthead #twt-logo a {
  display: inline-block;
  padding: 14px 8px 14px 4px;
}
header#masthead #twt-logo a img {
  max-width: 232px;
  max-height: 26px;
}
header#masthead #main-nav {
  border: none;
  min-height: 0;
  margin: 0;
}
header#masthead #main-nav .navbar-header {
  min-height: 0;
  height: auto;
}
header#masthead #main-nav .navbar-header .navbar-toggle {
  background-color: #f0f0f0;
  border-color: #a0a0a0;
  margin: -44px 8px 0 0;
}
header#masthead #main-nav .navbar-header .navbar-toggle span {
  border: 1px solid #999;
}
header#masthead #main-nav .navbar-header .navbar-toggle:hover,
header#masthead #main-nav .navbar-header .navbar-toggle:focus {
  background-color: #fff;
}
header#masthead #main-nav .navbar-collapse {
  padding: 0;
  max-height: none;
  /*
			 * Navbar collapsed into toggle state
			 * Classes added by custom enquire.js register
			 *
			 * Bootstrap toggles class 'in' when toggle button is pressed
			 * and responsive menu is actually visible - beware confusion!
			 */
}
header#masthead #main-nav .navbar-collapse.mobile {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
header#masthead #main-nav .navbar-collapse.mobile .dom-move.widgets .utility-nav ul.micro-menu li a:focus,
header#masthead #main-nav .navbar-collapse.mobile .dom-move.widgets .utility-nav ul.micro-menu li a:hover {
  color: #fff;
}
header#masthead #main-nav .navbar-collapse.mobile ul.menu > li > a {
  border-right: none;
}
header#masthead #main-nav .navbar-collapse.mobile ul.menu > li.open > a,
header#masthead #main-nav .navbar-collapse.mobile ul.menu > li:hover > a,
header#masthead #main-nav .navbar-collapse.mobile ul.menu > li > a:focus,
header#masthead #main-nav .navbar-collapse.mobile ul.menu > li > a:active {
  background-image: none !important;
}
header#masthead #main-nav .navbar-collapse.mobile ul.dropdown-menu li a {
  color: #fff;
}
header#masthead #main-nav .navbar-collapse.mobile ul.dropdown-menu li a.dropdown-toggle:after {
  display: inline-block;
  content: "\20";
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
header#masthead #main-nav .navbar-collapse.mobile ul.dropdown-menu li a:hover,
header#masthead #main-nav .navbar-collapse.mobile ul.dropdown-menu li a:focus,
header#masthead #main-nav .navbar-collapse.mobile ul.dropdown-menu li a:active {
  color: #333;
}
header#masthead #main-nav .navbar-collapse.mobile ul.dropdown-menu li.open > a {
  color: #333;
}
header#masthead #main-nav .navbar-collapse.mobile ul.dropdown-menu li.dropdown-submenu li a {
  padding-left: 36px;
}
header#masthead #main-nav .navbar-collapse.desktop ul.menu > li:hover > ul.dropdown-menu,
header#masthead #main-nav .navbar-collapse.desktop ul.menu > li > a:focus + ul.dropdown-menu,
header#masthead #main-nav .navbar-collapse.desktop ul.menu > li > a:active + ul.dropdown-menu {
  display: block;
}
header#masthead #main-nav .navbar-collapse.desktop ul.dropdown-menu li.dropdown-submenu > a:after {
  float: right;
  display: inline-block;
  content: "\20";
  width: 0;
  height: 0;
  margin: 5px -10px 0 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid;
}
header#masthead #main-nav .navbar-collapse.desktop ul.dropdown-menu li.dropdown-submenu.open > ul.dropdown-menu,
header#masthead #main-nav .navbar-collapse.desktop ul.dropdown-menu li.dropdown-submenu:hover > ul.dropdown-menu,
header#masthead #main-nav .navbar-collapse.desktop ul.dropdown-menu li.dropdown-submenu > a:focus + ul.dropdown-menu {
  display: block;
}
header#masthead #main-nav ul.menu li a {
  font-weight: 400;
  text-shadow: none;
}
header#masthead #main-nav ul.menu li a:focus,
header#masthead #main-nav ul.menu li a:active {
  outline: none;
}
header#masthead #main-nav ul.menu > li {
  font-family: "Signika", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
}
header#masthead #main-nav ul.menu > li > a {
  padding: 18px 13px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border-right: 1px solid #363636;
}
header#masthead #main-nav ul.menu > li > a.dropdown-toggle:after {
  display: inline-block;
  content: "\20";
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
header#masthead #main-nav ul.menu > li.open > a,
header#masthead #main-nav ul.menu > li:hover > a,
header#masthead #main-nav ul.menu > li > a:hover,
header#masthead #main-nav ul.menu > li > a:focus,
header#masthead #main-nav ul.menu > li > a:active {
  background: #a9091f url("../images/bgs/masthead_x.png") left top repeat-x scroll;
}
header#masthead #main-nav ul.menu ul.dropdown-menu {
  /* See @link: http://bootsnipp.com/snippets/featured/multi-level-dropdown-menu-bs3 */
}
header#masthead #main-nav ul.menu ul.dropdown-menu li.dropdown-submenu {
  position: relative;
}
header#masthead #main-nav ul.menu ul.dropdown-menu li.dropdown-submenu > ul.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 4px;
  -moz-border-radius: 0 4px 4px 4px;
  border-radius: 0 4px 4px 4px;
}
header#masthead #main-nav ul.menu ul.dropdown-menu li.dropdown-submenu.pull-left {
  float: none;
}
header#masthead #main-nav ul.menu ul.dropdown-menu li.dropdown-submenu.pull-left > ul.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 4px 0 4px 4px;
  -moz-border-radius: 4px 0 4px 4px;
  border-radius: 4px 0 4px 4px;
}
/* DOM MOVE elements */
.dom-move-contents:before,
.dom-move-contents:after {
  content: " ";
  display: table;
}
.dom-move-contents:after {
  clear: both;
}
.dom-move.widgets {
  padding: 4px 8px 4px 5px;
}
.dom-move.widgets .section-label {
  font-weight: bold;
  margin-right: 3px;
}
.dom-move.widgets .stat {
  white-space: nowrap;
  display: inline-block;
}
.dom-move.widgets .separator {
  margin: 0 5px;
}
.dom-move.widgets .weather,
.dom-move.widgets .stocks {
  color: #fff;
  font-size: 14px;
  padding: 4px 0 8px;
  border-bottom: 1px solid #666;
  margin-bottom: 8px;
}
.dom-move.widgets .utility-nav {
  padding: 8px 0;
}
.dom-move.widgets .utility-nav ul.micro-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dom-move.widgets .utility-nav ul.micro-menu:before,
.dom-move.widgets .utility-nav ul.micro-menu:after {
  content: " ";
  display: table;
}
.dom-move.widgets .utility-nav ul.micro-menu:after {
  clear: both;
}
.dom-move.widgets .utility-nav ul.micro-menu li {
  float: left;
}
.dom-move.widgets .utility-nav ul.micro-menu li a {
  display: inline-block;
  line-height: normal;
  border-right: 1px solid #666;
  padding: 0 12px 0 8px;
}
.dom-move.widgets .utility-nav ul.micro-menu li a.btn-primary {
  color: #fff !important;
  padding: 3px 6px;
  margin: 0 5px 4px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
}
.dom-move.widgets .utility-nav ul.micro-menu li a.btn-primary:focus,
.dom-move.widgets .utility-nav ul.micro-menu li a.btn-primary:hover,
.dom-move.widgets .utility-nav ul.micro-menu li a.btn-primary:active {
  color: #fff !important;
}
.dom-move.widgets .utility-nav ul.micro-menu li a:focus,
.dom-move.widgets .utility-nav ul.micro-menu li a:hover,
.dom-move.widgets .utility-nav ul.micro-menu li a:active {
  color: #fff;
  text-decoration: underline;
}
.dom-move.widgets .utility-nav ul.micro-menu li:last-child a,
.dom-move.widgets .utility-nav ul.micro-menu li.last a {
  border-right: none;
}
.dom-move.widgets .search {
  padding: 8px 0;
}
.dom-move.widgets .search form input[type="search"] {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  height: 30px;
  border: 1px solid #9a9a9a;
  width: 200px;
  padding: 0 10px;
  color: #4b4b4b;
  vertical-align: middle;
}
.dom-move.widgets .search form input[type="submit"] {
  position: relative;
  top: -1px;
  height: 28px;
  font-size: 14px;
  font-weight: 600;
  padding: 0 8px;
  background: #a9091f none;
}
/* Social media icons and user preferences */
.dom-move.social .lbl,
.dom-move.preferences .lbl {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  vertical-align: middle;
}
.dom-move.social ul,
.dom-move.preferences ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dom-move.social ul:before,
.dom-move.preferences ul:before,
.dom-move.social ul:after,
.dom-move.preferences ul:after {
  content: " ";
  display: table;
}
.dom-move.social ul:after,
.dom-move.preferences ul:after {
  clear: both;
}
.dom-move.social {
  padding: 4px 8px 4px 13px ;
}
.dom-move.social .lbl {
  margin-right: 13px;
}
.dom-move.social ul {
  display: inline-block;
  vertical-align: middle;
}
.dom-move.social ul:before,
.dom-move.social ul:after {
  content: " ";
  display: table;
}
.dom-move.social ul:after {
  clear: both;
}
.dom-move.social li {
  float: left;
  display: inline-block;
  padding: 4px 2px;
  overflow: hidden;
}
.dom-move.social li a {
  display: block;
  width: 26px;
  height: 26px;
  background: transparent url("../images/sprites/social-icons.png") 0 0 no-repeat scroll;
}
.dom-move.social li a:focus,
.dom-move.social li a:active,
.dom-move.social li a:hover {
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  -webkit-opacity: 0.85;
  opacity: 0.85;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
  filter: alpha(opacity=85);
}
.dom-move.social li.twitter a {
  background-position: -30px 0;
}
.dom-move.social li.gplus a {
  background-position: -60px 0;
}
.dom-move.social li.rss a {
  background-position: -90px 0;
}
.dom-move.preferences .lbl {
  margin-left: 10px;
}
.dom-move.preferences li.user {
  padding: 4px 8px 4px 13px;
  color: #fff;
}
.dom-move.preferences li.user .user-dropdown {
  padding: 8px 0;
}
.dom-move.preferences li.user .txt-customize label {
  font-weight: normal;
  margin: 0 10px 0 8px;
}
.dom-move.preferences li.user .txt-info {
  padding: 10px 0 0;
}
.dom-move.preferences li.user input[type="a"] {
  margin-left: 4px;
  font-size: 16px;
  padding: 6px 20px;
}
.dom-move.preferences li.user a {
  display: block;
}
.dom-move.preferences li.user a .fa {
  vertical-align: middle;
}
.dom-move.preferences li.user a:focus,
.dom-move.preferences li.user a:active,
.dom-move.preferences li.user a:hover {
  outline: none;
}
.dom-move.preferences li.user a:focus .fa,
.dom-move.preferences li.user a:active .fa,
.dom-move.preferences li.user a:hover .fa {
  color: #fff;
}
/**/
/* Info Bars */
header#info-bar {
  background-color: #cccccc;
  padding: 4px 0;
}
header#info-bar > .container {
  display: none;
  overflow: hidden;
  color: #fff;
}
header#info-bar > .container .info-bar-title {
  float: left;
  margin: 5px 10px 5px 8px;
  border-right: 1px solid #4d5a5c;
}
header#info-bar > .container .info-bar-title h3 {
  color: #fff;
  font-size: 26px;
  line-height: normal;
  padding-right: 12px;
  text-transform: uppercase;
  margin: 0;
}
header#info-bar > .container ol,
header#info-bar > .container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header#info-bar > .container ol li,
header#info-bar > .container ul li {
  margin: 0;
  padding: 0;
}
header#info-bar > .container .photo-thumb {
  float: left;
}
header#info-bar > .container .copy-text {
  float: left;
}
header#info-bar > .container .copy-text .btn-primary {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 10px;
  color: #fff;
  border-color: #444;
  background: #444 none;
  margin: 5px 0 10px;
}
header#info-bar > .container .copy-text .article-headline {
  font-family: "Signika", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-size: 15px;
}
header#info-bar > .container .copy-text .article-headline a {
  color: #fff;
}
.with-editors-pick-info-bar header#info-bar {
  background-color: #cccccc;
}
.with-editors-pick-info-bar header#info-bar > .editors-pick-info-bar {
  display: block;
}
.with-next-up-info-bar header#info-bar {
  background-color: #203133;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar {
  display: block;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol:before,
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol:after {
  content: " ";
  display: table;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol:after {
  clear: both;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li {
  margin-bottom: 20px;
  background: transparent url("../images/bgs/info-bar-separator.png") 92px center no-repeat scroll;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li:before,
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li:after {
  content: " ";
  display: table;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li:after {
  clear: both;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li .timer {
  display: inline-block;
  float: left;
  background: transparent right top no-repeat scroll;
  width: 75px;
  height: 75px;
  font-family: "Signika", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  line-height: 75px;
  overflow: hidden;
  margin-right: 32px;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li.up-15 .timer {
  background-image: url("../images/icons/timer-15.png");
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li.up-30 .timer {
  background-image: url("../images/icons/timer-30.png");
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li.up-45 .timer {
  background-image: url("../images/icons/timer-45.png");
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li .photo-thumb {
  margin: 6px 5px 0 12px;
}
.with-next-up-info-bar header#info-bar > .next-up-info-bar ol li .copy-text {
  width: 165px;
}
.with-news-alert-info-bar header#info-bar {
  background-color: #3e3e3e;
}
.with-news-alert-info-bar header#info-bar > .news-alert-info-bar {
  display: block;
}
.with-news-alert-info-bar header#info-bar > .news-alert-info-bar .copy-text {
  float: none;
}
.with-news-alert-info-bar header#info-bar > .news-alert-info-bar .copy-text h2 {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: normal;
  margin: 0;
  margin-top: 7px;
}
.with-news-alert-info-bar header#info-bar > .news-alert-info-bar .copy-text p {
  font-size: 13px;
  color: #fff;
  margin: 0;
}
.with-news-alert-info-bar header#info-bar > .news-alert-info-bar .cta .btn {
  font-weight: 600;
  padding: 8px 24px;
}
/* Ads */
.ad {
  margin: 24px 0;
  text-align: center;
}
#ad-pre-footer {
  margin: 4px 0 24px;
}
#ad-footer {
  margin: 24px 0 36px;
}
/**/
/* 3-column layout */
#breadcrumb {
  border-bottom: 4px solid #cccccc;
  padding-bottom: 12px;
}
#breadcrumb ul.menu {
  margin-left: 12px;
}
#breadcrumb ul.menu li {
  float: left;
  margin-left: 4px;
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #203133;
  text-transform: uppercase;
}
#breadcrumb ul.menu li a {
  text-decoration: none;
}
#breadcrumb ul.menu li:before {
  content: "\005c";
  color: #a9091f;
  margin-right: 4px;
}
#breadcrumb ul.menu li.current:before {
  color: #203133;
}
#breadcrumb ul.menu li:first-child:before {
  content: '';
  margin: 0;
}
#page-title-container .page-headline {
  font-size: 38px;
  line-height: 1.2em;
  margin: 15px 0;
}
#page-title-container .page-subheadline {
  font-size: 18px;
  color: #3e3e3e;
  margin: -10px 0 20px;
}
#page-title-container .featured-image.pull-left {
  margin: 0 12px 12px 0;
}
#page-title-container .page-title {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 36px;
  font-weight: bold;
}
#page-title-container .subscribe {
  float: right;
  margin-left: 20px;
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #3e3e3e;
  text-transform: uppercase;
}
#social-share-primary-sidebar {
  margin-bottom: 20px;
}
#social-share-below {
  border: solid #e5e5e5;
  border-width: 1px 0;
  padding: 12px 0;
}
/**/
nav.pagination {
  width: 100%;
  background-color: #a2182c;
  height: 36px;
  overflow: hidden;
  font-family: "Signika", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
}
nav.pagination .controls,
nav.pagination .more {
  display: inline-block;
  line-height: 36px;
}
nav.pagination .controls span,
nav.pagination .more span {
  display: inline-block;
}
nav.pagination .controls a,
nav.pagination .more a {
  display: inline-block;
  color: #fff;
  padding: 0 16px;
  text-decoration: none !important;
}
nav.pagination .controls a:hover,
nav.pagination .more a:hover,
nav.pagination .controls a:focus,
nav.pagination .more a:focus {
  background-color: #b54656;
}
nav.pagination .controls .prev a:before {
  content: "\00ab";
  margin-right: 4px;
}
nav.pagination .controls .next a:after {
  content: "\00bb";
  margin-left: 4px;
}
nav.pagination .controls .pages a {
  border: solid #b54656;
  border-width: 0 0 0 1px;
}
nav.pagination .controls .pages a:last-child {
  border-right-width: 1px;
}
nav.pagination .more {
  float: right;
}
nav.pagination .more a:after {
  content: "\00bb";
  margin-left: 4px;
}
.two-column nav.pagination#pagination-below {
  text-align: center;
}
.block-title {
  padding-left: 20px;
  background-color: #9ea7b3;
  font-size: 20px;
  line-height: 41px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.block-title.ribbon {
  /*		background: #b00021 url("@{imgs}/ribbon-cutoff.png") right top no-repeat scroll;  /* replaced with :after border */
  background-color: #b00021;
  padding-right: 75px;
  position: relative;
  display: inline-block;
}
.block-title.ribbon:after {
  content: '';
  position: absolute;
  right: -1px;
  /* prevent border on retina */
  top: 0;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 20px;
  border-color: rgba(0, 0, 0, 0) #ffffff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.block-title.inverse {
  background-color: transparent;
  color: #000;
  padding-left: 0;
  margin-bottom: 0;
}
.share-count {
  line-height: 21px;
  height: 21px;
  font-weight: 400;
  text-transform: uppercase;
  color: #9ea7b3;
  font-size: 11px;
}
.share-count .qty {
  color: #000;
  float: left;
  line-height: 21px;
  margin-right: 3px;
}
.share-count .fa {
  display: block;
  float: left;
  margin: 0 5px 0 0;
  font-size: 21px;
  color: #9ea7b3;
}
.author-meta {
  font-size: 12px;
}
.author-meta:before,
.author-meta:after {
  content: " ";
  display: table;
}
.author-meta:after {
  clear: both;
}
.author-meta .author-name {
  color: #a9091f;
  margin-top: 0;
}
.author-meta .author-avatar {
  float: left;
  margin: 0 20px 20px 16px;
}
.photo-array figure {
  margin-bottom: 15px;
}
.photo-array figure figcaption {
  max-width: 150px;
  font-size: 13px;
  color: #777;
}
.photo-array figure figcaption a {
  color: #000;
}
.photo-array figure figcaption small {
  display: block;
  margin: 5px 0;
  font-size: 10px;
}
.tag-related section.photos {
  max-width: 425px;
}
.tag-related section.quotations p {
  font-family: "Signika", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
}
.meta-text {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  white-space: nowrap;
  text-transform: none;
  font-size: 10px;
  color: #a9091f;
  margin-left: 5px;
}
.meta-text.grey {
  color: #999999;
}
.no-bottom-border {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
figure.photo-zoom .photo {
  position: relative;
  display: block;
}
figure.photo-zoom .photo .zoom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
  height: 26px;
  display: block;
  background: transparent url("../images/icons/arrow-zoom.png") left top no-repeat scroll;
}
aside section.block {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
aside section.block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
aside section.block article {
  margin-bottom: 16px;
}
aside section.block article:before,
aside section.block article:after {
  content: " ";
  display: table;
}
aside section.block article:after {
  clear: both;
}
aside section.block article a {
  color: #000;
}
aside section.block article .main-photo {
  float: left;
  margin-right: 15px;
  width: 85px;
  margin-bottom: 10px;
}
aside section.block article .article-headline {
  font-size: 14px;
  margin: 0 0 15px;
}
aside section.block article .article-headline.red a {
  color: #a9091f;
}
aside section.block article:last-of-type {
  margin-bottom: 0;
}
aside section.block.latest-video article .article-headline {
  font-weight: 600;
}
aside section.block.latest-video article .video-thumbnail {
  position: relative;
}
aside section.block.latest-video article .video-thumbnail .fa {
  position: absolute;
  left: 2%;
  bottom: 5%;
  font-size: 18px;
  color: #fff;
}
aside section.block.latest-video article.lead-story .article-headline {
  text-transform: uppercase;
  margin: 15px 0 0;
}
aside section.block.latest-video article.lead-story .video-thumbnail .fa {
  font-size: 48px;
}
aside section.block.latest-video .related-videos:before,
aside section.block.latest-video .related-videos:after {
  content: " ";
  display: table;
}
aside section.block.latest-video .related-videos:after {
  clear: both;
}
aside section.block.latest-video .related-videos article {
  font-size: 12px;
  float: left;
  width: 33.333%;
  padding-right: 8px;
  margin: 0;
}
aside section.block.latest-video .related-videos article h4 {
  font-size: 12px;
  text-transform: uppercase;
}
aside section.block.latest-video .related-videos article a {
  color: #000;
}
aside section.block.latest-photos figure figcaption {
  font-style: normal;
}
aside section.block.latest-photos figure:last-of-type p {
  margin: 0 !important;
}
aside section.block.ed-columns article .article-headline {
  color: #a9091f;
  font-size: 18px;
  margin: 0 0 5px;
}
aside section.block.ed-columns article p {
  font-weight: bold;
  margin-bottom: 0;
}
aside section.block.topic-list {
  border-bottom: 5px solid #cccccc;
}
aside section.block.topic-list article p {
  font-weight: bold;
  margin: 0;
}
aside section.block.topic-list.tight article {
  margin: 0 !important;
}
aside section.block.email-alerts {
  border-bottom: none;
  padding-bottom: 0;
}
aside section.block.email-alerts .block-title {
  background: #3e3e3e url("../images/icons/mail-alerts.png") 16px 14px no-repeat scroll;
  padding: 16px 0 12px 60px;
  line-height: 15px;
  font-size: 18px;
  margin: 0;
}
aside section.block.email-alerts .block-title small {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
aside section.block.email-alerts .block-content {
  background-color: #3e3e3e;
  padding: 0 15px 12px;
}
aside section.block.email-alerts .block-content form {
  font-size: 13px;
}
aside section.block.email-alerts .block-content form:before,
aside section.block.email-alerts .block-content form:after {
  content: " ";
  display: table;
}
aside section.block.email-alerts .block-content form:after {
  clear: both;
}
aside section.block.email-alerts .block-content form input[type="email"] {
  float: left;
  height: 32px;
  padding: 4px 5px 4px 10px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  border: none;
  width: 175px;
}
aside section.block.email-alerts .block-content form input[type="submit"] {
  float: left;
  height: 32px;
  padding: 0 18px;
  background-color: #a9091f;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  border: none;
  font-family: "Signika", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
aside section.block.our-voices article {
  border-bottom: 1px dotted #cccccc;
  padding-bottom: 12px;
}
aside section.block.our-voices article .article-headline {
  color: #a9091f;
  font-size: 18px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 8px;
  margin-left: 100px;
  /* for underline */
}
aside section.block.our-voices article p {
  font-weight: bold;
  margin: 0;
}
aside section.block.our-voices article:last-child {
  border-bottom: none;
}
aside section.block.qotd h3 {
  font-size: 18px;
}
aside section.block.qotd form {
  padding-left: 20px;
}
aside section.block.qotd form label {
  color: #7f7f7f;
  font-size: 12px;
  font-weight: normal;
  margin-left: 5px;
  text-transform: uppercase;
}
aside section.block.qotd form input[type="submit"] {
  height: 32px;
  padding: 0 24px;
  margin: 5px 0 20px;
  background-color: #a9091f;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
  font-family: "Signika", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}
aside section.block.whats-trending ul {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}
aside section.block.whats-trending ul li {
  font-weight: bold;
  text-transform: uppercase;
}
aside section.block.whats-trending ul li a {
  color: #000;
}
aside section.block.galleries {
  max-width: 300px;
}
aside section.block.galleries .block-title {
  margin-bottom: 0;
}
aside section.block.galleries h4 {
  font-size: 14px;
  text-transform: uppercase;
}
aside section.block.galleries h4 a {
  color: #000;
}
aside section.block.related-stories article {
  border-bottom: 1px dotted #cccccc;
}
aside section.block.related-stories article:last-child {
  border-bottom: none;
}
aside section.block.about-author {
  margin-bottom: 16px;
}
aside section.block.about-author .latest-stories {
  margin-left: 16px;
  font-size: 12px;
}
aside section.block.about-author .latest-stories h4 {
  font-size: 14px;
  color: #a9091f;
  margin-bottom: 0;
}
aside section.block.about-author .latest-stories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside section.block.about-author .latest-stories ul li {
  margin: 0
            padding: 0;
}
aside section.block.about-author .latest-stories ul li a {
  color: #000;
}
section#content .with-view-all .view-all {
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #000;
  font-size: 12px;
  display: inline-block;
  float: right;
  text-transform: uppercase;
  margin-right: 6px;
  line-height: 41px;
}
section#content .with-view-all .view-all a {
  color: #000;
}
section#content .more-from {
  border-top: 1px solid #cccccc;
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #000;
  font-size: 13px;
}
section#content .more-from h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: #a9091f;
  margin: 15px 0 0;
}
section#content .more-from ul {
  padding-left: 16px;
}
section#content .more-from ul li a {
  color: #000;
}
section#content section {
  margin-bottom: 24px;
}
section#content section article {
  margin-bottom: 12px;
}
section#content section article:before,
section#content section article:after {
  content: " ";
  display: table;
}
section#content section article:after {
  clear: both;
}
section#content section article .article-headline {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: normal;
}
section#content section article .article-headline a {
  color: #000;
}
section#content section article .main-photo {
  float: left;
  margin: 0 10px 10px 0;
  max-width: 100%;
}
section#content section article .article-story-photo {
  float: none;
}
section#content section article .meta {
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #203133;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 12px;
}
section#content section article .meta .source {
  font-style: normal;
}
section#content section article .share-count {
  float: right;
}
section#content section article.lead-story {
  color: #5b5b5b;
  border-bottom: 5px solid #cccccc;
  margin-bottom: 20px;
}
section#content section article.lead-story .article-headline {
  font-size: 26px;
}
section#content section article.lead-story .main-photo {
  float: none;
  margin: 0 0 15px;
}
section#content section article.lead-story .meta {
  margin-bottom: 20px;
}
section#content section article.lead-story .article-text,
section#content section article.lead-story .related {
  padding-left: 6px;
}

.article-text iframe { width: 100%; }

section#content section article.lead-story .related {
  margin-bottom: 35px;
}
section#content section article.lead-story .related:before,
section#content section article.lead-story .related:after {
  content: " ";
  display: table;
}
section#content section article.lead-story .related:after {
  clear: both;
}
section#content section article.lead-story .related h5 {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  float: left;
  width: 65px;
  color: #5b5b5b;
  margin: 0;
  padding-right: 10px;
  font-size: 14px;
}
section#content section article.lead-story .related .related-items {
  float: left;
  width: 85%;
  width: calc(100% - 65px);
  border-left: 2px solid #cccccc;
  padding-left: 10px;
}
section#content section article.lead-story .related .related-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section#content section article.lead-story .related .related-items ul li {
  margin-left: 0;
  padding-left: 20px;
  position: relative;
}
section#content section article.lead-story .related .related-items ul li .fa {
  position: absolute;
  left: 0;
  top: 4px;
  min-width: 16px;
  text-align: center;
}
section#content section.article-list .related {
  margin-bottom: 12px;
}
section#content section.article-list article.story {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
section#content section.article-list article.story .main-photo {
  margin: 0 26px 0 0;
}
section#content section.article-list article.story .article-headline {
  font-size: 24px;
}
section#content section.article-list article.story .meta {
  margin-bottom: 10px;
}
section#content section.article-list article.story p {
  margin: 0;
}
section#content section.article-list article.story:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
footer#pre-footer {
  border-top: 11px solid #cccccc;
  padding: 20px 0 8px;
  background: #fff;
}
footer#pre-footer > .container {
  margin-bottom: 16px;
}
footer#pre-footer .clearfix {
  margin-bottom: 26px;
}
footer#pre-footer .header {
  margin: 15px 0 10px;
}
footer#pre-footer .header h2 {
  background-color: #9ea7b3;
  color: #fff;
  font-size: 20px;
  height: 47px;
  line-height: 47px;
  padding-left: 92px;
  position: relative;
  text-transform: uppercase;
}
footer#pre-footer .header h2 img {
  position: absolute;
  left: 10px;
  top: -15px;
}
footer#pre-footer section {
  overflow: hidden;
}
footer#pre-footer section h3 {
  text-transform: uppercase;
  font-size: 18px;
}
footer#pre-footer section article {
  border-top: 2px solid #cccccc;
  margin-top: 10px;
}
footer#pre-footer section article h4 {
  font-size: 13px;
  font-weight: 400;
}
footer#pre-footer section article.lead-story {
  border-top: none;
  margin-top: 0;
}
footer#pre-footer section article.lead-story h4 {
  font-size: 14px;
  font-weight: 700;
}
footer#footer {
  border-top: 11px solid #cccccc;
  background-color: #f5f5f5;
  padding-bottom: 16px;
}
footer#footer #contact-links section {
  margin-bottom: 20px;
}
footer#footer #contact-links h3 {
  color: #b00021;
  font-size: 18px;
  line-height: 1.33em;
  margin: 0;
  text-transform: uppercase;
}
footer#footer #contact-links p {
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
footer#footer #contact-links ul.links {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer #contact-links ul.links li {
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
footer#footer #contact-links ul.links li a {
  color: #000;
}
footer#footer #section-links {
  border-top: 3px solid #cccccc;
  padding-top: 20px;
  margin-top: 20px;
}
footer#footer #section-links #footer-links ul.menu {
  margin: 8px 0;
}
footer#footer #section-links #footer-links ul.menu li {
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 400;
}
footer#footer #section-links #footer-links ul.menu li a {
  font-size: 18px;
  line-height: 1.4em;
  color: #000;
}
footer#footer #section-links #footer-links ul.menu li.em {
  font-weight: 700;
}
footer#footer #section-links #footer-links ul.menu li.em a {
  color: #a9091f;
  text-transform: uppercase;
}
footer#footer #footer-nav {
  border: solid #cccccc;
  border-width: 3px 0;
  padding: 20px 0;
  margin: 20px 0;
}
footer#footer #footer-nav ul.menu li {
  float: left;
  margin-right: 6px;
  padding-right: 6px;
  border-right: 3px solid #000;
  font-family: "Montserrat", Helmet, Freesans, sans-serif;
  font-style: normal;
  font-weight: 700;
}
footer#footer #footer-nav ul.menu li a {
  white-space: nowrap;
  color: #b00021;
  font-size: 18px;
  line-height: 1.33em;
}
footer#footer #footer-nav ul.menu li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
footer#footer #colophon h6 {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-align: center;
}
footer#footer #colophon h6 .separator {
  margin: 0 5px;
}
footer#footer #colophon h6 .copyright-info {
  display: block;
}
footer#footer #colophon h6 .copyright-info .separator {
  display: none;
}
/* Layout-specific overrides */
body.home section#content section article .meta {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: none;
  color: #222;
}
body.home section#content section article .meta .source {
  font-style: italic;
}
body.article section#content .content-inner {
  padding-bottom: 36px;
}
body.article section#content .full-article article .main-photo {
  float: none;
  margin: 0 0 20px;
}
body.article section#content .full-article article .article-text {
  color: #000;
}
body.article section#content .full-article article .communicate {
  float: right;
  text-transform: none;
}
body.article section#content .full-article article .communicate .fa {
  margin-right: 4px;
}
body.article section#content .full-article article .communicate a {
  margin-left: 10px;
  color: #3e3e3e;
}
body.communities-landing section#content .author-meta .author-avatar,
body.tag-hub section#content .author-meta .author-avatar {
  margin: 0 20px 0 0;
}
body.communities-landing section#content .more-from,
body.tag-hub section#content .more-from {
  border-top: none;
  font-size: 18px;
  line-height: normal;
}
body.tag-hub #page-title-container {
  margin-bottom: 20px;
}
body.tag-hub #pagination-below {
  margin-top: 0;
}
body.landing #pagination-below {
  margin-top: 40px;
}
body.specials #page-title-container .page-title {
  font-size: 18px;
  margin: 15px 0 0;
}
body.specials #page-title-container .share-bar {
  margin: 20px 0 0 20px;
}
body.specials aside section.block {
  border-bottom: none;
}
div.more-news a,
div.inside-policy a {
  color: #000;
}
span.caption {
  font-size: 0.7em;
  color: #ccc;
  font-family: "Open Sans";
}
div.gallery-contained {
  display: block;
  width: 100%;
}
div.gallery-pagination .control-prev {
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  position: relative;
  top: -300px;
  left: -1px;
  z-index: 10;
  font-size: 30px;
  color: #fff;
  height: 44px;
  line-height: 44px;
  background-color: rgba(255, 255, 255, 0.55);
  padding: 0 8px;

}
div.gallery-pagination .control-next {
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  position: relative;
  top: -300px;
  right: 0;
  float: right;
  z-index: 10;
  font-size: 30px;
  color: #fff;
  height: 44px;
  line-height: 44px;
  background-color: rgba(255, 255, 255, 0.55);
  padding: 0 8px;
}
div.gallery-top-pagination a { padding: 10px; }
div.gallery-top-pagination img { display: inline; border: 2px solid #ccc; }

div.inline-photo {
  float: right;
  background: #f5f5f5;
  width: 220px;
  margin-left: 20px;
  font-size: 11px;
  color: #999;
  padding: 10px;
}

.poll_required {display:none}
ul.nobull.half { float: left; width: 48%; }
ul.nobull { margin: 0; padding: 0; list-style-type: none; }
ul.nobull li { margin-bottom: 5px; display: block; }
ul.nobull.first { border-right: 2px solid #ccc; }
ul.nobull.last { margin-left: 2%; }

#main { background: #fff; padding-top: 20px; }

#ad-lead {
  position: relative;
  z-index: 1 !important;
}

/* video */
.video-navigation { margin-top: 20px; }


/*]]>*/
