/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/*! normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE6/7/8/9 & FF3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
/*
 * Corrects `inline-block` display not defined in IE6/7/8/9 & FF3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
/*
 * Addresses margins handled incorrectly in IE6/7.
 */
body {
  margin: 0;
}
/* ==========================================================================
   Links
   ========================================================================== */
a {
  text-decoration: none;
}
/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses style set to `bolder` in FF3+, S4/5, Chrome.
 */
b,
strong {
  font-weight: bold;
}
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
button {
  cursor: pointer;
}
/*********************
FIX IE7 INLINE-BLOCK
*********************/
.fixIE7 {
  *display: inline;
  *zoom: 1;
}
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
.pink {
  color: #c626b6;
}
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the 
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
@font-face {
  font-family: 'Museo-Sans-300';
  src: url('../fonts/MuseoSans/300/museosans-300-webfont.eot');
  src: url('../fonts/MuseoSans/300/museosans-300-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/MuseoSans/300/museosans-300-webfont.woff') format('woff'), url('../fonts/MuseoSans/300/museosans-300-webfont.ttf') format('truetype'), url('../fonts/MuseoSans/300/museosans-300-webfont.svg#font-name') format('svg');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Museo-Sans-i300';
  src: url('../fonts/MuseoSans/300/museosans-300italic-webfont.eot');
  src: url('../fonts/MuseoSans/300/museosans-300italic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/MuseoSans/300/museosans-300italic-webfont.woff') format('woff'), url('../fonts/MuseoSans/300/museosans-300italic-webfont.ttf') format('truetype'), url('../fonts/MuseoSans/300/museosans-300italic-webfont.svg#font-name') format('svg');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Museo-Sans-500';
  src: url('../fonts/MuseoSans/500/museosans-500-webfont.eot');
  src: url('../fonts/MuseoSans/500/museosans-500-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/MuseoSans/500/museosans-500-webfont.woff') format('woff'), url('../fonts/MuseoSans/500/museosans-500-webfont.ttf') format('truetype'), url('../fonts/MuseoSans/500/museosans-500-webfont.svg#font-name') format('svg');
  font-weight: 500;
  font-style: normal;
}
/*
@font-face {
	font-family: 'Museo-Sans-i500';
	src: url('../fonts/MuseoSans/500/museosans-500italic-webfont.eot');
	src: url('../fonts/MuseoSans/500/museosans-500italic-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/MuseoSans/500/museosans-500italic-webfont.woff') format('woff'),
		 url('../fonts/MuseoSans/500/museosans-500italic-webfont.ttf') format('truetype'),
		 url('../fonts/MuseoSans/500/museosans-500italic-webfont.svg#font-name') format('svg');
	font-weight: 300;
	font-style: italic;
}
*/
@font-face {
  font-family: 'Museo-Sans-700';
  src: url('../fonts/MuseoSans/700/museosans-700-webfont.eot');
  src: url('../fonts/MuseoSans/700/museosans-700-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/MuseoSans/700/museosans-700-webfont.woff') format('woff'), url('../fonts/MuseoSans/700/museosans-700-webfont.ttf') format('truetype'), url('../fonts/MuseoSans/700/museosans-700-webfont.svg#font-name') format('svg');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Museo-Sans-900';
  src: url('../fonts/MuseoSans/900/museosans-900-webfont.eot');
  src: url('../fonts/MuseoSans/900/museosans-900-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/MuseoSans/900/museosans-900-webfont.woff') format('woff'), url('../fonts/MuseoSans/900/museosans-900-webfont.ttf') format('truetype'), url('../fonts/MuseoSans/900/museosans-900-webfont.svg#font-name') format('svg');
  font-weight: 900;
  font-style: normal;
}
.museo-300 {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
}
.museo-300-em {
  font-family: 'Museo-Sans-i300', sans-serif;
  font-weight: 300;
  font-style: italic;
}
.museo-500 {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.museo-700 {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.museo-900 {
  font-family: 'Museo-Sans-900', sans-serif;
  font-weight: 900;
  font-style: normal;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
BACKGROUND SIZE
*********************/
/*
USAGE: .background-size(4px, 4px); 
*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
OPACITY
*********************/
/*********************
ANIMATED LOADER
*********************/
.preloader {
  position: relative;
  display: none;
  background: url(../images/ajax-loader.gif) no-repeat 0 0;
  -webkit-background-size: 32px 32px;
  -moz-background-size: 32px 32px;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  margin: 0 auto 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/******************************************************************
Site Name: Univision Corporate
Stylesheet: Base Mobile Stylesheet
******************************************************************/
/* =RESET
-------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
/*********************
GENERAL STYLES
*********************/
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
strong {
  font-weight: bold !important;
}
.float-left {
  float: left;
  margin: 0 20px 10px 0;
}
.float-right {
  float: right;
  margin: 0 0 10px 20px;
}
.wp-caption {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.wp-caption img {
  display: block;
  width: 100%;
  z-index: 99;
}
.wp-caption .wp-caption-text {
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 43px;
  line-height: 43px;
  padding-left: 20px;
  bottom: -25px;
  z-index: 100;
  font-family: 'Museo-Sans-i300', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 13px;
  color: #ffffff;
  background: url(../images/caption-overlay.png) repeat;
}
img.aligncenter {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#uni-back-to-top-button {
  display: block;
  width: auto;
  height: auto;
  padding: 15px 25px;
  box-sizing: border-box;
  position: fixed;
  bottom: 25%;
  right: -300px;
  background: #FFF;
  font-family: 'Museo-Sans-700', sans-serif;
  color: #c626b6;
  font-size: 14px;
  text-transform: uppercase;
  z-index: 9999;
  -webkit-transition: right 500ms;
  -moz-transition: right 500ms;
  -ms-transition: right 500ms;
  transition: right 500ms;
}
#uni-back-to-top-button i {
  padding-left: 10px;
}
#uni-back-to-top-button.open {
  right: 0;
}
.yarpp-related {
  display: none;
}
select {
  outline: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}
::selection {
  color: #ffffff;
  background: #c626b6;
}
::-moz-selection {
  color: #ffffff;
  background: #c626b6;
}
.hidden {
  display: none;
}
p b,
p strong {
  font-family: 'Museo-Sans-700', sans-serif;
}
.center .formatted img {
  max-width: 100% !important;
  height: auto;
}
/*********************
LAYOUT & GRID STYLES
*********************/
#wrap {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  overflow: hidden;
}
#globalHeaderBanner {
  display: none;
  background: white;
  color: #c626b6;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
#globalHeaderBanner span {
  background: url('http://corporate.univision.com/wp-content/themes/univision/library/images/arrow-submit-2x.png') no-repeat;
  background-position: 100% -16px;
  -webkit-background-size: 50px auto;
  -moz-background-size: 50px auto;
  background-size: 50px auto;
  padding-right: 45px;
}
#globalHeaderBanner:hover {
  background: #c626b6;
  color: white;
}
#globalHeaderBanner:hover span {
  background-position: 100% -66px;
}
body.home #globalHeaderBanner {
  display: block;
}
.center {
  position: relative;
}
#content {
  position: relative;
  display: block;
  overflow: hidden;
  padding-bottom: 220px;
  z-index: 999;
}
.rail-left {
  position: relative;
  width: 86%;
  margin: 0 7%;
  z-index: 100;
}
.rail-left .left-rail-links {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 40px;
}
.rail-left .uni-twitter-feed {
  display: none;
}
.rail-center {
  position: relative;
  overflow: hidden;
  width: 86%;
  z-index: 99;
  padding: 0;
  margin: 0 7%;
}
.no-black-box .rail-center {
  padding-top: 30px;
}
.rail-right {
  position: relative;
  width: 86%;
  margin: 0 7%;
  padding-top: 25px;
}
.rail-right .uni-book-speaker {
  background: #f1f1f1;
  padding: 15px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-size: 14px;
  line-height: 20px;
}
.rail-right .uni-book-speaker .book-speaker-headline {
  font-family: 'Museo-Sans-700', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}
.rail-right .uni-book-speaker .book-speaker-copy {
  margin: 15px 0;
}
.rail-right .uni-book-speaker .book-speaker-info {
  background: #fff;
  padding: 10px;
}
.rail-right .uni-book-speaker .book-speaker-info .bold,
.rail-right .uni-book-speaker .book-speaker-info a {
  font-weight: bold;
}
.rail-right .uni-book-speaker .book-speaker-info a {
  color: #c626b6;
}
/*********************
TEXT STYLES
*********************/
.section-heading {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #c626b6;
  margin-bottom: 8px;
}
.section-heading a {
  color: #c626b6;
}
.side-rail .rail-title {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4em;
  color: #1b1b1b;
}
.side-rail .rail-title a {
  color: #1b1b1b;
}
.side-rail .empty-rail {
  position: relative;
  width: 1px;
  height: 1px;
}
.section-title {
  width: 100%;
  text-align: center;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #1b1b1b;
  text-transform: uppercase;
}
.section-title .first-word,
.section-title em {
  font-family: 'Museo-Sans-i300', sans-serif;
  font-weight: 300;
  font-style: italic;
  text-transform: none;
}
.section-title .pink {
  color: #c626b6;
}
.section-title.more-margin {
  margin-bottom: 30px;
}
.section-title.section-title-more {
  margin-bottom: 30px;
  margin-top: 30px;
}
.formatted {
  position: relative;
  overflow: hidden;
  line-height: 1.9em;
}
.formatted p {
  margin-bottom: 25px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
}
.formatted p strong {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.formatted i,
.formatted em {
  font-style: italic;
}
.formatted a {
  color: #c626b6;
}
.formatted h1 {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #1b1b1b;
  line-height: 1.1em;
}
.formatted h2 {
  margin-bottom: 10px;
  padding-top: 5px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #1b1b1b;
  line-height: 1.1em;
}
.formatted h3 {
  margin-bottom: 10px;
  padding-top: 5px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.1em;
}
.formatted blockquote {
  padding: 10px 0 15px 40px;
  line-height: 1.4em;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 26px;
  color: #a8a8a8;
}
.formatted blockquote p {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 26px;
  color: #a8a8a8;
}
.formatted ul,
.formatted ol {
  margin-bottom: 25px;
}
.formatted ul li,
.formatted ol li {
  margin: 0 0 5px 20px;
  padding-left: 15px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
  background: url(../images/list-image-2x.png) no-repeat 0 5px;
  -webkit-background-size: 7px 14px;
  -moz-background-size: 7px 14px;
  background-size: 7px 14px;
  /*list-style-image: url(../images/list-image.png);*/
}
.formatted ul li strong,
.formatted ol li strong {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.formatted ul li a,
.formatted ol li a {
  color: #c626b6;
}
.formatted ol {
  margin-left: 10px;
}
.formatted ol li {
  padding-left: 6px;
  list-style-image: none;
  list-style-type: decimal;
  background: none;
}
/*********************
HEADER STYLES
*********************/
#header {
  position: static;
  width: 100%;
  min-width: 320px;
  height: 60px;
  top: 0;
  background: #ffffff;
  z-index: 9999;
}
#header #logo {
  position: absolute;
  display: block;
  width: 130px;
  height: 60px;
  top: 0;
  left: 50%;
  margin-left: -65px;
  background: url(../images/logo.png) no-repeat;
  -webkit-background-size: 130px 60px;
  -moz-background-size: 130px 60px;
  background-size: 130px 60px;
}
#header #menu-btn {
  position: relative;
  width: 72px;
  height: 60px;
  line-height: 60px;
  float: left;
  padding-right: 30px;
  text-align: center;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
  text-transform: uppercase;
  background: url(../images/menu-lines-2x.png) no-repeat;
  background-position: 26px -1px;
  -webkit-background-size: 49px auto;
  -moz-background-size: 49px auto;
  background-size: 49px auto;
}
#header #menu-btn .fake-a {
  position: absolute;
  display: block;
  width: 72px;
  height: 60px;
  left: 0;
  top: 0;
  background: none;
  cursor: pointer;
  z-index: 1000;
}
#header #menu-btn .mobile-hide {
  display: none;
}
#header #menu-btn .hide-mobile {
  display: block;
}
#header #menu-btn #menu-btn-fix {
  position: absolute;
  display: none;
  height: 60px;
  left: 0;
  top: 0;
  background: none;
  z-index: 999;
}
#header #menu-btn #menu-btn-fix .logo-cover {
  position: absolute;
  display: block;
  width: 130px;
  height: 60px;
  left: 50%;
  margin-left: -65px;
  top: 0;
  background: none;
  outline: none;
}
#header #menu-btn.close {
  background: url(../images/mobile-close.png) no-repeat;
  -webkit-background-size: 72px 60px;
  -moz-background-size: 72px 60px;
  background-size: 72px 60px;
}
#header .main-nav-wrap {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  top: 60px;
  left: 0;
  background: #1b1b1b;
  text-align: left;
  padding-left: 24px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#header .main-nav-wrap .column {
  position: relative;
  overflow: hidden;
}
#header .main-nav-wrap .column .col-title {
  position: relative;
  display: block;
  padding-left: 32px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 23px;
  color: #c626b6;
  margin-bottom: 15px;
  line-height: 1em;
  text-transform: none;
}
#header .main-nav-wrap .column .col-title span {
  position: absolute;
  display: block;
  width: 22px;
  height: 22px;
  left: 0;
  border: solid 2px #c626b6;
  background: url(../images/form-arrow-2x.png) no-repeat -2px -1px;
  -webkit-background-size: 22px auto;
  -moz-background-size: 22px auto;
  background-size: 22px auto;
}
#header .main-nav-wrap .column .col-title.opened span {
  background-position: -2px -24px;
}
#header .main-nav-wrap .column .press-item {
  display: none;
}
#header .main-nav-wrap .column .menu {
  position: relative;
  line-height: 1.1em;
  text-transform: none;
  display: none;
}
#header .main-nav-wrap .column .menu > li {
  position: relative;
  padding-left: 32px;
}
#header .main-nav-wrap .column .menu > li a {
  position: relative;
  display: block;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  padding-bottom: 15px;
  line-height: 1.1em;
}
#header .main-nav-wrap .column .menu > li .sub-menu {
  position: relative;
}
#header .main-nav-wrap .column .menu > li .sub-menu li {
  position: relative;
  padding-left: 15px;
}
#header .main-nav-wrap .column .menu > li .sub-menu li a {
  position: relative;
  display: block;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #9e9e9e;
  padding-bottom: 15px;
}
#header .main-nav-wrap .column .menu > li .sub-menu li a.external-link i {
  display: inline;
  padding-left: 5px;
}
#header .main-nav-wrap.open {
  padding-top: 34px;
  height: auto;
  z-index: 90000000;
}
#header .header-right {
  position: relative;
  z-index: 99999;
}
#header .header-right .icon {
  position: relative;
  float: right;
  width: 74px;
  height: 60px;
  cursor: pointer;
  background: url(../images/header-search-icon-2x-sprite.png) no-repeat;
  -webkit-background-size: 148px auto;
  -moz-background-size: 148px auto;
  background-size: 148px auto;
}
#header .header-right .icon:hover {
  background-position: -74px 0;
}
#header .header-right .contact-btn {
  position: relative;
  display: none;
  float: right;
  line-height: 60px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
}
#header .header-right .contact-btn:hover {
  color: #c626b6;
}
#header .header-right .form-wrap {
  position: absolute;
  display: block;
  overflow: hidden;
  right: 0;
  top: 0;
  width: 0;
  height: 60px;
  background: #e1e1e1 url(../images/header-search-icon-2x.png) no-repeat left;
  -webkit-background-size: 74px auto;
  -moz-background-size: 74px auto;
  background-size: 74px auto;
}
#header .header-right .form-wrap form {
  padding-left: 58px;
}
#header .header-right .form-wrap input[type=text] {
  position: relative;
  display: block;
  overflow: hidden;
  height: 24px;
  line-height: 24px;
  margin-top: 18px;
  background: none;
  outline: none;
  border: none;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #9e9e9e;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
#header .header-right .form-wrap .close {
  position: absolute;
  display: none;
  width: 19px;
  height: 60px;
  right: 16px;
  top: 0;
  cursor: pointer;
  background: url(../images/nav-search-close.png) no-repeat 0 0;
}
#header .header-right .form-wrap .close:hover {
  background-position: 0 -60px;
}
.lt-ie9 {
  /*
	.loading-indicator {
		background: url(../images/loading-icon.png) no-repeat left 16px;
	}
	*/
}
.lt-ie9 #header #logo {
  background: url(../images/logo2.png) no-repeat;
}
.lt-ie9 #header #menu-btn {
  background: url(../images/menu-lines.png) no-repeat 26px -1px;
}
.lt-ie9 #header #menu-btn:hover {
  background-position: 80px -61px !important;
}
.lt-ie9 #header .main-nav-wrap .column .col-title span {
  background: url(../images/form-arrow.png) no-repeat -2px -1px;
}
.lt-ie9 #header .header-right .icon {
  background: url(../images/header-search-icon.png) no-repeat;
}
.lt-ie9 #header .header-right .form-wrap {
  background: #e1e1e1 url(../images/header-search-icon.png) no-repeat left;
}
.lt-ie9 #footer .footer-follow .social .facebook {
  background: url(../images/footer-social.png) no-repeat 0 0;
}
.lt-ie9 #footer .footer-follow .social .twitter {
  background: url(../images/footer-social.png) no-repeat 0 -18px;
}
.lt-ie9 #footer .footer-follow .social .linked {
  background: url(../images/footer-social.png) no-repeat 0 -36px;
}
.lt-ie9 .grey-social .facebook,
.lt-ie9 .grey-social .at15t_facebook {
  background: url(../images/footer-social.png) no-repeat 0 0;
}
.lt-ie9 .grey-social .twitter,
.lt-ie9 .grey-social .at15t_twitter {
  background: url(../images/footer-social.png) no-repeat 0 -18px;
}
.lt-ie9 .grey-social .linked,
.lt-ie9 .grey-social .at15t_linkedin {
  background: url(../images/footer-social.png) no-repeat 0 -36px;
}
.lt-ie9 .graph-sections .a-part .number {
  display: none;
}
.lt-ie9 .graph-sections .part-1 .graph {
  background: url(../images/graph1.jpg) no-repeat !important;
}
.lt-ie9 .graph-sections .part-1 .graph #myChart1 {
  display: none;
}
.lt-ie9 .graph-sections .part-2 .graph {
  background: url(../images/graph2.jpg) no-repeat !important;
  border-bottom: none !important;
}
.lt-ie9 .graph-sections .part-2 .graph #the-bar {
  display: none;
}
.lt-ie9 .graph-sections .part-3 .graph {
  background: url(../images/graph3.jpg) no-repeat !important;
}
.lt-ie9 .graph-sections .part-3 .graph #move-circle-1,
.lt-ie9 .graph-sections .part-3 .graph #move-circle-2 {
  display: none !important;
}
.lt-ie9 .uni-hispanic-insights-form .gform_wrapper #field_18_2 .gfield_required {
  background: url(../images/arrow-up-down.png) no-repeat right -25px;
}
.lt-ie9 .uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li {
  background: url(../images/email-checkbox.png) no-repeat left 2px;
}
.lt-ie9 .uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li.checked {
  background: url(../images/email-checkbox.png) no-repeat left -68px;
}
.lt-ie9 .uni-hispanic-insights-form .gform_wrapper .gform_footer input[type=submit] {
  background: #ffffff url(../images/arrow-submit.png) no-repeat right -1px;
}
.lt-ie9 .uni-hispanic-insights-form .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: #c626b6;
  background-position: right -37px !important;
  color: #ffffff;
}
.lt-ie9 .uni-hispanic-insights-form .share-box .facebook {
  background: url(../images/pink-social.png) no-repeat 0 0;
}
.lt-ie9 .uni-hispanic-insights-form .share-box .twitter {
  background: url(../images/pink-social.png) no-repeat 0 -16px;
}
.lt-ie9 .uni-hispanic-insights-form .share-box .linked {
  background: url(../images/pink-social.png) no-repeat 0 -32px;
}
.lt-ie9 .grey-form-wrap .gform_fields #field_19_7 li {
  background: url(../images/email-checkbox.png) no-repeat left 10px;
}
.lt-ie9 .grey-form-wrap .gform_fields #field_19_7 li.checked {
  background: url(../images/email-checkbox.png) no-repeat left -60px;
}
.lt-ie9 .grey-form-wrap .gform_fields #field_19_10 .ginput_container,
.lt-ie9 .grey-form-wrap .gform_fields #field_19_5 .ginput_container,
.lt-ie9 .grey-form-wrap .gform_fields #field_19_11 .ginput_container {
  background: #f7f7f7 url(../images/select-arrow-down.png) no-repeat right center;
}
.lt-ie9 .grey-form-wrap input[type=submit] {
  background: url(../images/arrow-submit.png) no-repeat 65px -2px;
}
.lt-ie9 .panel-actions .next {
  background: url(../images/arrow-submit.png) no-repeat center center;
}
.lt-ie9 .market-box-wrap .market-box .grey-form-wrap input[type=submit] {
  background: url(../images/arrow-submit.png) no-repeat right -1px;
}
.lt-ie9 .market-box-wrap .market-select ul.options li .checkbox {
  background: url(../images/email-checkbox.png) no-repeat 0 0;
}
.lt-ie9 #content.media-property .visit-website,
.lt-ie9 #content.media-property .download-facts {
  background: url(../images/property-dl-link-1.png) no-repeat left;
}
.lt-ie9 #content.media-property .download-facts {
  background: url(../images/property-dl-link-2.png) no-repeat left;
}
.lt-ie9 #content.media-property .rail-right #expand-icon {
  background: url(../images/form-arrow.png) no-repeat 0 0;
}
.lt-ie9 #content.media-property .rail-right .gform_wrapper .gform_footer input[type=submit] {
  background: url(../images/arrow-submit.png) no-repeat 65px right -1px;
}
.lt-ie9 #content.media-property .rail-right .gform_wrapper .gform_footer input[type=submit]:hover {
  background-position: right -37px !important;
}
.lt-ie9 #content.media-property .rail-right .gform_wrapper .gform_fields #field_19_10 .ginput_container,
.lt-ie9 #content.media-property .rail-right .gform_wrapper .gform_fields #field_19_5 .ginput_container,
.lt-ie9 #content.media-property .rail-right .gform_wrapper .gform_fields #field_19_11 .ginput_container {
  background: #f7f7f7 url(../images/select-arrow-down.png) no-repeat right center;
}
.lt-ie9 #content.home .top-hero-photo .audio-icon {
  background: url(../images/home-audio-icon.png) no-repeat 0 -44px;
}
.lt-ie9 #content.home .top-hero-photo .arrow-down {
  background: url(../images/home-down-arrow.png) no-repeat;
}
.lt-ie9 #content.home .home-title-section > li .selected {
  background: url(../images/arrow-up-down.png) no-repeat right -14px;
}
.lt-ie9 #content.home .home-beat-section .more-icon {
  background: url(../images/pink-down-arrow.png) no-repeat center bottom;
}
.lt-ie9 .recommended-reading-section .a-reading {
  background: url(../images/reading-icon.png) no-repeat left top;
}
.lt-ie9 #the-beat-uni-gallery .top-content .thumb-sidebar #thumbs-up {
  background: url(../images/form-arrow-copy.png) -5px -37px;
}
.lt-ie9 #the-beat-uni-gallery .top-content .thumb-sidebar #thumbs-down {
  background: url(../images/form-arrow-copy.png) -5px -4px;
}
.lt-ie9 #the-beat-uni-gallery .top-content .main-media-wrap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/overlay-slice.png) repeat;
}
.lt-ie9 #the-beat-uni-gallery .top-content .main-media-wrap .overlay .play-btn-wrap {
  position: absolute;
  display: block;
  width: 75px;
  height: 35px;
  top: 69px;
  left: 50%;
  margin-left: -37px;
  background: url(../images/play-overlay.png) repeat;
}
.lt-ie9 #the-beat-uni-gallery .top-content .main-media-wrap .overlay .play-btn {
  position: relative;
  display: block;
  width: 75px;
  height: 35px;
  line-height: 32px;
  padding-right: 16px;
  border: solid 2px #c626b6;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  text-align: center;
  background: url(../images/read-more-arrow.png) no-repeat right;
  cursor: pointer;
}
.lt-ie9 .investor-menu-section .links li .logout {
  background: url(../images/logout-link.png) no-repeat right;
}
.lt-ie9 .investor-menu-section .links .current_page_item a {
  color: #c626b6;
}
.lt-ie9 .top-control-bar .social .media-kit {
  background: url(../images/media-kit-icon.png) no-repeat right 2px;
}
.lt-ie9 #content.reports .reports-group .a-report .part-right a {
  background: url(../images/media-kit-icon.png) no-repeat right 0;
}
.lt-ie9 #the-beat-single-item .overlay .play-btn {
  background: url(../images/read-more-arrow.png) no-repeat right;
}
.lt-ie9 #property-search input {
  background: #f7f7f7 url(../images/search-icon.png) no-repeat right;
}
.lt-ie9 #login-form .drop-arrow-wrap {
  background: #f7f7f7 url(../images/select-arrow-down.png) no-repeat right center;
}
.lt-ie9 .rec-reading-container .a-reading .part-right a {
  background: url(../images/visit-website-icon.png) no-repeat left 0;
}
.lt-ie9 .market-box-wrap .market-box .panel-actions .back {
  background: url(../images/arrow-back.png) no-repeat center -2px !important;
}
.lt-ie9 .market-box-wrap .market-box .panel-actions .next {
  background: url(../images/arrow-submit.png) no-repeat center -2px !important;
}
.lt-ie9 .most-popular-section .owl-buttons .owl-prev {
  background: url(../images/arrow-back.png) no-repeat center -4px !important;
}
.lt-ie9 .most-popular-section .owl-buttons .owl-prev:hover {
  background-position: center -29px;
}
.lt-ie9 .most-popular-section .owl-buttons .owl-next {
  background: url(../images/arrow-submit.png) no-repeat center -4px !important;
}
.lt-ie9 .most-popular-section .owl-buttons .owl-next:hover {
  background-position: center -29px;
}
.lt-ie9 .formatted ul li {
  background: url(../images/list-image.png) no-repeat 0 5px;
}
.lt-ie9 .post-single-section .prev-post {
  background: url(../images/arrow-back.png) no-repeat center -4px !important;
}
.lt-ie9 .post-single-section .next-post {
  background: url(../images/arrow-submit.png) no-repeat center -4px !important;
}
.lt-ie9 .grey-social .facebook,
.lt-ie9 .grey-social .at15t_facebook {
  background: url(../images/footer-social.png) no-repeat 0 0 !important;
}
.lt-ie9 .grey-social .twitter,
.lt-ie9 .grey-social .at15t_twitter {
  background: url(../images/footer-social.png) no-repeat 0 -18px !important;
}
.lt-ie9 .grey-social .linked,
.lt-ie9 .grey-social .at15t_linkedin {
  background: url(../images/footer-social.png) no-repeat 0 -36px !important;
}
.lt-ie9 .social-ret a.sfb {
  background: url(../images/social-facebook.png) no-repeat 0 0;
}
.lt-ie9 .social-ret a.stw {
  background: url(../images/social-twitter.png) no-repeat 0 0;
}
.lt-ie9 .social-ret a.sli {
  background: url(../images/social-linked.png) no-repeat 0 0;
}
/*********************
FOOTER STYLES
*********************/
#footer {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  min-width: 320px;
  height: auto;
  margin-top: -220px;
  padding-top: 38px;
  z-index: 1000;
  /*
	.center {
		padding: 0 28px;
	}
	*/
}
#footer .top,
#footer .middle,
#footer .bottom {
  position: relative;
  overflow: hidden;
}
#footer .middle {
  display: none;
}
#footer .footer-title {
  display: none;
}
#footer #menu-footer-navigate {
  display: none;
}
#footer .footer-follow {
  position: relative;
  margin: 0 auto;
  width: 97px;
}
#footer .footer-follow .follow-title {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #6d6d6d;
  margin-bottom: 20px;
}
#footer .footer-follow .social {
  position: relative;
  overflow: hidden;
}
#footer .footer-follow .social a {
  position: relative;
  display: block;
  overflow: hidden;
  float: left;
  width: 18px;
  height: 18px;
  margin-left: 16px;
}
#footer .footer-follow .social a:first-child {
  margin-left: 0;
}
#footer .footer-follow .social .facebook {
  background: url(../images/footer-social-2x.png) no-repeat 0 0;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
}
#footer .footer-follow .social .twitter {
  background: url(../images/footer-social-2x.png) no-repeat 0 -18px;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
}
#footer .footer-follow .social .linked {
  background: url(../images/footer-social-2x.png) no-repeat 0 -36px;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
}
#footer #menu-footer-navigate-2 {
  display: none;
}
#footer .bottom {
  padding: 25px 10px 0 10px;
  border-top: solid 1px #e1e1e1;
  margin: 26px 28px 0 28px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  text-align: center;
  line-height: 1.6em;
  color: #6d6d6d;
  height: 47px;
  overflow: visible;
}
#footer .bottom .social {
  display: none;
}
/*********************
PAGE STYLES
*********************/
.top-hero-photo {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 310px;
  padding-top: 145px;
}
.top-hero-photo .large-title {
  position: relative;
  text-align: center;
  width: 100%;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #FFF;
}
.top-hero-photo #home-hero-vid {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 310px;
  top: 0;
  left: 0;
}
.top-hero-photo #home-hero-vid iframe,
.top-hero-photo #home-hero-vid video {
  height: 310px;
  width: 100%;
}
.top-hero-photo #home-hero-vid.mobile {
  background: url('/wp-content/themes/univision/library/images/home_poster.jpg') no-repeat center center;
  background-size: cover;
}
#content.home .top-hero-photo {
  height: 310px;
}
#content.home .top-hero-photo.video {
  padding-top: 0 !important;
}
.top-hero-photo.no-hero {
  height: 0px;
  padding-top: 20px;
  background: #f7f7f7;
}
.top-hero-photo.video {
  padding-top: 0 !important;
}
.the-beat-section {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
}
.the-beat-section .rail-left {
  display: none;
}
.the-beat-section .rail-center {
  position: relative;
  overflow: hidden;
  float: none;
  width: 90%;
  max-width: 464px;
  margin: 0 auto;
  z-index: 99;
}
.the-beat-section .rail-right {
  display: none;
}
body.single-leader .the-beat-section {
  background: #fff !important;
}
body.single-leader .the-beat-section .rail-center {
  width: 86%;
}
.the-beat-section-grey {
  background: #f7f7f7;
}
.the-beat-section-white {
  background: #ffffff;
}
.no-beat-section {
  background: #ffffff;
}
.no-beat-section .top-control-bar {
  height: 58px;
}
.the-beat-section-dark {
  background: #1b1b1b;
  padding-bottom: 45px;
}
.the-beat-section-dark .top-control-bar .breadcrumbs {
  color: #f7f7f7;
}
.the-beat-section-dark .top-control-bar .section-title {
  color: #f7f7f7;
}
.the-story-section {
  position: relative;
  overflow: hidden;
  padding: 38px 0;
}
.the-story-section .section-title {
  margin-bottom: 38px;
}
.the-story-section.password-protected {
  padding-top: 140px;
}
.most-popular-section {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding: 30px 0 75px 0;
}
.most-popular-section .section-title {
  margin-bottom: 30px;
}
.most-popular-section .larger-title {
  font-size: 34px;
}
.most-popular-section .controls,
.most-popular-section .owl-buttons {
  position: absolute;
  overflow: hidden;
  width: 142px;
  height: 30px;
  left: 50%;
  bottom: -48px;
  margin-left: -71px;
}
.most-popular-section .controls #pop-prev,
.most-popular-section .owl-buttons #pop-prev,
.most-popular-section .controls .owl-prev,
.most-popular-section .owl-buttons .owl-prev {
  position: relative;
  float: left;
  width: 68px;
  height: 30px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #c626b6;
  cursor: pointer;
  border: solid 2px #c626b6;
  text-align: right;
  text-transform: capitalize;
  background: url(../images/arrow-back-2x.png) no-repeat 0% -1px;
  padding: 5px 7px;
  -webkit-background-size: 28px auto;
  -moz-background-size: 28px auto;
  background-size: 28px auto;
}
.most-popular-section .controls #pop-prev:hover,
.most-popular-section .owl-buttons #pop-prev:hover,
.most-popular-section .controls .owl-prev:hover,
.most-popular-section .owl-buttons .owl-prev:hover {
  background-color: #c626b6;
  background-position: 0% -29px;
  color: white;
}
.most-popular-section .controls #pop-next,
.most-popular-section .owl-buttons #pop-next,
.most-popular-section .controls .owl-next,
.most-popular-section .owl-buttons .owl-next {
  position: relative;
  float: right;
  width: 68px;
  height: 30px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #c626b6;
  cursor: pointer;
  border: solid 2px #c626b6;
  text-align: left;
  text-transform: capitalize;
  background: url(../images/arrow-submit-2x.png) no-repeat 100% -1px;
  padding: 5px 7px;
  -webkit-background-size: 28px auto;
  -moz-background-size: 28px auto;
  background-size: 28px auto;
}
.most-popular-section .controls #pop-next:hover,
.most-popular-section .owl-buttons #pop-next:hover,
.most-popular-section .controls .owl-next:hover,
.most-popular-section .owl-buttons .owl-next:hover {
  background-color: #c626b6;
  background-position: 100% -29px;
  color: white;
}
.most-popular-section .controls .owl-prev.disabled,
.most-popular-section .owl-buttons .owl-prev.disabled {
  border: solid 2px #7b7b7b;
  background: url(../images/scroll-arrows-2.png) no-repeat 4px 0;
  color: #7b7b7b;
}
.most-popular-section .controls .owl-next.disabled,
.most-popular-section .owl-buttons .owl-next.disabled {
  border: solid 2px #7b7b7b;
  color: #7b7b7b;
  background: url(../images/scroll-arrows-2.png) no-repeat 45px -17px;
  -webkit-background-size: 13px auto;
  -moz-background-size: 13px auto;
  background-size: 13px auto;
}
#most-popular-slider {
  position: relative;
  width: 100%;
  padding: 0 10px;
  height: 143px;
}
#most-popular-slider .piece-left,
#most-popular-slider .piece-right {
  position: relative;
  overflow: hidden;
  float: left;
  width: 4%;
  height: 143px;
  background: #ffffff;
}
#most-popular-slider .piece-left {
  margin-right: 1%;
}
#most-popular-slider .piece-right {
  margin-left: 1%;
}
#most-popular-slider .owl-wrapper-outer {
  position: relative;
  width: 100%;
}
#most-popular-slider .owl-item {
  position: relative;
  overflow: hidden;
  float: left;
  height: 143px;
}
#most-popular-slider .an-item {
  position: relative;
  height: 143px;
  padding: 19px 10px 0 131px;
  background: #ffffff;
  margin: 0 3%;
}
#most-popular-slider .an-item .item-cats {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  margin-bottom: 10px;
}
#most-popular-slider .an-item .item-cats a {
  color: #c626b6;
}
#most-popular-slider .an-item .item-title {
  position: relative;
  overflow: hidden;
  max-height: 57px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
  line-height: 1.4em;
}
#most-popular-slider .an-item .item-title a {
  color: #1b1b1b;
}
#most-popular-slider .an-item .thumb {
  display: table;
  position: absolute;
  overflow: hidden;
  width: 100px;
  height: 100px;
  left: 20px;
  top: 20px;
}
#most-popular-slider .an-item .thumb a {
  display: table-cell;
  vertical-align: middle;
}
#most-popular-slider .an-item .text {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-right: 5px;
  height: 100px;
}
.top-control-bar {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 320px;
  height: 117px;
  padding: 18px 20px 0 20px;
}
.top-control-bar .breadcrumbs {
  position: relative;
  float: left;
  padding-top: 4px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #1b1b1b;
  font-size: 11px;
  text-transform: uppercase;
}
.top-control-bar .breadcrumbs a {
  color: #7b7b7b;
}
.top-control-bar .section-title {
  padding-top: 35px;
}
.top-control-bar .social {
  position: relative;
  display: none;
  float: right;
}
.top-control-bar .social .grey-social {
  float: right;
  margin-right: 12px;
}
.top-control-bar .social .media-kit {
  position: relative;
  display: block;
  overflow: hidden;
  float: right;
  height: 14px;
  line-height: 14px;
  padding-right: 30px;
  padding-top: 2px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  background: url(../images/media-kit-icon-2x.png) no-repeat 100% 100%;
  -webkit-background-size: auto 25px;
  -moz-background-size: auto 25px;
  background-size: auto 25px;
}
@media (max-width: 600px) {
  .top-control-bar {
    height: auto;
  }
  .top-control-bar .breadcrumbs {
    line-height: 18px;
    margin-bottom: 10px;
  }
  .top-control-bar .section-title {
    position: static;
    padding: 0;
    clear: left;
    margin-bottom: 20px;
  }
}
.uni-related {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.uni-related .feat-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.uni-related .feat-image .inner:before {
  content: "";
  display: block;
  padding-top: 99.99%;
}
.uni-related .text {
  position: relative;
  overflow: hidden;
  padding: 18px 10px 18px 16px;
  background: #ffffff;
}
.uni-related .text .section-heading a {
  color: #c626b6;
}
.uni-related .text .rail-title a {
  color: #1b1b1b;
}
.uni-related-med .rail-title {
  /*font-size: 16px;		*/
}
.uni-related-lrg .rail-title {
  /*font-size: 20px;	*/
}
.large-media-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 56px;
  border-top: solid 4px #c626b6;
  border-bottom: solid 5px #c626b6;
}
.large-media-container .top {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.large-media-container .top .containing-block {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  display: block;
}
.large-media-container .top .containing-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.large-media-container .top .containing-block-video {
  display: none;
}
.large-media-container .text {
  position: relative;
  overflow: hidden;
  padding: 20px 50px 16px 26px;
  background: #ffffff;
}
.large-media-container .text .title {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3em;
  color: #1b1b1b;
}
.large-media-container .text .title a {
  color: #1b1b1b;
}
.large-profile-container {
  margin-bottom: 30px;
  border-top: none;
  border-bottom: solid 1px #e1e1e1;
}
.large-profile-container .text-profile {
  position: relative;
  overflow: hidden;
  padding: 32px 0 26px 0;
}
.large-profile-container .text-profile .profile-name {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #1b1b1b;
  line-height: 1.4em;
}
.large-profile-container .text-profile .title {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4em;
  color: #7b7b7b;
  margin-bottom: 15px;
}
.grey-social {
  position: relative;
  overflow: hidden;
}
.grey-social a {
  position: relative;
  display: block;
  overflow: hidden;
  float: left;
  width: 18px;
  height: 18px;
  margin-left: 12px;
}
.grey-social a:first-child {
  margin-left: 0;
}
.grey-social .facebook,
.grey-social .at15t_facebook {
  background: url(../images/footer-social-2x.png) no-repeat 0 0;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
}
.grey-social .twitter,
.grey-social .at15t_twitter {
  background: url(../images/footer-social-2x.png) no-repeat 0 -18px;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
}
.grey-social .linked,
.grey-social .at15t_linkedin {
  background: url(../images/footer-social-2x.png) no-repeat 0 -36px;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
}
.social-ret a img {
  visibility: hidden;
}
.social-ret a.sfb {
  background: url(../images/social-facebook2x.png) no-repeat 0 0;
  -webkit-background-size: 16px 16px;
  -moz-background-size: 16px 16px;
  background-size: 16px 16px;
}
.social-ret a.stw {
  background: url(../images/social-twitter2x.png) no-repeat 0 0;
  -webkit-background-size: 16px 16px;
  -moz-background-size: 16px 16px;
  background-size: 16px 16px;
}
.social-ret a.sli {
  background: url(../images/social-linked2x.png) no-repeat 0 0;
  -webkit-background-size: 16px 16px;
  -moz-background-size: 16px 16px;
  background-size: 16px 16px;
}
.uni-twitter-feed {
  position: relative;
  width: 100%;
}
.uni-twitter-feed .tweet {
  position: relative;
  overflow: hidden;
  font-family: 'Museo-Sans-900', sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  line-height: 1.3em;
  color: #1b1b1b;
  margin-bottom: 10px;
  padding-right: 36px;
  word-wrap: break-word;
}
.uni-twitter-feed .tweet a {
  color: #c626b6;
}
.uni-hispanic-insights-form .form-box {
  position: relative;
}
.uni-hispanic-insights-form .gform_wrapper {
  margin: 0;
  max-width: 100%;
}
.uni-hispanic-insights-form .gform_wrapper .gform_heading {
  display: none;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_description.validation_message {
  top: 100px !important;
  /* Important to override gforms default */
  right: 0;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_label {
  margin: 0 0 16px 0 !important;
  font-family: 'Museo-Sans-900', sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_label .pink {
  color: #c626b6;
  cursor: pointer;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_2 label {
  display: block;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_2 .gfield_required {
  font-size: 1px;
  cursor: pointer;
  display: inline-block;
  padding-left: 3px;
  padding-right: 12px;
  background: url(../images/arrow-up-down-2x.png) no-repeat right -25px;
  -webkit-background-size: 10px auto;
  -moz-background-size: 10px auto;
  background-size: 10px auto;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_2 .gfield_required::before {
  content: "& More";
  color: #c626b6;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_2 .gfield_required:hover::before {
  border-bottom: 1px solid #c626b6;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_2 .expanded .gfield_required {
  background-position: right 5px;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_1 {
  margin-bottom: 5px !important;
  /* Important to override gforms default on error state */
}
.uni-hispanic-insights-form .gform_wrapper #field_18_4,
.uni-hispanic-insights-form .gform_wrapper #field_18_1 {
  position: relative;
  height: 35px;
  z-index: 9;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_4 .gfield_label,
.uni-hispanic-insights-form .gform_wrapper #field_18_1 .gfield_label {
  position: absolute;
  height: 35px;
  left: 12px;
  line-height: 35px;
  margin: 0 !important;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 99;
  background: none;
  padding-right: 0;
}
.uni-hispanic-insights-form .gform_wrapper #field_18_4 input[type=text],
.uni-hispanic-insights-form .gform_wrapper #field_18_1 input[type=text] {
  position: relative;
  width: 100%;
  height: 35px;
  padding-left: 12px;
  padding-right: 37px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_checkbox {
  position: relative;
  margin-bottom: 14px !important;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li {
  position: relative;
  margin-bottom: 3px;
  background: url(../images/email-checkbox-2x.png) no-repeat left 2px;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li input[type=checkbox] {
  display: none;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li input[type=checkbox] {
  display: none;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li input[type="checkbox"]:checked + label {
  font-weight: 300;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li label {
  position: relative;
  margin: 0;
  padding-left: 25px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  line-height: 1.6em;
}
.uni-hispanic-insights-form .gform_wrapper .gfield_checkbox li.checked {
  background: url(../images/email-checkbox-2x.png) no-repeat left -68px;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
}
.uni-hispanic-insights-form .gform_wrapper .gform_footer {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 22px;
  z-index: 99;
}
.uni-hispanic-insights-form .gform_wrapper .gform_footer input[type=submit] {
  position: absolute;
  overflow: hidden;
  width: 35px;
  height: 35px;
  top: -35px;
  right: 0;
  padding: 0 !important;
  border: solid 2px #c626b6;
  outline: none;
  text-align: left;
  text-indent: -9999px;
  background: #ffffff url(../images/arrow-submit-2x.png) no-repeat right -1px;
  -webkit-background-size: 35px auto;
  -moz-background-size: 35px auto;
  background-size: 35px auto;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.uni-hispanic-insights-form .gform_wrapper .gform_footer input[type=submit]:hover {
  background-color: #c626b6;
  background-position: right -37px !important;
  color: #ffffff;
}
.uni-hispanic-insights-form .share-box {
  position: relative;
  overflow: hidden;
  height: 16px;
}
.uni-hispanic-insights-form .share-box a {
  position: relative;
  display: block;
  overflow: hidden;
  float: left;
  width: 16px;
  height: 16px;
  margin-right: 11px;
}
.uni-hispanic-insights-form .share-box .facebook {
  background: url(../images/pink-social-2x.png) no-repeat 0 0;
  -webkit-background-size: 16px auto;
  -moz-background-size: 16px auto;
  background-size: 16px auto;
}
.uni-hispanic-insights-form .share-box .twitter {
  background: url(../images/pink-social-2x.png) no-repeat 0 -16px;
  -webkit-background-size: 16px auto;
  -moz-background-size: 16px auto;
  background-size: 16px auto;
}
.uni-hispanic-insights-form .share-box .linked {
  background: url(../images/pink-social-2x.png) no-repeat 0 -32px;
  -webkit-background-size: 16px auto;
  -moz-background-size: 16px auto;
  background-size: 16px auto;
}
/* PROFILE ROLL */
.page-template-template-profile_roll-php .top-control-bar,
body.single-leader .top-control-bar {
  height: 90px;
}
#profile-roll-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0 70px 0;
}
#profile-roll-wrapper .a-profile {
  position: relative;
  overflow: hidden;
  width: 355px;
  height: 326px;
  margin: 0 auto 30px auto;
  background: #ffffff;
}
#profile-roll-wrapper .a-profile .image-wrap {
  position: relative;
  overflow: hidden;
  width: 355px;
  height: 214px;
}
#profile-roll-wrapper .a-profile .image-wrap img {
  position: relative;
  display: block;
  width: 355px;
  height: auto;
}
#profile-roll-wrapper .a-profile .text {
  position: relative;
  overflow: hidden;
  width: 355px;
  height: 112px;
  background: #ffffff;
  padding: 24px 26px 0 20px;
}
#profile-roll-wrapper .a-profile .text .profile-name {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #1b1b1b;
  line-height: 1.4em;
}
#profile-roll-wrapper .a-profile .text .profile-position {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  line-height: 1.5em;
}
/* PROFILE ROLL SINGLE  */
.the-beat-section-2 {
  padding-bottom: 92px;
}
.the-beat-section-2 .formatted {
  padding-right: 30px;
}
.the-beat-section-2 .tags {
  position: relative;
  padding-top: 28px;
  font-family: 'Museo-Sans-i300', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: #a8a8a8;
}
.the-beat-section-2 .tags a {
  color: #1b1b1b;
}
.exec-manage-section #most-popular-slider {
  position: relative;
  width: 100%;
  /*height: 141px;*/
  height: 143px;
}
.exec-manage-section #most-popular-slider .owl-item {
  height: 143px;
}
.exec-manage-section #most-popular-slider .an-item {
  padding: 19px 10px 0 200px;
  background: #ffffff;
  height: 143px;
}
.exec-manage-section #most-popular-slider .an-item .thumb {
  display: table;
  position: absolute;
  overflow: hidden;
  width: 100px;
  height: 100px;
  left: 20px;
  top: 20px;
}
.exec-manage-section #most-popular-slider .an-item .thumb a {
  display: table-cell;
  vertical-align: middle;
}
.exec-manage-section #most-popular-slider .an-item .text {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding-right: 5px;
  height: 100px;
}
.exec-manage-section #most-popular-slider .an-item .item-title {
  font-size: 14px;
  max-height: 60px;
  overflow: hidden;
  margin-bottom: 5px;
}
.exec-manage-section #most-popular-slider .an-item .item-title a {
  color: #7b7b7b;
}
.exec-manage-section #most-popular-slider .an-item .item-title .divider {
  position: relative;
  bottom: 4px;
  font-size: 18px;
  margin: 0 4px;
  color: #7b7b7b;
}
.exec-manage-section #most-popular-slider .an-item .item-excerpt {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
  line-height: 1.4em;
}
.exec-manage-section #most-popular-slider .an-item .item-excerpt a {
  color: #1b1b1b;
}
.exec-manage-section #most-popular-slider .an-item.no-photo {
  padding: 20px 10px 0 20px;
  background: #000000;
}
.exec-manage-section #most-popular-slider .an-item.no-photo .thumb {
  display: none;
}
/* POST ROLL PAGE */
.top-stories-section {
  padding-top: 0;
  background: #1b1b1b;
}
.top-stories-section .top-control-bar .breadcrumbs {
  color: #7b7b7b;
}
.top-stories-section .top-control-bar .breadcrumbs a {
  color: #ffffff;
}
.top-stories-section .top-control-bar .section-title {
  color: #ffffff;
}
.top-stories-section #most-popular-slider .an-item {
  background: #000000;
}
.top-stories-section #most-popular-slider .an-item .item-cats {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.top-stories-section #most-popular-slider .an-item .item-cats a {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #7b7b7b;
}
.top-stories-section #most-popular-slider .an-item .item-cats span {
  position: relative;
  display: inline-block;
  padding: 0 3px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 9px;
  color: #7b7b7b;
  vertical-align: top;
}
.top-stories-section #most-popular-slider .an-item .item-title {
  color: #ffffff;
}
.top-stories-section #most-popular-slider .an-item .item-title a {
  color: #ffffff;
}
.top-stories-section #most-popular-slider .an-item .item-excerpt {
  color: #ffffff;
}
.top-stories-section #most-popular-slider .an-item .item-excerpt a {
  color: #ffffff;
}
.col2-container-section {
  position: relative;
  overflow: visible;
}
.col2-container-section .center {
  padding: 0 0 80px 0;
  border-bottom: solid 1px #e1e1e1;
}
.col2-container-section .filter-top {
  position: relative;
  display: block;
  width: 100%;
  white-space: nowrap;
  vertical-align: top;
  padding: 38px 3%;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  color: #1b1b1b;
}
.col2-container-section .filter-top > li {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  vertical-align: top;
}
.col2-container-section .filter-top > li span.selected {
  cursor: pointer;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #c626b6;
}
.col2-container-section .filter-top > li > ul {
  position: relative;
  right: 90px;
  display: none;
  width: 340px;
  background: #fff;
  margin: 0;
  padding: 15px 0 0;
}
.col2-container-section .filter-top > li > ul > li {
  position: relative;
  display: block;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.8em;
  color: #1b1b1b;
  margin: 0 20px 0 0;
}
.col2-container-section .filter-top > li > ul > li a {
  color: #1b1b1b;
}
.col2-container-section .filter-top > li > ul > li a:hover {
  color: #c626b6;
}
.col2-container-section .filter-top > li > ul.split-col:after {
  content: ".";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}
.col2-container-section .filter-top > li > ul.split-col > li {
  float: left;
  width: 150px;
}
.col2-container-section .filter-top > li > ul.sub.years.split-col {
  width: 120px;
}
.col2-container-section .filter-top > li > ul.sub.years.split-col > li {
  width: 40px;
}
.col2-container-section .filter-top > li > ul.sub.months.split-col {
  width: 150px;
}
.col2-container-section .filter-top > li > ul.sub.months.split-col > li {
  width: 55px;
}
.col2-container-section .filter-top.hr > li.hr-label-mobile {
  display: block;
  position: absolute;
  top: 64px;
}
.col2-container-section .filter-top.hr > li > ul {
  z-index: 99999;
}
.col2-container-section .left-col {
  position: relative;
  overflow: hidden;
  width: 94%;
  margin: 0 3%;
  min-height: 1px;
}
.col2-container-section .right-col {
  position: relative;
  overflow: hidden;
  width: 94%;
  margin: 0 3%;
}
.col2-container-section .press-posts .roi-post {
  width: 98%;
  height: auto;
  margin: 10px 1%;
  float: left;
  padding: 0;
  overflow: hidden;
  background: #f7f7f7;
}
.col2-container-section .press-posts .roi-post .inner {
  padding: 5px;
  overflow: hidden;
}
.col2-container-section .press-posts .roi-post .inner a {
  display: block;
}
.col2-container-section .press-posts .roi-post .inner a img {
  width: 100%;
  height: auto;
}
.col2-container-section .press-posts .a-post {
  position: relative;
  overflow: hidden;
  padding: 0 50px 25px 0;
  margin-bottom: 30px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #1b1b1b;
  border-bottom: solid 1px #e1e1e1;
}
.col2-container-section .press-posts .a-post .tags {
  position: relative;
  margin-bottom: 5px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #c626b6;
  line-height: 1.4em;
}
.col2-container-section .press-posts .a-post .tags a {
  color: #c626b6;
}
.col2-container-section .press-posts .a-post .tags span.date,
.col2-container-section .press-posts .a-post .tags span.author {
  color: #7b7b7b;
}
.col2-container-section .press-posts .a-post .tags span.divider {
  position: relative;
  height: 3px;
  top: -3px;
}
.col2-container-section .press-posts .a-post .title {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #1b1b1b;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.col2-container-section .press-posts .a-post .title a {
  color: #1b1b1b;
}
.loading-indicator {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 122px;
  height: 33px;
  line-height: 17px;
  margin: 0 auto;
  padding: 16px 0 0 26px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #7b7b7b;
  letter-spacing: 1px;
  /*background: url(../images/loading-icon-2x.png) no-repeat left 16px;
	.background-size(122px, auto);*/
}
.loading-indicator.press {
  text-align: center;
  width: 100%;
  margin: 30px 0;
  padding: 0;
  height: auto;
  line-height: inherit;
  display: block;
}
#post-roll-external-link {
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 33px;
  line-height: 17px;
  margin: 0 auto;
  padding: 16px 0 0 26px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #7b7b7b;
  letter-spacing: 1px;
}
#post-roll-external-link a {
  color: #c626b6;
}
.recommended-reading-section {
  position: relative;
  overflow: hidden;
  display: none;
  width: 100%;
  margin-bottom: 48px;
}
.recommended-reading-section .title {
  margin: 0 0 16px 0 !important;
  font-family: 'Museo-Sans-900', sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
}
.recommended-reading-section .title a {
  color: #1b1b1b;
}
.recommended-reading-section .a-reading {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.4em;
  background: url(../images/reading-icon-2x.png) no-repeat left top;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
}
/* POST ROLE SINGLE PAGE */
.post-single-section {
  padding-top: 42px;
  background: white;
}
.post-single-section .text-profile {
  position: relative;
  overflow: hidden;
  padding: 0 0 26px 0;
  margin-bottom: 26px;
  border-bottom: solid 1px #e1e1e1;
}
.post-single-section .text-profile .tags {
  position: relative;
  margin-bottom: 10px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #7b7b7b;
}
.post-single-section .text-profile .tags a {
  color: #7b7b7b;
}
.post-single-section .text-profile .tags span {
  position: relative;
  height: 3px;
  top: -3px;
}
.post-single-section .text-profile .profile-name {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #1b1b1b;
  line-height: 1.1em;
  margin-bottom: 12px;
}
.post-single-section .text-profile .title {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4em;
  color: #1b1b1b;
  margin-bottom: 15px;
}
.post-single-section .text-profile .title .divider {
  position: relative;
  height: 3px;
  top: -3px;
}
.post-single-section .text-profile .title a {
  color: #1b1b1b;
}
.post-single-section .top-control-bar {
  height: 66px;
  padding-top: 36px;
}
.post-single-section .prev-post {
  position: relative;
  float: left;
  width: 28px;
  height: 28px;
  margin-top: 91px;
  cursor: pointer;
  border: solid 2px #C626B6;
  background: url(../images/arrow-back-2x.png) no-repeat center -2px;
  background-size: 30px auto;
}
.post-single-section .next-post {
  position: relative;
  float: right;
  width: 28px;
  height: 28px;
  margin-top: 91px;
  cursor: pointer;
  border: solid 2px #C626B6;
  background: url(../images/arrow-submit-2x.png) no-repeat center -2px;
  background-size: 30px auto;
}
.post-single-section .prev-post:hover,
.post-single-section .next-post:hover {
  background-color: #c626b6;
  background-position: center -32px !important;
  color: #ffffff;
}
.post-single-section-2 {
  padding-bottom: 0;
}
.post-single-section-2 .center {
  padding-bottom: 92px;
  border-bottom: solid 1px #e1e1e1;
}
.post-single-section-2 .rail-center .tags {
  border-bottom: solid 1px #e1e1e1;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.post-single-section-2 .rail-center .other-posts {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.post-single-section-2 .rail-center .other-posts .another-post {
  position: relative;
  overflow: hidden;
  width: 50%;
  float: left;
  padding: 0;
  margin-bottom: 10px;
}
.post-single-section-2 .rail-center .other-posts .another-post a {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 10px;
  display: block;
  font-size: 16px;
  color: #1b1b1b;
  line-height: 1.2em;
}
.post-single-section-2 .rail-center .other-posts .another-post a span {
  display: block;
}
.post-single-section-2 .rail-center .other-posts .another-post a span.author {
  font-size: 13px;
  color: #7a7a7a;
}
/* HOME PAGE */
#content.home .top-hero-photo {
  padding-top: 56.3%;
  height: auto;
}
#content.home .top-hero-photo #home-hero-vid {
  position: relative;
  height: auto;
  padding-top: 56.3%;
}
#content.home .top-hero-photo #home-hero-vid iframe,
#content.home .top-hero-photo #home-hero-vid video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#content.home .top-hero-photo .large-title {
  position: absolute;
  top: 37%;
}
#content.home .top-hero-photo .large-title a {
  color: #c626b6;
  border-bottom: 1px solid #c626b6;
}
#content.home .top-hero-photo .audio-icon {
  position: absolute;
  display: none;
  width: 44px;
  height: 44px;
  top: 78px;
  left: 50%;
  cursor: pointer;
  margin-left: -19px;
  background: url(../images/home-audio-icon-2x.png) no-repeat 0 -44px;
  -webkit-background-size: 44px auto;
  -moz-background-size: 44px auto;
  background-size: 44px auto;
}
#content.home .top-hero-photo .audio-icon.mute {
  background-position: 0 0;
}
#content.home .top-hero-photo .arrow-down {
  position: absolute;
  display: none;
  width: 16px;
  height: 37px;
  bottom: 15px;
  left: 50%;
  margin-left: -8px;
  background: url(../images/home-down-arrow-2x.png) no-repeat;
  -webkit-background-size: 16px auto;
  -moz-background-size: 16px auto;
  background-size: 16px auto;
  cursor: pointer;
}
#content.home .home-title-section {
  line-height: 1em;
  padding-bottom: 30px;
  z-index: 1000;
  font-size: 26px;
}
#content.home .home-title-section > li {
  display: inline-block;
  vertical-align: top;
}
#content.home .home-title-section > li .selected {
  padding-right: 16px;
  background: url(../images/arrow-up-down-2x.png) no-repeat right -14px;
  -webkit-background-size: 10px auto;
  -moz-background-size: 10px auto;
  background-size: 10px auto;
  color: #c626b6;
  cursor: pointer;
}
#content.home .home-title-section > li > ul {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 15px;
  left: 10px;
  z-index: 1000;
  height: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#content.home .home-title-section > li > ul > li {
  color: #c626b6;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.4em;
}
#content.home .home-title-section > li > ul .not-available {
  color: #7b7b7b;
  cursor: default;
}
#content.home .home-title-section > li:hover > ul {
  display: block;
  height: 100px;
}
#content.home .rail-left,
#content.home .rail-right {
  position: relative;
  width: 90%;
  float: none;
  margin: 0 5%;
}
#content.home .rail-left .uni-related,
#content.home .rail-right .uni-related {
  position: relative;
  overflow: hidden;
  width: auto;
  max-width: 464px;
  min-height: 115px;
  margin: 0 auto 30px auto;
}
#content.home .rail-left .uni-related .feat-image,
#content.home .rail-right .uni-related .feat-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  left: auto;
  top: auto;
}
#content.home .rail-left .uni-related .feat-image .inner:before,
#content.home .rail-right .uni-related .feat-image .inner:before {
  content: "";
  display: block;
  padding-top: 99.99%;
}
#content.home .rail-left .uni-related .feat-image img,
#content.home .rail-right .uni-related .feat-image img {
  width: auto;
  height: auto;
}
#content.home .rail-left .uni-related .text,
#content.home .rail-right .uni-related .text {
  position: relative;
  overflow: hidden;
  height: auto;
  max-height: none;
  padding: 18px 10px 18px 16px;
  background: #ffffff;
}
#content.home .rail-left {
  /*margin-bottom: 45px;*/
}
#content.home .rail-center {
  position: relative;
  width: 90%;
  max-width: 464px;
  margin: 0 auto 30px;
  float: none;
}
#content.home .rail-right {
  padding-top: 0;
}
#content.home .home-beat-section {
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  padding-top: 42px;
}
#content.home .home-beat-section .more-icon {
  display: none;
  position: relative;
  overflow: hidden;
  width: 58px;
  margin: 0 auto 40px auto;
  padding-bottom: 46px;
  text-align: center;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #c626b6;
  cursor: pointer;
  background: url(../images/pink-down-arrow-2x.png) no-repeat center bottom;
  -webkit-background-size: 14px auto;
  -moz-background-size: 14px auto;
  background-size: 14px auto;
}
#content.home .home-beat-section .beat-rail-wrap {
  display: none;
}
#content.home .home-featured-media {
  position: relative;
  overflow: hidden;
  /*margin-bottom: 50px;*/
  border-top: solid 5px #c626b6;
}
#content.home .home-featured-media .featured-image {
  position: relative;
  overflow: hidden;
}
#content.home .home-featured-media .featured-image img {
  display: block;
}
#content.home .home-featured-media .feat-image {
  display: block;
}
#content.home .home-featured-media .feat-image .inner:before {
  content: "";
  display: block;
  padding-top: 99.99%;
}
#content.home .home-featured-media .text-section {
  position: relative;
  overflow: hidden;
  padding: 24px 38px 38px 22px;
  border-bottom: solid 5px #c626b6;
  background: #ffffff;
}
#content.home .home-featured-media .text-section .title {
  margin-bottom: 14px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 1.4em;
  color: #1b1b1b;
}
#content.home .home-featured-media .text-section .title a {
  color: #1b1b1b;
}
#content.home .home-featured-media .text-section .excerpt {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 1.7em;
  color: #1b1b1b;
}
#content.home .growth-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 50px 0 50px 0;
  text-align: center;
}
#content.home .growth-section .growth-title {
  position: relative;
  margin-bottom: 40px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 46px;
  color: #1b1b1b;
  line-height: 1.1em;
  padding: 0 10px;
}
#content.home .growth-section .graph-sections {
  position: relative;
  overflow: hidden;
  text-align: center;
}
#content.home .growth-section .graph-sections #inview-trigger {
  position: absolute;
  top: 50%;
  height: 230px;
  margin-top: -130px;
}
#content.home .growth-section .graph-sections .a-part {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 15px;
}
#content.home .growth-section .graph-sections .a-part .graph {
  position: relative;
  overflow: hidden;
  width: 244px;
  height: 210px;
  margin: 0 auto 38px auto;
  line-height: 210px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  color: #c626b6;
}
#content.home .growth-section .graph-sections .a-part .text {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  color: #1b1b1b;
  line-height: 1.2em;
}
#content.home .growth-section .graph-sections .part-1 .graph {
  width: 190px;
  height: 210px;
  padding-top: 20px;
}
#content.home .growth-section .graph-sections .part-1 .graph #myChart1 {
  margin: 0 auto;
}
#content.home .growth-section .graph-sections .part-1 .number {
  position: absolute;
  overflow: hidden;
  width: 200px;
  height: 200px;
  top: 0;
  line-height: 232px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  color: #c626b6;
  text-align: center;
}
#content.home .growth-section .graph-sections .part-2 .graph {
  overflow: hidden;
  width: 188px;
  height: 210px;
  border-bottom: solid 3px #c626b6;
}
#content.home .growth-section .graph-sections .part-2 .graph #the-bar {
  position: absolute;
  display: block;
  bottom: -66px;
  width: 188px;
  height: 66px;
  background: url(../images/home-chart-bar.png) no-repeat;
  -webkit-transition: bottom 0.5s ease-in-out;
  -moz-transition: bottom 0.5s ease-in-out;
  -ms-transition: bottom 0.5s ease-in-out;
  -o-transition: bottom 0.5s ease-in-out;
  transition: bottom 0.5s ease-in-out;
}
#content.home .growth-section .graph-sections .part-2 .graph #the-bar.open {
  bottom: 0;
}
#content.home .growth-section .graph-sections .part-3 .graph {
  background: url(../images/circle_main.png) no-repeat center center;
  font-size: 50px;
}
#content.home .growth-section .graph-sections .part-3 .graph #move-circle-1 {
  position: absolute;
  display: block;
  width: 40px;
  height: 41px;
  left: 60px;
  bottom: 39px;
  background: url(../images/circle_small_1.png) no-repeat;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#content.home .growth-section .graph-sections .part-3 .graph #move-circle-1.open {
  left: 30px;
  bottom: 16px;
}
#content.home .growth-section .graph-sections .part-3 .graph #move-circle-2 {
  position: absolute;
  display: block;
  width: 53px;
  height: 53px;
  right: 70px;
  top: 29px;
  background: url(../images/circle_small_2.png) no-repeat;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#content.home .growth-section .graph-sections .part-3 .graph #move-circle-2.open {
  right: 50px;
  top: 23px;
}
#content.home .business-growth-section {
  background: #f7f7f7;
  padding-bottom: 30px;
}
.home-circles {
  position: relative;
  width: 100%;
  margin: 0 auto 66px auto;
  text-align: center;
}
.home-circles .a-circle {
  position: relative;
  display: block;
  width: 251px;
  height: 251px;
  margin: 0 auto 10px auto;
}
.home-circles .a-circle img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
  /* Webkit for Chrome and Safari */
  -webkit-transform: scale(1, 1);
  -webkit-transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  /* Webkit for Mozila Firefox */
  -moz-transform: scale(1, 1);
  -moz-transition-duration: 200ms;
  -moz-transition-timing-function: ease-out;
  /* Webkit for IE( Version: 11, 10 ) */
  -ms-transform: scale(1, 1);
  -ms-transition-duration: 200ms;
  -ms-transition-timing-function: ease-out;
}
.home-circles .a-circle .text {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
  width: 251px;
  height: 251px;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 2;
}
.home-circles .a-circle .text .main {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  color: #ffffff;
}
.home-circles .a-circle .text .sub {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #ffffff;
}
.home-circles .a-circle:hover img {
  /* Webkit for Chrome and Safari */
  -webkit-transform: scale(1.1, 1.1);
  -webkit-transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  /* Webkit for Mozila Firefox */
  -moz-transform: scale(1.1, 1.1);
  -moz-transition-duration: 200ms;
  -moz-transition-timing-function: ease-out;
  /* Webkit for IE( Version: 11, 10 ) */
  -ms-transform: scale(1.1, 1.1);
  -ms-transition-duration: 200ms;
  -ms-transition-timing-function: ease-out;
}
.hispanic-insights-form-section {
  position: relative;
  width: 100%;
  padding: 0 28px;
}
.hispanic-insights-form-section .gfield_label {
  position: relative;
  display: block;
  width: 100%;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  color: #1b1b1b;
  margin: 0 0 30px 0 !important;
  text-align: center;
}
.hispanic-insights-form-section .gfield_label .gfield_required {
  display: none;
}
.hispanic-insights-form-section #field_18_1 {
  position: relative;
  width: 100%;
  height: 37px;
}
.hispanic-insights-form-section #field_18_1 label {
  position: absolute;
  top: 6px;
  text-align: left;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
  z-index: 100;
}
.hispanic-insights-form-section #field_18_1 .ginput_container {
  position: relative;
  z-index: 99;
}
.hispanic-insights-form-section #field_18_1 .ginput_container input[type=text] {
  position: relative;
  display: block;
  width: 100%;
  height: 37px;
  margin: 0;
  padding: 0;
  line-height: 37px;
  background: #f7f7f7;
  border: none;
  border-bottom: solid 1px #c626b6;
  outline: none;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.hispanic-insights-form-section .gform_footer {
  margin: 0;
  padding: 19px 0 0 0;
}
.hispanic-insights-form-section .gform_footer input[type=submit] {
  position: relative;
  display: block;
  float: right;
  width: 100px;
  height: 35px;
  line-height: 35px;
  border: none;
  outline: none;
  background: #ffffff;
  -moz-border-radius: 0;
  border-radius: 0;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #c626b6;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.hispanic-insights-form-section .gform_footer input[type=submit]:hover {
  background: #c626b6;
  color: #ffffff;
}
/* CONTACT PAGE */
.form-page-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: solid 1px #e1e1e1;
}
.form-page-wrapper .special-formatted {
  width: 94%;
  margin: 0 3% 10px 3%;
}
.form-page-wrapper .special-formatted2 {
  width: 94%;
  margin: 0 3%;
  padding: 15px 0 0 0;
}
.form-page-wrapper .special-formatted2 p {
  padding: 0 10px;
}
.grey-form-wrap {
  position: relative;
  overflow: hidden;
  width: 94%;
  margin: 0 3% 100px 3%;
  padding: 30px 30px 50px 30px;
  background: #f7f7f7;
}
.grey-form-wrap #gform_19,
.grey-form-wrap .gform_body,
.grey-form-wrap #gform_fields_19,
.grey-form-wrap #gform_17,
.grey-form-wrap #gform_fields_17,
.grey-form-wrap #gform_24,
.grey-form-wrap #gform_fields_24 {
  position: relative;
  width: 100%;
}
.grey-form-wrap #gform_19,
.grey-form-wrap #gform_17,
.grey-form-wrap #gform_24 {
  margin: 0 auto;
}
.grey-form-wrap #gform_17 {
  text-align: left;
}
.grey-form-wrap #gform_17 .gform_body {
  overflow: hidden;
}
.grey-form-wrap #gform_24 .gform_fields li {
  width: 100%;
}
.grey-form-wrap #gform_24 .gform_footer {
  clear: both;
}
.grey-form-wrap #gform_24 .gform_footer input[type=submit] {
  width: auto;
  margin-top: 5px;
}
.grey-form-wrap .grey-form-title {
  position: relative;
  text-align: center;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  color: #1b1b1b;
  margin-bottom: 28px;
}
.grey-form-wrap .white-wrap {
  background: #ffffff;
  padding: 17px 0 0 0;
}
.grey-form-wrap .white-wrap #gform_wrapper_19 {
  margin: 0 auto;
  padding-left: 14px;
}
.grey-form-wrap .gfield_required {
  color: #7b7b7b !important;
}
.grey-form-wrap .gform_footer {
  margin-top: 0;
  padding-top: 0;
}
.grey-form-wrap input[type=submit] {
  position: relative;
  overflow: hidden;
  width: 107px;
  height: 35px;
  padding: 0 30px 0 5px !important;
  margin-bottom: 21px;
  border: solid 2px #c626b6;
  outline: none;
  text-align: center;
  background: #ffffff url(../images/arrow-submit-2x.png) no-repeat right -1px;
  -webkit-background-size: 35px auto;
  -moz-background-size: 35px auto;
  background-size: 35px auto;
  cursor: pointer;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.grey-form-wrap .login-resiter-button {
  margin-left: 15px;
}
.grey-form-wrap .gform_fields li {
  position: relative;
  width: 50%;
  float: left;
  clear: none !important;
  margin-bottom: 10px;
  height: 35px;
  line-height: 35px;
}
.grey-form-wrap .gform_fields li .gfield_label {
  position: absolute;
  padding-left: 12px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 99;
}
.grey-form-wrap .gform_fields li .ginput_container {
  z-index: 98;
  width: 95%;
}
.grey-form-wrap .gform_fields li .ginput_container input[type=text],
.grey-form-wrap .gform_fields li .ginput_container input[type=password] {
  position: relative;
  width: 100%;
  height: 35px;
  padding-left: 12px;
  padding-right: 37px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.grey-form-wrap .gform_fields #field_19_10 .ginput_container,
.grey-form-wrap .gform_fields #field_19_5 .ginput_container,
.grey-form-wrap .gform_fields #field_19_11 .ginput_container {
  position: relative;
  height: 35px;
  padding-left: 12px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7 url(../images/select-arrow-down-2x.png) no-repeat right center;
  -webkit-background-size: 19px auto;
  -moz-background-size: 19px auto;
  background-size: 19px auto;
}
.grey-form-wrap .gform_fields #field_19_10 .ginput_container select,
.grey-form-wrap .gform_fields #field_19_5 .ginput_container select,
.grey-form-wrap .gform_fields #field_19_11 .ginput_container select {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none;
  background-color: transparent;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 35px;
  color: #7b7b7b;
  outline: none;
}
.grey-form-wrap .gform_fields #field_19_10 .gfield_required,
.grey-form-wrap .gform_fields #field_19_5 .gfield_required,
.grey-form-wrap .gform_fields #field_19_11 .gfield_required {
  display: none;
}
.grey-form-wrap .gform_fields #field_19_6,
.grey-form-wrap .gform_fields #field_17_10 {
  position: relative;
  width: 100% !important;
  height: 169px;
}
.grey-form-wrap .gform_fields #field_19_6 textarea,
.grey-form-wrap .gform_fields #field_17_10 textarea {
  position: relative;
  width: 100%;
  height: 169px;
  padding: 12px 37px 12px 12px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6em;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7;
  resize: none;
}
.grey-form-wrap .gform_fields #field_17_10 textarea {
  background: #ffffff;
  height: 80px;
}
.grey-form-wrap .gform_fields #field_19_7 {
  width: 100% !important;
  padding-top: 2px;
}
.grey-form-wrap .gform_fields #field_19_7 label {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  padding-left: 22px;
  cursor: pointer;
}
.grey-form-wrap .gform_fields #field_19_7 li {
  width: 100%;
  background: url(../images/email-checkbox-2x.png) no-repeat left 10px;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
}
.grey-form-wrap .gform_fields #field_19_7 li input[type=checkbox] {
  display: none;
}
.grey-form-wrap .gform_fields #field_19_7 li input[type=checkbox] {
  display: none;
}
.grey-form-wrap .gform_fields #field_19_7 li.checked {
  background: url(../images/email-checkbox-2x.png) no-repeat left -60px;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
}
.page-template-template-hidden_page-php .top-hero-photo {
  height: auto;
  padding-top: 41%;
}
@media only screen and (min-width: 820px) {
  .page-template-template-hidden_page-php .top-hero-photo {
    height: auto;
    padding-top: 31%;
  }
}
.grey-form-wrap-hidden-page .validation_error {
  display: block !important;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Museo-Sans-400', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #c626b6;
}
.grey-form-wrap-hidden-page h2 {
  text-align: center;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #1b1b1b;
  margin-bottom: 20px;
}
.grey-form-wrap-hidden-page .ginput_container {
  background: #FFF;
}
.grey-form-wrap-hidden-page .ginput_container input {
  background: transparent !important;
}
.grey-form-wrap-hidden-page .gform_body,
.grey-form-wrap-hidden-page .gform_footer {
  width: 100% !important;
  margin: 0 auto;
  overflow: hidden;
}
.grey-form-wrap-hidden-page .gform_fields {
  overflow: hidden;
}
.grey-form-wrap-hidden-page .gform_fields li {
  width: 100%;
  clear: both;
  margin-bottom: 15px !important;
}
.grey-form-wrap-hidden-page .gform_fields li .validation_message {
  display: none !important;
}
.grey-form-wrap-hidden-page .gform_fields li.gfield_error .ginput_container {
  border: 2px solid #c626b6;
}
#portfolio-filter .grey-form-wrap {
  padding-left: 5%;
}
#portfolio-filter .grey-form-wrap #gform_17 #field_17_10 {
  height: 80px;
}
#portfolio-filter .grey-form-wrap input[type=submit] {
  right: 5%;
}
.gform_ajax_spinner {
  width: 0;
  height: 0;
  position: absolute;
}
/* LOGIN PAGE */
.lwa form {
  width: 94%;
  margin: 0 3%;
}
.lwa form input[type=text],
.lwa form input[type=password] {
  position: relative;
  width: 100%;
  height: 35px;
  padding-left: 12px;
  padding-right: 37px;
  margin-bottom: 10px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.lwa form input[type=password],
.lwa form #login-username-email {
  margin-bottom: 20px;
}
.lwa form .drop-arrow-wrap {
  position: relative;
  width: 100%;
  height: 35px;
  padding-left: 12px;
  margin-bottom: 20px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7 url(../images/select-arrow-down-2x.png) no-repeat right center;
  -webkit-background-size: 19px auto;
  -moz-background-size: 19px auto;
  background-size: 19px auto;
}
.lwa form .drop-arrow-wrap select {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0 !important;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  background-color: transparent;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 35px;
  color: #7b7b7b;
}
.lwa form .drop-arrow-wrap select option {
  outline: none;
}
.lwa form input[type=submit],
.lwa form .login-resiter-button {
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 35px;
  line-height: 35px;
  padding: 0 30px 0 5px !important;
  margin-bottom: 21px;
  border: solid 2px #c626b6;
  outline: none;
  text-align: center;
  background: url(../images/arrow-submit-2x.png) no-repeat 83px -1px;
  -webkit-background-size: 35px auto;
  -moz-background-size: 35px auto;
  background-size: 35px auto;
  cursor: pointer;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.lwa form input[type=submit]:hover,
.lwa form .login-resiter-button:hover {
  background-color: #c626b6;
  color: #ffffff;
  background-position: 83px -36px;
}
.lwa form input[type=submit].lwa-button-remember,
.lwa form .login-resiter-button.lwa-button-remember {
  width: 240px;
  background-position-x: 205px;
}
.lwa form .lwa-links-cancel {
  font-family: 'Museo-Sans-700', sans-serif;
  font-size: small;
  color: #7b7b7b;
  margin-left: 10px;
  margin-top: 10px;
  display: inline-block;
}
.lwa form .lwa-register-tip {
  font-family: 'Museo-Sans-700', sans-serif;
  font-size: small;
  color: #7b7b7b;
}
.lwa form .lwa-status {
  font-family: 'Museo-Sans-700', sans-serif;
  font-size: small;
}
#login-form.reset-form input[type=submit] {
  width: 215px;
  background-position: 171px center;
}
.grey-back-btn {
  position: relative;
  display: inline-block;
  padding-top: 10px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #7b7b7b;
}
/*  SINGLE PROPERTY */
.prop-header {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
}
.prop-header .platform {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.prop-header .platform a {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #c626b6;
}
.prop-header .platform .divider {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #1b1b1b;
}
.prop-header .the-title {
  position: relative;
  overflow: hidden;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  color: #1b1b1b;
  margin-bottom: 10px;
}
.formtxtlarge {
  position: relative;
  text-align: center;
  padding: 40px 20px 0 20px;
  margin-bottom: 40px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  color: #1b1b1b;
  line-height: 1.25em;
  overflow: hidden;
}
.formtxtlarge .txtsmall {
  display: block;
  font-size: 16px;
  line-height: 1em;
  padding-top: 30px;
}
.formtxtlarge a {
  color: #c626b6;
}
.formtxtlarge.no-top {
  padding-top: 0;
}
/* PROPERTY: MARKET BOX */
.market-box-wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.market-box-wrap .market-box {
  position: relative;
  background: #f7f7f7;
  padding: 27px;
  text-align: center;
}
.market-box-wrap .market-box .grey-form-wrap {
  position: relative;
  overflow: hidden;
  width: auto;
  margin: 0;
  padding: 0;
}
.market-box-wrap .market-box .grey-form-wrap #gform_wrapper_17 {
  width: 634px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 46px 0;
}
.market-box-wrap .market-box .grey-form-wrap input[type=submit] {
  overflow: hidden;
  height: 35px;
  padding: 0 !important;
  border: solid 2px #c626b6;
  outline: none;
  text-align: left;
  text-indent: 11px;
  background: url(../images/arrow-submit-2x.png) no-repeat right -1px;
  -webkit-background-size: 35px auto;
  -moz-background-size: 35px auto;
  background-size: 35px auto;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.market-box-wrap .market-box .grey-form-wrap input[type=submit]:hover {
  background-color: #c626b6;
  background-position: right -37px;
  color: #ffffff;
}
.market-box-wrap .market-box .grey-form-wrap .gform_fields li .ginput_container input[type=text] {
  background: #ffffff;
}
.market-box-wrap .market-box .ad-form-wrap {
  position: relative;
  max-width: 634px;
}
.market-box-wrap .market-box .grey-form-wrap-advertise {
  background: #ffffff;
}
.market-box-wrap .market-box .grey-form-wrap-advertise #gform_wrapper_17 {
  padding: 0;
}
.market-box-wrap .market-box .grey-form-wrap-advertise .gform_fields li .ginput_container input[type=text] {
  background: #f7f7f7;
  vertical-align: top;
}
.market-box-wrap .market-box .grey-form-wrap-advertise .gform_fields #field_17_10 {
  display: none;
}
.market-box-wrap .market-box .grey-form-wrap-advertise input[type=submit] {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
}
.market-box-wrap .market-box .grey-form-wrap-advertise #gform_confirmation_message_17 {
  width: 100%;
  padding: 20px 10px 20px 10px;
}
.market-box-wrap .market-box .market-buttons-advertise {
  position: relative;
  display: none;
  overflow: hidden;
  width: 88%;
  margin: 0 auto;
  padding-right: 10px;
  padding-bottom: 15px;
}
.market-box-wrap .market-box .market-buttons-advertise .view-props {
  margin-bottom: 10px;
}
.market-box-wrap .market-box .market-buttons-advertise a,
.market-box-wrap .market-box .market-buttons-advertise button {
  display: block;
}
.market-box-wrap .market-box #gform_17 {
  width: 100% !important;
  margin: 0 !important;
}
.market-box-wrap .market-box #gform_17 .gform_body,
.market-box-wrap .market-box #gform_17 #gform_fields_17 {
  width: 100% !important;
}
.market-box-wrap .market-box > h2 {
  margin-bottom: 15px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
}
.market-box-wrap .market-box .inner {
  position: relative;
  background: #fff;
  padding: 35px 20px;
}
.market-box-wrap .market-box .inner .panel1 button {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  color: #c626b6;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  font-size: 24px;
  outline-style: none;
}
.market-box-wrap .market-box ul.panels {
  position: relative;
  display: block;
}
.market-box-wrap .market-box ul.panels li.panel {
  position: relative;
  display: none;
  font-size: 20px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
}
.market-box-wrap .market-box ul.panels li.panel button.pink {
  font-size: 20px;
}
.market-box-wrap .market-box ul.panels li.panel .formtxtlarge {
  font-size: 19px;
}
.market-box-wrap .market-box ul.panels li.panel .formtxtlarge .txtsmall {
  font-size: 15px;
}
.market-box-wrap .market-box ul.panels li.panel .formatted {
  line-height: 1em;
  margin-bottom: 25px;
}
.market-box-wrap .market-box ul.panels li.panel .error {
  color: #c626b6;
  font-size: 12px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 10px;
}
.market-box-wrap .market-box ul.panels li.panel:first-child {
  display: block;
  line-height: 1.6em;
}
.market-box-wrap .market-box .panel-actions {
  position: relative;
  display: none;
  overflow: hidden;
  padding-top: 7px;
}
.market-box-wrap .market-box .panel-actions .panel-pagination {
  position: relative;
  width: 35px;
  height: 35px;
  border: #c626b6 2px solid;
}
.market-box-wrap .market-box .panel-actions .panel-pagination .pagination-txt {
  text-transform: uppercase;
  font-size: 11px;
  color: #7b7b7b;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  top: 7px;
}
.market-box-wrap .market-box .panel-actions .panel-pagination.back {
  float: left;
  background: url(../images/arrow-back-2x.png) no-repeat center -2px;
  -webkit-background-size: 35px auto;
  -moz-background-size: 35px auto;
  background-size: 35px auto;
}
.market-box-wrap .market-box .panel-actions .panel-pagination.back .pagination-txt {
  left: 40px;
}
.market-box-wrap .market-box .panel-actions .panel-pagination.next {
  float: right;
  background: url(../images/arrow-submit-2x.png) no-repeat center -2px;
  -webkit-background-size: 35px auto;
  -moz-background-size: 35px auto;
  background-size: 35px auto;
}
.market-box-wrap .market-box .panel-actions .panel-pagination.next .pagination-txt {
  right: 40px;
}
.market-box-wrap .market-box .re-filter {
  margin-bottom: 55px;
}
.market-box-wrap .market-box .advanced-filters {
  position: absolute;
  display: none;
  width: 100%;
  height: 69px;
  bottom: 0;
  left: 0;
}
.market-box-wrap .market-box .advanced-filters .txt {
  position: relative;
  display: block;
  float: left;
  padding-left: 40px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 69px;
  color: #1b1b1b;
  text-transform: uppercase;
}
.market-box-wrap .market-box .advanced-filters .adv-options {
  position: relative;
  float: right;
  padding-top: 17px;
  padding-right: 40px;
}
.market-box-wrap .progress {
  position: relative;
  background: #fafafa;
}
.market-box-wrap .progress .bar {
  width: 0;
  background: #c626b6;
  height: 4px;
  /*.transition(all, 0.2s, ease-in-out)*/
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* PROPERTY: MARKET SELECT BOX */
.market-select-wrap {
  position: relative;
  max-width: 271px;
  height: 35px;
  margin: 0 auto;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 50;
  text-align: left;
}
.market-select-wrap .market-select {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  background: #fff;
  border: #c626b6 2px solid;
  color: #1b1b1b;
  cursor: pointer;
  line-height: 35px;
}
.market-select-wrap .market-select .label {
  display: block;
  height: 35px;
  text-transform: uppercase;
  background: #ffffff;
  padding: 0 16px;
  color: #1b1b1b;
  font-size: 14px;
}
.market-select-wrap .market-select .dd-arrow {
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 14px;
  height: 13px;
  background: url(../images/market-select-dd.png) no-repeat top center;
  z-index: 2;
}
.market-select-wrap .market-select ul.options {
  position: relative;
  display: none;
  max-height: 251px;
  padding: 17px;
  background: #ffffff;
  overflow: auto;
  color: #7b7b7b;
  font-size: 14px;
}
.market-select-wrap .market-select ul.options li {
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding-left: 24px;
  line-height: 20px;
  /*ul.sub.opened {
					display:block;
				}*/
}
.market-select-wrap .market-select ul.options li .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 12px;
  background: url(../images/email-checkbox-2x.png) no-repeat 0 0;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
  *display: inline;
  *zoom: 1;
}
.market-select-wrap .market-select ul.options li .checkbox.checked {
  background-position: bottom left;
}
.market-select-wrap .market-select ul.options li .sub-icon {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 10px;
  height: 5px;
  margin-left: 5px;
  background: url(../images/market-sub-dd.png) no-repeat top right;
  *display: inline;
  *zoom: 1;
}
.market-select-wrap .market-select ul.options li .sub-icon.opened {
  background-position: bottom right;
}
.market-select-wrap .market-select ul.options li ul.sub {
  position: relative;
  display: none;
  padding: 12px 0;
}
.market-select-wrap .market-select ul.options li ul.sub li {
  padding-right: 5px;
}
.market-select-wrap .market-select ul.options li.action {
  color: #1b1b1b;
  text-transform: uppercase;
  font-size: 11px;
}
.market-select-wrap .market-select ul.options li.action span.del {
  position: relative;
  padding-right: 5px;
  font-size: 8px;
}
.market-select-wrap .market-select.open .label {
  background: #c626b6;
  color: #ffffff;
}
.market-select-wrap .market-select.open .dd-arrow {
  height: 12px;
  background-position: bottom center;
}
.market-select-wrap .market-select.open ul.options {
  display: block;
}
/* ADVERTISE: MARKET BUTTONS */
.market-buttons a,
.market-buttons button {
  display: block;
  height: 35px;
  padding: 0 16px;
  background: #ffffff;
  border: #c626b6 2px solid;
  text-align: center;
  text-transform: uppercase;
  color: #1b1b1b;
  font-size: 14px;
  cursor: pointer;
  outline-style: none;
  line-height: 32px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 auto 5px auto;
}
.market-buttons a.selected,
.market-buttons button.selected {
  color: #ffffff;
  background: #c626b6;
}
/* LOCAL TV: REACH / MAP */
#localtv-black-box {
  position: relative;
  margin-bottom: 45px;
}
#localtv-black-box .section-title {
  position: absolute;
  top: 50px;
  left: 0;
  padding: 0 !important;
  color: #ffffff;
}
.no-black-box #localtv-black-box {
  margin-bottom: 0;
  padding: 0;
  height: 55px;
  background: #FFF;
}
.no-black-box .top-control-bar .breadcrumbs a {
  color: #2b2b2b !important;
}
.no-black-box .top-control-bar .breadcrumbs a:hover {
  color: #c626b6 !important;
}
#localtv-black-box.no-black-box {
  background: #fff !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  height: 55px !important;
}
#localtv-reach {
  position: relative;
}
#localtv-reach #reach-map {
  position: relative;
  width: 100%;
  height: 383px;
}
#localtv-market {
  padding-bottom: 70px;
}
.map-pin-bubble-link {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #c626b6;
}
.map-pin-bubble-link strong {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
}
/* LOCAL TV: MARKET BOX */
#localtv-market .market-box-wrap {
  width: 94%;
  margin: 0 3% 20px 3%;
}
#localtv-market .market-select-wrap {
  margin-top: 15px;
}
body.page-template-template-portfolio-php .rail-wrap {
  padding-bottom: 0;
}
body.page-template-template-radio-php .rail-wrap {
  padding-top: 50px;
}
/* PROPERTY FITLER */
#portfolio-filter {
  position: relative;
  width: 94%;
  margin: 0 3% 38px;
}
#portfolio-filter .market-box-wrap .progress .bar {
  height: 6px;
}
#portfolio-filter .market-box-wrap .market-box {
  padding: 27px 0 0;
  background: #ffffff;
}
#portfolio-filter .market-box-wrap .market-box ul.tabs {
  position: relative;
  text-align: center;
  font-size: 14px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  z-index: 200;
}
#portfolio-filter .market-box-wrap .market-box ul.tabs li.tab {
  position: relative;
  top: 6px;
  float: right;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  /*width: 238px;*/
  width: 48%;
  height: 37px;
  margin: 0 auto;
  padding: 0 30px;
  background: #c626b6;
  /*line-height:37px;*/
  line-height: 12px;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  padding-top: 6px;
  font-size: 11px;
}
#portfolio-filter .market-box-wrap .market-box ul.tabs li.tab:first-child {
  float: left;
  margin-left: 0;
}
#portfolio-filter .market-box-wrap .market-box ul.tabs li.active {
  background: #fafafa;
  color: #1b1b1b;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels {
  position: relative;
  display: block;
  background: #fafafa;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.tab-panel {
  position: relative;
  display: none;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.tab-panel:first-child {
  display: block;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel {
  padding: 65px 75px;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel1 {
  padding: 120px 25px;
  line-height: 1.6em;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel2,
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel3,
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel4 {
  padding: 65px 35px;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 {
  padding: 65px 25px 10px 25px;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .clear-all,
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 #filter-start-over {
  position: absolute;
  top: -25px;
  right: 0;
  display: block;
  z-index: 50;
  text-align: right;
  color: #7e7e7e;
  font-size: 11px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 a.clear-all {
  top: 20px;
  right: 113px;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 a#filter-start-over {
  top: 20px;
  right: 20px;
  padding-left: 12px;
  background: url(../images/start-over.png) no-repeat left;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .formatted {
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  line-height: 1.1em;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .formatted em {
  display: inline-block;
  font-style: normal;
  font-size: 16px;
  padding-top: 12px;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .market-select-wrap {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 220px;
  margin-bottom: 20px;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .market-select-wrap:first-child {
  margin-left: 0;
}
#portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .panel-actions {
  display: none !important;
}
#portfolio-filter .market-box-wrap .market-box .inner {
  background: #f7f7f7;
  border-top: #c626b6 6px solid;
  padding: 0;
}
#portfolio-filter .market-box-wrap .market-box .panel-actions {
  padding: 0 30px 15px;
}
/* PROPERTY ROLL */
#property-roll {
  overflow: hidden;
}
#property-roll .property {
  position: relative;
  width: 300px;
  height: 208px;
  background: #f7f7f7;
  margin: 0 auto 24px auto;
  padding: 12px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
}
#property-roll .property .logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 271px;
  height: 124px;
  margin: 0 auto 14px auto;
  border: solid 1px #f2f2f2;
}
#property-roll .property .logo img {
  position: relative;
  display: block;
  width: 269px;
  height: 122px;
}
#property-roll .property .title {
  display: block;
  margin-bottom: 4px;
  color: #c626b6;
  padding: 0 5px;
}
#property-roll .property .platform {
  display: block;
  color: #7b7b7b;
  padding: 0 5px;
}
#property-roll .property .platform a {
  color: #7b7b7b;
}
#property-roll .property.first {
  margin-left: 0;
}
#property-search {
  position: relative;
  overflow: hidden;
  margin: 0 auto 20px auto;
  width: 300px;
}
#property-search input {
  position: relative;
  display: block;
  overflow: hidden;
  width: 300px;
  height: 35px;
  line-height: 35px;
  border: none;
  outline: none;
  background: #f7f7f7 url(../images/search-icon-2x.png) no-repeat right;
  -webkit-background-size: 37px auto;
  -moz-background-size: 37px auto;
  background-size: 37px auto;
  padding: 0 37px 0 20px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #7b7b7b;
}
#search-status {
  position: relative;
  display: none;
  overflow: hidden;
  margin: 0 0 38px 0;
  text-align: center;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  color: #1b1b1b;
}
#search-status #search-terms {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #c626b6;
}
#search-status a {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 19px;
  background: url(../images/nav-search-close.png) no-repeat 0 -17px;
}
#search-status a:hover {
  background-position: 0 -77px;
}
#filter-status {
  position: relative;
  margin: 0 0 38px 0;
  text-align: center;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  color: #1b1b1b;
}
.no-properties {
  position: relative;
  overflow: hidden;
  text-align: center;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  color: #1b1b1b;
  padding: 40px 0;
}
.rail-wrap {
  padding-bottom: 50px;
}
#content.media-property .visit-website,
#content.media-property .download-facts {
  position: relative;
  display: block;
  padding-left: 23px;
  margin-bottom: 11px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 15px;
  color: #1b1b1b;
  background: url(../images/property-dl-link-1-2x.png) no-repeat left;
  -webkit-background-size: 23px auto;
  -moz-background-size: 23px auto;
  background-size: 23px auto;
}
#content.media-property .download-facts {
  background: url(../images/property-dl-link-2-2x.png) no-repeat left;
  -webkit-background-size: 23px auto;
  -moz-background-size: 23px auto;
  background-size: 23px auto;
}
#content.media-property .side-rail {
  padding-top: 10px;
}
#content.media-property .the-beat-section .side-rail {
  padding-top: 0 !important;
}
#content.media-property .rail-right .ready {
  position: relative;
  font-family: 'Museo-Sans-900', sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
  margin-bottom: 7px;
  line-height: 1.3em;
}
#content.media-property .rail-right .ready-extra {
  position: relative;
  overflow: hidden;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #1b1b1b;
  margin-bottom: 10px;
  line-height: 1.7em;
}
#content.media-property .rail-right #expand-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 35px;
  margin-bottom: 20px;
  border: solid 2px #c626b6;
  cursor: pointer;
  background: url(../images/form-arrow-2x.png) no-repeat 0 0;
  -webkit-background-size: 32px auto;
  -moz-background-size: 32px auto;
  background-size: 32px auto;
}
#content.media-property .rail-right #expand-icon.open {
  background-position: 0 -33px;
}
#content.media-property .rail-right #expand-form {
  display: none;
}
#content.media-property .rail-right #expand-form .gform_confirmation_message_19 {
  padding: 8px 0 0 0 !important;
}
#content.media-property .rail-right .gform_wrapper {
  position: relative;
  display: block;
  margin: 0 !important;
}
#content.media-property .rail-right .gform_wrapper .gform_footer {
  margin: 0;
  padding: 10px 0 0 0;
}
#content.media-property .rail-right .gform_wrapper .gform_footer input[type=submit] {
  position: relative;
  overflow: hidden;
  width: 107px;
  height: 35px;
  padding: 0 30px 0 5px !important;
  margin-bottom: 21px;
  border: solid 2px #c626b6;
  outline: none;
  text-align: center;
  background: url(../images/arrow-submit-2x.png) no-repeat 65px -2px;
  -webkit-background-size: 35px auto;
  -moz-background-size: 35px auto;
  background-size: 35px auto;
  cursor: pointer;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
#content.media-property .rail-right .gform_wrapper .gform_fields li {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
#content.media-property .rail-right .gform_wrapper .gform_fields li .gfield_label {
  position: absolute;
  padding-left: 12px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 99;
  height: 35px;
  line-height: 35px;
}
#content.media-property .rail-right .gform_wrapper .gform_fields li .ginput_container {
  z-index: 98;
  width: 95%;
}
#content.media-property .rail-right .gform_wrapper .gform_fields li .ginput_container input[type=text] {
  position: relative;
  width: 100%;
  height: 35px;
  padding-left: 12px;
  padding-right: 37px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
#content.media-property .rail-right .gform_wrapper .gform_fields li .gfield_required {
  color: #7b7b7b !important;
}
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_10 .ginput_container,
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_5 .ginput_container,
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_11 .ginput_container {
  position: relative;
  height: 35px;
  padding-left: 12px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7 url(../images/select-arrow-down-2x.png) no-repeat right center;
  -webkit-background-size: 19px auto;
  -moz-background-size: 19px auto;
  background-size: 19px auto;
}
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_10 .ginput_container select,
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_5 .ginput_container select,
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_11 .ginput_container select {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0 !important;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  background-color: transparent;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 35px;
  color: #7b7b7b;
}
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_10 .gfield_required,
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_5 .gfield_required,
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_11 .gfield_required {
  display: none;
}
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_7 {
  display: none;
}
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_6 {
  height: 115px;
}
#content.media-property .rail-right .gform_wrapper .gform_fields #field_19_6 textarea {
  position: relative;
  width: 100%;
  height: 115px;
  padding: 12px 37px 12px 12px;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6em;
  color: #7b7b7b;
  z-index: 9;
  border: none;
  outline: none;
  background: #f7f7f7;
  resize: none;
}
/* THE BEAT MEDIA BOX */
#the-beat-uni-gallery {
  position: relative;
  width: 300px;
  margin: 0 auto;
}
#the-beat-uni-gallery #mobile-prev,
#the-beat-uni-gallery #mobile-next {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 188px;
  cursor: pointer;
  border: solid 2px #c626b6;
  text-align: left;
  text-indent: -9999px;
  z-index: 999;
  background: url(../images/scroll-arrows.png) no-repeat center 0;
}
#the-beat-uni-gallery #mobile-prev {
  left: 50%;
  margin-left: -35px;
}
#the-beat-uni-gallery #mobile-next {
  left: 50%;
  margin-left: 7px;
  background-position: center -24px;
}
#the-beat-uni-gallery .top-content .main-media-wrap {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 168px;
}
#the-beat-uni-gallery .top-content .main-media-wrap #main-media-target {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 168px;
}
#the-beat-uni-gallery .top-content .main-media-wrap #main-media-target img {
  position: relative;
  display: block;
  width: 300px;
  height: 168px;
}
#the-beat-uni-gallery .top-content .main-media-wrap #main-media-target iframe {
  width: 300px;
  height: 168px;
}
#the-beat-uni-gallery .top-content .main-media-wrap .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/overlay-slice.png) repeat;
}
#the-beat-uni-gallery .top-content .main-media-wrap .overlay .play-btn-wrap {
  position: absolute;
  display: block;
  width: 75px;
  height: 35px;
  top: 69px;
  left: 50%;
  margin-left: -37px;
  background: url(../images/play-overlay.png) repeat;
}
#the-beat-uni-gallery .top-content .main-media-wrap .overlay .play-btn {
  position: relative;
  display: block;
  width: 75px;
  height: 35px;
  line-height: 32px;
  padding-right: 16px;
  border: solid 2px #c626b6;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  text-align: center;
  background: url(../images/read-more-arrow-2x.png) no-repeat right;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
  cursor: pointer;
}
#the-beat-uni-gallery .top-content .thumb-sidebar {
  position: relative;
  display: none;
  float: left;
  width: 247px;
  height: 351px;
  background: #000000;
  z-index: 99;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #thumbs-up {
  position: absolute;
  width: 25px;
  height: 25px;
  top: -9px;
  left: 50%;
  margin-left: -12px;
  border: solid 2px #c626b6;
  background: url(../images/form-arrow-copy-2x.png) -5px -37px;
  -webkit-background-size: 31px auto;
  -moz-background-size: 31px auto;
  background-size: 31px auto;
  cursor: pointer;
  z-index: 999;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #thumbs-up.inactive {
  background-position: -5px -99px;
  border: solid 2px #7b7b7b;
  cursor: default;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #thumbs-down {
  position: absolute;
  width: 25px;
  height: 25px;
  bottom: -9px;
  left: 50%;
  margin-left: -12px;
  border: solid 2px #c626b6;
  background: url(../images/form-arrow-copy-2x.png) -5px -5px;
  -webkit-background-size: 31px auto;
  -moz-background-size: 31px auto;
  background-size: 31px auto;
  cursor: pointer;
  z-index: 999;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #thumbs-down.inactive {
  background-position: -5px -66px;
  border: solid 2px #7b7b7b;
  cursor: default;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs {
  position: relative;
  overflow: hidden;
  height: 303px;
  margin-top: 30px;
  z-index: 99;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb {
  position: relative;
  overflow: hidden;
  width: 146px;
  height: 85px;
  margin: 16px auto;
  padding: 2px;
  border: solid 2px #000000;
  cursor: pointer;
  -webkit-transition: border 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out;
  -ms-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb img {
  position: relative;
  display: block;
  width: 138px;
  height: 77px;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb .the-case-study,
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb .the-title,
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb .the-description,
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb .the-read-more {
  display: none;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb:hover {
  border: solid 2px #c626b6;
}
#the-beat-uni-gallery .top-content .thumb-sidebar #the-thumbs .a-thumb.active {
  border: solid 2px #c626b6;
}
#the-beat-uni-gallery .bottom-content {
  position: relative;
  overflow: hidden;
  z-index: 99;
  padding: 70px 10px 0 10px;
}
#the-beat-uni-gallery .bottom-content #media-post-type {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #7b7b7b !important;
  margin-bottom: 15px;
}
#the-beat-uni-gallery .bottom-content #media-title {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  color: #f2f2f2 !important;
  margin-bottom: 10px;
}
#the-beat-uni-gallery .bottom-content #media-excerpt {
  position: relative;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.7em;
  color: #f2f2f2 !important;
  margin-bottom: 10px;
}
#the-beat-uni-gallery .bottom-content a {
  color: #c626b6 !important;
}
#the-beat-uni-gallery .bottom-content a.learn-more {
  color: #FFF;
  border-bottom: 1px solid #FFF;
  text-decoration: none;
}
#the-beat-uni-gallery .bottom-content #media-readmore {
  position: relative;
  display: block;
  overflow: hidden;
  clear: both;
  float: left;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #c626b6 !important;
  padding-right: 15px;
  background: url(../images/link-arrow-2x.png) no-repeat right -13px;
  -webkit-background-size: 12px auto;
  -moz-background-size: 12px auto;
  background-size: 12px auto;
}
/* SINGLE BEAT ITEM */
#the-beat-single-item {
  position: relative;
  overflow: hidden;
}
#the-beat-single-item #single-media-target {
  position: relative;
  width: 626px;
  height: 351px;
  margin: 0 auto 38px auto;
}
#the-beat-single-item #single-media-target img {
  position: relative;
  display: block;
  width: 626px;
  height: 351px;
}
#the-beat-single-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/overlay-slice.png) repeat;
}
#the-beat-single-item .overlay .play-btn {
  position: absolute;
  display: block;
  width: 75px;
  height: 35px;
  top: 166px;
  left: 50%;
  margin-left: -37px;
  line-height: 32px;
  padding-right: 16px;
  border: solid 2px #c626b6;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #c626b6;
  text-align: center;
  background: url(../images/read-more-arrow-2x.png) no-repeat right;
  -webkit-background-size: 18px auto;
  -moz-background-size: 18px auto;
  background-size: 18px auto;
  cursor: pointer;
}
/* REPORTS PAGE */
#content.reports .rail-left,
#content.reports .rail-right {
  padding-top: 46px;
}
#content.reports .show-me {
  position: relative;
  padding: 42px 0;
  font-family: 'Museo-Sans-300', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  padding-left: 28px;
  color: #1b1b1b;
}
#content.reports .show-me strong {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
}
#content.reports .right-col {
  padding-top: 105px;
}
#content.reports .right-col.no-padding {
  padding-top: 0;
}
#content.reports .reports-group-search {
  padding-top: 96px;
}
#content.reports .reports-group {
  position: relative;
  overflow: hidden;
}
#content.reports .reports-group .reports-title {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #1b1b1b;
  margin-bottom: 28px;
  margin-top: 28px;
  padding-left: 28px;
}
#content.reports .reports-group .a-report {
  position: relative;
  overflow: hidden;
  padding: 18px 30px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
}
#content.reports .reports-group .a-report .part-left {
  position: relative;
  float: none;
  width: 100%;
}
#content.reports .reports-group .a-report .part-left a {
  color: #1b1b1b;
}
#content.reports .reports-group .a-report .part-left a:hover {
  color: #c626b6;
}
#content.reports .reports-group .a-report .part-right {
  position: relative;
  float: none;
  width: 100%;
  margin-top: 10px;
}
#content.reports .reports-group .a-report .part-right a {
  display: inline-block;
  color: #1b1b1b;
  padding-right: 37px;
  background: url(../images/media-kit-icon-2x.png) no-repeat right 1px;
  -webkit-background-size: auto 22px;
  -moz-background-size: auto 22px;
  background-size: auto 22px;
}
#content.reports .reports-group .a-report .part-right a:hover {
  color: #c626b6;
  background-position: right -10px;
}
#content.reports .reports-group .a-report:nth-child(even) {
  background: #f7f7f7;
}
#content.reports .press-downloads {
  padding-bottom: 30px;
}
#content.reports .press-downloads .reports-group .a-report {
  position: relative;
  overflow: hidden;
  padding: 18px 30px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #7b7b7b;
}
#content.reports .press-downloads .reports-group .a-report .part-left {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  float: none;
  width: 100%;
  color: #1b1b1b;
}
#content.reports .press-downloads .reports-group .a-report .part-left a {
  color: #1b1b1b;
}
#content.reports .press-downloads .reports-group .a-report .part-left a:hover {
  color: #c626b6;
}
#content.reports .press-downloads .reports-group .a-report .part-right {
  position: relative;
  float: none;
  width: 100%;
  margin-top: 10px;
}
#content.reports .press-downloads .reports-group .a-report .part-right p {
  margin-bottom: 10px;
}
#content.reports .press-downloads .reports-group .a-report .part-right a {
  display: inline;
  height: auto;
  color: #c626b6;
  padding-right: 37px;
  font-size: 12px;
  background: none !important;
}
.col2-container-section .filter-top > li > ul#year-opt {
  right: auto;
  left: 0;
}
.investor-menu-section {
  position: relative;
  width: 100%;
  height: 35px;
  margin: 0 auto;
  background: #FFF;
  border: #C626B6 2px solid;
  color: #1B1B1B;
  cursor: pointer;
  line-height: 35px;
}
.investor-menu-section .mobile-text {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 31px;
  line-height: 31px;
  padding-left: 15px;
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
}
.investor-menu-section .mobile-text .target-arrow {
  position: absolute;
  top: 8px;
  right: 10px;
  display: block;
  width: 14px;
  height: 12px;
  background: url(../images/market-select-dd.png) no-repeat top center;
  z-index: 2;
}
.investor-menu-section .mobile-text.active {
  background: #c626b6;
  color: #ffffff;
}
.investor-menu-section .mobile-text.active .target-arrow {
  background-position: bottom center;
}
.investor-menu-section .rail-title {
  position: relative;
  display: none;
  font-family: 'Museo-Sans-900', sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
  margin-bottom: 10px;
}
.investor-menu-section .links {
  position: absolute;
  display: none;
  width: 101.2%;
  top: 31px;
  left: -2px;
  background: #ffffff;
  border: solid 2px #c626b6;
  padding: 20px 15px;
}
.investor-menu-section .links li {
  position: relative;
  margin-bottom: 14px;
  line-height: 1em;
}
.investor-menu-section .links li a {
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
}
.investor-menu-section .links li .logout {
  padding-right: 22px;
  background: url(../images/logout-link-2x.png) no-repeat right;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
}
.investor-menu-section .links li .children {
  margin-left: 15px;
  margin-top: 14px;
  padding-left: 10px;
  border-left: solid 1px #c626b6;
}
.investor-menu-section .links li .children a {
  font-size: 12px;
}
.investor-menu-section .links li.current_page_item > a {
  color: #c626b6 !important;
}
.investor-menu-section .links .page_item_has_children .children {
  display: none;
}
.investor-menu-section .links .current_page_item .children,
.investor-menu-section .links .current_page_parent .children {
  display: block;
}
.green-uni-cta {
  position: relative;
  overflow: hidden;
  display: none;
  width: 100%;
  height: auto;
  background: url(../images/green-cta.jpg) no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.green-uni-cta .inner:before {
  content: "";
  display: block;
  padding-top: 99.99%;
}
.green-uni-cta .inside {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  padding: 28px 0 0 33px;
}
.green-uni-cta .inside .text {
  position: relative;
  display: block;
  font-family: 'Museo-Sans-i300', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  color: #ffffff;
  line-height: 1.1em;
  margin-bottom: 18px;
}
.green-uni-cta .inside .text strong {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.green-uni-cta .inside .arrow {
  position: relative;
  display: block;
  width: 14px;
  height: 11px;
  background: url(../images/green-cta-arrow.png) no-repeat;
}
.green-uni-cta.hv-insights {
  margin-top: 0;
  margin-bottom: 40px;
}
.green-uni-cta.hv-insights .inner:before {
  padding-top: 75%;
}
.green-uni-cta.hv-insights .inside .text {
  font-size: 23px;
}
/* RECOMMENDED READING */
.rec-reading-container {
  position: relative;
  overflow: hidden;
  width: 626px;
  margin: 0 auto;
}
.rec-reading-container .a-reading {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 18px 30px;
}
.rec-reading-container .a-reading .part-left {
  position: relative;
  overflow: hidden;
  float: left;
  width: 275px;
}
.rec-reading-container .a-reading .part-left .title {
  position: relative;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 1.3em;
  color: #1b1b1b;
  margin-bottom: 10px;
}
.rec-reading-container .a-reading .part-left .link {
  position: relative;
  display: block;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #7b7b7b;
}
.rec-reading-container .a-reading .part-right {
  position: relative;
  overflow: hidden;
  float: right;
  width: 120px;
}
.rec-reading-container .a-reading .part-right a {
  position: relative;
  display: block;
  padding-top: 1px;
  padding-left: 23px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #1b1b1b;
  background: url(../images/visit-website-icon-2x.png) no-repeat left 0;
  -webkit-background-size: 15px auto;
  -moz-background-size: 15px auto;
  background-size: 15px auto;
}
.rec-reading-container .a-reading .part-right a:hover {
  color: #c626b6;
  background-position: left -15px;
}
.rec-reading-container .a-reading.grey {
  background: #f7f7f7;
}
#content.sec .rail-center {
  margin-top: 40px;
}
body.single-leader .the-beat-section-2 .rail-center,
body.single-post .the-beat-section-2 .rail-center,
body.single-leader .the-beat-section-2 .rail-right,
body.single-post .the-beat-section-2 .rail-right {
  max-width: 464px;
  margin: 0 auto;
}
body.single-leader .exec-manage-section #most-popular-slider .an-item .item-title {
  font-size: 18px;
}
#content.advertise .rail-left,
#content.advertise .rail-right {
  display: none;
}
#content.advertise .rail-center {
  width: 86%;
  margin: 0 8%;
}
body.page-template-template-login-php .white-wrap {
  overflow: hidden;
  padding: 17px 15px 17px 15px;
}
.formatted .responsive-vimeo {
  width: 100%;
  height: auto;
}
.formatted .responsive-vimeo .inner {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.4%;
}
.formatted .responsive-vimeo .inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.search-results,
.search-results-sidebar {
  padding-top: 0 !important;
}
/* Hide Breadcrumbs on Hispanic Research */
.category-hispanic-research .breadcrumbs a:first-child {
  display: none;
}
.category-hispanic-research .breadcrumbs .bcsep:nth-of-type(1) {
  display: none;
}
.empowerment-featured-media {
  width: 90%;
  height: auto;
  max-width: 740px;
  margin: 0 auto;
}
.empowerment-featured-media .inner.video {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56%;
}
.empowerment-featured-media .inner.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.empowerment-featured-media .inner.image {
  position: relative;
  width: 100%;
  height: auto;
}
.empowerment-featured-media .inner.image img {
  width: 100%;
  height: auto;
}
.empowerment-landing .top-control-bar {
  height: 110px;
}
.empowerment-landing #localtv-black-box {
  padding-bottom: 0;
}
.empowerment-landing #the-beat-single-item #single-media-target {
  width: 90%;
  height: auto;
  margin: 10px auto 60px auto;
  text-align: center;
  max-width: 626px;
}
.empowerment-landing #the-beat-single-item #single-media-target img {
  width: 100%;
  height: auto;
}
.empowerment-landing #the-beat-single-item #single-media-target.video {
  padding-top: 32.3%;
  position: relative;
}
@media (max-width: 840px) {
  .empowerment-landing #the-beat-single-item #single-media-target.video {
    padding-top: 50%;
  }
}
.empowerment-landing #the-beat-single-item #single-media-target.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.empowerment-landing #the-beat-single-item #single-media-target.video .overlay {
  display: none;
}
@media (min-width: 1118px) {
  .empowerment-landing .rail-center {
    width: 75%;
    margin: 0 5% 0 0;
    z-index: 99;
  }
}
.empowerment-landing .home-circles {
  margin: 60px auto;
}
@media (min-width: 1118px) {
  .empowerment-landing .home-circles {
    height: 300px;
  }
}
.empowerment-landing .home-circles h2 {
  font-family: 'Museo-Sans-700', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #1b1b1b;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.empowerment-landing .home-circles .a-circle .text .main {
  margin: 0 auto;
  max-width: 220px;
}
.empowerment-landing .empowerment-stats-grid {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 30px;
}
.empowerment-landing .empowerment-stats-grid .stat {
  display: block;
  width: 16%;
  margin: 2%;
  float: left;
  height: auto;
  text-align: center;
}
@media (max-width: 930px) {
  .empowerment-landing .empowerment-stats-grid .stat {
    width: 46%;
  }
  .empowerment-landing .empowerment-stats-grid .stat:nth-of-type(odd) {
    clear: left;
  }
  .empowerment-landing .empowerment-stats-grid .stat:nth-of-type(5) {
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.empowerment-landing .empowerment-stats-grid .stat .number-container {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.empowerment-landing .empowerment-stats-grid .stat .number-container .inner {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 100%;
}
.empowerment-landing .empowerment-stats-grid .stat .number-container .inner .number-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 36px;
  font-family: 'Museo-Sans-700', sans-serif;
  color: #c626b6;
}
.empowerment-landing .empowerment-stats-grid .stat .number-container .inner .number-wrap span {
  display: inline;
}
.empowerment-landing .empowerment-stats-grid .stat .stat-label {
  font-family: 'Museo-Sans-300', sans-serif;
  font-size: 12px;
  line-height: 16px;
  display: block;
  max-width: 150px;
  margin: 0 auto;
}
.empowerment-landing .empowerment-stats-grid .stat a {
  display: block;
  font-family: 'Museo-Sans-500', sans-serif;
  font-size: 14px;
  color: #c626b6;
  margin-top: 10px;
}
.empowerment-landing .empowerment-landing-links {
  display: block;
  margin: 20px 0 40px 0;
  text-align: center;
  clear: both;
}
.empowerment-landing .empowerment-landing-links a {
  display: inline-block;
  margin: 10px;
  font-family: 'Museo-Sans-500', sans-serif;
  font-size: 14px;
  color: #7a7a7a;
  border-bottom: 1px solid #7a7a7a;
  text-decoration: none;
}
.empowerment-landing .empowerment-platforms {
  width: 100%;
  height: auto;
  overflow: hidden;
  max-width: 920px;
  margin: 20px auto 50px auto;
}
.empowerment-landing .empowerment-platforms .platform {
  width: 50%;
  float: left;
  height: auto;
  overflow: hidden;
}
@media (max-width: 600px) {
  .empowerment-landing .empowerment-platforms .platform {
    width: 100%;
  }
}
.empowerment-landing .empowerment-platforms .platform a {
  display: block;
  padding: 10px;
}
.empowerment-landing .empowerment-platforms .platform a img {
  width: 100%;
  height: auto;
}
.empowerment-platform-landing .top-control-bar {
  height: 110px;
}
.empowerment-platform-landing #localtv-black-box {
  padding-bottom: 0;
}
.empowerment-platform-landing #the-beat-single-item #single-media-target {
  width: 90%;
  height: auto;
  margin: 10px auto 60px auto;
  text-align: center;
  max-width: 626px;
}
.empowerment-platform-landing #the-beat-single-item #single-media-target img {
  width: 100%;
  height: auto;
}
.empowerment-platform-landing #the-beat-single-item #single-media-target.video {
  padding-top: 32.3%;
  position: relative;
}
@media (max-width: 840px) {
  .empowerment-platform-landing #the-beat-single-item #single-media-target.video {
    padding-top: 50%;
  }
}
.empowerment-platform-landing #the-beat-single-item #single-media-target.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.empowerment-platform-landing #the-beat-single-item #single-media-target.video .overlay {
  display: none;
}
.empowerment-platform-landing .platform-links-sidebar {
  width: 100%;
  height: auto;
  margin: 30px 0;
}
.empowerment-platform-landing .platform-links-sidebar a {
  display: block;
}
.empowerment-platform-landing .platform-links-sidebar a img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.empowerment-platform-landing .platform-links-sidebar a img.desktop {
  display: block;
}
@media (max-width: 768px) {
  .empowerment-platform-landing .platform-links-sidebar a img.desktop {
    display: none;
  }
}
.empowerment-platform-landing .platform-links-sidebar a img.mobile {
  display: none;
}
@media (max-width: 768px) {
  .empowerment-platform-landing .platform-links-sidebar a img.mobile {
    display: block;
  }
}
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
@media only screen and (min-width: 481px) {
  .rail-left {
    position: relative;
    width: 74%;
    margin: 0 13%;
  }
  .rail-center {
    position: relative;
    overflow: hidden;
    width: 74%;
    z-index: 99;
    padding: 0;
    margin: 0 13%;
  }
  .no-black-box .rail-center {
    padding-top: 30px;
  }
  .rail-right {
    position: relative;
    width: 66%;
    margin: 0 13%;
    padding-top: 25px;
  }
  body.page-template-template-advertise-php .rail-center {
    width: 56% !important;
    margin: 0 auto !important;
    float: none;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tabs li.tab {
    float: none;
    font-size: 14px;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tabs li.tab:first-child {
    float: none;
  }
  body.single-leader .the-beat-section-2 .rail-center,
  body.single-post .the-beat-section-2 .rail-center {
    width: 100%;
  }
  .col2-container-section .filter-top > li > ul {
    right: 0;
  }
  .col2-container-section .filter-top.hr > li.hr-label-mobile {
    display: inline-block;
    position: static;
    top: 0;
  }
  .col2-container-section .filter-top.hr > li > ul {
    z-index: 99;
  }
  .loading-indicator.press {
    text-align: left;
  }
  .exec-manage-section #most-popular-slider .owl-item {
    height: 141px;
  }
  .exec-manage-section #most-popular-slider .an-item {
    height: 170px;
  }
  .exec-manage-section #most-popular-slider .an-item .text {
    height: 104px;
  }
  .market-box-wrap .market-box .grey-form-wrap input[type=submit] {
    position: absolute;
    bottom: -54px;
    right: -204px;
  }
  .market-box-wrap .market-box .grey-form-wrap-advertise input[type=submit] {
    bottom: 10px;
    right: 5%;
  }
}
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 600px) {
  .grey-form-wrap #gform_19,
  .grey-form-wrap .gform_body,
  .grey-form-wrap #gform_fields_19 {
    width: 488px;
  }
  .grey-form-wrap #gform_17,
  .grey-form-wrap #gform_fields_17 {
    width: 450px;
  }
  .grey-form-wrap .gform_fields #field_19_10 .ginput_container,
  .grey-form-wrap .gform_fields #field_17_10 .ginput_container {
    width: 97%;
  }
  body.page-template-template-portfolio-php .grey-form-wrap #gform_19,
  body.page-template-template-portfolio-php .grey-form-wrap .gform_body,
  body.page-template-template-portfolio-php .grey-form-wrap #gform_fields_19 {
    width: 665px;
  }
  #header {
    position: absolute;
  }
  .top-hero-photo .large-title {
    font-size: 48px;
  }
  #content.home .rail-left,
  #content.home .rail-right {
    width: 100%;
    margin: 0;
  }
  #content.home .home-title-section {
    font-size: 40px;
    padding-bottom: 42px;
  }
  #content.home .top-hero-photo .large-title {
    top: 40%;
    font-size: 48px;
  }
  #content.home .top-hero-photo .audio-icon {
    display: block;
  }
  #content.home .top-hero-photo .arrow-down {
    display: block;
  }
  #content.home .home-beat-section .more-icon {
    display: none;
  }
  #content.home .home-featured-media .text-section .title {
    font-family: 'Museo-Sans-500', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 28px;
    line-height: 1.25em;
  }
  #content.home .uni-related .text {
    min-height: 140px;
  }
  /* CONTACT PAGE */
  .form-page-wrapper .special-formatted {
    width: 600px;
    margin: 0 auto 10px auto;
  }
  .form-page-wrapper .special-formatted2 {
    width: 600px;
    margin: 0 auto;
  }
  /* ADVERTISE: MARKET BUTTONS */
  .market-buttons a,
  .market-buttons button {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 0 5px 0;
  }
  /* PROPERTY FITLER */
  #portfolio-filter .grey-form-wrap {
    padding-left: 0;
  }
  #portfolio-filter .grey-form-wrap input[type=submit] {
    right: 13px;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tabs li.tab {
    width: auto;
    margin: 0 0 0 10px;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 {
    background: url(../images/advanced-filter-bg.png) repeat-x bottom left;
    padding: 65px 15px;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .formatted em {
    display: inline;
    padding-top: 0;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .market-select-wrap {
    width: 160px;
    margin-left: 20px;
  }
  #portfolio-filter .market-box-wrap .market-box .advanced-filters {
    display: block;
  }
  /* THE BEAT MEDIA BOX */
  #the-beat-uni-gallery {
    width: 506px;
  }
  #the-beat-uni-gallery #mobile-prev,
  #the-beat-uni-gallery #mobile-next {
    top: 130px;
  }
  #the-beat-uni-gallery #mobile-prev {
    left: -40px;
    margin-left: 0;
  }
  #the-beat-uni-gallery #mobile-next {
    right: -40px;
    left: auto;
    margin-left: 0;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap {
    width: 506px;
    height: 284px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap #main-media-target {
    width: 506px;
    height: 284px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap #main-media-target img {
    width: 506px;
    height: 284px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap #main-media-target iframe {
    width: 506px;
    height: 284px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap .overlay .play-btn-wrap {
    top: 126px;
  }
  #the-beat-uni-gallery .bottom-content {
    padding: 26px 60px 0 26px;
  }
  .market-box-wrap .market-box .grey-form-wrap-advertise input[type=submit] {
    right: 12px;
  }
  .col2-container-section .left-col {
    width: 75%;
  }
  .market-box-wrap .market-box .panel-actions .panel-pagination:hover {
    background-color: #c626b6;
    background-position: center -37px;
  }
  /* REPORTS PAGE */
  #content.reports .reports-group .a-report .part-left {
    position: relative;
    float: left;
    width: 197px;
  }
  #content.reports .reports-group .a-report .part-right {
    position: relative;
    float: right;
    width: 300px;
    margin-top: 0;
  }
  #content.reports .press-downloads .reports-group .a-report .part-left {
    font-family: 'Museo-Sans-500', sans-serif;
    font-weight: 500;
    font-style: normal;
    position: relative;
    float: left;
    width: 40%;
  }
  #content.reports .press-downloads .reports-group .a-report .part-right {
    position: relative;
    float: right;
    width: 60%;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  /*********************
LAYOUT & GRID STYLES
*********************/
  .rail-center {
    /*overflow: hidden; FIX ME */
    float: left;
    width: 50%;
    z-index: 99;
    padding: 0;
    margin: 0 0 0 13%;
  }
  .no-black-box .rail-center {
    padding-top: 30px;
  }
  .rail-right {
    position: relative;
    float: right;
    width: 22%;
    margin-right: 13%;
    margin-left: 2%;
    padding-top: 0;
  }
  .top-control-bar .social {
    display: block;
  }
  body.page-template-template-localtv-php .rail-right {
    display: none;
  }
  body.page-template-template-localtv-php .rail-center {
    width: 70%;
    margin: 0 15%;
  }
  body.page-template-template-advertise-php .rail-center {
    width: 56% !important;
    margin: 0 auto !important;
    float: none;
  }
  /*********************
PAGE STYLES
*********************/
  .top-hero-photo {
    position: relative;
    width: 100%;
    height: 429px;
    padding-top: 185px;
  }
  .top-hero-photo .large-title {
    position: relative;
    text-align: center;
    width: 100%;
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 76px;
    color: #FFF;
  }
  .top-hero-photo #home-hero-vid {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 500px;
    top: 0;
    left: 0;
  }
  .top-hero-photo #home-hero-vid iframe,
  .top-hero-photo #home-hero-vid video {
    height: 500px;
    width: 100%;
  }
  .top-hero-photo.no-hero {
    height: 130px;
    padding-top: 130px;
    background: #f7f7f7;
  }
  #content.home .top-hero-photo {
    height: auto;
  }
  #content.home .top-hero-photo .arrow-down {
    bottom: 65px;
  }
  #content {
    padding-bottom: 350px;
  }
  .the-beat-section .rail-center {
    width: 70% !important;
    max-width: none;
    z-index: 99;
  }
  #content.media-property .left-rail-links .visit-website,
  #content.media-property .left-rail-links .download-facts {
    float: left;
    margin-right: 15px;
  }
  /*********************
HEADER STYLES
*********************/
  #globalHeaderBanner {
    font-size: 20px;
  }
  #globalHeaderBanner span {
    background-position: 100% -13px;
  }
  #globalHeaderBanner:hover span {
    background-position: 100% -63px;
  }
  #header {
    top: 32px;
    width: 94%;
    left: 3%;
  }
  #header #menu-btn {
    width: 128px;
    background-position: right -1px;
  }
  #header #menu-btn .fake-a {
    width: 128px;
  }
  #header #menu-btn .mobile-hide {
    display: inline;
  }
  #header #menu-btn .hide-mobile {
    display: none;
  }
  #header #menu-btn:hover {
    /*background: @pink url(../images/menu-lines.png) no-repeat right -61px;*/
    background-color: #c626b6;
    background-position: 80px -61px;
    color: #ffffff;
  }
  #header .main-nav-wrap {
    height: 0;
    background: #f7f7f7;
    padding-top: 0;
    padding-left: 0;
    -moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  }
  #header .main-nav-wrap .column {
    position: relative;
    overflow: hidden;
    float: left;
    height: 705px;
    padding-top: 42px;
    border-left: solid 1px #e4e1e1;
  }
  #header .main-nav-wrap .column:first-child {
    border: none;
  }
  #header .main-nav-wrap .column .col-title {
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    color: #1b1b1b;
    margin-bottom: 15px;
    padding-left: 0;
    line-height: 1em;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #header .main-nav-wrap .column .col-title span {
    display: none;
  }
  #header .main-nav-wrap .column .col-title:hover {
    color: #c626b6;
  }
  #header .main-nav-wrap .column .menu {
    position: relative;
    display: block;
    line-height: 1.1em;
    text-transform: none;
  }
  #header .main-nav-wrap .column .menu > li {
    position: relative;
    padding-left: 0;
  }
  #header .main-nav-wrap .column .menu > li a {
    position: relative;
    display: block;
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    color: #6d6d6d;
    padding-bottom: 14px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #header .main-nav-wrap .column .menu > li a:hover {
    color: #c626b6;
  }
  #header .main-nav-wrap .column .menu > li .sub-menu {
    position: relative;
  }
  #header .main-nav-wrap .column .menu > li .sub-menu li {
    position: relative;
    padding-left: 15px;
  }
  #header .main-nav-wrap .column .menu > li .sub-menu li a {
    position: relative;
    display: block;
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    color: #9e9e9e;
    padding-bottom: 14px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #header .main-nav-wrap .column .menu > li .sub-menu li a:hover {
    color: #c626b6;
  }
  #header .main-nav-wrap .column1,
  #header .main-nav-wrap .column5 {
    width: 21%;
    padding: 42px 2% 0 2%;
  }
  #header .main-nav-wrap .column2,
  #header .main-nav-wrap .column4 {
    width: 21%;
    padding: 42px 3% 0 3%;
  }
  #header .main-nav-wrap .column2 .press-item,
  #header .main-nav-wrap .column4 .press-item {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
  }
  #header .main-nav-wrap .column2 .press-item .image,
  #header .main-nav-wrap .column4 .press-item .image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  #header .main-nav-wrap .column2 .press-item .image .inner:before,
  #header .main-nav-wrap .column4 .press-item .image .inner:before {
    content: "";
    display: block;
    padding-top: 99.99%;
  }
  #header .main-nav-wrap .column2 .press-item .press-title,
  #header .main-nav-wrap .column4 .press-item .press-title {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    color: #6d6d6d;
    line-height: 1.4em;
    text-transform: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #header .main-nav-wrap .column2 .press-item .press-title:hover,
  #header .main-nav-wrap .column4 .press-item .press-title:hover {
    color: #c626b6;
  }
  #header .main-nav-wrap .column2 .press-item .view-all,
  #header .main-nav-wrap .column4 .press-item .view-all {
    position: relative;
    display: block;
    float: left;
    clear: both;
    padding-right: 12px;
    background: url(../images/link-arrow-2x.png) no-repeat right 1px;
    -webkit-background-size: 12px auto;
    -moz-background-size: 12px auto;
    background-size: 12px auto;
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    color: #6d6d6d;
    line-height: 1em;
    text-transform: none;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
  }
  #header .main-nav-wrap .column2 .press-item .view-all:hover,
  #header .main-nav-wrap .column4 .press-item .view-all:hover {
    color: #c626b6;
    background-position: right -13px;
  }
  #header .main-nav-wrap .column3 {
    width: 16%;
    padding: 42px 3% 0 3%;
  }
  #header .main-nav-wrap.open {
    height: 705px;
    padding-top: 0;
  }
  #header .header-right .contact-btn {
    display: block;
  }
  /*********************
FOOTER STYLES
*********************/
  #footer {
    min-width: 768px;
    height: auto;
    margin-top: -350px;
    padding: 38px 28px 0 28px;
  }
  #footer .middle {
    display: block;
  }
  #footer .footer-title {
    display: block;
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    color: #1b1b1b;
    margin-bottom: 10px;
  }
  #footer .menu {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
  }
  #footer .menu li {
    position: relative;
    display: block;
    overflow: hidden;
    float: left;
    line-height: 27px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 22.33%;
    margin: 0 !important;
    padding: 0;
  }
  #footer .menu li a {
    position: relative;
    font-family: 'Museo-Sans-500', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    color: #1b1b1b;
  }
  #footer #menu-footer-navigate {
    display: block;
    width: 86%;
    float: left;
  }
  #footer #menu-footer-navigate li {
    width: 25%;
    padding-right: 10px;
  }
  #footer .footer-follow {
    float: left;
    padding-top: 12px;
    margin: 0;
  }
  #footer #menu-footer-navigate-2 {
    display: block;
    width: 100%;
  }
  #footer #menu-footer-navigate-2 li {
    margin-right: 28px;
  }
  #footer #menu-footer-navigate-2 #menu-item-21759,
  #footer #menu-footer-navigate-2 #menu-item-21764 {
    width: 82px;
  }
  #footer .bottom {
    padding: 18px 0 0 0;
    height: 40px;
    margin: 0;
    text-align: left;
    line-height: 1em;
  }
  #footer .bottom .copy {
    position: relative;
    float: left;
    line-height: 22px;
  }
  #footer .bottom .social {
    position: relative;
    display: block;
    float: right;
    overflow: hidden;
    margin-right: 16px;
    height: 22px;
    line-height: 1em;
  }
  #footer .bottom .social .twitter-wrap,
  #footer .bottom .social .fb-wrap {
    position: relative;
    overflow: hidden;
    float: right;
    height: 22px;
  }
  #footer .bottom .social .twitter-btn {
    position: relative;
    display: block;
    vertical-align: top;
    margin: 0;
    padding: 0;
    height: 22px;
  }
  #footer .bottom .social .fb-like {
    position: relative;
    display: block;
    vertical-align: top;
    margin: 0 10px 0 0;
    padding: 0;
    height: 22px;
  }
  #footer .bottom .social .twitter-wrap {
    margin-right: 10px;
  }
  /* HOME PAGE */
  #content.home .top-hero-photo .audio-icon {
    top: 112px;
  }
  #content.home .rail-left,
  #content.home .rail-right {
    position: relative;
    width: 22%;
    float: left;
  }
  #content.home .rail-left .uni-related,
  #content.home .rail-right .uni-related {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
  }
  #content.home .rail-left .uni-related .feat-image,
  #content.home .rail-right .uni-related .feat-image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    left: auto;
    top: auto;
  }
  #content.home .rail-left .uni-related .feat-image .inner:before,
  #content.home .rail-right .uni-related .feat-image .inner:before {
    content: "";
    display: block;
    padding-top: 99.99%;
  }
  #content.home .rail-left .uni-related .feat-image img,
  #content.home .rail-right .uni-related .feat-image img {
    width: auto;
    height: auto;
  }
  #content.home .rail-left .uni-related .text,
  #content.home .rail-right .uni-related .text {
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: none;
    min-height: 155px;
    padding: 18px 10px 18px 16px;
    background: #ffffff;
  }
  #content.home .rail-left {
    margin-left: 5%;
    margin-bottom: 10px;
  }
  #content.home .rail-right {
    margin-right: 5%;
  }
  #content.home .rail-center {
    width: 42%;
    max-width: none;
    margin: 0 2%;
    float: left;
    padding: 0;
  }
  #content.home .growth-section .growth-title {
    font-size: 56px;
    padding: 0;
  }
  #content.home .growth-section .graph-sections .a-part {
    margin: 0 20px 20px 20px;
  }
  .hispanic-insights-form-section {
    width: 624px;
    margin: 0 auto;
    padding: 0;
  }
  .uni-twitter-feed {
    margin-bottom: 50px;
  }
  /* REPORTS PAGE */
  #content.reports .rail-right {
    padding-top: 36px;
  }
  /* PROFILE ROLL */
  #profile-roll-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0 70px 0;
    text-align: center;
  }
  #profile-roll-wrapper .a-profile {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 10px 30px 10px;
  }
  /* PROFILE ROLL */
  #property-roll {
    text-align: center;
  }
  #property-roll .property {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 11px 30px 11px;
    width: 348px;
    height: 241px;
    padding: 35px;
    text-align: left;
    vertical-align: top;
  }
  #property-roll .property .logo {
    margin-bottom: 18px;
  }
  #property-search {
    width: 350px;
  }
  #property-search input {
    width: 350px;
  }
  /* PROPERTY FITLER */
  #portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel1 {
    padding: 130px 75px;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel3 {
    padding: 65px 75px;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 {
    padding: 65px 75px;
  }
  body.single-leader .the-beat-section-2 .rail-left,
  body.single-post .the-beat-section-2 .rail-left {
    position: relative;
    overflow: hidden;
    float: left;
    width: 25%;
    height: 2px;
    margin: 0;
  }
  body.single-leader .the-beat-section-2 .rail-center,
  body.single-post .the-beat-section-2 .rail-center {
    margin: 0;
    width: 52%;
    max-width: none;
  }
  body.single-leader .the-beat-section-2 .rail-center .formatted,
  body.single-post .the-beat-section-2 .rail-center .formatted {
    padding-right: 30px;
  }
  body.single-leader .the-beat-section-2 .rail-right,
  body.single-post .the-beat-section-2 .rail-right {
    width: 19%;
    margin-right: 3%;
    margin-left: 2%;
    max-width: none;
  }
  body.single-leader .the-beat-section-2 .rail-left {
    display: none;
  }
  body.single-leader .the-beat-section-2 .rail-center {
    width: 48%;
    margin: 0 0 0 15%;
  }
  body.single-leader .the-beat-section-2 .rail-right {
    width: 22%;
    margin-right: 13%;
  }
  .col2-container-section .press-posts .roi-post {
    width: 48%;
  }
  .col2-container-section .press-posts .a-post .title {
    font-size: 24px;
  }
  .col2-container-section .left-col {
    width: 80%;
  }
  .green-uni-cta {
    display: block;
  }
  .investor-menu-section {
    margin: 0;
  }
  .recommended-reading-section {
    display: block;
    margin-top: 20px;
  }
  /* POST ROLE SINGLE PAGE */
  .post-single-section .text-profile .profile-name {
    font-size: 40px;
  }
  /* THE BEAT MEDIA BOX */
  #the-beat-uni-gallery {
    position: relative;
    width: 626px;
    margin: 0 auto;
  }
  #the-beat-uni-gallery #mobile-prev,
  #the-beat-uni-gallery #mobile-next {
    top: 158px;
  }
  #the-beat-uni-gallery #mobile-prev {
    left: -40px;
  }
  #the-beat-uni-gallery #mobile-next {
    right: -40px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap {
    width: 626px;
    height: 351px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap #main-media-target {
    width: 626px;
    height: 351px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap #main-media-target img {
    width: 626px;
    height: 351px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap #main-media-target iframe {
    width: 626px;
    height: 351px;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap .overlay .play-btn-wrap {
    top: 154px;
  }
  /* LOGIN PAGE */
  .lwa form {
    width: 624px;
    margin: 0 auto;
  }
  .lt-ie9 #header .main-nav-wrap .column2 .press-item .view-all,
  .lt-ie9 #header .main-nav-wrap .column4 .press-item .view-all {
    background: url(../images/link-arrow.png) no-repeat right 1px;
  }
  .formatted iframe {
    max-width: 99999px;
  }
  .grey-form-wrap-hidden-page h2 {
    text-align: center;
    font-family: 'Museo-Sans-700', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: #1b1b1b;
    margin-bottom: 20px;
  }
  .grey-form-wrap-hidden-page .ginput_container {
    background: #FFF;
    height: 35px;
  }
  .grey-form-wrap-hidden-page .ginput_container input {
    background: transparent !important;
  }
  .grey-form-wrap-hidden-page .gform_body,
  .grey-form-wrap-hidden-page .gform_footer {
    width: 500px !important;
    margin: 0 auto;
    overflow: hidden;
  }
  .grey-form-wrap-hidden-page .gform_fields li {
    width: 50%;
    height: 35px;
    clear: none;
  }
  .grey-form-wrap-hidden-page #field_21_3 {
    width: 100%;
    clear: both !important;
    margin-bottom: 15px !important;
  }
  .grey-form-wrap-hidden-page #field_21_3 .ginput_container {
    width: 97.5%;
  }
}
@media only screen and (min-width: 820px) {
  /* PROPERTY: MARKET BOX */
  .market-box-wrap .market-box .market-buttons-advertise {
    display: none;
    overflow: hidden;
    bottom: 0;
    right: 0;
    width: 400px;
  }
  .market-box-wrap .market-box .market-buttons-advertise a {
    float: left;
    margin: 0 20px;
  }
  .market-box-wrap .market-box .market-buttons-advertise a:hover {
    background: #c626b6;
    color: white;
  }
  .market-box-wrap .market-box #gform_submit_button_17 {
    right: 16px !important;
  }
  .market-box-wrap .market-box .ad-form-wrap {
    margin: 0 0 0 12px;
  }
  .market-box-wrap .market-box .grey-form-wrap-advertise #gform_confirmation_message_17 {
    /*width: 400px;
				padding: 20px 0 20px 130px;*/
  }
  .grey-form-wrap #gform_17 {
    margin: 0 0 0 18px;
  }
  #portfolio-filter .grey-form-wrap #gform_17 {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 900px) {
  #localtv-market .market-box-wrap {
    width: 900px;
    margin: 0 auto 20px auto;
  }
  #localtv-market .market-box-wrap .market-box .ad-form-wrap {
    margin: 0 0 0 22px;
  }
  .grey-form-wrap {
    width: 900px;
    margin: 0 auto 100px auto;
    padding: 30px 30px 50px 30px;
  }
  .grey-form-wrap #gform_19,
  .grey-form-wrap #gform_17,
  .grey-form-wrap #gform_24 {
    margin: 0 0 0 58px;
  }
  .grey-form-wrap #gform_17 {
    margin: 0 0 0 18px;
  }
  .grey-form-wrap .gform_fields #field_19_6,
  .grey-form-wrap .gform_fields #field_17_10 {
    position: absolute;
    width: 216px;
    height: 169px;
    top: 0;
    right: -216px;
  }
  .grey-form-wrap .gform_fields #field_19_6 textarea,
  .grey-form-wrap .gform_fields #field_17_10 textarea {
    position: relative;
    width: 100%;
    height: 169px;
    padding: 12px 37px 12px 12px;
    font-family: 'Museo-Sans-300', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 1.6em;
    color: #7b7b7b;
    z-index: 9;
    border: none;
    outline: none;
    background: #f7f7f7;
  }
  .grey-form-wrap .gform_fields #field_19_7 {
    width: 50%;
    margin: 0;
  }
  #portfolio-filter .grey-form-wrap #gform_17 {
    margin: 0;
    /* original
			input[type=submit] {
				right: -184px;	
			}
			*/
  }
  #portfolio-filter .grey-form-wrap #gform_17 #field_17_10 textarea {
    height: 80px;
    background: #FFF;
  }
  #portfolio-filter .grey-form-wrap #gform_17 input[type=submit] {
    right: -210px;
  }
  /* PROPERTY: MARKET BOX */
  .market-box-wrap .market-box .inner {
    padding: 55px 75px;
  }
  .market-box-wrap .market-box ul.panels li.panel .formatted {
    line-height: 1.9em;
  }
  .market-box-wrap .market-box .grey-form-wrap-advertise input[type=submit] {
    right: 10px;
  }
  /* PROPERTY FITLER */
  #portfolio-filter {
    width: 900px;
    margin: 0 auto 38px;
  }
  #portfolio-filter .market-box-wrap .market-box ul.tab-panels li.panel5 .market-select-wrap {
    width: 200px;
  }
  .the-beat-section .rail-left {
    position: relative;
    overflow: hidden;
    display: block;
    float: left;
    width: 19%;
    margin-left: 3%;
    margin-right: 2%;
  }
  .the-beat-section .rail-center {
    float: left;
    width: 52% !important;
    max-width: none;
    margin: 0;
    z-index: 99;
  }
  .the-beat-section .rail-right {
    position: relative;
    overflow: hidden;
    display: block;
    float: right;
    width: 19%;
    margin-right: 3%;
    margin-left: 2%;
  }
  body.single-leader .the-beat-section-2 .rail-left {
    position: relative;
    display: block;
    overflow: hidden;
    float: left;
    width: 24%;
    height: 2px;
    margin: 0;
  }
  body.single-leader .the-beat-section-2 .rail-center {
    margin: 0;
    width: 52%;
    max-width: none;
  }
  body.single-leader .the-beat-section-2 .rail-right {
    width: 19%;
    margin-right: 3%;
    margin-left: 2%;
    max-width: none;
  }
}
@media only screen and (min-width: 929px) {
  /* THE BEAT MEDIA BOX */
  #the-beat-uni-gallery {
    position: relative;
    float: right;
    width: 873px;
    margin-right: 28px;
  }
  #the-beat-uni-gallery #mobile-prev,
  #the-beat-uni-gallery #mobile-next {
    display: none;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap {
    float: left;
  }
  #the-beat-uni-gallery .top-content .main-media-wrap #main-media-target iframe {
    width: 626px;
    height: 351px;
  }
  #the-beat-uni-gallery .top-content .thumb-sidebar {
    display: block;
  }
  #the-beat-uni-gallery .bottom-content {
    padding: 26px 352px 0 56px;
  }
  .col2-container-section .left-col {
    float: left;
    width: 64%;
  }
  .col2-container-section .right-col {
    width: 19%;
  }
  .home-circles .a-circle {
    display: inline-block;
    margin: 0 20px 0 20px;
  }
  #content.home .rail-left .uni-related .text,
  #content.home .rail-right .uni-related .text {
    min-height: 125px;
  }
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1118px) {
  /*********************
LAYOUT & GRID STYLES
*********************/
  .rail-left {
    position: relative;
    overflow: hidden;
    float: left;
    width: 19%;
    margin: 0;
  }
  .rail-left .uni-twitter-feed {
    display: block;
  }
  .rail-left .left-rail-links {
    padding-top: 0;
  }
  .rail-center {
    position: relative;
    /*overflow: hidden; FIX ME */
    float: left;
    width: 56%;
    margin: 0 3%;
    z-index: 99;
  }
  .no-black-box .rail-center {
    padding-top: 30px;
  }
  .rail-right {
    position: relative;
    float: right;
    width: 19%;
    margin: 0;
  }
  .center {
    width: 100%;
    margin: 0 auto;
    padding-left: 3%;
    padding-right: 3%;
  }
  body.page-template-template-localtv-php .rail-right {
    display: block;
  }
  body.page-template-template-localtv-php .rail-center {
    width: 56%;
    margin: 0 3%;
  }
  .the-beat-section .rail-left {
    margin-left: 0;
    margin-right: 3%;
  }
  .the-beat-section .rail-center {
    width: 56% !important;
  }
  .the-beat-section .rail-right {
    margin-right: 0;
    margin-left: 3%;
  }
  #content.media-property .side-rail {
    padding-top: 112px;
  }
  /*********************
HEADER STYLES
*********************/
  #header .main-nav-wrap {
    height: 0;
  }
  /*********************
FOOTER STYLES
*********************/
  #footer #menu-footer-navigate {
    width: 90%;
  }
  #footer #menu-footer-navigate-2 li {
    margin-left: 38px;
  }
  #footer #menu-footer-navigate-2 li:first-child {
    margin-left: 0;
  }
  #footer #menu-footer-navigate-2 #menu-item-21759,
  #footer #menu-footer-navigate-2 #menu-item-21764 {
    width: auto;
  }
  /*********************
PAGE STYLES
*********************/
  .top-hero-photo {
    height: 429px;
  }
  .top-hero-photo .large-title {
    font-size: 96px;
  }
  .top-hero-photo #home-hero-vid {
    height: 720px;
  }
  .top-hero-photo #home-hero-vid iframe,
  .top-hero-photo #home-hero-vid video {
    height: 720px;
  }
  /* HOME PAGE */
  #content.home .top-hero-photo {
    height: auto;
    padding-top: 56.3%;
    position: relative;
  }
  #content.home .top-hero-photo .audio-icon {
    top: 142px;
  }
  #content.home .top-hero-photo #home-hero-vid {
    position: relative;
    height: auto;
    padding-top: 56.3%;
  }
  #content.home .top-hero-photo #home-hero-vid iframe,
  #content.home .top-hero-photo #home-hero-vid video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #content.home .top-hero-photo .large-title {
    position: absolute;
    top: 37%;
    font-size: 96px;
    z-index: 20000;
  }
  #content.home .rail-left {
    margin-left: 2%;
  }
  #content.home .rail-right {
    margin-right: 2%;
  }
  #content.home .rail-center {
    margin: 0 5%;
  }
  #content.home .growth-section .growth-title {
    font-size: 64px;
  }
  #content.home .growth-section .graph-sections .a-part {
    width: 33%;
    float: left;
    padding: 0;
    margin: 0;
  }
  .home-circles {
    width: 918px;
    height: 251px;
  }
  .home-circles .a-circle {
    display: block;
    margin: 0 0 10px 0;
  }
  .home-circles .a-circle-1 {
    float: left;
  }
  .home-circles .a-circle-2 {
    position: absolute;
    left: 50%;
    margin-left: -125px;
  }
  .home-circles .a-circle-3 {
    float: right;
  }
  .top-control-bar {
    padding: 18px 0 0 0;
  }
  /* REPORTS PAGE */
  #content.reports .rail-right,
  #content.reports .rail-left {
    padding-top: 96px;
  }
  body.single-leader .the-beat-section-2 .rail-left,
  body.single-post .the-beat-section-2 .rail-left {
    width: 22%;
  }
  body.single-leader .the-beat-section-2 .rail-center,
  body.single-post .the-beat-section-2 .rail-center {
    width: 56%;
  }
  body.single-leader .the-beat-section-2 .rail-right,
  body.single-post .the-beat-section-2 .rail-right {
    width: 19%;
    float: left;
    margin-right: 0;
    margin-left: 3%;
  }
  .col2-container-section .center {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
  }
  .col2-container-section .filter-top {
    padding: 38px 0;
  }
  .col2-container-section .left-col {
    float: left;
    width: 74%;
    margin: 0;
    margin-right: 7%;
  }
  .col2-container-section .right-col {
    display: block;
    float: left;
    width: 19%;
    margin: 0;
  }
  .col2-container-section .press-posts .roi-post {
    width: 31%;
  }
  .col2-container-section .press-posts .a-post .title {
    font-size: 28px;
  }
  #content.advertise .rail-left,
  #content.advertise .rail-right {
    display: block;
  }
  #content.advertise .rail-center {
    width: 56%;
    margin: 0 3% !important;
  }
  #content.sec .rail-center {
    margin-top: 90px;
  }
  .investor-menu-section {
    height: auto;
    border: none;
    background: none;
    line-height: normal;
    cursor: default;
  }
  .investor-menu-section .rail-title {
    display: block;
  }
  .investor-menu-section .mobile-text {
    display: none;
  }
  .investor-menu-section .links {
    position: relative;
    display: block;
    padding: 0;
    top: 0;
    left: 0;
    border: none;
  }
  .quarterly-filings {
    padding-top: 67px !important;
  }
}
@media only screen and (min-width: 1178px) {
  .center {
    width: 1118px;
    padding-left: 0;
    padding-right: 0;
  }
  #header {
    width: 1118px;
    left: 0;
  }
  .col2-container-section .center {
    width: 1118px;
    margin-left: auto;
    margin-right: auto;
  }
  /* PROFILE ROLL */
  #profile-roll-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0 70px 0;
    text-align: left;
  }
  #profile-roll-wrapper .a-profile {
    position: relative;
    overflow: hidden;
    display: block;
    width: 355px;
    height: 326px;
    float: left;
    margin: 0 0 30px 26px;
    background: #ffffff;
  }
  #profile-roll-wrapper .a-profile .image-wrap {
    position: relative;
    overflow: hidden;
    width: 355px;
    height: 214px;
  }
  #profile-roll-wrapper .a-profile .image-wrap img {
    position: relative;
    display: block;
    width: 355px;
    height: auto;
  }
  #profile-roll-wrapper .a-profile .text {
    position: relative;
    overflow: hidden;
    width: 355px;
    height: 112px;
    background: #ffffff;
    padding: 24px 26px 0 20px;
  }
  #profile-roll-wrapper .a-profile .text .profile-name {
    font-family: 'Museo-Sans-500', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    color: #1b1b1b;
    line-height: 1.4em;
  }
  #profile-roll-wrapper .a-profile .text .profile-position {
    font-family: 'Museo-Sans-500', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    color: #7b7b7b;
    line-height: 1.5em;
  }
  #profile-roll-wrapper .a-profile.row-start {
    margin-left: 0;
  }
  /* PROPERTY ROLL */
  #property-roll {
    text-align: left;
  }
  #property-roll .property {
    position: relative;
    float: left;
    margin: 0 12px 24px 12px;
  }
  #property-search {
    float: right;
    margin: 0 14px 38px 0;
  }
  body.archive ul.filter-top,
  body.category-press-downloads ul.filter-top {
    width: 650px;
    float: left;
  }
  body.archive #property-search,
  body.category-press-downloads #property-search {
    margin-top: 38px;
    margin-right: 0;
  }
  #search-status {
    float: left;
    padding-left: 15px;
  }
  #filter-status {
    float: left;
    padding-left: 15px;
  }
}
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
/*
@media only screen and (min-width: 1240px) {

	// styles in 1240up.less
	@import "_1240up.less";

} // end of media query
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after,
  a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after,
  a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
