/* -------------- Fonts --------------- */

/*
    font-family: 'Open Sans', sans-serif;

	400 = regular
	600 = semi-bold
	700 = bold
	800 = extra-bold
/*


/* -------------- Global Styles --------------- */

*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html{
	font-size: 62.5%;
}

body{
	color: #000;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.5rem;
	background-color: #f8f8f8;
	overflow-x: hidden;
}

ul{
	list-style: none;
}

img{
	height: auto;
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 800;
	margin-top: 0;
}

h1{
	font-size: 4rem;
	font-weight: 600;
	line-height: 4.5rem;
	margin-top: 0;
}

h2{
	font-size: 2.5rem;
	line-height: 3.5rem;
}

a{
	transition: all 300ms ease;
}

a:hover{
	text-decoration: none;
}

#main-content a{
	font-weight: 600;
}
/* -------------- Main Styles --------------- */

.header-nav {
    margin-top: 5rem;
    min-height: 110px;
    padding: 2rem 2rem 3rem;
    position: relative;
    margin: 0 auto;    
    z-index: 99;
}

.wcs-overlay{
    /*bigger than header-nav */
    z-index: 999;
}

 #wcs-main-wrapper {
 	margin: 0;
 }

.lg-col-wrapper{
    position:relative;
}


#wrapper,
.section-inner{
	margin: 0 auto;
	max-width: 1200px;
}

#wrapper {
	margin-top: 2rem;
	padding: 0 2rem;
}

#main-content,
#top-content {
	float: left;
	width: 68.333333333333%; /* 820/1200 */
}

.content-body {
    padding: 0 4rem;
}

#full-content {
	width: 100%;
}

aside {
	display: flex;
	flex-direction: column;
	float: right;
	width: 29.166666666667%; /* 350/1200 */
}

footer {
	padding: 30px 0 50px; /* 30/1200 */
	margin-top: 5rem;
}


/* -------------- Header --------------- */

header > .section-inner {
	overflow: hidden;
	padding: 20px 0; /* 20/1200 */
	position: relative;
}

.logo {
	display: block;
	left: 0;
	position: absolute;
	z-index: 9;
}

.logo-stacked {
	display: none;
}

.header-social-search {
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
	margin-top: 2rem;
	text-align: right;
}

.header-contact,
.header-contact a {
	color: #fff;
}

.header-contact {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.8rem;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.header-contact span span,
.header-contact span.header-contact-spacer,
.header-contact a:hover{
	color: #69affb;
}

.header-contact a {
	text-decoration: none;
}

.header-news-links-btn,
.header-tips-links-btn {
	font-size: 1.3rem;
	font-weight: 700;
	padding: 0.6rem 3rem;
	text-transform: uppercase;
	border-radius: 50px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.header-tips-links-btn {
	background-color: #ffc72c;
	color: #000;
	margin-right: 2rem;
}

.header-tips-links-btn:hover,
.header-tips-links-btn:focus {
	background-color: #fff;
	color: #0e256b;
	text-decoration: none;
}

.header-news-links-btn {
	background-color: white;
	color: #0e256b;
}

.header-news-links-btn:hover,
.header-news-links-btn:focus {
	background-color: #0e256b;
	color: white;
	text-decoration: none;
}

.header-search-input-wrap{
	background-color: #fff;
	padding-right: 3.5rem;
	position: relative;
}

.header-search-input-wrap input,
.header-search-input-wrap button{
	background: none;
	border: none;
	display: block;
	height: 32px;
	padding: 0;
}

.header-search-input-wrap input{
	padding-left: 1rem;
	width: 100%;
}

.header-search-input-wrap button{
	font-size: 20px;
    padding: 0 0.2rem 0.4rem;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

.header-search-input-wrap button:hover{
	background: #69affb;
	color: #fff;
}

.main-nav {
	background-color: #fff;
	padding: 0.4rem 0;
	z-index: 99999;
}

.main-nav .section-inner{
	width: 100%;
	padding: 0 1rem;
}

.main-nav ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
}

.main-nav ul li {
	display: flex;
	flex-grow: 1;
}

.main-nav li a {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2rem;
	padding: 0.5rem 0;
	text-decoration: none;
	text-transform: uppercase;
}

.main-nav .submenu-wrap {
	position: relative;
}

.main-nav .submenu-wrap-arrow {
	font-size: 1.2rem;
}

.main-nav .submenu {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	position: absolute;
	visibility: hidden;
	width: 250px;
	top: 41px;
	left: -20px;
	opacity: 0;
    z-index: 999999;
}

.main-nav .submenu-open {
	opacity: 1;
	visibility: visible;
}

.main-nav .submenu li {
	display: block;
	text-align: left;
}

.main-nav .submenu li a {
	font-size: 1.5rem;
	padding: 1rem 2rem;
}

.main-nav .submenu li a:hover,
.main-nav .submenu li a:focus {
	color: #ffc72c;
}

.main-nav-menu-btn,
.main-nav-search-btn,
.main-nav-close-btn,
.main-nav .submenu li.submenu-back-btn{
	display: none;
	outline: none;
}

.btn-secondary {
	color: white;
	font-size: 1.6rem;
	font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    min-width: auto;
    border: 2px solid transparent;
    border-radius: 50px;
    white-space: nowrap;
    padding: 0.7rem 2.5rem;
    margin-bottom: 1rem;
    opacity: 1;
}

.btn-secondary:hover {
	filter: brightness(115%);
}

.btn-primary.yellow,
.btn-secondary.yellow {
	background-color: #ffb405;
	color: black;
}

.btn-secondary.blue {
	background-color: #0d246f;
	color: white;
}

.nav-transition {
	padding: 1rem;
	z-index: 999999;
}

.main-nav .nav-transition .submenu {
	left: -50px;
}

.nav-transition .search-bar.open {
	margin-top: 1rem;
}

.sticky-header-logo img {
	display: none;
}

#main-nav-floating-sticky-wrapper.is-sticky #main-nav-floating {
    padding-bottom: 1.5rem;
    z-index: 99;
}

#main-nav-floating-sticky-wrapper.is-sticky .main-nav a:hover,
#main-nav-floating-sticky-wrapper.is-sticky .main-nav a:focus {
	color: #ffc72c;
}

#main-nav-floating-sticky-wrapper.is-sticky .sticky-header-logo img {
	display: block;
	width: 100px;
	margin-top: 0.8rem;
}

#main-nav-floating-sticky-wrapper.is-sticky ul {
	width: 88%;
	margin: 1rem 0 0 3rem;
	float: right;
}

#main-nav-floating .header-nav-icons li {
	padding: 0 0.1rem;
}

.wmlw-nav li a,
.wmlw-nav .header-nav-search {
	color: #000;
	font-family: "TT Norms Pro";
}

.nav-transition ul {
	width: 88%;
	margin-left: 3rem;
	float: right;
}

.nav-transition .sticky-header-logo img {
	display: block;
    float: left;
    width: 100px;
}

.nav-transition .sticky-header-logo img {
    display: block;
    width: 100px;
}

.sticky-mobile-nav-wrapper {
	clear: both;
	height: auto !important;
	position: relative;
}

.header-nav-icons {
	display: flex;
	flex-grow: 1;
	align-items: center;
}

.header-ads {
	margin-bottom: 3rem;
	position: relative;
	z-index: 10;
}

.header-ad-leaderboard,
.header-ad-promo {
	display: inline-block;
	vertical-align: top;
}

.header-ad-leaderboard {
	overflow: hidden;
	width: 728px;
}

.header-ad-promo {
	margin-left: 1.5rem;
	width: 452px;
	float: right;
}

.takeover-wrapper .header-ads {
	display: none;
}

.teal-text {
	color: #0086AC;
}

/* Search bar */

.header-nav-search {
   	cursor: pointer;
    display: block;
    float: left;
}

.search-bar {
	display: none;
	position: relative;
	padding: 2rem;
	width: 100%;
	outline: none;
}

.search-bar.open {
	background: #fff;
	display: block;
	width: 100%;
	position: absolute;
	z-index: 99999;
}

.search-bar form {
	color: #252525;
	border-radius: 50px;
	margin: 0 3rem;
	width: 90%;
	margin: 0 auto;
}

.search-bar i {
    color: #5a5a5a;
}

.search-bar-input-wrap {
    float: left;
    margin-right: -7rem;
    width: 100%;
}

.search-form {
	font-size: 2rem;
}

.search-form input {
	background-color: #ebebeb;
	display: block;
	margin-right: 7rem;
    padding: 0 3rem;
    height: 50px;
	width: 100%;
	float: left;
    border: none;
    border-radius: 50px;
    vertical-align: middle;
    outline: none;
}

.search-form input
.search-form button {
    background: none;
    display: block;
    height: 50px;
    border: none;
}

.search-form button {
    background: none;
   	margin-top: 1.3rem;
   	width: 70px;
    float: right;
    border: none;
}

/* Breaking News alerts */

.breaking-news-container {
	background-image: linear-gradient( to right, rgb(227,23,35) 0%, rgb(208,15,12) 50%, rgb(190,06,28) 100%);
	position: relative;
}

/* On Now Next Schedule Bar */

.on-now-next {
	display: flex;
	margin-bottom: 3rem;
	text-transform: uppercase;
	box-shadow: 0px 1px 11px -2px rgba(0, 0, 0, 0.1);
}

.on-now {
	background-color: #fff;
	border-radius: 15px 0 0 15px;
}

.on-next {
	background-color: #fff;
    border-left: 3px solid #e3e9eb;
}

.later {
	border-radius: 0 15px 15px 0;
}

.on-heading {
	color: #000;
	font-size: 1.8rem;
	line-height: 2.3rem;
	font-weight: 700;
	margin-bottom: 0.2rem;
}

.now-next-show {
	color: #000;
	font-size: 1.6rem;
	line-height: 2.2rem;
	font-weight: 300;
}

.on-now-next .one-third-column {
	width: calc(100% / 3);
	padding: 1.3rem 2rem 1.5rem;
}

.on-now-next .one-third-column:last-child {
	border-right: none;
}

.on-now-next .newscast {
	background: var(--brand-gradient);
	color: #fff;
}

.on-now-next .newscast-now {
	background: var(--brand-gradient);
	float: left;
	border-right: 1px solid white;
}

.on-now-next .newscast + .newscast {
	border-left: 3px solid white;
}

.newscast-now + .on-next {
    border-left: 0;
 }

.newscast-now .now-next-content {
	float: left;
}

.newscast-now .on-heading,
.newscast-now .now-next-show {
	color: #fff;
}

.on-now.newscast-now {
	background-color: #e3e9eb;
}

.newscast-now .live-button-container {
	float: right;
	margin: 1.2rem 0 0.5rem;
}

.newscast-now .live-button-container i {
	font-size: 0.9rem;
	vertical-align: middle;
	margin-top: -0.2rem;
}

.newscast .on-heading,
.newscast .now-next-show {
	color: #fff;
}

.next-newscast-mobile {
	display: none;
}

/* use to pause the content on mouse over */

.hide {
  display: none;
}

.breaking-news-inner,
.breaking-news-inner a {
	color: #ffffff;
	text-decoration: none;
}

.breaking-news-inner {
	display: flex;
	flex-flow: row;
	align-items: center;
	font-size: 1.8rem;
	padding: 1.7rem 2rem;
	margin: 0 auto;
	max-width: 1000px;
}

.breaking-alert {
	font-size: 2.4rem;
	font-style: italic;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	margin-right: 3rem;
}

.breaking-news-marquee {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
}

.breaking-news-marquee a:hover,
.breaking-news-marquee a:focus {
	color: #000;
}

.breaking-news-wrap {
	display: flex;
	justify-content: center;
    align-items: center;
	padding: 1.7rem 2rem;
	font-size: 1.8rem;
}

.breaking-news-wrap .breaking-alert {
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-right: 1rem;
}

.breaking-news-count {
    font-size: 1.8rem;
    color: white;    
}

.alert-slides-row {
   	max-width: 90%;
   	overflow: hidden;
}

.alert-slides-wrapper {
	display: flex;
    justify-content: center;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 100%;
	max-width: 1000px;
	overflow: hidden;
}

.alert-slides-wrapper ul {
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

.alert-slides-wrapper li {
	width: 100%;
	float: left;
	position: relative;
}

.alert-arrows {
	display: flex;
	align-items: center;
	z-index: 9999;
}

.alert-arrows a {
	color: #ffffff;
	font-size: 1.8rem;
	padding: 0.5rem;
	text-decoration: none;
}

.alert-arrows a:hover {
	opacity: 0.8;
}

/* end breaking news alerts */

.header-sponsored > .section-inner{
	padding-right: 165px;
}

.header-sponsor-ad{
    background-color: #0072b6;
    color: #fff;
    padding: 1.5% 15px 10px;
    position: absolute;
    right: 0;
    top: -1rem;
    width: 150px;
}

.header-sponsor-ad-inner span{
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5rem;
	text-align: center;
	text-transform: uppercase;
}

.school-closings-banner-lrg,
.school-closings-banner-med{
	display: block;
	margin: 0 auto 20px;
}

.school-closings-banner-med{
	display: none;
}

.elections-banner-lrg,
.elections-banner-med{
	display: block;
	margin: 0 auto 2rem;
}

.elections-banner-med{
	display: none;
}


/* -------------- Homepage --------------- */

.content-ad-promo{
	margin: 2rem auto;
	max-width: 452px;
}

/* -------------- Modular Sections --------------- */

/* ----- mod main / mod section 1 ----- */
.mod-section-main{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.mod-section-main-1{
	display: block;
}

.mod-section-main-item{
	background-color: #e7e7e7;
	float: left;
	margin-left: 0.25%; /* 3/1200 */
}

.mod-section-main-item:first-child{
	margin-left: 0;
}

.mod-section-main-item img{
	display: block;
}

.mod-section-main-item-title{
	font-weight: 700;
	text-align: center;
}

.mod-section-main-item-title a{
	color: #0d246f;
	text-decoration: none;
}

.mod-section-main-item-title a:hover{
	color: #69affb;
}

.mod-section-main-1 .mod-section-main-item{
	float: none;
	margin: 0;
}

.mod-section-main-img{
	float: left;
	width: 73.333333333333%; /* 880/1200 */
}

.mod-section-main-1 .mod-section-main-item-title{
	float: right;
	padding: 1.666666666667%; /* 20/1200 */
	text-align: left;
	width: 26.666666666667%; /* 320/1200 */
}

.mod-section-main-1 h1{
	margin: 0;
}

.mod-section-main-2 .mod-section-main-item{
	width: 49.875%; /* 598.5/1200 */
}

.mod-section-main-2 .mod-section-main-item-title{
	padding: 3.341687552214%; /* 20/598.5 */
}

.mod-section-main-3 .mod-section-main-item{
	width: 33.166666666667%; /* 398/1200 */
}

.mod-section-main-3 .mod-section-main-item-title{
	padding: 5.025125628141%; /* 20/398 */
}

.mod-section-main-4 .mod-section-main-item{
	width: 24.8125%; /* 297.75/1200 */
}

.mod-section-main-4 .mod-section-main-item-title{
	padding: 6.71704450042%; /* 20/297.75 */
}

/* ---- Mod main weather / weather alerts  ---- */

.mod-section-main-weather.mod-section-main-item{
	background-color: #0d246f;
	position: relative;
}

.mod-section-main-weather .mod-section-main-item-title{
	padding: 0;
}

.mod-section-main-item-weather-logo,
.mod-section-main-item-weather-icon{
	display: block;
}

.mod-section-main-item-weather-logo{
	float: left;
	margin-top: 3.341687552214%; /* 30/598.5 */
	width: 41.771094402673%; /* 250/598.5 */
}

.mod-section-main-item-weather-info{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+39,e7e7e7+100 */
	background: #ffffff; /* Old browsers */
	background: linear-gradient(to right,  #ffffff 39%,#e7e7e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=1 ); /* IE6-9 */
	float: right;
	width: 58.228905597327%; /* 348.5/598.5 */
}

.mod-section-main-item-weather-icon,
.mod-section-main-item-weather-info-temps span,
.mod-section-main-item-weather-info-temps a{
	display: block;
}

.mod-section-main-item-weather-icon{
	float: left;
	padding: 4.304160688666% 0 4.304160688666% 5.738880918221%; /* 15/348.5 & 20/348.5 */
	width: 41.176470588235%; /* 143.5/348.5 */
}

.mod-section-main-item-weather-info-temps{
	float: right;
	padding: 4.304160688666% 5.738880918221%; /* 15/348.5 & 20/348.5 */
	text-align: left;
	width: 58.823529411765%; /* 205/348.5 */
}

.mod-section-main-item-weather-temp,
.mod-section-main-item-weather-info-temps a{
	color: #0d246f;
}

.mod-section-main-item-weather-temp{
	font-size: 6rem;
	line-height: 6rem;
}

.mod-section-main-item-weather-high-low,
.mod-section-main-item-weather-info-temps a:hover{
	color: #1c89ff;
}

.mod-section-main-item-weather-info-temps a{
	font-size: 1.4rem;
	text-transform: uppercase;
}

.mod-section-main-1 .mod-section-main-weather.mod-section-main-item-title img{
	float: none;
	width: auto;
}

.mod-section-main-1 .mod-section-main-weather .mod-section-main-item-title{
	text-align: center;
}

.mod-section-main-1 .mod-section-main-item-weather-logo,
.mod-section-main-1 .mod-section-main-item-weather-icon{
	margin: 0 auto;
}

.mod-section-main-1 .mod-section-main-item-weather-logo{
	float: none;
	width: 100%;
}

.mod-section-main-1 .mod-section-main-item-weather-info{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+39,e7e7e7+100 */
	background: #ffffff; /* Old browsers */
	background: linear-gradient(to bottom,  #ffffff 39%,#e7e7e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 ); /* IE6-9 */
	float: none;
	padding: 3.125% 0 5%; /* 10/320 & 16/320 */
	width: 100%;
}

.mod-section-main-1 .mod-section-main-item-weather-icon{
	float: none;
	padding: 0;
	width: 50.625% !important; /* 162/320 */
}

.mod-section-main-1 .mod-section-main-item-weather-temp,
.mod-section-main-1 .mod-section-main-item-weather-high-low{
	display: block;
}

.mod-section-main-1 .mod-section-main-item-weather-temp{
	color: #0d246f;
	font-size: 10rem;
	line-height: 10rem;
}

.mod-section-main-1 .mod-section-main-item-weather-high-low{
	color: #69affb;
}

.mod-section-main-1-item-weather-info-temps a{
	display: none;
}

.mod-section-main-1 .mod-section-main-item-weather-see-more{
	display: block;
	padding: 5.3125% 6.25%; /* 17/320 & 20/320 */
	text-transform: uppercase;
}

.mod-section-main-1 .mod-section-main-item-title .mod-section-main-item-weather-see-more:hover,
.mod-section-main-1 .mod-section-main-item-title .mod-section-main-item-weather-see-more:focus {
	color: #fff;
}

.mod-section-main-2 .mod-section-main-item-weather-logo{
	width: 33.416875522139%; /* 200/598.5 */
}

.mod-section-main-2 .mod-section-main-item-weather-info{
	width: 66.583124477861%; /* 398.5/598.5 */
}

.mod-section-main-2 .mod-section-main-item-weather-icon{
	width: 28.858218318695%; /* 115/398.5 */
}

.mod-section-main-2 .mod-section-main-item-weather-info-temps{
	width: 71.141781681305%; /* 283.5/398.5 */
}

.mod-section-main-3 .mod-section-main-item-weather-logo{
	margin-top: 7.5%; /* 30/148 */
	width: 37%; /* 148/400 */
}

.mod-section-main-3 .mod-section-main-item-weather-info{
	padding: 4% 2.5%; /* 16/400 & 10/400 */
	width: 63%; /* 252/400 */
}

.mod-section-main-3 .mod-section-main-item-weather-icon{
	padding: 0;
	width: 31.531531531532%; /* 70/222 */
}

.mod-section-main-3 .mod-section-main-item-weather-info-temps{
	padding: 0;
	width: 63.963963963964%; /* 142/222 */
}

.mod-section-main-3 .mod-section-main-item-weather-temp,
.mod-section-main-4 .mod-section-main-item-weather-temp{
	font-size: 4rem;
	line-height: 4rem;
}

.mod-section-main-3 .mod-section-main-item-weather-high-low,
.mod-section-main-3 .mod-section-main-item-weather-info-temps a,
.mod-section-main-4 .mod-section-main-item-weather-high-low,
.mod-section-main-4 .mod-section-main-item-weather-info-temps a{
	line-height: 2rem;
}

.mod-section-main-3 .mod-section-main-item-weather-high-low,
.mod-section-main-4 .mod-section-main-item-weather-high-low{
	font-size: 1.4rem;
}

.mod-section-main-3 .mod-section-main-item-weather-info-temps a,
.mod-section-main-4 .mod-section-main-item-weather-info-temps a{
	font-size: 1.2rem;
}

.mod-section-main-4 .mod-section-main-weather.mod-section-main-item{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+39,e7e7e7+100 */
	background: #ffffff; /* Old browsers */
	background: linear-gradient(to right,  #ffffff 39%,#e7e7e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=1 ); /* IE6-9 */
}

.mod-section-main-4 .mod-section-main-weather .mod-section-main-item-title{
	padding: 1rem;
}

.mod-section-main-4 .mod-section-main-item-weather-info{
	background: none;
	float: none;
	width: 100%;
}

.mod-section-main-4 .mod-section-main-item-weather-icon{
	width: 25.202520252025%; /* 70/277.75 */
}

.mod-section-main-4 .mod-section-main-item-weather-icon,
.mod-section-main-4 .mod-section-main-item-weather-info-temps{
	padding: 0;
}

.mod-section-main-4 .mod-section-main-item-weather-info-temps{
	padding-left: 1rem;
	width: 74.797479747975%; /* 207.75/277.75 */
}

.mod-section-main-weather-alert.mod-section-main-item{
	background-color: #c40513;
	text-transform: uppercase;
}

.mod-section-main-weather-alert .mod-section-main-item-title{
	text-align: left;
}

.mod-section-main-weather-alert .mod-section-main-item-title h1,
.mod-section-main-weather-alert .mod-section-main-item-title a{
	color: #fff;
}

.mod-section-main-weather-alert .mod-section-main-item-title h1{
	line-height: 35px;
	line-height: 3.5rem;
	margin: 0 0 5px;
}

.mod-section-main-weather-alert .mod-section-main-item-title a:hover{
	color: #000;
}

.mod-section-main-1 .mod-section-main-weather-alert .mod-section-main-item-title h1{
	font-size: 5rem;
	line-height: 5.5rem;
	margin-bottom: 1rem;
}

.mod-section-main-3 .mod-section-main-weather-alert .mod-section-main-item-title h1{
	font-size: 2.5rem;
	line-height: 2.5rem;
}

.mod-section-main-3 .mod-section-main-weather-alert .mod-section-main-item-title a{
	font-size: 1.4rem;
}

.mod-section-main-4 .mod-section-main-weather-alert .mod-section-main-item-title h1{
	font-size: 2rem;
	line-height: 2rem;
}

.mod-section-main-4 .mod-section-main-weather-alert .mod-section-main-item-title a{
	font-size: 1.2rem;
}

.mod-row-stacked > div {
	margin-bottom: 2rem;
}

/* ----- mod section "one-off" ----- */

.mod-single{
	background-color: #e6e7e7;
	margin: 2rem 0;
	min-height: 105px;
	padding-left: 179px;
	position: relative;
}

.mod-single img{
	display: block;
	left: 0;
	position: absolute;
	top: 0;
}

.mod-single h3,
.mod-single h3 a{
	color: #000;
}

.mod-single h3 {
	font-size: 1.8rem;
	font-weight: 800;
	padding: 2.439024390244%; /* 20/820 */
}

.mod-single h3 a {
	text-decoration: none;
}

.mod-single h3 a:hover,
.mod-single h3 a:focus {
	color: #69affb;
}

.single-listing-extras {
	padding: 2.5rem 0 2rem;
	border-bottom: 2px solid #e1e1e1;
}

.single-listing-extras .primary-tags-wrapper {
	margin-bottom: 0.8rem;
}

/* ----- mod section general ----- */

.mod-section h1,
aside h2,
h2.title,
.uppercase-heading,
.content-see-also h3 {
	margin-bottom: 0.8rem;
	text-transform: uppercase;
	font-weight: 600;
}

.mod-section h1 a {
	color: #69affb;
	font-size: 1.6rem;
	text-decoration: none;
	text-transform: uppercase;
}

.mod-section h1 .view-more,
.view-more {
   font-size: 1.8rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1.3px;
   color: #000000;
   text-decoration: none;
}

.section-header-title {
	margin-right: 1.5rem;
}

.view-more,
.view-more.desktop-only {
	display: inline-block;
}

.view-more > .fa-chevron-right {
	vertical-align: middle;
	margin-top: -0.3rem;
}

.mod-section a > .fa-chevron-right:before,
.view-more > .fa-chevron-right:before {
	font-size: 1.4rem;
	vertical-align: middle;
}


/* ----- mod section 2 (Four items) ----- */

.mod-section-2-inner {
	display: flex;
	flex-wrap: wrap;
}

.mod-section-2 {
	margin-bottom: 4rem;
}

.mod-section-2-item {
	width: calc(100% / 2 - 10px);
}

.mod-section-2-item:nth-of-type(2n + 2) {
	margin-left: 2rem;
}

.mod-section-2-item {
	margin-bottom: 2rem;
}

.mod-section-2-item img,
.mod-section-5-callout-item img,
.main-callout-item-full-width img {
	display: block;
	width: 100%;
	border-radius: 15px 15px 0 0;
}

.mod-section-2-item-title{
	font-weight: 700;
}

.mod-section-2-item-title a,
.mod-section-3-item-title a,
.aside-sidebar-three-item-list-title {
	color: #000000;
	text-decoration: none;
}

.mod-section-2-weather{
	padding-right: 0;
}

.mod-section-2-weather-temp{
	color: #fff;
	font-size: 4.5rem;
	line-height: 4.5rem;
}

.mod-section-2-weather-high-low{
	color: #69affb;
	display: inline-block;
	font-size: 1.4rem;
	line-height: 2rem;
}

.mod-section-2-weather-high-low span{
	display: block;
}

.mod-section-2-weather a {
	display: block;
	font-size: 1.4rem;
	margin-top: 0.5rem;
	text-transform: uppercase;
}

.mod-section-2-alt-color .mod-section-2-weather-temp,
.mod-section-2-alt-color .mod-section-2-weather a{
	color: #0d246f;
}

.mod-section-2-alt-color .mod-section-2-weather a:hover{
	color: #69affb;
}

/* ----- mod section 3 (Three items) ----- */

.mod-section-3 h1 a {
	color: #fff;
}

.mod-section-3-main-col {
	display: flex;
}

.mod-section-3-col-item {
	display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mod-section-3-side-col .mod-section-3-col-item:nth-of-type(1) {
    margin-bottom: 2rem;
}

.mod-section-3-col-item .excerpt-desc {
	font-size: 1.6rem;
	line-height: 2.3rem;
	font-weight: 400;
	margin-bottom: 0;
}

.mod-section-3-col{
	float: right;
	font-weight: 700;
	width: calc(100% / 3); /* 260/780 */
	margin-left: 3%;
}

.mod-section-3-col:first-child{
	float: left;
	margin-left: 0;
	width: 65%; /* 500/780 */
}

.mod-section-3-col img{
	display: block;
	width: 100%;
}

.mod-section-3 .mod-section-3-col {
	display: flex;
    flex-direction: column;
    position: relative;
}

.mod-section-3-main-item-title {
	font-size: 2.6rem;
	text-decoration: none;
	padding: 2.2rem 2.5rem 2.5rem;
	line-height: 3rem;
}

.mod-section-3-images-item-title {
	font-size: 1.4rem;
	line-height: 1.8rem;
	text-decoration: none;
	padding: 1.5rem 2rem;
}


/* ------- mod section 3 default  --------- */

.mod-section-3-inner {
	display: flex;
}

/* ------- mod section 3 item list (3 items in row) --------- */

.mod-section-3-list-inner{
	display: flex;
	flex-wrap: wrap;
}

.mod-section-3-list-row .primary-tags-wrapper {
	margin-top: 0.5rem;
}

.mod-section-3-list-row .mod-section-3-item img {
	width: 100%;
}

.mod-section-3-list-item {
	float: left;
    width: calc(100% / 3 - 2rem);
    margin: 0 2% 2rem 0;
   	position: relative;
}

.mod-section-3-list-item:nth-of-type(3) {
	margin-right: 0;
}

.mod-section-3-item-title {
	padding: 1rem 1.5rem 2.5rem;
}

/* ----- mod section 4 (Five items) and shared styles ----- */

.mod-section,
.mod-section-3,
.mod-section-4,
.mod-section-3-list-row,
.mod-section-5-callout,
.aside-newsletter-signup {
	margin-bottom: 4rem;
}

.mod-section-4-inner{
	display: flex;
}

.mod-section-2-item,
.mod-section-4-col {
	float: left;
	font-weight: 700;
}

.mod-section-4-col {
	width: 50%; /* 520/820 */
	position: relative;
}

.primary-content-box,
.main-callout-item-full-width,
.weather-maps,
aside > ul > li > ul,
.aside-weather-bio,
.content-see-also > ul > li,
.zergnet-ad-unit {
	background-color: #ffffff;
  	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  	border-radius: 15px;
}

.mod-section-4-col:nth-of-type(2) {
	margin-left: 3%;
}

.mod-section-3-main-item-title a,
.mod-section-3-images-item-title a,
.mod-section-4-col a,
.mod-section-5-callout-item a {
	text-decoration: none;
}

.mod-section-3-col-item img,
.mod-section-3-list-item img,
.mod-section-4-col img,
.aside-sidebar-main-callout-list img,
.content-see-also li img {
	display: block;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	width: 100%;
}

.mod-section-3-list-item-title,
.mod-section-4-item-title,
.mod-section-5-callout-item-title {
	font-size: 1.8rem;
	padding:  2rem 2rem 3rem;
}

.mod-section-2-item-title,
.mod-section-3-item-title,
.mod-section-5-callout-item-title {
	font-size: 1.8rem;
	line-height: 2.4rem;
	padding: 1.8rem 2rem 3rem;
}

.mod-section-4-col ul{
	margin: 0;
	padding: 0 2rem;
}

.mod-section-4-col li{
	border-bottom: 2px solid #e1e1e1;
	padding: 2rem 0;
	line-height: 2rem;
}

.mod-section-4-col li:last-child{
	border: none;
}

.primary-tags-wrapper,
.secondary-tags {
	margin-bottom: 1.3rem;
	display: flex;
}

.primary-tags-wrapper > a {
    color: white;
    text-decoration: none;
    width: auto;
}

.primary-tags,
.secondary-tags {
	font-size: 1.4rem;
	font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.primary-tags {
	padding: 0.2rem 1.2rem;
}

.primary-tags-wrapper .title-alert {
	display: none; /* hides title alert in tag when part of a title */
}

.content-header .primary-tag {
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.secondary-tags {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.secondary-tags > a,
a.secondary-tags {
	background-color: #e1e1e1;
	color: #010000;
	font-size: 1.4rem;
    padding: 7px 25px 5px;
    text-decoration: none;
	border-radius: 15px;
}

.secondary-tags > a:hover {
    background-color: rgba(225, 225, 225, 0.7);
}

.secondary-tags.small > a {
	padding: 0.1rem 1.3rem; /* rules for small buttons */
}

.trending-item {
	display: flex;
    counter-increment: trending-item;
}

.trending-item .primary-tags-wrapper {
	margin: 0.2rem 0 0.8rem;
}

.item-number {
    float: left;
    margin: 0 2rem 1rem 0;
}

.item-number:before {
	counter-increment: c-trending-counter;
    content: counter(trending-item);
}

.item-content {
	display: flex;
    flex-direction: column;
}

.callout-box {
	color: #ffffff;
	padding: 1.5rem 2rem;
}

.callout-box:hover {
	background-color: rgba(17, 32, 87, 0.9);
}

.callout-box a:hover {
	color: white;
}

.callout-box > p {
	margin: 0;
}

.callout-box > a {
	color: inherit;
	text-decoration: none;
}

.callout-box h3 {
	margin-bottom: 0;
	font-weight: 600;
	text-transform: uppercase;
}


/* -------------- mod-section-5 --------------- */

.mod-section-5-callout-item:nth-of-type(1) {
	box-shadow: none;
	width: 100%;
}

.mod-section-5-callout-inner {
	display: flex;
    flex-wrap: wrap;
}

.mod-section-5-callout-item img {
	width: 100%;
}

.mod-section-5-callout-item:nth-of-type(1) .callout-item-title-link {
	font-size: 3.5rem;
	line-height: 3.8rem;
}

.mod-section-5-callout-item:nth-of-type(1) .mod-section-5-callout-item-title > a {
	line-height: 4rem;
}

.mod-section-5-callout-item:nth-of-type(2),
.mod-section-5-callout-item:nth-of-type(3) {
	float: left;
	width: calc(100% / 2 - 30px);
	margin: 0 0 2rem 2rem;
}


/* -------------- News --------------- */

.content-header{
	margin-bottom: 2rem;
}

.content-byline{
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1.3rem;
}

.content-byline img{
	display: inline-block;
	margin: 0 0.8rem -1.3rem 0;
}

.content-byline span{
	font-weight: 700;
}

.content-byline-author{
	color: #000;
	margin-right: 1rem;
}

.content-byline-author:hover,
.content-byline-author:focus {
	color: #1d85f6;
	text-decoration: none;
}

a.content-byline-facebook,
a.content-byline-twitter{
	font-size: 1.6rem;
}

a.content-byline-facebook{
	color: #1c619e;
}

a.content-byline-twitter{
	color: #00c6f6;
}

.content-author-extra{
	margin: 0.5rem 0 1.5rem;
    font-size: 1.6rem;
    padding: 0 4rem 1rem;
}

.content-date-posted{
	color: #0d246f;
}

.content-date-posted span{
	font-weight: 700;
}

.content-wrap,
.content-share-wrap{
	margin-bottom: 2rem;
}

.content-share-wrap-title{
	display: block;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.content-share{
	max-width: 500px;
}

.content-header-img,
.content-header-img-caption{
	display: block;
}

.content-header-img-caption{
	color: #555;
	font-size: 1.2rem;
	margin: 0.5rem 0 2rem;
}

.content-slideshow{
	color: #0d246f;
	margin-bottom: 2rem;
	position: relative;
}

.content-slidelist img {
	display: block;
	margin: 0 auto;
    z-index: 2147483642;             
}

.content-slide-hidden{
    visibility: hidden;
}

.content-slideshow .bx-controls-direction{
	position: absolute;
	right: 20px;
	top: 20px;
}

.content-slideshow ul{
	margin: 0;
	padding: 0;
}

.slideshow-desc-contest h3,
.slideshow-desc-contest-info{
	margin-bottom: 1rem;
}

.slideshow-desc-contest h3 span{
	font-size: 1.6rem;
}

.slideshow-desc-contest-info span{
	font-weight: 700;
}

.content-prev-slide,
.content-next-slide{
	background-color: #69affb;
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	height: 38px;
	padding-top: 0.5rem;
	border: 2px solid #fff;
	text-align: center;
	width: 38px;
}

.content-prev-slide:hover,
.content-next-slide:hover{
	background-color: #0d246f;
}

.content-next-slide{
	border-left: none;
}

.content-slide-count{
	color: #000;
	font-weight: 700;
}

.content-wrap ul{
	list-style: disc;
}

.content-wrap ol{
	list-style: decimal;
}

.content-quote,
.content-see-also-single,
.content-see-also-single a{
	color: #0d246f;
}

.content-quote,
blockquote {
	display: flex;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 3.2rem;
	width: 90%;
	text-align: center;
	padding: 2rem 0;
	margin: 0 auto;
}

.content-quote i.fa,
.content-see-also-single{
	margin: 1.5rem 0;
}

.content-quote i.fa{
	display: block;
	font-family: 'TT Norms Pro';
    font-weight: 600;
}

.content-see-also-single{
	border-bottom: 2px solid #e3e3e5;
	border-top: 2px solid #e3e3e5;
	padding: 2.439024390244% 0; /* 20/820 */
}

.content-see-also-single span{
	font-weight: 800;
	text-transform: uppercase;
}

.content-see-also-single a{
	text-decoration: none;
}

.content-see-also-single a:hover,
.content-see-also-single a:focus{
	text-decoration: underline;
}

.content-see-also{
	float: left;
	margin-right: 2rem;
	width: 160px;
}

.content-see-also h3 {
	font-size: 1.6rem;
}

.content-see-also ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.content-see-also li{
	margin-bottom: 2rem;
}

.content-see-also img,
.content-see-also-title {
	display: block;
}

.content-see-also-title{
	color: #000;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 2rem;
	padding: 1rem;
	text-decoration: none;
}

.content-see-also-title:hover,
.content-see-also-title:focus{
	color: #69affb;
}

.content-img-embed-caption{
	float: right;
	margin: 0 0 2.272727272727% 2.272727272727%; /* 20/880 */
	text-align: right;
	width: 50%;
}

.content-img-embed-caption-left {
    float: left;
    margin: 0 0 2.272727272727% 2.272727272727%; /* 20/880 */
    text-align: left;
    width: 50%;
}

.content-img-embed-caption-center {
    margin: 0 auto; /* 20/880 */
    text-align: center;
    width: 80%;
}

.content-img-embed-caption img,
.content-img-embed-caption span{
	display: block;
}

.content-img-embed-caption img{
	margin-bottom: 0.5rem;
}

.content-img-embed-caption span{
	color: #555;
	font-size: 1.2rem;
	line-height: 1.8rem;
	padding: 0 0.5rem;
}

span.content-img-embed-credit{
	color: #999;
	font-size: 1rem;
}

.content-img-nowrap.content-img-embed-caption{
    float: none;
	margin: 0 0 2.272727272727%; /* 20/880 */
	width: 100%;
}

.hlsvideo-wrapper{
	clear: both;
}

.content-listing-header-img{
    display: block;
    margin-bottom: 3rem;
}

.content-listing,
.content-listing-grid {
	list-style: none;
	margin: 0 0 4rem;
    padding: 0 2rem;
	background-color: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.content-listing {
	display: flex;
	flex-direction: column;
}

.content-listing li {
	position: relative;
    border-bottom: 2px solid #e1e1e1;
    padding: 1.5rem 0;
}

.content-listing.app {
	display: flex;
	position: relative;
	margin-top: 2rem;
}

.content-listing li:last-child,
.single-listing-extras:last-child,
.trending-item:last-child,
.aside-sidebar-main-callout-list .view-more {
	border-bottom: none;
}

.trending-item-wrapper {
    display: flex;
    flex-direction: column;
}

.trending-item-wrapper .trending-item {
    flex-direction: row;
}

.trending-item .item-number {
    margin: 0.2rem 1.5rem 1rem 0;
}

.trending-now-circle:before {
    color: white;
    font-size: 1.8rem;
    width: 18px;
    height: 18px;
    padding: 4px 5px 6.5px 5px;
}

li.content-listing-with-img {
	min-height: 105px;
	display: flex;
	align-items: center;
}

.content-listing img{
	display: inline-block;
	left: 0;
	top: 0;
	float: left;
}

.content-listing-title{
	color: #000;
	display: block;
	font-weight: 700;
	padding: 2.439024390244% 0; /* 20/820 */
	text-decoration: none;
	float: left;
}

li.content-listing-with-img .content-listing-title{
	padding-left: 2%; /* 20/820 */
	float: right;
	width: 80%;
}

.content-listing-title:hover,
.content-listing-title:focus {
	color: #1d85f6;
}

.content-listing-grid li{
    display: inline-block;
    font-size: 1.6rem;
    line-height: 2.2rem;
    text-align: center;
}

.content-listing-grid li:nth-child(3n+0){
    margin-right: 0;
}

.content-listing-grid li img{
    display: block;
    margin-bottom: 1rem;
}

.content-listing-grid li a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.content-listing-grid li a:hover {
    color: #1d85f6;
}

.inline-header {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.close-box .close-button {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
}

.close-box i:hover,
.close-box i:focus {
	color: #001F72;
}

.page-body ul{
	list-style: disc;
}

.center {
	display: block;
	text-align: center;
}

.fr-fir {
    float: right;
}

.fr-fil {
	float: left;
}

.fr-fin {
	display: block;
	margin: 0 auto;
}

.fr-fir,
.fr-fil {
	margin: 1.5rem;
}

/* -------------- Wall of Honor --------------- */

.content-img-grid {
	position: relative;
}

.content-img-grid-item-sizer,
.content-img-grid-item {
	width: 24.0853658536585%; /* 197.5/820 */
}

.content-img-grid-item-gutter {
	width: 1.219512195122%; /* 10/820 */
}

.content-img-grid-item {
	cursor: pointer;
	float: left;
	margin-bottom: 1.219512195122%; /* 10/820 */
}

.content-img-grid-item img {
	display: block;
}

.content-img-grid-overlay {
	background: rgba(0,0,0,0.5);
	bottom: 0;
	display: none;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999999;
}

.content-img-grid-item-popout {
	background: #fff;
	border: 20px solid #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	height: 400px;
	margin: auto;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	width: 800px;
	overflow: auto;
}

.content-img-grid-item-open .content-img-grid-overlay {
	display: block;
}

.content-img-grid-item-popout img {
	float: left;
	margin: 0 2.4390243902439% 0 0; /* 20/820 */
	width: 30.4878048780488%; /* 250/820 */
}

.content-img-grid-close {
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	background: transparent;
	outline: none;
	cursor: pointer;
}

.content-img-grid-close i {
	font-size: 3rem;
}

.content-img-grid-details {
	float: right;
	height: 360px;
	overflow: auto;
	width: 67.0731707317073%; /* 550/820 */
}

.content-img-grid-h2 {
	max-width: 88.408644400786%; /* 450 / 509 */
	margin-bottom: 1.5rem;
}

.content-img-grid-h3 {
	margin-top: 0;
}

.content-img-grid-bg {
	overflow: hidden;
}

.content-img-grid-text-about {
	display: none;
	float: left;
	clear: both;
	margin-bottom: 1rem;
}

.content-img-grid-text-small {
	display: none;
	float: left;
	clear: both;
	margin-bottom: 1rem;
}

.content-flipp-ads {
	border: 1px solid #6bc46a;
	margin: 2rem 0 5rem;
	border-radius: 15px;
}

.content-flipp-ads-header {
	background: #6bc46a;
	color: #fff;
	padding: 1rem;
	border-radius: 15px 15px 0 0px;
}

.content-flipp-ads-header span {
	font-family: 'Lilita One', cursive;
	font-size: 2.6rem;
	letter-spacing: 0.3px;
	margin-right: 0.5rem;
}

.content-flipp-ads-header span,
.content-flipp-ads-header img {
	display: inline-block;
	vertical-align: middle;
}

.content-flipp-ads-header img {
	height: 30px;
}

.content-flipp-ads-inner {
	padding: 1.5rem 1rem;
}


/* -------------- Weather --------------- */

.weather-bio-section{
	margin-bottom: 2rem;
}

.weather-bio-section-item{
	float: left;
	margin: 0 2.439024390244% 2.439024390244% 0; /* 20/820 */
	width: 23.170731707317%; /* 190/820 */
}

.weather-bio-section-item:nth-child(4n+0){
	margin-right: 0;
}

.weather-bio-section-item img,
.weather-bio-section-item span{
	display: block;
    text-align: center;
}

.weather-bio-section-item span a{
	color: #000;
	font-weight: 600;
	text-decoration: none;
}

.weather-bio-section-item span a:hover {
	text-decoration: underline;
}

.weather-header {
	display: block;
	margin-bottom: 2rem;
}

.weather-alert-wrap {
	background-color: #c40513;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	text-transform: uppercase;
	border-radius: 15px;
}

.weather-alert-wrap span {
	color: white;
	font-size:0.9rem;
	padding-left: 2rem;
}

.weather-alert-wrap h1,
.weather-alert-wrap a{
	color: #fff;
}

.weather-alert-wrap h1,
.weather-alert-wrap li{
	border-bottom: 1px solid #fff;
}

.weather-alert-wrap h1{
	font-size: 5rem;
	line-height: 5rem;
	margin: 0;
	padding: 2.439024390244%; /* 20/820 */
}

.weather-alert-wrap ul{
	margin: 0;
	padding: 0;
}

.weather-alert-wrap li a{
	display: block;
	font-weight: 600;
	padding: 1.219512195122% 2.439024390244%; /* 10/820 & 20/820 */
	text-decoration: none;
}

.weather-alert-stripe a{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c40513+45,dc6971+66,dc6971+91,d54f58+100 */
	background: #c40513; /* Old browsers */
	background: linear-gradient(to right,  #c40513 45%,#dc6971 66%,#dc6971 91%,#d54f58 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c40513', endColorstr='#d54f58',GradientType=1 ); /* IE6-9 */
}

.weather-alert-wrap li a:hover{
	background: #9c040f;
	color: #fff;
}

.mobile-app-alert {
	margin: 0 -2rem;
}

.weather-section-title,
.weather-section-title-maps{
	text-transform: uppercase;
	margin: 2rem 0 ;
}

.weather-video-article{
	margin-bottom: 5.5rem;
}

.weather-video-article-thumb{
	position: relative;
}

.weather-video-article-thumb i{
	color: #fff;
	font-size: 5rem;
    opacity: 0.8;
	text-shadow: 0 0 5px #000;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.weather-video-article-thumb i:hover {
	opacity: 1;
}

.weather-video-article-thumb img{
	display: block;
}

.weather-video-article-title{
	font-size: 3.5rem;
	line-height: 4rem;
	margin: 0;
	padding: 2rem 2rem 3rem;
}

.weather-video-article-title a{
	text-decoration: none;
}

.weather-video-desc{
	margin-bottom: 4rem;
}

.weather-video-thumb{
	float: right;
	margin: 0 0 2.439024390244% 2.439024390244%; /* 20/820 */
	min-width: 200px;
	position: relative;
	width: 43.90243902439%; /* 360/820 */
}

.weather-video-thumb i,
.weather-view-play i.fa-play-circle {
	color: #fff;
	font-size: 7rem;
    left: 42%;
    opacity: 0.95;
    position: absolute;
    top: 28%;
}

.weather-view-play i.fa-play-circle:before {
	color: #e1e1e1;
}

.weather-video-thumb i:hover,
.live-stream-container i:hover,
.weather-view-play i:hover {
	opacity: 1;
}

.weather-video-thumb img{
	display: block;
	border-radius: 15px;
}

.weather-video-desc p span{
	color: #0d246f;
	font-weight: 700;
}

.weather-today-stream img{
	display: block;
}

.weather-today,
.weather-today-inner img{
	float: left;
}

.weather-today{
	width: 43.90243902439%; /* 360/820 */
}

.weather-today .weather-section-title{
	margin: 0 0 1rem;
	padding: 2.777777777778% 5.555555555556%; /* 10/360 & 20/360 */
}

.weather-today-inner img{
	width: 45%; /* 162/360 */
}

.weather-today-temps,
.weather-stream{
	float: right;
}

.weather-stream img {
	border-radius: 15px;
}

.weather-today-temps{
	color: #1c89ff;
	font-weight: 600;
	text-align: center;
	width: 55%; /* 198/360 */
}

.weather-today-temps span{
	color: #0d246f;
	display: block;
	font-size: 10rem;
	font-weight: 800;
	line-height: 10rem;
}

.weather-stream{
	font-size: 1.4rem;
	width: 53.658536585366%; /* 440/820 */
}

.weather-forecast{
	font-weight: 600;
	margin-bottom: 2rem;
	width: 100%;
}

.weather-forecast td{
	border: 2px solid #fff;
}

.weather-forecast th{
	color: #0d246f;
	padding: 0 1.5rem 0.5rem;
	text-align: left;
	text-transform: uppercase;
	border-radius: 15px;
}

.weather-forecast td{
	background-color: #e7e7e7;
	border-radius: 15px;
}

.weather-forecast-day{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e7e7e7+100 */
	background: #ffffff; /* Old browsers */
	background: linear-gradient(to right,  #ffffff 0%,#e7e7e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=1 ); /* IE6-9 */
	min-width: 170px;
	width: 27.926829268293%; /* 229/820 */
}

.weather-forecast-icon,
.weather-forecast-date{
	display: inline-block;
}

.weather-forecast-icon{
	width: 27.510917030568%; /* 63/229 */
}

.weather-forecast-date,
.weather-forecast-desc,
.weather-forecast-temps{
	padding: 1.5rem;
}

.weather-forecast-date span{
	color: #0d246f;
	display: block;
	font-size: 3rem;
	font-weight: 800;
	line-height: 3rem;
}

.weather-section-title-maps{
	position: relative;
}

.weather-maps-btn{
	border: 1px solid #fff;
	cursor: pointer;
	display: none;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2.4rem;
	padding: 0.8rem 1rem;
	position: absolute;
	right: 2.439024390244%; /* 20/820 */
	top: 13%; /* firebug */
	width: 225px;
}

.weather-maps-btn:hover{
	background-color: #69affb;
	border-color: #69affb;
	color: #fff;
}

.weather-maps{
	max-height: 358px;
	overflow: hidden;
	padding-right: 184px;
	position: relative;
}

.weather-maps img{
	display: block;
	border-top: 2px solid #fff;
}

.weather-maps ul{
	margin: 0;
	padding: 0;
}

.weather-maps-tabs{
	height: 100%;
	max-height: 358px;
	overflow: scroll;
	position: absolute;
	right: 0;
	top: 0;
	width: 184px;
}

.weather-maps-tabs li a{
	background-color: #e7e7e7;
	border-top: 2px solid #fff;
	color: #0d246f;
	cursor: pointer;
	display: block;
	font-weight: 700;
	padding: 0.8rem 1.5rem;
	text-decoration: none;
}

.weather-maps-tabs li a:hover,
.weather-maps-tabs li a.active{
	background-color: #0d246f;
	color: #fff;
}

.weather-bio-heading span{
	font-size: 2.5rem;
	font-style: italic;
	font-weight: 600;
}

.weather-bio-img,
.weather-bio-img a{
	color: #1987ff;
}

.weather-bio-img{
	float: left;
	font-size: 1.4rem;
	font-family: 1.4rem;
	margin: 0 3.658536585366% 2.439024390244% 0; /* 30/820 & 20/820 */
	width: 36.585365853659%; /* 300/820 */
}

.weather-bio-img img{
	display: block;
	margin-bottom: 0.5rem;
}

.weather-bio-img a:hover{
	color: #000;
	text-decoration: none;
}

.weather-bio-social{
	float: right;
	margin-bottom: 2rem;
	width: 59.756097560976%; /* 490/820 */
}

.articles-by-list{
	margin: 0;
	padding: 0;
}

.articles-by-list li{
	margin-bottom: 1rem;
}

.weather-video-article,
.weather-maps,
.weather-today-stream,
.weather-forecast {
	margin-bottom: 5.5rem;
}

/* -------------- Mobile App --------------- */

.mobile-section {
    margin: 3rem 0 6rem;
}

.mobile-section-inner {
    padding: 2rem 0 3rem;
}

.mobile-inner-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.mobile-inner-description {
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 2.5rem;
}

h2.uppercase-heading {
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-watch-links-btn:hover,
.mobile-watch-links-btn:focus {
    background-color: #000;
    color: #fff;
}

.mobile-watch-links-btn.blue {
    background-color: #0086AC;
    color: #fff;
}

.mobile-watch-links-btn.blue i {
	color: #fff;
	margin-right: 3px;
}

.mobile-watch-links-btn.red {
	background-color: #c31010;
	color: #fff;
}

.mobile-watch-links-btn {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.6rem 3rem;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
}


/* -------------- Ready Weather App --------------- */

.weather-app {
	margin:  6rem 0 3rem;
	max-width: 380px;
	clear: both;
}

.weather-app .callout-item-title-link {
	margin-left: 1.3rem;
}

.weather-app-logo {
	text-align: center;
	padding: 2rem 1.5rem 1.5rem;	
}

.weather-alert-banner {
	background-color: rgb(190,06,28);
	font-size: 1.4rem;
	text-transform: uppercase;
	padding: 0.4rem 1.5rem 0;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.weather-alert-banner > a {
	color: #fff;
	text-decoration: none;
}

.weather-alert-banner > a:hover {
	color: #fff;
    filter: brightness(0.95);
}

.weather-content-top-wrapper {
	display: flex;
	margin-bottom: 1rem;
}

.weather-col-left {
	display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

.weather-col-right {
	display: flex;
    flex-direction: column;
    flex-basis: 50%;
    align-items: center;
}

.weather-col-right img {
	width: 100px;
	height: 30px;
}

.weather-location {
	color: #000000;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	margin-right: 1.5rem;
}

.weather-location,
.sponsored-by-text {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 600;
}

.sponsored-by-text {
	font-size: 1rem;
	color: #010000;
	line-height: 1.7rem;
    margin-bottom: 0.5rem;
}

.weather-sponsored-by img {
	text-align: center;
}

.weather-forecast-container {
	padding: 0rem 1.5rem 1rem;
}

.weather-view-video {
	position: relative;
	margin-bottom: 1.5rem;
}

/* Weather View Video Internal Pages */

.weather-view-video.internal-page {
	display: flex;
	background-color: #e1e1e1;
	margin: 0.5rem 0 2.5rem;
}

.weather-view-video.internal-page .video-thumb {
	display: flex;
	flex: 0 0 45%;
}

.weather-view-video.internal-page .callout-item-title-link {
	display: flex;
	flex: 0 0 55%;
	align-items: center;
	margin-top: 0;
}

.weather-view-video.internal-page .weather-view-play i {
    left: 13%;
    top: 12%;
    font-size: 6rem;
}

.weather-view-row.internal-page .secondary-tags:hover {
	color: inherit;
	background-color: rgba(225, 225, 225, 0.7);
	text-decoration: none;
}

aside .weather-view-video i.fa-play:before {
	color: #ffffff; /*override of aside default icon style */
}

.weather-view-row {
	display: flex;
  	flex-direction: row;
  	flex-wrap: nowrap;
  	width: 100%;
  	margin-bottom: 1rem;
}

.weather-view-row.forecast-row {
	margin-bottom: 2rem;
}

.weather-view-row > .forecast-row {
	padding: 0 1rem;
}

.weather-view-column {
	width: calc(100% / 3);
  	text-align: center;
}

.weather-view-column > a {
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.1em;
}

.weather-view-column > a.secondary-tags {
	color: #010000;
	margin-right: 0.5em;
}

.weather-view-column:nth-of-type(3) a.secondary-tags {
	margin-right: 0;
}

.weather-view-forecast-right img,
.weather-view-forecast-left img {
	width: 40px;
	float: left;
}

.weather-view-forecast-column {
	display: flex;
	flex-direction: row;
	width: 50%;
}

.weather-view-forecast-left {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.weather-view-forecast-right {
    text-align: left;
}

.weather-view-forecast-right a,
.weather-view-forecast-left a {
	color: #000;
	text-decoration: none;
}

.weather-view-forecast-right span,
.weather-view-forecast-left span {
	display: block;
}

.weather-view-time-text {
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #0f2164;
}

.weather-view-temperature-text {
	font-size: 4.5rem;
	margin: 0.8rem 0;
}

.weather-view-description-text {
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-top: 1.4rem;
}

.weather-view-divider {
	border-right: 1px solid #e1e1e1;
	border-left: 1px solid #e1e1e1;
	margin: 0 1.5rem;
}

.weather-links img {
	height: 100px;
}

.weather-radar-milwaukee,
.weather-maps-milwaukee,
.weather-camera-milwaukee,
.weather-radar-southbend,
.weather-maps-southbend,
.weather-temps-southbend {
	background-repeat: no-repeat;
	height: 100px;
	margin: 0 0.2rem 0.7rem;
}

.weather-radar-milwaukee {
	background-image: url('https://newscdn.weigelbroadcasting.com/cbs58_weather/radar_new_179x100.jpg');
	background-position: 59% 65%;
}

.weather-maps-milwaukee {
	background-image: url('https://newscdn.weigelbroadcasting.com/cbs58_weather/Temps_DMA_new_179x100.jpg');
	background-position: 60% 66%;
}

.weather-camera-milwaukee {
	background-image: url('https://newscdn.weigelbroadcasting.com/cbs58_weather/Live%20Cam%20MKE%20Public%20Museum_new_179x100.jpg');
	background-position: 10% 100%;
}

.weather-radar-southbend {
	background-image: url('https://newscdn.weigelbroadcasting.com/abc57_weather/RADARLoop_179x100.gif');
	background-position: 41% 43%;

}

.weather-maps-southbend {
	background-image: url('https://newscdn.weigelbroadcasting.com/abc57_weather/MidwestSATRAD_179x100.jpg');
	background-position: 55% 55%;
}

.weather-temps-southbend {
	background-image: url('https://newscdn.weigelbroadcasting.com/abc57_weather/DMATemperatures_179x100.jpg');
	background-position: 41% 43%;

}

/* -------------- Live Streaming --------------- */

.live-stream-container {
	position: relative;
}

.live-stream-container .fa-play-circle {
	color: #fff;
    font-size: 5.5rem;
    opacity: 0.8;
    position: absolute;
    text-shadow: 0 0 5px #000;
   	transform: translate(-50%, -50%);
    top: 48%;
    left: 50%;
}

.live-stream-container.single .fa-play-circle {
	left: 42%;
}

.live-stream-container .fa-play-circle:before {
	color: inherit;
}

.live-stream-inner {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
   	max-width: 800px;
   	padding: 1.5rem 3rem;
	margin: 0 auto;
}

.live-stream-thumb {
	display: flex;
    flex: 1 1 50%;
    position: relative;
    vertical-align: middle;
	margin-right: 1.5rem;
}

.live-stream-thumb.single {
	flex: 1 1 20%;
}

.live-stream-now {
	display: flex;
    flex: 1 1 50%;
    flex-direction: column;
   	color: #fff;
	line-height: 2.1rem;
}

.live-stream-container .secondary-tags {
	background-color: transparent;
	color: #fff;
	justify-content: left;
	align-items: center;
}

.live-stream-now .secondary-tags > a {
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
	margin-right: 1em;
	text-align: center;
}

.live-stream-now .secondary-tags > a:hover {
	background-color: #ffffff;
	color: #112057;
}

.live-stream-now .secondary-tags i {
	margin-right: 0.5rem;
}

.live-stream-title {
	text-transform: uppercase;
	font-weight: 700;
}

.live-stream-video-left {
	margin-right: 1rem;
}

.live-stream-video-right {
	margin-left: 2.5rem;
}

.live-stream-video-left,
.live-stream-video-right {
	display: flex;
	align-items: center;
	flex: 1 1 50%;
	margin-top: 0.5rem;
}

.live-stream-container .divider {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
}

.live-stream-now-text {
	font-weight: 700;
}

.live-stream-description {
	margin-bottom: 1.5rem;
	font-weight: 600;
}

/* -------------- Videos --------------- */

.video-grid-item{
	float: left;
	margin: 0 2.439024390244% 2.439024390244% 0; /* 20/820 */
	width: 31.707317073171%; /* 260/820 */
}

.video-grid-item:nth-child(3n+0){
	margin-right: 0;
}

.video-grid-item-thumb,
.video-grid-item-thumb img,
.video-grid-item-title{
	display: block;
}

.video-grid-item-thumb{
	position: relative;
}

.video-grid-item-thumb i{
	color: #fff;
	font-size: 4rem;
    left: 46%; /* firebug */
    opacity: 0.8;
    position: absolute;
	text-shadow: 0 0 5px #000;
    top: 35%; /* firebug */
}

.video-grid-item-thumb img{
	margin-bottom: 0.5rem;
}

.video-grid-item-title{
	font-weight: 700;
}

/* Video Player Inner Page */

.video-container video {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.video-container-outer { 
    background: #E0E8EC; 
    border-radius: 15px; 
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2); 
    font-size: 1.8rem;    
} 

.video-container-outer.video-item {
    padding-bottom: 2rem;
}

.video-container-outer h2  { 
    color: #001d24; 
    text-transform: none;
} 

.video-container-outer .video-sponsored-container {
	margin-bottom: 1rem;
}

.video-container p  { 
    margin: 0 2.5rem; 
    padding: 0 0 2.5rem 0; 
    text-transform: none; 
    letter-spacing: normal; 
    color: #2b2b2b; 
    font-weight: 300;
}

.video-inner-container {
	padding: 0 2.5rem;
}

.video-title { 
    color: #fff; 
    font-weight: 500;
    font-size: 3.6rem;
    line-height: 4.2rem;
    margin: 0; 
    padding: 2rem 0 1rem;
}

.video-desc {
	padding: 1rem 0;
	margin: 0;
}

.video-dcq .vjs-8xq  { 
    border-top-left-radius:  15px; 
    border-top-right-radius:  15px;
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
} 

.video-dcq { 
    width: 300px; 
    height: 150px;
} 

.video-dcq { 
    display: block; 
    border-top-left-radius:  15px; 
    border-top-right-radius:  15px;
    vertical-align: top; 
    box-sizing: border-box; 
    color: #fff; 
    background-color: #000; 
    position: relative; 
    padding: 0; 
    font-size: 10px; 
    line-height: 1; 
    font-weight: 400; 
    font-style: normal; 
    word-break: initial;
} 

.video-dcq.vjs-16-o9c { 
    width: 100%; 
    max-width: 100%;
} 

.video-dcq.vjs-16-o9c:not(.vjs-audio-only-mode) { 
    height:  0;
    padding-top: 56.25%;
}

/* -------------- School Closings --------------- */

.school-closings {
	background-color: #9c0603;
}

.school-closings-header,
.school-closings-region,
.contact-top-wrapper {
	margin-bottom: 2rem;
}

.school-closings-admin-message{
	color: #f00;
	display: block;
	font-weight: 700;
}

.school-closings-region ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.school-closings-region li{
	padding: 1rem 2rem;
}

.school-closings-region li.stripe{
	background-color: #eaeaea;
}

.school-closings-region h2{
	margin: 0 0 1.5rem;
}

.school-closings-region h4{
	margin: 0 0 0.5rem;
}

.school-closings-admin{
	border-top: 1px solid #ccc;
    margin-top: 3rem;
    padding-top: 2rem;
}

.school-closings-admin h3{
	margin: 0 0 1.5rem;
}

.school-closings-admin-note{
	font-size: 1.4rem;
}

.contact-form.school-closings-form {
	width: 70%;
}

/* -------------- Contact --------------- */

.contact-form{
	float: left;
	width: 48.780487804878%; /* 400/820 */
}

.contact-form label,
.contact-form input,
.contact-form textarea{
	display: block;
}

.contact-form label{
	margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
	margin-bottom: 1rem;
	width: 100%;
}

.contact-form input[type="text"],
.contact-form select,
.contact-form textarea{
	border: 1px solid #ccc;
	padding: 0.5rem;
}

.contact-form input[type="submit"]{
	background-color: #0086AC;
	border: none;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 2rem;
	padding: 1rem;
	text-transform: uppercase;
}

.contact-form input[type="submit"]:hover{
	background-color: #000;
}

.contact-info{
	float: right;
	margin: 0;
	padding: 0;
	width: 42.682926829268%; /* 350/820 */
}

.contact-info li{
	margin-bottom: 2rem;
}

.contact-info h3{
	margin: 0;
	font-weight: 700;
}


/* -------------- Misc Content --------------- */

.faded-blue {
	background-image: url(/images/spotlight_faded_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.video-sponsored-container {
	font-size: 1.2rem;
}

.content-three-item-inner {
	padding: 1rem 2rem 3rem;
}

.content-main {
	margin-bottom: 3rem;
}

.spotlight.owl-carousel {
	margin-bottom: 3rem;
}

.spotlight .owl-nav {
	position: absolute;
	width: 100%;
    height: 0;
    top: 0;
    font-size: 2.2rem;
}

.spotlight.owl-carousel .owl-nav .owl-next {
	float: right;
	color: #1a1f26;
    background-color: #f3c442;
    border-radius: 100px;
    padding: 0.9rem 0.9rem 0.6rem 1.1rem;
    margin-right: -1rem;
}

.spotlight.owl-carousel .owl-nav .owl-next:hover {
	filter: brightness(105%);
}

.spotlight.owl-carousel .item-wrapper {
	line-height: 2rem;
}

.spotlight.owl-carousel .item-wrapper img {
	margin-bottom: 0.5rem;
}

.spotlight.owl-carousel .content-title {
	font-size: 1.4rem;
	color: black;
}

.content-three-item-inner .content-main img,
.content-three-item-inner .spotlight img {
	margin-bottom: 0.2rem;
}

.content-three-item-inner .content-main .content-title {
	font-size: 1.8rem;
}

.content-three-item-inner .content-title {
	font-size: 1.6rem;
	font-weight: 400;
	text-decoration: underline;
}

.content-three-item-inner .content-title:hover {
	text-decoration: none;
}

.content-three-item-inner .content-desc {
    margin: 0;
    padding: 1rem 0 2.5rem;
}

.content-three-item-inner .content-title a {
	color: black;
}

.sponsored-content-container { 
    color: #222;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0 1rem;
    text-align: center;
} 

.content-listing-grid.grid-item {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem 2rem;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;    
}

.listing-grid-item-thumb{
    position:relative;
}      

.listing-grid-item-thumb i {
	position: absolute;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    display: block;
    left: 45.212765957447%;
    padding: 0.7rem 0;
    text-align: center;
    top: 41.477272727273%;
    width: 30px;
}   

.spotlight-container {
    margin: -3rem 0 4rem;
    padding: 0 2rem 2rem;
    background-color: #E0E8EC; 
}

.spotlight-contact {
    font-weight:bold;
    margin-top: 0;
    padding: 2rem 0 0;
}

.spotlight-contact a:link, 
.spotlight-contact a:hover, 
.spotlight-contact a:focus {
    color: #222;
    font-weight: bold;
}

.spotlight-contact a:hover,
.spotlight-contact a:focus {
	color: #ffb405;
}


/* -------------- Takeovers --------------- */

.takeover-wrapper header,
.takeover-top-ad,
.takeover-wrapper #wrapper,
.takeover-wrapper .newsletter-signup-footer,
.takeover-wrapper footer{
	position: relative;
}

.takeover-top-ad{
	display: block;
	margin: 0 auto;
	overflow: hidden;
	width: 980px;
}

.takeover-wrapper #wrapper {
	background-color: #fff;
	max-width: 980px !important;
	padding: 2rem; /* 20/980 */
}

.banner-sections-scaled {
	background-color: #fff;
	max-width: 980px !important;
	margin: 0 auto;
}

.banner-sections-scaled + #wrapper {
	margin-top: 0;
}

.takeover-wrapper #main-content,
.takeover-wrapper #top-content {
	width: 65.957446808511%; /* 620/940 */
}

.takeover-wrapper aside{
	width: 31.914893617021%; /* 300/940 */
}

.takeover-wrapper .newsletter-signup-footer{
	background-color: #69affb;
	color: #fff;
}

.takeover-wrapper .newsletter-signup-input-wrap{
	border-color: #fff;
}

.takeover-wrapper .newsletter-signup-input-wrap input{
	color: #0d246f;
}

/* -------------- Sweepstakes --------------- */

.sweepstakes-wrap {
	display: flex;
    flex-wrap: wrap;
}

.sweepstakes-item{
	float: left;
	margin: 0 2.439024390244% 2.439024390244% 0; /* 20/820 */
	width: 100%; /* 260/820 */
}

.sweepstakes-item:nth-child(3n+0){
	margin-right: 0;
}

.sweepstakes-item img,
.sweepstakes-item-title{
	display: block;
	margin-bottom: 0.5rem;
}

.sweepstakes-desc {
	padding: 1.8rem 2rem 2rem;
}

.sweepstakes-desc p {
	font-weight: 500;
	margin: 0;
}

.sweepstakes-item-title{
	color: black;
    font-size: 1.8rem;
   	font-weight: 700;
    line-height: 3rem;
    text-decoration: none;
}

.sweepstakes-item-title:hover {
	color: #1d85f6;
}


/* -------------- Search Results --------------- */

.search-results-overview {
	display: block;
	margin-bottom: 2rem;
}

.search-results-wrapper li.content-listing-with-img .content-listing-title {
	padding: 0;
	margin-bottom: 1rem;
}

.search-item {
	border-bottom: 1px solid #e7e7e7;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
}

.search-item img {
	margin-right: 1.5rem;
}

.search-item h3 {
	font-size: 1.6rem;
	margin: 0 0 1rem;
}

.search-item h3 a {
	display: flex;
	align-items: center;
}

.search-results-desc {
	display: flex;
	flex-direction: column;
	flex: 75%;
	padding-left: 2rem;
}

.search-results-desc .published-date {
	font-size: 1.4rem;
	font-weight: 400;
}


/* -------------- Ada / Takeovers --------------- */

 .stories-ad-middle {
    margin: 0 auto 2rem;
    margin-bottom: 4rem;
    width: 728px;
}   

/* -------------- Sidebar --------------- */

aside ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

aside > ul > li > ul{
	padding: 0 2rem; /* sidebar inner container */
}

aside > ul > li{
	margin-bottom: 4rem;
}

aside > ul > li > ul > li,
.aside-sidebar-main-callout-list ul > li,
.aside-sidebar-list-title-only li {
    border-bottom: 2px solid #e1e1e1;
    padding: 1.5rem 0;
}

aside h2{
	margin-bottom: 1rem;
}

aside > ul > li > ul > li:last-child {
	border-bottom: none;
}

.aside-sidebar-main-callout-list,
.aside-sidebar-three-item-list,
.aside-sidebar-item-list {
	margin-bottom: 4.5rem;
}

.aside-ad-1,
.aside-ad-2,
.aside-ad-3{
	margin: 0 auto;
	overflow: hidden;
	width: 300px;
}

.top-content-wrapper .aside-ad-1 {
	margin-bottom: 3rem;
}

.aside-newsletter-signup{
	background-color: #fff;
	padding: 1.8rem 2.5rem; /* 20/350 */
	border-radius: 15px;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.aside-newsletter-title,
.aside-newsletter-title span{
	display: block;
}

.aside-newsletter-title{
	margin-bottom: 2.7rem;
	padding-left: 6.8rem;
	position: relative;
}

aside .aside-newsletter-title span {
	padding-top: 0;
}

.aside-newsletter-title span {
	font-size: 1.8rem;
	line-height: 2.2rem;
	font-weight: 700;
	padding-top: 1rem;
}

.aside-newsletter-title > i {
	font-size: 5.4rem;
	left: 0;
	position: absolute;
	top: -0.4rem;
}

.aside-newsletter-signup-input-wrap{
	background-color: #fff;
	position: relative;
	padding-right: 3.5rem;
	border-bottom: 2px solid #000000;
	border-radius: 2px;
}

.aside-newsletter-signup-input-wrap input,
.aside-newsletter-signup-input-wrap button{
	background: none;
	border: none;
	display: block;
	height: 30px;
	outline: none;
}

.aside-newsletter-signup-input-wrap input{
	padding: 0 0 0 0.5rem;
	width: 100%;
	font-weight: 700;
}

.aside-newsletter-signup-input-wrap input::placeholder {
	color: #000;
	font-weight: 700;
}

.aside-newsletter-signup-input-wrap button {
	color: #000000;
	cursor: pointer;
	font-size: 2.5rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	right: -0.5rem;
}

.aside-newsletter-signup-input-wrap button > i {
	font-weight: 600;
}

.aside-newsletter-signup .newsletter-checkbox {
	font-size: 1.4rem;
	line-height: 2rem;
	margin-top: 1.4rem;
}

.aside-newsletter-signup .newsletter-checkbox input {
	margin-right: 0.3rem;
}

.aside-newsletter-signup-thanks{
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.3rem;
	text-align: center;
}

.aside-local-news{
	background-color: #e7e7e7;
}

.aside-local-news li{
	border-bottom: 2px solid #fff;
	padding: 5.714285714286%; /* 20/350 */
}

.aside-sidebar-item-list .aside-item-list-title,
.aside-sidebar-list-title-only {
	font-weight: 600;
	padding: 0 2rem;
	line-height: 2.2rem;
}

.aside-sidebar-item-list a {
	color: #000;
	text-decoration: none;
}

.aside-sidebar-item-list img,
.aside-item-list-title {
	display: block;
	float: left;
}

.aside-sidebar-item-list img{
	width: 47.428571428571%; /* 166/350 */
}

.aside-item-list-title {
	font-size: 1.4rem;
	line-height: 2rem;
	padding: 0 1rem 0;
	width: 52.571428571429%; /* 184/350 */
}

.aside-weather-bio {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
}

.aside-weather-bio-copy {
	line-height: 2rem;
	margin-top: 0.2rem;
}

.aside-weather-bio img{
	display: block;
	float: left;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
}

.aside-weather-copy{
	float: right;
	font-size: 1.4rem;
	padding: 1.3rem 1.5rem;
}

.aside-weather-copy h3{
	font-size: 2rem;
	line-height: 2.2rem;
	margin: 0;
}

.aside-weather-copy a,
.aside-weather-copy span{
	color: #0d246f;
}

.aside-weather-copy a{
	text-decoration: none;
}

.aside-weather-copy a:hover{
	color: #69affb;
}

.aside-weather-copy span{
	display: block;
	font-style: italic;
}

.aside-weather-copy-more{
	text-transform: uppercase;
}

.trending-now-circle:before {
   display: inline-block;
   background-color: #e1e1e1;
   color: #000000;
   font-size: 2.5rem;
   font-weight: 600;
   width: 25px;
   height: 25px;
   border-radius: 100px;
   text-align: center;
   padding: 0.5rem;
}

.aside-sidebar-three-item-list-item img {
	border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aside-sidebar-three-item-list-item {
    display: flex;
    flex-direction: row;
   	margin-bottom: 1rem;
}

.aside-sidebar-three-item-list-item .image-wrapper,
.aside-sidebar-three-item-list-item .aside-sidebar-three-item-list-title {
	display: flex;
	flex: 1 1 0%;
}

.aside-sidebar-three-item-list-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 2rem;
    padding: 2rem 2rem 2rem 1.5rem;
}

aside .callout-item-title-link > a {
	font-size: 1.6rem;
}

.aside-sidebar-list-title-only li {
	display: flex;
	flex-direction: column;
}

.callout-item-title-link > a {
	text-decoration: none;
	font-weight: 600;
}

.view-more-sidebar {
	display: none;
}

.view-more-sidebar-bottom {
	display: block;
}

aside .view-more i:before {
	color: inherit;
}

.top-callout-list-item .callout-item-title-link a {
	font-size: 2rem;
	line-height: 2.6rem;
}

.title-alert,
.title-alert-notification {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    top: -2px;
}

.title-alert:before,
.title-alert-notification:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
}

.title-alert:after,
.title-alert-notification:after {
	content: "";
    border: 3px solid;
    border-radius: 30px;
    height: 10px;
    width: 10px;
    position: absolute;
    left: 0;
    top: 0;
    animation: pulsate 1.5s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0.0;
  }
}


/* -------------- Footer --------------- */

.footer-no-newsletter{
	margin-top: 4rem;
}

.newsletter-signup-footer{
	color: #0d246f;
	padding: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	text-align: center;
}

.newsletter-signup-footer span{
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 4.5rem;
}

.newsletter-signup-footer form{
	margin-bottom: -0.4rem;
	max-width: 450px;
	width: 100%;
}

.newsletter-signup-input-wrap{
	border: 2px solid #0d246f;
	margin-left: 1.5rem;
	padding-right: 3rem;
    position: relative;
}

.newsletter-signup-input-wrap input,
.newsletter-signup-input-wrap button{
	background: none;
	border: none;
	display: block;
	height: 30px;
}

.newsletter-signup-input-wrap input{
	padding: 0 1rem;
	width: 100%;
}

.newsletter-signup-input-wrap button{
	padding: 0 0 0 0.4rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
}

.newsletter-signup-input-wrap button:hover{
	background-color: #0d246f;
	color: #fff;
}

#footer-nav,
.footer-contact-info{
	margin-bottom: 4rem;
}

#footer-nav ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

#footer-nav li{
	display: inline-block;
	margin-left: 5.833333333333%; /* 70/1200 */
	margin-bottom: 1rem;
}

#footer-nav li:first-child{
	margin-left: 0;
}

#footer-nav a{
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-apps{
    color: #fff;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
}

.footer-apps span{
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-apps img{
    display: inline-block;
}

img.footer-app-ios{
    margin-right: 2rem;
}

.footer-logo{
	display: block;
	margin: 0 auto 2.5%; /* 30/1200 */
}

.footer-logo-cbs58{
	min-width: 125px;
	width: 22.166666666667%; /* 266/1200 */
}

.footer-contact-info{
	color: #fff;
	font-weight: 700;
	text-align: center;
}

.footer-contact-info span{
	color: #69affb;
	text-transform: uppercase;
}

.footer-station-logos {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: center;
    gap: 35px 15px;
    color: white;
    font-size: 1.2rem;
    margin: 0 2rem 5rem;
    padding-left: 0;
}

.footer-station-logos li {
	display: flex;
	flex-direction: column;
	text-align: center;
	line-height: 1.8rem;
	flex: 0 0 14%;
}

.footer-station-logos li a {
	margin-bottom: 1rem;
}

.footer-station-logos img{
	opacity: 0.5;
}

.footer-station-logos a:first-child img{
	margin-left: 0;
}

.footer-station-logos img:hover{
	opacity: 1;
}

.copyright,
.copyright a{
	color: #ccc;
}

.copyright{
	font-size: 1.1rem;
	margin-top: 2rem;
	text-align: center;
}

/* -------------- Notifications --------------- */

.topic-follow-button {
    display: inline-block;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0 1rem;
    position: relative;
    border-radius: 20px;
    margin: 0 2rem 2rem 0;
    text-transform: uppercase;
}

.topic-follow-button.notfollowing {
    background: #0149BF;
    color: white;
}

.topic-follow-button.following {
    background: #E2E2E2;
    color: black;    
}

.topic-follow-button.small,
.topic-follow-button.small i {
	font-size: 1.2rem;
}

.topic-follow-button.small .topic-follow-flex {
	padding: 0.2rem 0 0.2rem 0.2rem;
}

.topic-follow-button.small .topic-follow-plus-container {
	padding: 0 0.7rem 0 2.5rem;
}

.topic-follow-button.small .topic-follow-button::after {
	height: 95%;
}

.topic-follow-button::after {
    right: 0px;
    background-color: #001F72;
    width: 40px;
    height: 100%;
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 0;
    cursor: pointer;
}

.topic-follow-button.following:hover,
.topic-follow-button.following:focus {
	color: #001F72;
}

.topic-follow-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0 0.4rem 0.5rem;
}

.topic-follow-plus-container {
    padding: 0 0.7rem 0 3rem;
    position: relative;
    z-index: 1;
    color: white;
}

.topic-follow-button,
.topic-follow-flex,
.topic-follow-text-container,
.topic-follow-plus-container {
    cursor: pointer;
}

.user-notifications {
    margin: 0 2.5rem;
    display: none;
}

.notifications .title-alert,
.notifications .title-alert-notification {
	position: absolute;
    bottom: 15px;
    left: 8px;
}

.title-alert-notification:before {
    background-color: #de4b39;
}

.title-alert-notification:after {
    border-color: #de4b39;
}

.notifications,
.no-notifications {
    font-size: 2.4rem;
    position: relative;
}

.user-notifications, 
.logged-out {
    display: flex;
    color: #fff;
    margin-top: 0.5rem;
}

.wcs-profile-settings-form-section a {
	color: #000;
}

.logged-in {
    display: flex;
}

.logged-out i {
	font-size: 2.4rem;
}

.user-login,
.user-login a {
	color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin-left: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
    word-break: keep-all;
}

.user-login a:hover,
.user-login a:focus {
	text-decoration: underline;
}


/* -------------- Miscellaneous --------------- */

.market-alert-container + .takeover-wallpaper {
    z-index: -1; /*show market alert over takeover*/
}

.leaderboard-ad{
	margin: 0 auto 50px; /* 20/820 */
	overflow: hidden;
	width: 728px;
}

.leaderboard-ad img{
	display: block;
}

.clearfix:before,
.clearfix:after{
    content: " ";
    display: table;
	flex-basis: 0;
	order: 1;
}

.clearfix:after{
    clear: both;
}

.clearfix{
    *zoom: 1;
}

.anchor-offset{
	display: block;
	position: relative;
	top: -150px;
	visibility: hidden;
}

.video-wrapper{
	height: 0;
    padding-bottom: 56%;
    position: relative;
}

.video-wrapper iframe, .video-wrapper object, .video-wrapper embed, .limelight-player-footprint{
	height: 100% !important;
	left: 0 !important;
	position: absolute !important;
	top: 0 !important;
	width: 100% !important;
}

.inner-728-ad{
	margin: 0 auto 20px;
	overflow: hidden;
	width: 728px;
}

.responsive-iframe-container{
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 3rem;
    height: 0;
    overflow: hidden;
}

.responsive-iframe-container iframe,
.vresponsive-iframe-container object,
.vresponsive-iframe-container embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.careers-iframe-wrap{
	margin-top: 2rem;
}

.themodal-lock{
	/* when modal is opened we're removing scrollbars from the main content */
	overflow: hidden;
}

.themodal-overlay{
	/* overlay will stay fixed and will take all the space available */
	position: fixed;
	bottom: 0;
	left: 0;
	top: 0;
	right: 0;
	z-index: 999999;

	/* if modal content doesn't fit inside the overlay, display scrollbars */
	overflow: auto;

	/* allow one-finger iPad scrolling */
	-webkit-overflow-scrolling: touch;

}

/* fix for iPad glitches */
.themodal-overlay > *{
	transform: translateZ(0px);
}

.themodal-overlay{
	background: rgba(255, 255, 255, 0.8);
}

.sports-overlay {
	left: 0;
    position: absolute;
    top: 0;
}

#facebook-modal{
	background: url('../images/facebook_modal/facebook_modal_bg_gradient.png') no-repeat 0 0 #000;
	border: 7px solid #000;
	box-shadow: 0 0 70px #666;
	height: 398px;
	left: 50%;
	display: none;
	margin: -199px 0 0 -150px;
	top: 50%;
	position: absolute;
    width: 300px;
}

.fb-modal-title{
	display: block;
	margin: 1.5rem auto 1.8rem;
}

#facebook-modal .fb-like-box{
	background-color: #fff;
}

#facebook-modal a.close{
	background: url('http://www.metv.com/images/facebook_modal/modal_close_btn.png') no-repeat 0 0;
	display: block;
	height: 33px;
	left: auto;
	position: absolute;
    right: -18px;
    top: -20px;
    width: 33px;
    z-index: 9;
}

.stickem-container{
	position: relative;
}

.form-success-msg,
.form-error-msg-alert,
.form-error-msg{
	font-weight: 600;
}

.form-success-msg,
.form-error-msg-alert{
    margin-bottom: 2.439024390244%; /* 20/820 */
    padding: 2rem;
    text-align: center;
}

.form-success-msg{
	background-color: #e9facf;
    border: 1px solid #c9deaa;
    color: #7fac39;
}

.form-error-msg-alert{
	background-color: #fbe2e2;
    border: 1px solid #e7c3c3;
    color: #cd0000;
}

.form-error-msg{
	color: #cd0000;
	display: block;
	font-size: 1.2rem;
}

.lowercase-text{
	text-transform: lowercase;
}

a.clicktocall, a.clicktocall:hover, a.clicktocall:hover, a.clicktocall:focus {
    color:white;
    text-decoration: none;
}

.meta-text-subheading-small,
.meta-text-timestamp-alert,
.meta-text-timestamp-default {
	font-size: 1.4rem;
	margin-top: 0.5rem;
	display: block;
}

.meta-text-timestamp-default {
	color: #3c3c3c;	
	font-weight: 400;
}

.meta-text-timestamp-alert {
	color: #9c0603;
	font-weight: 600;
}

aside .meta-text-subheading-small,
.meta-text-subheading-small {
	font-size: 1.2rem;
}

.content-related .mod-section-3-list-item:nth-of-type(3) {
	margin-right: 2%; /*override specific to related content section*/
}

.center {
	text-align: center;
}

.mobile-only {
	display: none;
}

.desktop-only {
	display: block;
}

.no-spacing-bottom {
	margin-bottom: 0;
	padding-bottom: 0;
}

.no-spacing-top {
	margin-top: 0;
	padding-top: 0;
}

.share-container { 
    margin: 1.5rem 0 1rem;
} 

.share-container span  { 
    display: block;
} 

.share-container a  { 
    display: inline-block; 
    background-color: #3c5998; 
    margin: 1.5rem 1rem 0 0; 
    border-radius: 100%; 
    position: relative; 
    height: 6.5rem; 
    width: 6.5rem;
} 

.share-text { 
    font-size: 2rem; 
    font-weight: bold; 
    margin-bottom: 0;
    text-transform: uppercase;
} 

.share-container a:hover  { 
    filter: brightness(110%);
} 

.share-container i  { 
    position: absolute; 
    transform: translate(-50%); 
    font-size: 3.5rem; 
    top: 25%; 
    left: 49%; 
    color: #fff;
}

.share-container .twitter  { 
    background-color: #54abee;
} 

.share-container .email  { 
    background-color: #525252;
} 

.fa { 
    display: inline-block; 
    -moz-osx-font-smoothing: grayscale; 
    -webkit-font-smoothing: antialiased; 
    font-style: normal; 
    font-variant: normal; 
    text-rendering: auto; 
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font: normal normal normal 14px/1 FontAwesome; 
    transform: translate(0, 0);
} 

.share-container .fa-envelope { 
    font-size: 3rem;
}


/* -------------- Media Queries --------------- */

@media screen and (min-width: 1001px), handheld and (min-device-width: 1001px){
	.video-grid-item:nth-child(3n+1) {
		clear: both; /* clears every 4th video item on desktop before resetting to every 3rd item on mobile */
	}
}

@media screen and (min-width: 1000px), handheld and (min-device-width: 1000px){
	.aside-weather-bio img {
		height: 100%;
		object-fit: cover;
		min-width: 115px;
    	max-width: 115px;
	}
}

@media screen and (min-width: 851px), handheld and (min-device-width: 851px){
	.aside-weather-bio img {
		width: 100%;
		max-width: 150px;
    	min-width: 150px;
	}
}  /* mobile first media query to set width and height of image */

@media screen and (max-width: 1250px), handheld and (max-device-width: 1250px){

	.header-ad-leaderboard{
		display: block;
		margin: 0 auto;
	}

	.header-ad-promo{
		display: none;
	}
}
/* END 1250 */

@media screen and (max-width: 1200px), handheld and (max-device-width: 1200px){

	table.weather-forecast {
		font-size: 95.5%;
	}

	.weather-forecast-date span {
		font-size: 2.8rem;
		font-size: 28px;
	}

	.hp-prev-twitter-slide,
	.hp-next-twitter-slide{
		padding-top: 7px;
	}

	.newscast-now .now-next-content,
	.newscast-now .live-button-container {
		float: none;
	}
}
/* END 1200 */

@media screen and (max-width: 1150px), handheld and (max-device-width: 1150px){

	.leaderboard-ad{
		width: 468px;
	}

	.weather-view-temperature-text {
		font-size: 35px;
		font-size: 3.5rem;
	}

	.weather-view-column > .weather-links {
		font-size: 14px;
		font-size: 1.4rem;
	}
}
/* END 1150 */

@media screen and (max-width: 1100px), handheld and (max-device-width: 1100px){

	.aside-ad-1{
		width: 200px;
	}

	.aside-ad-2{
		width: 160px;
	}

	.aside-ad-3{
		display: none;
	}

	.mod-section-main-3 .mod-section-main-item-weather-logo{
		display: none;
	}

	.mod-section-main-3 .mod-section-main-item-weather-info{
		float: none;
		width: 100%;
	}

	.mod-section-main-3 .mod-section-main-item-weather-icon{
		width: 21.613832853026%; /* 75/347 */
	}

	.mod-section-main-3 .mod-section-main-item-weather-info-temps{
		width: 72.622478386167%; /* 252/347 */
	}
}
/* END 1100 */

@media screen and (max-width: 1000px), handheld and (max-device-width: 1000px) {

	body {
		overflow-x: hidden;
		position: relative;
		left: 0;
	}
    
	.logo-cbs58{
		display: none;
	}

	.logo-stacked-cbs58{
		display: block;
		width: 90px;
	}    

	#wrapper {
	    padding-left: 2rem;
	    padding-right: 2rem;
	}

	.sticky-header-logo {
		display: none;
	}

	.header-notifications {
		display: flex;
		flex: 1;
		justify-content: flex-end;
		align-items: center;
		font-size: 2rem;
	}

	.header-notifications i {
		color: #fff;
		margin: 0 1rem;
	}

	.header-tips-links-btn:hover,
	.header-tips-links-btn:focus {
		background-color: #000;
		color: #ffc72c;
	}

	.mobile-floating-nav {
		display: flex !important;
		padding: 1rem 2rem;
	}

	#main-nav-floating ul.nav-small.nav-open {
		display: none;
	}

	ul.nav-small.nav-closed {
		display: none;
	}

	.main-nav ul.nav-small.nav-open {
	    top: 52px;
	    height: calc(100vh - 40px);
	    padding: 0;
	    margin: 0;
	    overflow-y: scroll;
	    overflow-x: hidden;
	}

	.main-nav ul.nav-small.nav-open.submenu-open {
		top: 60px;
	}

	.nav-transition {
		padding: 0;
	}

	.main-nav ul li a {
	    font-size: 1.8rem;
	    padding: 2rem 1rem;
	    border-bottom: 1px solid #efefef;
	    text-align: left;
	    text-transform: none;
	    width: 100%;
	    float: none;
	    overflow: hidden;
	}

	.nav-small.nav-open, .search-bar.open, .microsite-search-bar.open {
		display: block;
    	background: #fff;
    	width: 100%;
    	position: absolute;
    	left: 0;
    	z-index: 99999;
	}

	.main-nav-search-btn,
	.main-nav-menu-btn{
		background: none;
		border: none;
		color: #fff;
		cursor: pointer;
		display: inline-block;
		width: 40px;
	}

	.main-nav-search-btn i,
	.main-nav-menu-btn i{
		font-size: 3rem;
	}

	.main-nav-menu-btn {
		color: #fff;
		margin: 0.8rem 1rem 1rem 0;
	}

	.main-nav .submenu li.submenu-back-btn,
	.main-nav .submenu li.submenu-back-btn span{
		display: block;
	}

	body,
	.main-nav,
	.main-nav .submenu,
	.sticky-mobile-nav{
		transition: all 0.3s ease;
	}

	.main-nav,
	.main-nav .submenu{
		padding: 0;
		width:  100%;
	}

	.main-nav .submenu {
		box-shadow: none;
	}

	.main-nav ul,
	.main-nav ul li,
	.main-nav ul li a{
		display: block;
	}

	.main-nav ul li {
		padding: 0 4rem;
		text-align: left;
	}

	.main-nav ul .social-nav a {
		border-bottom: none;
	}

	.main-nav a,
	.main-nav .submenu li a{
		padding: 1.6rem 1.6rem 1.4rem;
	}

	.main-nav a {
		font-size: 16px;
		font-size: 1.6rem;
		padding: 0;
	}

	.main-nav .submenu {
		color: #fff;
		opacity: 1;
		visibility: hidden;
	}

	.main-nav .submenu-open {
		visibility: visible;
	}

	.main-nav .submenu.nav-small {
		top: 30px;
	}

	.main-nav .submenu li.submenu-back-btn span,
	.main-nav .submenu li a{
		border-bottom: 1px solid #fff;
	}

	.main-nav .submenu li a{
		border-top: none;
	}

	i.submenu-wrap-arrow-down{
		display: none;
	}

	i.submenu-wrap-arrow-right{
		display: inline-block;
	}

	.header-social-search {
		display: none;
		background-color: #fff;
		padding: 1.5rem;
		margin-top: 0;
		text-align: center;
	}

	.header-news-links-btn {
		background-color: #0e256b;
		color: #fff;
	}

	.search-bar form {
		width: 100%;
		margin: 0;
	}

	.alert-slides-row {
		max-width: 100%;
	}

	.alert-slides-wrapper {
		padding: 0 2rem;
	}

	.breaking-news-marquee {
		margin-top: 1rem;
	}

	.mod-section-main-1 h1{
		font-size: 25px;
		font-size: 2.5rem;
		line-height: 35px;
		line-height: 3.5rem;
	}

	.mod-section-main-1 .mod-section-main-item-weather-icon{
		width: 42.625% !important; /* firebug*/
	}

	.mod-section-main-1 .mod-section-main-item-weather-temp{
		font-size: 80px;
		font-size: 8rem;
		line-height: 80px;
		line-height: 8rem;
	}

	.aside-sidebar-item-list img{
		width: 35.714285714286%; /* 100/280 */
	}

	.aside-item-list-title {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 20px;
		line-height: 2rem;
		padding: 5px 10px 0;
		width: 64.285714285714%; /* 180/280 */
	}

	.weather-today{
		width: 55.030487804878%; /* 361/656 */
	}

	.weather-today-inner img{
		width: 34.626038781163%; /* 125/361 */
	}

	.weather-today-temps{
		text-align: left;
		width: 59.83379501385%; /* 216/361 */
	}

	.weather-stream{
		width: 41.920731707317%; /* 275/656 */
	}

	.video-grid-item,
	.sweepstakes-item{
		margin-right: 0;
		width: 48.475609756098%; /* 318/656 */
	}

	.video-grid-item:nth-child(2n+0),
	.sweepstakes-item:nth-child(2n+0){
		float: right;
	}

	.video-grid-item-thumb i{
		top: 41%; /* firebug */
	}

	.video-grid-item:nth-child(2n+1) {
	  clear: both; /* overrides desktop clear rule for every 3rd grid item on mobile */
	}

	.spotlight.owl-carousel .owl-nav .owl-next {
		padding: 0.3rem 0.8rem 0.3rem 1rem;
	}
}
/* END 1000 */

@media screen and (max-width: 980px), handheld and (max-device-width: 980px){

	.takeover-wallpaper{
		display: none;
	}

	.takeover-top-ad{
		margin-bottom: 20px;
		width: 728px;
	}
}
/* END 980 */

@media screen and (max-width: 950px), handheld and (max-device-width: 950px){

	.newsletter-signup-footer span,
	.newsletter-signup-footer form{
		display: block;
	}

	.newsletter-signup-footer span{
		margin-bottom: 15px;
	}

	.newsletter-signup-footer form{
		margin: 0 auto;
	}

	.newsletter-signup-input-wrap{
		margin-left: 0;
	}
}
/* END 950 */

@media screen and (max-width: 900px), handheld and (max-device-width: 900px){

	.mod-section-main-4 .mod-section-main-item-weather-icon{
		display: none;
	}

	.mod-section-main-4 .mod-section-main-item-weather-info-temps{
		padding-left: 0;
		width: 100%;
	}

	.on-now-next {
		display: grid;
    	grid-template-columns: 1fr 1fr;
    	width: 100%;
	}

	.on-now-next .on-now.one-third-column,
	.on-now-next .on-next.one-third-column  {
		width: 100%;
	}

	.on-now.flat-edge-mobile {
		border-radius: 15px 0 0;
	}

	.on-next.flat-edge-mobile {
		border-radius: 0 15px 0 0;
	}

	.on-now-next .on-next.one-third-column {
		border-right: none;
	}

	.later.one-third-column.newscast {
		border-radius: 0 0 15px 15px;
	}

	.on-now-next .later {
		display: none;
	}

	.on-now-next .next-newscast-mobile {
		display: grid;
		border-radius: 0 0 15px 15px;
		grid-column: span 2;
		width: 100%;
	}

	.on-now-next .newscast + .newscast {
		border-left: none;
	}

	.on-next.one-third-column.newscast:nth-of-type(2) {
		border-right: none;
	}

}
/* END 900 */

@media screen and (max-width: 850px), handheld and (max-device-width: 850px){

	#main-content,
	#top-content,
	aside,
	.takeover-wrapper #main-content,
	.takeover-wrapper #top-content,
	.takeover-wrapper aside{
		float: none;
		width: 100%;
	}

	#cbs58_side {
		padding-bottom: 2rem;
	}

	.mod-section,
	.weather-app {
		margin-bottom: 0;
	}

	.aside-ad-1,
	.aside-ad-2{
		width: 728px;
	}

	.aside-newsletter-signup{
		padding: 4%;
	}

	.aside-sidebar-item-list img{
		width: 18.518518518519%; /* 150/810 */
	}

	.aside-item-list-title {
		padding: 1.851851851852% 0 0 2.469135802469%; /* 15/810 & 20/810 */
		width: 81.481481481481%; /* 660/810 */
	}

	.aside-sidebar-main-callout-list,
	.aside-sidebar-three-item-list,
	.aside-sidebar-item-list {
		margin-bottom: 2rem;
	}

	.newsletter-signup-footer{
		padding-top: 0;
		flex-direction: column;
	}

	.content-quote {
		font-size: 1.6rem;
		font-weight: 100;
		line-height: 2.8rem;
		width: 100%;
	}

	.takeover-wrapper .newsletter-signup-footer{
		padding: 30px;
	}

	.contact-form{
		width: 55.555555555556%; /* 450/810 */
	}

	.contact-info{
		width: 37.037037037037%; /* 300/810 */
	}

	.weather-today{
		width: 48.148148148148%; /* 390/810 */
	}

	.weather-today-inner img{
		width: 41.538461538462%; /* 162/390 */
	}

	.weather-today-temps{
		width: 53.333333333333%; /* 208/390 */
	}

	.weather-today-temps span{
		font-size: 120px;
		font-size: 12rem;
		line-height: 120px;
		line-height: 12rem;
	}

	.weather-stream{
		width: 49.382716049383%; /* 400/810 */
	}

	li.content-listing-with-img .content-listing-title {
		padding-left: 4%;
	}

	.content-listing-title {
		width: 100%;
	}

	.content-img-grid-item-sizer,
	.content-img-grid-item {
		width: 32.452830188679%; /* 788/795 */
	}

	.content-img-grid-item-gutter {
		width: 01.25786163522%; /* 10/795 */
	}

	.content-img-grid-item-popout {
		width: 90%;
	}

	.weather-today-temps span{
		font-size: 90px;
		font-size: 9rem;
		line-height: 90px;
		line-height: 9rem;
	}

	.aside-weather-bio {
		align-items: center;
	}

	.spotlight .owl-nav {
		top: 20%;
	}

	.spotlight.owl-carousel .owl-nav .owl-next {
    	padding: 0.6rem 0.9rem 0.4rem 1.1rem;
    }

}
/* END 850 */

@media screen and (max-width: 800px), handheld and (max-device-width: 800px){

	.header-ad-leaderboard{
		width: 468px;
	}

	.mod-section-main-img,
	.mod-section-main-1 .mod-section-main-item-title{
		float: none;
		width: 100%;
	}

	.mod-section-main-1 .mod-section-main-item-title{
		text-align: center;
	}

	.mod-section-main-1 h1{
		font-size: 20px;
		font-size: 2rem;
		line-height: 30px;
		line-height: 3rem;
	}

	.mod-section-main-1 .mod-section-main-item-weather-logo,
	.mod-section-main-1 .mod-section-main-item-weather-info{
		float: left;
	}

	.mod-section-main-1 .mod-section-main-item-weather-logo{
		padding-top: 2.631578947368%; /* 20/760 */
		width: 26.315789473684%; /* 200/760 */
	}

	.mod-section-main-1 .mod-section-main-item-weather-info{
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+39,e7e7e7+100 */
		background: #ffffff; /* Old browsers */
		background: linear-gradient(to right,  #ffffff 39%,#e7e7e7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=1 ); /* IE6-9 */
		padding: 0;
		width: 73.684210526316%; /* 560/760 */
	}

	.mod-section-main-1 .mod-section-main-item-weather-icon,
	.mod-section-main-1-item-weather-info-temps{
		float: left;
	}

	.mod-section-main-1 .mod-section-main-item-weather-icon{
		padding: 1.785714285714% 0 1.785714285714% 2.678571428571%; /* 10/560 & 15/560 */
		width: 17.857142857143% !important; /* 100/560 */
	}

	.mod-section-main-1-item-weather-info-temps{
		padding: 1.785714285714% 2.678571428571% 2.678571428571%; /* 10/560 & 15/560 */
		text-align: left;
		width: 82.142857142857%; /* 460/560 */
	}

	.mod-section-main-1-item-weather-info-temps a{
		color: #0d246f;
		display: block;
		text-transform: uppercase;
	}

	.mod-section-main-1-item-weather-info-temps a:hover{
		color: #69affb;
	}

	.mod-section-main-1 .mod-section-main-item-weather-see-more{
		display: none;
	}

	.mod-section-main-1 .mod-section-main-weather-alert .mod-section-main-item-title{
		text-align: left;
	}

	.mod-section-main-1 .mod-section-main-weather-alert .mod-section-main-weather-alert-icon{
		float: left;
		width: 14.473684210526%; /* 110/760 */
	}

	.aside-ad-1,
	.aside-ad-2{
		width: 468px;
	}
}
/* END 800 */

@media screen and (max-width: 750px), handheld and (max-device-width: 750px){

	.takeover-top-ad{
		width: 468px;
	}

	.breaking-alert {
		margin-right: 2rem;
	}

	.breaking-news-inner {
		flex-direction: column;
		align-items: center;
	}

	.alert-slides-wrapper {
		flex-direction: column;
	}

	.alert-arrows {
		margin-bottom: 2rem;
		text-align: center;
	}
}
/* END 750 */

@media screen and (max-width: 700px), handheld and (max-device-width: 700px){

	.mod-section-main-2 .mod-section-main-item-weather-logo{
		display: none;
	}

	.mod-section-main-2 .mod-section-main-item-weather-info{
		width: 100%;
	}

	.weather-today-inner img{
		width: 31.446540880503%; /* 100/318 */
	}

	.weather-today-temps{
		width: 62.264150943396%; /* 198/318 */
	}

	table.weather-forecast {
		font-size: 90.5%;
	}

	.weather-forecast-date span {
		font-size: 2.2rem;
		font-size: 22px;
	}

	.mod-section-4-inner {
		display: block;
	}

	.mod-section-4-col {
		width: 100%;
	}

	.mod-section-4-col:nth-of-type(2) {
		margin-left: 0;
	}

	.mod-section-4-col:nth-of-type(2) {
		margin-left: 0;
		margin-top: 15px;
	}

	.primary-tags {
		font-size: 12px;
		font-size: 1.2rem;
		text-decoration: none;
	}

	.footer-station-logos {
		grid-template-columns: repeat(5, 1fr);
		padding: 0;
		gap: 30px;
	}

	.footer-station-logos li {
		margin-bottom: 2rem;
	}

	.content-listing-grid.grid-item {
	    grid-template-columns: repeat(2, 1fr);
	}
}
/* END 700 */

@media screen and (max-width: 650px), handheld and (max-device-width: 650px){
	.header-sponsored .header-contact,
	.header-sponsored .header-social-search{
		width: 350px;
	}

	.weather-section-title-maps{
		margin-bottom: 0;
		padding-right: 260px;
	}

	.weather-maps-btn{
		display: block;
	}

	.weather-maps{
		overflow: inherit;
		padding: 0;
	}

	.weather-maps-tabs{
		display: none;
		right: 2.439024390244%; /* 20/820 */
		top: -2%; /* firebug */
		width: 225px;
		overflow: visible !important;
		z-index: 999;
	}

	.weather-maps-tabs li a:hover,
	.weather-maps-tabs li a.active{
		background-color: #fff;
		color: #0d246f;
	}

	.mod-section-main-4 .mod-section-main-item{
		margin: 0 0 10px;
		width: 49.180327868852%; /* 300/610 */
	}

	.mod-section-main-4 .mod-section-main-item:nth-child(even){
		margin-left: 1.639344262295%; /* 10/610 */
	}

	.mod-section-main-4 .mod-section-main-item-weather-icon{
		display: block;
		width: 26.785714285714%; /* 75/280 */
	}

	.mod-section-main-4 .mod-section-main-item-weather-info-temps{
		padding-left: 10px;
		width: 73.214285714286%; /* 205/280 */
	}

	.live-stream-video-left,
	.live-stream-video-right {
		flex-direction: column;
		flex: 1;
	}

	.live-stream-thumb {
		flex: 1 1 100%;
		margin-bottom: 0.7rem;
	}
}
/* END 650 */

@media screen and (max-width: 640px), handheld and (max-device-width: 640px){

	.mod-section-main-3 .mod-section-main-item{
		width: 49.666666666667%; /* 298/600 */
	}

	.mod-section-main-3 .mod-section-main-item:first-child{
		float: none;
		margin-bottom: 20px;
		width: 100%;
	}

	.mod-section-main-3 .mod-section-main-item a img{
		width: 100%;
	}

	.mod-section-main-3 .mod-section-main-item-weather-logo{
		display: block;
		margin-top: 3.833333333333%; /* 23/600 */
		width: 29.166666666667%; /* 175/600 */
	}

	.mod-section-main-3 .mod-section-main-item-weather-info{
		float: right;
		padding: 1.666666666667% 2.5% 2.5%; /* 10/600 & 15/600 */
		width: 70.833333333333%; /* 425/600 */
	}

	.mod-section-main-3 .mod-section-main-item-weather-temp{
		font-size: 60px;
		font-size: 6rem;
		line-height: 60px;
		line-height: 6rem;
	}
}
/* END 640 */

@media screen and (max-width: 600px), handheld and (max-device-width: 600px){

	header{
		border: none;
	}

	header > .section-inner{
		padding-bottom: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.header-sponsored > .section-inner{
		padding-right: 0;
	}

	.header-sponsored .sticky-mobile-nav-wrapper{
		max-height: inherit;
	}

	.header-sponsor-ad{
		height: 53px;
		padding: 0 15px;
		transition: all 0.3s ease;
		width: 120px !important;
        right:0px;     
        top:2px;
	}

	.header-sponsor-ad-inner span {
		font-size: 8px;
	}

	.main-nav .header-nav-search {
		padding: 0 3rem;
	}

	.main-nav .social-nav {
		padding: 0 1rem;
	}

	.sticky-sponsor-ad-wrapper{
		bottom: 0.3rem;
		position: absolute;
		z-index: 9;
	}

	.sticky-mobile-nav{
		right: 0;
	}

	#semi-floating-sports-newsletter.sticky .wmlw-nvyzz {
		flex-direction: column;
		margin: 0 auto 1.2rem;
	}

	#semi-floating-sports-newsletter.sticky .wmlw-663nw {
		width: 100%;
		margin-bottom: 1rem;
	}

	.header-sponsor-ad-e5xtra-top{
		bottom: 51px;
	}

	.mod-section-main-1 .mod-section-main-item-weather-logo{
		padding-top: 5.892857142857%; /* 33/560 */
	}

	.mod-section-main-1 .mod-section-main-item-weather-icon{
		width: 24.213075060533% !important; /* 100/413 */
	}

	.mod-section-main-1-item-weather-info-temps{
		width: 75.786924939467%; /* 313/413 */
	}

	.mod-section-4-col{
		float: none;
		width: 100%;
	}

	.mod-section-3-main-item-title {
		font-size: 2rem;
		line-height: 2.6rem;
	}

	.content-body {
		padding: 0;
	}

	.content-listing-grid li {
		width: 100%;
	}

	.weather-alert-wrap h1{
		font-size: 4rem;
		line-height: 4rem;
	}

	.weather-bio-section-item{
		margin: 0 2.678571428571% 2.678571428571% 0; /* 15/560 */
		width: 31.547619047619%; /* 176.66666666666667/560 */
	}

	.weather-bio-section-item:nth-child(4n+0){
		margin-right: 2.678571428571%; /* 15/560 */
	}

	.weather-bio-section-item:nth-child(3n+0){
		margin-right: 0;
	}

    .school-closings-banner-lrg{
		display: none;
    }

	.school-closings-banner-med{
		display: block;
	}

    .elections-banner-lrg{
		display: none;
    }

    .elections-banner-med{
        display: block;
    }

	.content-byline {
		font-size: 1.8rem;
		font-size: 18px;
	}

	.content-date-posted {
		font-size: 1.4rem;
		font-size: 14px;
	}

	.mod-section h1 {
		font-size: 32px;
		font-size: 3.2rem;
	}

	.newsletter-signup-footer span {
		font-size: 3rem;
	}

	.weather-section-title {
		font-size: 3rem;
	}

	.weather-today-temps span {
		font-size: 8rem;
	}

	#main-content h1 {
		font-size: 2.7rem;
		line-height: 3.2rem;
	}

	.mod-section h1 .view-more,
	.view-more {
		font-size: 1.8rem;
		margin: 1.3rem 0 2rem;
		padding: 0.5rem 2.5rem;
	}

	.view-more > .fa-chevron-right {
		margin-top: -0.2rem;
	}

	.mobile-only {
		display: block;
	}

	.view-more.desktop-only,
	.desktop-only {
		display: none;
	}

	.fr-fir,
	.fr-fil {
		float: none;
	}


}
/* END 600 */

@media screen and (max-width: 550px), handheld and (max-device-width: 550px){

	.header-ad-leaderboard,
	.header-ad-promo{
		width: 320px;
	}

	.header-ad-leaderboard{
		margin-bottom: 15px;
	}

	.header-ad-promo{
		display: block;
		margin: 0 auto;
		overflow: hidden;
		float: none;
	}

	.mod-section h1,
	.hp-twitter-wrap h1{
		margin-bottom: 10px;
	}

	.mod-section h1{
		line-height: 40px;
		line-height: 4rem;
	}

	.mod-section-5-callout-item:nth-of-type(1) .callout-item-title-link {
		font-size: 18px;
		font-size: 1.8rem;
		line-height: 25px;
	}

	.mod-section-2-item:nth-of-type(2n + 2) {
		margin-left: 0;
	}

	.mod-section-main-2{
		display: block;
		margin: 0;
	}

	.mod-section-main-2 .mod-section-main-item{
		float: none;
		margin-bottom: 20rem;
		width: 100%;
	}

	.mod-section-2-item{
		float: none;
		width: 100%;
	}

	.mod-section-2-item:last-child {
		margin-bottom: 0;
	}

	.mod-section-2-item:nth-of-type(2),
	.mod-section-2-item:nth-of-type(4) {
		margin-left: 0;
	}

	.mod-section-main-2 .mod-section-main-item-weather-logo{
		display: block;
		margin-top: 5.882352941176%; /* 30/510 */
		width: 29.411764705882%; /* 150/510 */
	}

	.mod-section-main-2 .mod-section-main-item-weather-info{
		width: 70.588235294118%; /* 360/510 */
	}

	.mod-section-3 {
		padding-bottom: 0;
	}

	.mod-section-3-list-inner {
		display: block;
	}

	.mod-section-3-list-item {
		width: 100%;
		margin-bottom: 2rem;
	}

	.mod-section-3-inner {
		display: block;
	}

	.mod-section-3-col,
	.mod-section-3-col:first-child,
	.mod-section-3-main-col-item {
		float: none;
		width: 100%;
		margin-left: 0;
	}

	.mod-section-3-col:first-child,
	.mod-section-3-col-item{
		margin-bottom: 2rem;
	}

	.mod-section-3-col-item img,
	.mod-section-3-col-item .mod-section-3-item-title{
		float: left;
	}

	.mod-section-5-callout-item,
	.mod-section-5-callout-item:nth-of-type(1) {
		background-color: #ffffff;
    	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
    	border-radius: 15px;
    	margin-bottom: 2rem;
	}

	.mod-section-5-callout-inner {
		background-color: transparent;
		box-shadow: none;
	}

	.mod-section-5-callout-item,
	.mod-section-5-callout-item:nth-of-type(2), 
	.mod-section-5-callout-item:nth-of-type(3){
		width: 100%;
		margin: 0 0 2rem;
	}

	.mod-section-5-callout-item:nth-of-type(3) {
		margin-bottom: 0.5rem;
	}

	.aside-weather-bio img {
		width: 100%;
		height: 100%;
	}

	.weather-today,
	.weather-stream{
		float: none;
		width: 100%;
	}

	.weather-today{
		margin-bottom: 20px;
	}

	.weather-today .weather-section-title{
		padding: 1.219512195122% 2.439024390244%; /* 10/820 & 20/820 */
	}

	.weather-today-inner img{
		margin-left: 3.921568627451%; /* 20/510 */
		width: 31.764705882353%; /* 162/510 */
	}

	.weather-today-temps{
		width: 60.392156862745%; /* 308/510 */
	}

	.weather-today-temps span{
		line-height: 140px;
		line-height: 14rem;
	}

	.weather-stream img{
		width: 100%;
	}

	.weather-app {
		margin-top: 0;
		margin-bottom: 2rem;
	}

	.mod-single,
	li.content-listing-with-img{
		min-height: inherit;
		padding: 10px 0 8px;
	}

	.mod-single img,
	.content-listing img{
		float: left;
		position: static;
	}

	.mod-single h3,
	li.content-listing-with-img .content-listing-title{
		float: right;
		width: 64.901960784314%; /* 331/510 */
	}

	.leaderboard-ad{
		width: 320px;
	}

	.content-img-grid-item-sizer,
	.content-img-grid-item {
		width: 48.989898989899%; /* 242.5/495 */
	}

	.content-img-grid-item-gutter {
		width: 02.020202020202%; /* 10/495 */
	}

	.content-flipp-ads {
		margin-bottom: 30px;
	}

	.aside-sidebar-item-list img{
		width: 100%;
	}

	.aside-sidebar-main-callout-list ul > li:last-child {
		border-bottom: none;
	}

	.aside-item-list-title {
		padding: 1.851851851852% 0 0 2.469135802469%; /* 15/810 & 20/810 */
		width: 100%;
	}

	.view-more-sidebar {
		display: inline-block;
	}

	.view-more-sidebar-bottom {
		display: none;
	}

	.live-stream-inner {
		flex-direction: column;
		padding: 2rem;
	}

	.live-stream-video-left,
	.live-stream-video-right {
		flex-direction: row;
		flex: 1;
	}

	.live-stream-video-left {
		margin: 0 0 2rem;
	}

	.live-stream-video-right {
		margin: 0;
	}

	.live-stream-thumb {
		flex: 1 1 35%;
	}

	.sweepstakes-wrap {
		display: block;
	}
}
/* END 550 */

@media screen and (max-width: 500px), handheld and (max-device-width: 500px){

	.aside-ad-1,
	.aside-ad-2{
		width: 320px;
	}

	.aside-newsletter-signup .aside-newsletter-title {
		margin-bottom: 2rem;
	}

	.aside-newsletter-signup .aside-newsletter-title span {
		padding-top: 1rem;
	}

	.aside-newsletter-signup .newsletter-checkbox label {
		font-size: 1.3rem;
	}

	.aside-newsletter-signup {
		padding: 1.5rem 2rem;
	}

	.aside-newsletter-title {
		padding-left: 0;
		text-align: center;
	}

	.aside-newsletter-title > i {
		position: relative;
	}

	.weather-alert-wrap h1{
		padding: 10px;
	}

	.weather-alert-wrap li a{
		padding: 5px 10px;
	}

	.weather-forecast-date,
	.weather-forecast-desc,
	.weather-forecast-temps{
		padding: 10px;
	}

	.weather-forecast-day{
		min-width: 115px;
	}

	.weather-forecast-date span{
		font-size: 22px;
		font-size: 2.2rem;
	}

	.weather-section-title-maps{
		padding-right: 176px;
	}

	.weather-maps-btn,
	.weather-maps-tabs{
		width: 145px;
	}

	.weather-video-article-thumb,
	.weather-video-article-title{
		float: none;
		width: 100%;
	}

	.contact-form,
	.contact-info{
		float: none;
		width: 100%;
	}

	.contact-form{
		margin-bottom: 20px;
	}

	.contact-info{
		background-color: #e7eaef;
		padding: 20px;
		text-align: center;
	}

	.takeover-top-ad{
		width: 320px;
        margin-top:20px;
	}

	.video-grid-item,
	.video-grid-item:nth-child(2n+0),
	.sweepstakes-item,
	.sweepstakes-item:nth-child(2n+0){
		float: none;
	}

	.video-grid-item,
	.sweepstakes-item{
		float: none;
		margin-bottom: 20px;
		width: 100%;
	}

	.video-grid-item-thumb i{
		font-size: 60px;
		font-size: 6rem;
		left: 48%;
		top: 42%;
	}

	.hp-twitter-carousel li{
		padding: 15px;
	}

	.mod-section-3-list-item:last-child {
		margin-bottom: 0;
	}

	.primary-tags {
		font-size: 14px;
		font-size: 1.4rem;
	}

	.main-nav .section-inner {
		padding: 0;
	}

	.content-listing-grid.grid-item {
    	grid-template-columns: repeat(1, 1fr);
    	grid-gap: 1rem;
  	}

  	.on-now-next .one-third-column {
  		padding: 1.3rem 1.3rem 1.4rem;
  	}

	.on-heading {
		font-size: 1.6rem;
	}

	.newscast-now .live-button-container {
		display: flex;
		margin-bottom: 0;
	}

	.live-button-container a {
		width: 100%;
	}

	.live-stream-container.single .fa-play-circle {
		left: 50%;
	}

	.newscast-now .live-button-container i {
		margin-top: 0;
	}

	.search-results-desc {
		padding-left: 0;
	}

	.search-results-wrapper .content-listing-with-img > a {
		order: 2;
	}

	.search-results-wrapper li.content-listing-with-img .content-listing-title {
		font-size: 1.5rem;
		line-height: 2.1rem;
		width: 100%;
		padding-right: 1rem;
		margin-bottom: 0.5rem;
	}

	.search-results-desc .published-date {
		font-size: 1.2rem;
	}

	.footer-station-logos {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}

}

/* END 500 */

@media screen and (max-width:455px) {

	.content-img-grid-item-popout {
		padding-top: 20px;
	}

	.content-img-grid-item-popout img {
		padding-top: 8px;
		margin-bottom: 15px;
	}

	h2.content-img-grid-h2 {
		max-width: 100%;
		margin-bottom: 15px;
	}

	.content-img-grid-details{
		height: auto;
		display: block;
	}

	.content-img-grid-text-large {
		display: none;
	}

	.content-img-grid-text-small {
		display: block;
	}

	.content-img-grid-text-about {
		display: block;
	}

}

/* END 455 */

@media screen and (max-width: 450px), handheld and (max-device-width: 450px){

	.logo-stacked-cbs58{
		width: 75px;
		margin-top: 0.1rem;
	}

	.mod-section-main-1 .mod-section-main-item-weather-logo{
		display: none;
	}

	.mod-section-main-1 .mod-section-main-item-weather-info{
		width: 100%;
	}

	.mod-section-main-1 .mod-section-main-item-weather-temp{
		font-size: 70px;
		font-size: 7rem;
		line-height: 70px;
		line-height: 7rem;
	}

	.mod-section-main-4 .mod-section-main-item-weather-icon{
		display: none;
	}

	.mod-section-main-4 .mod-section-main-item-weather-info-temps{
		padding-left: 0;
		width: 100%;
	}

	.weather-bio-section-item{
		margin: 0 4.878048780488% 4.878048780488% 0; /* 20/410 */
		width: 47.560975609756%; /* 195/410 */
	}

	.weather-bio-section-item:nth-child(3n+0){
		margin-right: 4.878048780488%; /* 20/410 */
	}

	.weather-bio-section-item:nth-child(2n+0){
		margin-right: 0;
	}

}
/* END 450 */

@media screen and (max-width: 400px), handheld and (max-device-width: 400px){

	.header-facebook,
	.header-twitter{
		height: 25px;
		width: 25px;
	}

	.header-facebook{
		font-size: 21px !important;
	}

	.header-twitter{
		font-size: 18px !important;
		margin-right: 5px
	}

	.main-nav-search-btn,
	.main-nav-menu-btn{
		width: 25px;
	}

	.main-nav-search-btn i,
	.main-nav-menu-btn i{
		font-size: 25px;
	}

	.header-sponsor-ad-extra-top{
		bottom: 56px;
	}

	.header-social-search form{
		margin-top: 20px;
	}

	.mod-section-main-3 .mod-section-main-item,
	.mod-section-main-3 .mod-section-main-item-weather-info{
		float: none;
		width: 100%;
	}

	.mod-section-main-3 .mod-section-main-item{
		margin: 0 0 20px;
	}

	.mod-section-main-3 .mod-section-main-item-weather-logo{
		display: none;
	}

	.weather-forecast-day{
		min-width: inherit;
		text-align: center;
	}

	.weather-forecast-icon{
		display: block;
		margin: 0 auto;
		width: 40px;
	}

	.weather-forecast-date{
		padding-top: 0;
	}

	.weather-today-temps span{
		line-height: 100px;
		line-height: 10rem;
	}

	.weather-section-title-maps{
		padding-right: 2.439024390244%; /* 20/820 */
	}

	.weather-section-title-maps h1{
		margin-bottom: 10px;
	}

	.weather-maps-btn{
		margin-bottom: 5px;
		position: static;
		width: auto;
	}

	.weather-maps-tabs{
		left: 2.43902%;
		max-height: 150px;
		width: auto;
	}

	.weather-video-thumb{
		float: none;
		width: 100%;
		margin: 0 0 10px;
	}

	.video-grid-item-thumb i {
		font-size: 4rem;
		left: 50%;
		top: 44%;
	}

    .content-listing-grid li,
    .content-listing-grid li:nth-child(3n+0){
        margin: 0 0 20px;
    }

    .content-listing-grid li{
        width: 100%;
    }

	.content-img-grid-details h2{
		font-size: 18px;
		margin-bottom: 5px;
	}

	h3.content-img-grid-h3 {
		margin-bottom: 10px;
	}

	.content-img-grid-close i {
		font-size: 22px;
	}
}

/* END 400 */

@media screen and (max-width: 380px), handheld and (max-device-width: 380px){

	.weather-forecast-date span {
		font-size: 18px;
		font-size: 1.8rem;
	}

	.weather-forecast-temps, .weather-forecast-desc{
		font-size: 14px;
		font-size: 1.4rem;
	}

}

/* END 380 */

@media screen and (max-width: 360px), handheld and (max-device-width: 360px){

	.aside-ad-2{
		margin-left: -20px;
	}

}
/* END 360 */

@media screen and (max-width: 350px), handheld and (max-device-width: 350px){

	.mod-section-main-2 .mod-section-main-item-weather-logo{
		display: none;
	}

	.mod-section-main-2 .mod-section-main-item-weather-info{
		width: 100%;
	}

	.header-contact{
		width: 145px;
	}

	.header-news-links-btn{
		font-size: 12px;
		font-size: 1.2rem;
		padding: 3px 7px;
	}

	.main-nav-menu-btn{
		margin-left: 5px;
	}

	.weather-today-inner img{
		width: 29.032258064516%; /* 90/310 */
	}

	.weather-today-temps span{
		font-size: 80px;
		font-size: 8rem;
		line-height: 80px;
		line-height: 8rem;
	}
}
/* END 350 */

@media screen and (max-width: 340px), handheld and (max-device-width: 340px){

	.mod-section-main-1 .mod-section-main-item-weather-temp{
		font-size: 60px;
		font-size: 6rem;
		line-height: 60px;
		line-height: 6rem;
	}

	.mod-section-main-4 .mod-section-main-item{
		width: 100%;
	}

	.mod-section-main-4 .mod-section-main-item:nth-child(even){
		margin-left: 0;
	}

	.mod-section-main-4 .mod-section-main-item-weather-icon{
		display: block;
		width: 26.785714285714%; /* 75/280 */
	}

	.mod-section-main-4 .mod-section-main-item-weather-info-temps{
		padding-left: 10px;
		width: 73.214285714286%; /* 205/280 */
	}

    .footer-apps img{
        display: block;
        margin: 0 auto;
    }

    img.footer-app-ios{
        margin: 0 auto 15px;
    }
}


/* END 340 */


/*Newsletter Signup - moved here from WMLW because want it on any story, and probably on other sites too */
.wmlw-2a49j { 
    font-family: sans-serif; 
    font-size: 100%; 
    line-height: 1.15; 
    margin: 0;
} 

.wmlw-2a49j { 
    overflow: visible;
} 

.wmlw-2a49j { 
    text-transform: none;
} 

.wmlw-2a49j { 
    outline: none;
} 

.wmlw-9y3fv { 
    margin-bottom: 4rem;
} 

.wmlw-9y3fv { 
    background-color: #fff; 
    padding: 1.8rem 2.5rem;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
} 

.content-wrap .wmlw-9y3fv {
	margin-top: 0.5rem;
}

#newsletter_signup_wmlw .aside-newsletter-signup-thanks {
	color: #2584b2;
}

.wmlw-nvyzz { 
    display: block;
    margin-bottom: 2.5rem; 
    padding-left: 6.8rem; 
    position: relative;
} 

.wmlw-nvyzz span {
    padding-top: 1rem;
}

.wmlw-7h7xf { 
    -moz-osx-font-smoothing: grayscale; 
    -webkit-font-smoothing: antialiased; 
    display: inline-block; 
    font-style: normal; 
    font-variant: normal; 
    text-rendering: auto; 
    line-height: 1;
} 

.wmlw-7h7xf { 
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900;
} 

.wmlw-nvyzz > i  { 
    font-size: 5.4rem; 
    left: 0; 
    position: absolute; 
    top: -0.4rem;
} 

.wmlw-nvyzz > i  { 
    color: #0D246B;
} 

.wmlw-x67nf:before { 
    content: "\f0e0";
} 

.wmlw-nvyzz span  { 
    display: block;
} 

.wmlw-nvyzz span  { 
    font-size: 1.8rem; 
    line-height: 2.2rem; 
    font-weight: 700;
} 

.wmlw-nvyzz span  { 
    color: #0D246B;
} 

.wmlw-663nw { 
    background-color: #fff; 
    position: relative; 
    padding-right: 3.5rem;
    border-bottom: 2px solid #000;
} 

.wmlw-9y3fv input { 
    font-family: sans-serif; 
    font-size: 100%; 
    line-height: 1.15; 
    margin: 0;
    overflow: visible;
    outline: none;
} 

.wmlw-663nw input  { 
	color: #000;
    background: none; 
    border: none; 
    display: block; 
    height: 30px; 
    outline: none;
} 

.wmlw-663nw input  { 
    padding: 0 0 0 0.5rem; 
    width: 100%; 
    font-weight: 700;
} 

.wmlw-2a49j { 
    -webkit-appearance: button;
} 

.wmlw-663nw button  { 
    background: none; 
    border: none; 
    display: block; 
    height: 30px; 
    outline: none;
} 

.wmlw-663nw button  { 
    color: #000000; 
    cursor: pointer; 
    font-size: 2.5rem; 
    position: absolute; 
    right: 0; 
    top: 0; 
    width: 30px; 
    right: -0.5rem;
} 

 .wmlw-663nw button:hover { 
    color: #0D246B;
} 

.wmlw-onbg6 { 
    -moz-osx-font-smoothing: grayscale; 
    -webkit-font-smoothing: antialiased; 
    display: inline-block; 
    font-style: normal; 
    font-variant: normal; 
    text-rendering: auto; 
    line-height: 1;
} 

.wmlw-onbg6 { 
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900;
} 

.wmlw-onbg6 { 
    display: inline-block; 
    -moz-osx-font-smoothing: grayscale; 
    -webkit-font-smoothing: antialiased; 
    font-style: normal; 
    font-variant: normal; 
    text-rendering: auto; 
    line-height: 1; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    font: normal normal normal 14px/1 FontAwesome; 
    transform: translate(0, 0);
} 

.wmlw-onbg6 { 
    display: inline-block; 
    font: normal normal normal 14px/1 FontAwesome; 
    font-size: inherit; 
    text-rendering: auto; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
    transform: translate(0, 0);
} 

.wmlw-663nw button > i  { 
    font-weight: 600;
} 

.wmlw-cv4op:before { 
    content: "\f105";
}

#semi-floating-sports-newsletter {
	clear: both;
}

#semi-floating-sports-newsletter.sticky {
	width: 100%;
    z-index: 99999;
    margin: 0 auto;
    max-width: 1200px;
    bottom: -10px;
}

#semi-floating-sports-newsletter.sticky .column-left {
	float: left;
    width: 68.333333333333%;
    margin-right: 2rem;
    padding-right: 2.5rem;
}

#semi-floating-sports-newsletter.sticky .column-right {
    float: right;
    width: 29.166666666667%;
}

#semi-floating-sports-newsletter.sticky .close-button {
	position: absolute;
    right: 10px;
    top: -3px;
}

#semi-floating-sports-newsletter.sticky .close-button:hover {
	color: black;
}

#semi-floating-sports-newsletter .wmlw-9y3fv  {
	padding: 0.5rem 2rem 0.5rem;
	text-align: center;
	margin-bottom: 2rem;
}

#semi-floating-sports-newsletter .wmlw-nvyzz {
	display: flex;
    justify-content: center;
    margin: 0 auto 0rem;
    padding-left: 0;
}

#semi-floating-sports-newsletter .wmlw-nvyzz span {
	color: var(--primary-teal);
	font-size: 2.2rem;
	line-height: 2.5rem;
	margin-left: 2rem;
}

#semi-floating-sports-newsletter .wmlw-nvyzz > i {
	position: relative;
	color: var(--primary-teal);
}

#semi-floating-sports-newsletter .wmlw-663nw {
	width: 90%;
	background-color: var(--primary-teal);
	color: #fff;
	margin: 0 auto 0.5rem;
	padding: 0.5rem 2rem;
	margin-bottom: 0.5rem;
	border-radius: 20px;
	border-bottom: none;
}

#semi-floating-sports-newsletter .newsletter-terms {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#semi-floating-sports-newsletter .wmlw-663nw input {
	color: #fff;
}

#semi-floating-sports-newsletter ::placeholder {
	color: #fff;
}

#semi-floating-sports-newsletter #newsletter_signup_wmlw label {
	margin-top: 0;
	margin-bottom: 0;
}

#semi-floating-sports-newsletter .wmlw-663nw button {
	color: white;
	right: 1rem;
    top: 0.5rem;
}

.wmlw-nvyzz span,  .wmlw-nvyzz > i,  .aside-newsletter-signup-thanks,  .wmlw-663nw button:hover { 
    color: #2584b2;
} 

#style-PyDXZ.style-PyDXZ {  
   cursor:pointer;  
}  

#newsletter_signup_wmlw label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: normal;
    margin-top: 18px;
    font-size: 14px;
}

@media screen and (max-width: 1000px), handheld and (max-device-width: 1000px){ 
	body { 
	overflow-x: hidden; 
	position: relative; 
	left: 0;
	transition: all 0.3s ease;
	}
}     

@media screen and (max-width: 850px), handheld and (max-device-width: 850px){ 
  	.wmlw-9y3fv { 
    	padding: 15px;
  	}

  	.wmlw-663nw {
    	margin-bottom: 1rem;
  	}

	#semi-floating-sports-newsletter.sticky {
	    width: 100%;
	    z-index: 99999;
	    left: 10px;
	}

	#semi-floating-sports-newsletter.sticky .column-left,
	#semi-floating-sports-newsletter.sticky .column-right {
		width: 100%;
		padding-right: 1.5rem;
	}

	#semi-floating-sports-newsletter.sticky .wmlw-9y3fv {
		padding: 1.5rem 1.7rem 1.5rem;
	}

	#semi-floating-sports-newsletter.sticky .wmlw-663nw {
		margin-bottom: 0.5rem;
	}

	#newsletter_signup_wmlw label {
    	display: inline !important;
  	} 
}

@media screen and (max-width: 550px), handheld and (max-device-width: 550px){ 
	#semi-floating-sports-newsletter.sticky {
		max-width: 95%;
	}

	#semi-floating-sports-newsletter.sticky .column-left,
	#semi-floating-sports-newsletter.sticky .column-right {
		padding: 0 1rem;
	}

	#semi-floating-sports-newsletter .wmlw-9y3fv {
		padding: 1.5rem;
	}

	#semi-floating-sports-newsletter .wmlw-663nw {
		margin-bottom: 1rem;
		width: 100%;
	}

	#semi-floating-sports-newsletter .wmlw-nvyzz {
		flex-direction: column;
		margin-bottom: 1.5rem;
	}

	#semi-floating-sports-newsletter .wmlw-nvyzz span {
		font-size: 1.9rem;
		padding-top: 0;
		margin-left: 0;
	}

	#semi-floating-sports-newsletter .newsletter-terms {
		margin-top: 0.9rem;
		line-height: 2rem;
	}

	#semi-floating-sports-newsletter .wmlw-663nw input {
		padding: 0.2rem 0 0 0.5rem;
	}

	#semi-floating-sports-newsletter .wmlw-nvyzz > i {
		font-size: 4rem;
	}

	#footer-nav {
		margin-bottom: 5rem;
	}

	#footer-nav li {
		display: block;
		margin: 2rem 0;
	}
}

@media screen and (max-width: 450px), handheld and (max-device-width: 450px){ 

  .wmlw-nvyzz span {
    padding-top: 0;
  }
}


/****** TERMS COOKIE BANNER **********/
.privacy-banner-wrapper {
  background-color: #332f29;
  color: #fff;
  opacity: 0.9;
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 99999;
}

@media only screen and (max-width: 900px) {
  .privacy-banner-wrapper {
    bottom: 0px;
  }
}

.privacy-banner-wrapper .privacy-banner-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding: 2rem 1.5rem 2.2rem;
  margin: auto;
}

@media only screen and (max-width: 900px) {
  .privacy-banner-wrapper .privacy-banner-inner {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 500px) {
  .privacy-banner-wrapper .privacy-banner-inner {
  	flex-direction: column;
  }
}

.privacy-banner-wrapper .privacy-banner-message {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

@media only screen and (max-width: 500px) {
  .privacy-banner-wrapper .privacy-banner-message {
    margin-bottom: 2.4rem;
  }
}

.privacy-banner-wrapper .privacy-banner-message a {
  color: #fff;
  text-decoration: underline;
}

.privacy-banner-wrapper .privacy-banner-message a:hover,
.privacy-banner-wrapper .privacy-banner-message a:focus {
  text-decoration: none;
}

.privacy-banner-wrapper .close-btn {
  background-color: #585858;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 0.8rem 7rem;
  margin-left: 3rem;
  border-radius: 50px;
  transition: opacity 3s ease-in-out;
  cursor:pointer;
}

@media only screen and (max-width: 900px) {
  .privacy-banner-wrapper .close-btn {
    font-size: 2rem;
    padding: 0.8rem 4rem;
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 500px) {
  .privacy-banner-wrapper .close-btn {
    margin-left: 0;
  }
}

.privacy-banner-wrapper .close-btn:hover,
.privacy-banner-wrapper .close-btn:focus {
  background-color: #fff;
  color: #585858;
  text-decoration: none;
  
}
