/***
Byte Boilerplate, with parts from Foundation and other sources, noted inline below
Version 2 - 2016-07-11 by MD, SP & the Byte Studios Team
***/

* {
 -webkit-font-smoothing: antialiased;
 font-smoothing: antialiased;
}
a, img {
    border:none;
    outline:none;
}

/* rows and columns from http://www.sitepoint.com/understanding-css-grid-systems/ */
.row, .column {
	box-sizing: border-box;
}
.row:before, .row:after {
	content: " ";
	display: table;
}
.row:after {
	clear: both;
}
.column {
	position: relative;
	float: left;
	display: block;
}
.grid-w-gutters .column + .column {
	margin-left: 1.6%;
}
/* end rows and columns from http://www.sitepoint.com/understanding-css-grid-systems/ */

/* grids and columns */
.float-left { float: left !important; }
.float-right { float: right }
.float-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.clearfix::before, .clearfix::after {
	content: ' ';
	display: table;
}
.clearfix::after { clear: both; }
.invisible { visibility: hidden; }
.is-visible { display: block !important; }
.is-hidden { display: none !important; }

.grid, .grid-w-gutters {
	width: 95%;
	max-width: 960px;
	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
}
.col-1-across { width: 8.33%; }
.col-2-across { width: 16.66%; }
.col-3-across { width: 25%; }
.col-4-across { width: 33.33%; }
.col-5-across { width: 41.66%; }
.col-6-across { width: 50%; }
.col-7-across { width: 58.33%; }
.col-8-across { width: 66.66%; }
.col-9-across { width: 75%; }
.col-10-across { width: 83.33%; }
.col-11-across { width: 91.66%; }
.col-12-across { width: 100%; }
.grid-w-gutters .col-1-across { width: 6.86666666667%; }
.grid-w-gutters .col-2-across { width: 15.3333333333%; }
.grid-w-gutters .col-3-across { width: 23.8%; }
.grid-w-gutters .col-4-across { width: 32.2666666667%; }
.grid-w-gutters .col-5-across { width: 40.7333333333%; }
.grid-w-gutters .col-6-across { width: 49.2%; }
.grid-w-gutters .col-7-across { width: 57.6666666667%; }
.grid-w-gutters .col-8-across { width: 66.1333333333%; }
.grid-w-gutters .col-9-across { width: 74.6%; }
.grid-w-gutters .col-10-across { width: 83.0666666667%; }
.grid-w-gutters .col-11-across { width: 91.5333333333%; }
.grid-w-gutters .col-12-across { width: 100%; }

.no-bullet { margin-left: 0; list-style: none; }

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-justify { text-align: justify; }

.wide-30 {
  width:31%;
}
.wide-50 {
  width:50%;
}
.wide-70 {
  width:69%;
}
.wide-100 {
  width: 100%
}
/* end grids and columns */
table {
  border-collapse: collapse;
}

/* form normalizations from Foundation */
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  /*border-radius: 7px;*/
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
	border: 1px solid #8a8a8a;
	background-color: #fefefe;
	outline: none;
	box-shadow: 0 0 5px #cacaca;
	transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
	height: auto; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cacaca; }

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #cacaca; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cacaca; }

input::placeholder,
textarea::placeholder {
  color: #cacaca; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed; }

[type='submit'],
[type='button'] {
  border-radius: 7px;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type='search'] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
	cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a; }
  label.middle {
	margin: 0 0 1rem;
	padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }
  .input-group > :first-child {
	border-radius: 7px 0 0 7px; }
  .input-group > :last-child > * {
	border-radius: 0 7px 7px 0; }

.input-group-label, .input-group-field, .input-group-button {
  margin: 0;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #0a0a0a;
  border: 1px solid #cacaca;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
	border-right: 0; }
  .input-group-label:last-child {
	border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.5rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
	margin: 0; }

.input-group .input-group-button {
  display: table-cell; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

legend {
  margin-bottom: 0.5rem;
  max-width: 100%; }

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
	background: #fefefe;
	padding: 0 0.1875rem;
	margin: 0;
	margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #0a0a0a;
  background-color: #fefefe;
  border-radius: 7px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat; }
  @media screen and (min-width: 0\0) {
	select {
	  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
	background-color: #e6e6e6;
	cursor: not-allowed; }
  select::-ms-expand {
	display: none; }
  select[multiple] {
	height: auto;
	background-image: none; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 7px;
  line-height: 1; }
  [data-whatinput='mouse'] button {
	outline: 0; }
button:focus {
  outline:none;
}
.highlight {
  font-style: italic;
  font-weight: bold;
}

/* end form normalizations from Foundation */



/* generic custom styles */
body {
  margin: 0;
  background-color: #fdfdfd;
}
div {
	color: #53708C;
}
p {
	color: #888;
	font-size: 16px;
	margin: 1.2em 0;
	font-family:'Montserrat', sans-serif;
  text-align: justify;
}
a {
  color:  #002e5b;
	text-decoration: underline;
  cursor: pointer;

}
a:hover {
  color:  #507d1a;
  text-decoration: underline;
	transition: color .05s;
	-webkit-transition: color .05s;
	-moz-transition: color .05s;
}


/****** Add Header CSS Here *******/
header {
}
.background-header a, .main-menu a {
  text-decoration: none !important;
}
.header-wrapper {
  margin: 0 auto;

}
.background-header {
  background-color: #1a1c27;
  height: 50px;
}
#header-nav {
  height: 50px;
  position: relative;
}
.top-menu, .top-search-bar  {
    margin: 0;
    padding-left: 0px;
    display: inline-block;
    float: left;
}
.top-menu li {
  display: inline-block;
  list-style: none;
}
.top-menu li:first-child a {
    padding-right: 35px;
    margin-right: -1px;
}
.top-menu li a {
    font-family: 'Lato';
    display: block;
    color: #a1b1bc;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    text-align: right;
    border-left: 1px solid #26303e;
    padding: 15px 22px;
}
.top-menu li:first-child a.add-drop:after {
	content:"";
	background: url(/assets/images/Newsroom_Arrow.png) no-repeat;
	padding-left: 15px;
  margin-left: 6px;
  position: absolute;
  top: 23px;
	width: 11px;
	height: 6px;

}
.top-search {
	margin: 7px 0px;
	padding: 0px 10px;
	float:right;
  border-radius: 0;
	display: inline-block;
	border-style: solid;
	border-width: 1px;
	border-color:  #2f3346;
	box-sizing: border-box;
	background-color:  #a1b1bc;
	width: 270px;
	height: 35px;
	color:  #1a1c27;
	font-family: 'Lato';
	font-size: 14px;
	font-weight: 400;
	line-height: 19px; 
	text-align: left;
	transform: scaleX(1.0126); /* width and height properties ommitted due to transform */
  position: absolute;
  right: 0;
}
#page_search {
  left: 0;
  top: -10px;
}
.result-search-icon {
  color:  #1a1c27;
  position: absolute;
  left: 250px;
  top: 5px;
}
.top-search::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #1a1c27;
}
.top-search::-moz-placeholder { /* Firefox 19+ */
  color: #1a1c27;
}
.top-search:-ms-input-placeholder { /* IE 10+ */
  color: #1a1c27;
}
.top-search:-moz-placeholder { /* Firefox 18- */
  color: #1a1c27;
}
.top-search-icon {
  color:  #1a1c27;
  position: absolute;
  right: 10px;
  top: 15px;
}
/*Newsroom Hover Menu*/
.news-hover {
  display: none;
  position: absolute;
  left: 0;
  z-index: 210;
}
.top-menu li:first-child: a.add-drop:hover {
  color: red;
}
.top-menu li:first-child:hover .news-hover {
  display: block;
}
.news-hover ul {
  background-color: #1a1c27;
  padding-left: 0px;

}
.news-hover li {
  display: block;
}
.top-menu li .news-hover ul li a {
  border-top: 2px solid #1e2a38;
  border-left: none;
  padding: 15px 22px;
  padding-right: 15px;
  margin-right: -1px;
  text-align: left;
  cursor: pointer;
}
/*.top-menu li .news-hover ul li a:after {
  content: "";
  padding-left: 0px;
  margin-left: 4px;
}*/
/*.top-menu li .news-hover ul li a:before {
  content: "";
  padding-left: 0px;
  margin-right: 4px;
}*/
/* Main Header CSS*/
.main-menu {
  list-style: none;
  padding-left: 0px;
  display: inline-block;
  margin:0;
  box-sizing: border-box;
  width: 100%;
}

ul.main-menu li:first-child {
  padding: 0;
  text-align: left;
}
.main-menu li {
    display: block;
    float: left;
    width: 25%;
    text-align: center;
    border-right: 1px solid #d9d9d9;
    margin-right: -1px;
    margin-bottom: -5px;
    position: static;
}
#main-nav {
   background-color: #fff;
   height: 100px;
}
.main-menu li a {
    letter-spacing: 1px;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 0px 41px;
    display: inline-block;
    font-family: 'Lato';
    color: #002e5b;
    font-size: 20px;
    font-weight: bold;
    line-height: 19px;
    transform: scaleY(1.0086);
    transition: color .1s;

}
/*  Social Icons */
.social-media {
    margin: 0;
    display: inline-block;
    float: left;
    height: 100%;
}
.social-icon-list {
    list-style: none;
    padding: 15px 25px;
    text-align: center !important;
    margin: 0 !important;
    height: 100%;
    float: left;
}
.social-icon {
    display: inline-block !important;
    padding: 0px 2px;
}
.social-icon a {
    font-size: 16px;
    line-height: 15px !important;
    color: #a1b1bc;    
    transition: color .25s;
    display: block;
    box-sizing: border-box;
    padding: 0.15em 0 0;
    border-style: solid;
    border-width: 1px;
    background-color:  rgba(59, 89, 152, 0);
    width: 22px;
    height: 22px;
}
.social-icon-list li a.facebook:hover {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
}
.social-icon-list li a.twitter:hover {
  color: #fff;
  background-color: #0084b4;
  border-color: #0084b4;
}
.social-icon-list li a.linkedin:hover {
  color: #fff;
  background-color: #0077B5;
  border-color:  #0077B5;
}

/****** Add Menu Dropdown CSS Here *******/
.border-box {
  position: absolute;
  left: 0;
  z-index: 210;
  padding: 2em 0;
  background-color: #444444;
  display: none;
  margin-top:0px;
}
.full-menu-drop {
  overflow: hidden;
}
.full-menu-drop ul {
   border-right: 1px solid #292929;
   padding-left: 0px;
   min-height: 460px;
   height: 100%
}

.full-menu-drop ul:nth-child(1) {
  padding-left: 0;
  padding-right: 0;
  width: 30%;
} 
.full-menu-drop ul:nth-child(2) {
   width: 30%;
} 
.full-menu-drop ul:nth-child(3) {
  border-right: none;
  padding-left: 2em;
  padding-right: 0;
  width: 40%;
} 
.full-menu-drop ul.sub-menu li {
  display: block;
  text-align: left;
  border-right: none;
  width: 100%;
  margin: 0;
}

.full-menu-drop li a, a.next-children {
  color: #ffffff;
  font-family: 'Lato';
  text-align: left;
  font-weight: 100;
  display: inline-block;
  padding: 23px 0px;
  font-size: 18px;
  line-height: 20px;
}
.full-menu-drop ul.sub-menu li a.next-children:after {
  content: '\f105';
  font-family: 'FontAwesome';
  position: absolute;
  right: 50px;
}
.full-menu-drop ul.sub-menu li a {
  padding-left: 30px;
}
/*show mega menu on hover:*/
li.first-menu:hover {
   background-color: #444444;
   color:#ffffff;
} 
li.first-menu:hover a:first-child {
   color: #fff;
}
li.first-menu:hover .border-box  {
  display: block;
}
/*make second menu appear on hover:*/
li.second-menu ul.third-menu {
  display: none;
  z-index: 10;
  width: 100%;
}
.full-menu-drop ul.sub-menu li:hover {
  background-color: #222;
}
li.second-menu:hover ul.third-menu /* ul.third-menu:hover ul.third-menu */{
  display: block;
}
 ul.third-menu li:hover {
   background-color: #222;
}
li.second-menu ul {
  position: absolute;
  left: 100%;
  width: 100%;
  top: 0px;
  border-right: none;
}
ul.third-menu li a {
  color: #a1b1bc !important;
  padding-left: 30px;
}
.full-menu-drop p {
  color: #9eb0ba;
  font-family: 'Lato';
  text-align: left;
  font-weight: 100;
  display: inline-block;
  font-size: 18px;
  line-height: 35px;
  padding: 0;

}
.full-menu-drop p:first-child {
  padding: 15px 0px;
}
/****** Add Header Logo CSS Here *******/
.site-logo {

}

/****** Add Header Header Nav Here *******/
.header-nav {

}
/*HEADER IMAGES*/
.big-header  {
  position: relative;
 /* z-index: -10; WHY DID YOU DO THIS - MIGHT BE PROBLEM LATER= lol
*/  
height: 510px;
background-size: cover;
background-position: center right; 

}
.big-header-text {
  position: absolute;
  top: 45%;
}
.top-30 {
  padding-top:30px;
}
.bottom-50 {
  padding-bottom: 50px;
}
.big-header h1 {
  font-family: 'Lato';
  color:  #ffffff;
  font-size: 62px;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: 3px;
  text-align: left;
  text-shadow: 0px 0px 85px rgba(0, 0, 0, 0.15);
  margin: .4em 0;

  }
/****** Add Header Main Nav Here *******/
#evo-text {
  padding-top: 20px;
  float: left;
}
#market-text {
  float: left; 
  padding-left:2px;
}
#main-logo {
  float: left;
  width: 233px;
}
h1.evo{
	display: flex;
	align-items:  center;
	justify-content: space-between;		
}
.evo-id-logo{
	width: 233px;	
/* 	float: left; */
/* 	margin-right: 10px; */
}
.main-nav ul {
	list-style: none;
}
.breadcrumbs {
  background-color:  rgba(26, 28, 39, 0.5);
}
.bread-list {
  list-style: none;
  padding-left: 0;
  height: 30px;
}
.bread-list li, .bread-list a {
  font-family: 'Lato';
  color:  #ffffff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  display: inline-block;
  padding: 2.5px 2px;
  text-decoration: none;
  
}
.bread-list li a {
  cursor: pointer;
}
.bread-list li:after {
  content: ">";
  padding: 0px 2.5px;
}
.bread-list li:nth-child(2):after {
  content: ":";
}
.bread-list li:last-child:after {
  content: " ";
}
/****** Add Body Wrapper Here *******/
.body-wrapper {
  margin: 0 auto;
  padding: 40px 0px;
}
.context-nav {

}
.main-content {

}
.home-block {
  float: left;
  box-sizing: border-box;
}
.left-block {
  margin-left: 0px !important;
}
.featured-desk-text {
    border-style: solid;
    border-width: 1px;
    border-color:  #ebebeb;
    box-sizing: border-box;
    background-color:  #f9fafb;
    text-align: left;
    padding: 8.5px;
    margin: 0.55em auto 0;
  }

.home-block h3 {
  padding-bottom: 10px;
  font-family: 'Lato';
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color:  #002e5b;
  font-size: 28px;/* Approximation due to font substitution */
  font-weight: 900;
  line-height: 20px;/* Approximation due to font substitution */
  text-align: left;
  text-shadow: 0px 1px 0px #ffffff;
}
.report-block {
  padding: 10px;
  margin: 5px 0px;  
  border-style: solid;
  border-width: 1px;
  border-color:  #ebebeb;
  box-sizing: border-box;
  background-color:  #f9fafb;
  height: 75px;
  border-right: 3px solid #002e5b; 
}

/*FOR PDF DOWNLOAD HERE A */
.pdf-a {
  font-family: 'Lato';
  color:  #002e5b;
  font-size: 18px;/
  font-weight: 400;
  line-height: 32px;
  text-decoration: underline;
  text-align: right;
  }

.common-report-block {
  padding: 10px;
  margin: 5px 0px; 
  border-left: 1px solid #ebebeb; 
  box-sizing: border-box;
  height: 75px;
}
.home-block .report-block:hover {
 border-right: 3px solid #507d1a;
}
.home-block .report-block:hover .report-date {
  color: #002e5b;
}
/*a.view-more-a:hover {
  text-
}*/
a.home-page-link {
  text-decoration: none;
}
a.home-page-link:hover {
  text-decoration: none;
  color: #002e5b;
}
a.just-title {
  text-decoration: none;
}
.report-block h5, .report-page-block h5, .common-report-block h5, .link-title {
  font-family: 'Lato';
  margin:0;
  color: #002e5b;
  font-size: 16px;
  letter-spacing: 0px;
  font-weight: 700;
  text-align: left;
  text-shadow: 0px 1px 0px #ffffff;
  text-transform: none;
  vertical-align: middle;
}
a.link-title:hover {
  color: #507d1a;
  text-decoration: none;
}
.report-date, .report-market, .e-type  {
  float: right;
  font-family: 'Lato';
  color: #a1b1bc;
  font-size: 14px !important; /* Approximation due to font substitution */
  font-weight: 300;
  text-align: right !important;
}
.desk-e-type {
  text-decoration: underline;
  text-transform: capitalize;
  color: #002e5b;
  text-align: right;
  float: right;

}
.no-left {
  margin-left: 0 !important;
}
.view-more {
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color:  #e5e5e5;
  box-sizing: border-box;
  background-color:  #ffffff;
  width: 170px;
  height: 40px;
  font-family: 'Lato';
  color: #002e5b;
  font-size: 16px; 
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 1px 0px #ffffff;
  list-style: none;
}
.view-more a {
  padding: 10px;
  text-decoration: none;
  display: inline-block;
}
.img-text-block {
  padding: 10px;
  margin-top: 10px;
  border-style: solid;
  border-width: 1px;
  border-color:  #ebebeb;
  box-sizing: border-box;
  background-color:  #f9fafb;
  /*height: 135px;*/
}
.img-text-block h4 {
  font-family: 'Lato';
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color:  #2c3e50;
  font-size: 18px;/* Approximation due to font substitution */
  font-weight: 700;
  line-height: 28px;/* Approximation due to font substitution */
  text-align: left;
}

.sub-title {
  font-family: 'Lato';
  color:  #a1b1bc;
  font-size: 14px;/* Approximation due to font substitution */
  font-weight: 400;
  text-align: left;
  line-height: 20px;
  text-transform: none;
  padding: 0px;
}
.headquarters h4 {
  margin-bottom: 0px !important;
}
 
/*CULTURE AND VALUES PAGE*/
.culture-values {
  margin-left: 0 !important;
}
span.value-bold {
    font-weight: 400;
    float: left;
    padding-bottom: 20px;
    width: 12%;
}
/*AWARDS STYLES*/
.award-block {
  padding: 5px 0;
  display: none;
}
.award-span {
  display: none; 
}
.first-three {
  display: block;
}
.award-block:first-child p:nth-child(-n+3) {
 display: block
}
.year-sort-1, .year-block-1 a {
  display: block;
}
.category-parent:last-child .more-square {
  display: inline-block;
}
.c-toggle:last-child .more-square {
  display: none;
}
a.less-square.hide-next-1 {
  /*display: none !important;*/
}
/*.category-parent:last-child .less-square {
  display: inline-block;
}*/
.line-height p {
  line-height: 26px;
  margin: .5em 0px;
}
.line-height a {
  text-decoration: none;
}
.more-square:after {
  content: "\f107";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 18px !important;
}
.more-square {
  background-color:  #002e5b;
  padding: .5px 4.99px;
  display: inline-block;
  margin-left: 0em;
}
.less-square:after {
  content: "\f106";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 18px !important;
}
.less-square {
  background-color: #a1b1bc;
  padding: .5px 4.99px;
  display: inline-block;
}
.awards a {
  font-family: 'Lato';
  color:  #002e5b;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-decoration: none !important;
}
/*BUCKETS STUFF*/
.a-for-awards {
  text-decoration: none;
  color: #fff;
}
.a-for-awards:hover {
  text-decoration: underline;
  color: #fff;
}
.bucket-slider {
  text-align: center;
  border-style: solid;
  border-width: 1px;
  border-color:  #ebebeb;
  box-sizing: border-box;
  background-color:  #ffffff;

}
.bucket-slider img {
/*  padding: 17px;*/
}
.bucket-slider-text {
  padding: 10px 20px;
  background-color:  #002e5b;
  border-bottom: 4px solid #507d1a;
}
.bucket-slider-text h4 {
  margin:0;
  font-family: 'Lato';
  color:  #ffffff;
  font-size: 16px;/
  font-weight: 200;
  line-height: 24px;
  text-align: left;
}
.bucket-slider-text h4:after {
  content: "\f105";
  font-family: "FontAwesome";
  color: #ffffff;
  font-size: 30px;
  float: right;
}
.triangle-left {
  position: absolute;
  width: 50%;
  left: 0;
  border-bottom: 20px solid #1a1c27;
  border-right: 20px solid #fff;
  box-sizing: border-box;
}
.triangle-right {
  position: absolute;
  left: 50%;
  /*bottom: -20px;*/
  right: 0;
 /* top: 0px;*/
  border-bottom: 20px solid #1a1c27;
  border-left: 20px solid #fff;
  box-sizing: border-box;
  width: 50%;
}
h1 {
  font-family: 'Lato';
  color:  #2c3e50;
  font-size: 54px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: left;
  margin: .4em 0;
}
h5, .link-title {
  font-family: 'Lato';
  color: #2c3e50;
  font-size: 30px;
  font-weight: 900;
  line-height: 20px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin:15px 0px 20px 0px;
  text-decoration: none;
  vertical-align: middle;
}
button, .mock-button {
  text-transform: uppercase;
  border-radius: 0px;
  border-style: solid;
  border-width: 1px;
  border-color:  #e5e5e5;
  box-sizing: border-box;
  background-color:  #ffffff;
  width: 170px;
  height: 50px;
  font-family: 'Lato';
  color:  #002e5b;
  font-size: 16px;/* Approximation due to font substitution */
  font-weight: 400;
  line-height: 40px;/* Approximation due to font substitution */
  text-align: center;
  text-shadow: 0px 1px 0px #ffffff;
  cursor: pointer;
}
.mock-button:hover, .mock-header-right:hover, .report-block:hover, .fake-button:hover, .desk-type-btn:hover,  .report-button:hover, .the-views:hover, #the-first-button:hover {
  background-color:  #e5e5e5;
}
.index-body button {
    margin-left: 42%;
    margin-right: 47%;
    font-weight: 700;
}
 p {
  font-family: 'Lato';
  color:  #77838b;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin: 1.2em 0;
}
ul.p-format{
	font-family: 'Lato';
	color: #77838b;
	font-size: 18px;
	font-weight: 400;
	line-height: 32px;
	margin: 1.2em 0;
	
}
.large-paragraph p {
  font-family: 'Lato';
  color:  #77838b;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}
.large-text p a {
  color:  #002e5b;
  text-decoration: underline;
}
.block-grid {
  margin: 70px 0;
  margin-left: 0px !important;
}
.block-grid button {
  font-weight: 700;
  float: none;
}
.index-body h4, h4.index-body, .ex-team h4 {
    color: #a1b1bc;
    font-family: 'Lato';
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 1px;
    font-style: italic;
    line-height: 20px;
    font-weight: 300;
    margin-bottom: .75em;
}
.ex-team h4 {
     margin-top: 4px;
    line-height: 24px;
}
.ex-team p {
  font-family: 'Lato';
  color:  #77838b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  margin-top: 0px;
}
.report-page-block {
  border-style: solid;
  border-width: 1px;
  border-color:  #ebebeb;
  box-sizing: border-box;
  background-color:  #f9fafb;
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  padding: 15px;
}
.report-page-block p {
  font-size: 14px;
  line-height: 20px;
  padding: 5px 0;
  margin: .3em 0;
  text-align: left;
}
.report-container {
  text-align: left;
}
.report-col {
  float: left;
  width: 330px;
  vertical-align: top;
/*  margin-left: 0 !important;*/
  display: block;
  margin-right: 1.6%;
}
.right-report {
  float:right;
  margin-right: 0 !important;
}
.full-content {
  
}
.desk-type-btn {
    border-style: solid;
    border-width: 1px;
    border-color: #ebebeb;
    box-sizing: border-box;
    background-color: #f9fafb;
    width: 23.8%;
    height: 44px;
    float: left;
    text-align: center;
    display: inline-block;
    margin-left: 1.6%;
    font-color:;
}
.desk-type-btn a {
    font-family: 'Lato';
    color: #002e5b;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    display: inline-block;
    width: 100%;

}
.desk-type-btn.active, .mock-header-right.active, .fake-button.active, .the-views.active {
    background-color:  #002e5b;
    border-color: #002e5b;
    color: #ffffff;
    font-weight: 500;
    text-shadow: none;
}
.desk-type-btn.active a {
  color: #ffffff;
  font-weight: 300;
}
/*LOCATION and CONTACT US PAGE CSS*/
h1.contact-us {
  font-family: 'Lato';
  color:  #2c3e50;
  font-size: 54px;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: 3px;
  text-align: left;
  margin: 0;
}
.index-body h2 {
    font-family: 'Lato';
    color: #2c3e50;
    font-size: 30px;
    font-weight: 900;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin:10px 0px 20px 0px;
}
.right-location {
  width: 55%;
  float: right;
}
.city-top {
  margin-top:2.33em;
}
.no-top {
  margin-top:0;
}
.location-block p {
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  color: #77838b;
  font-family: 'Lato';
}
.margin-gone :first-child() {
  margin-top: 0px;
}
.header-text-block {
  padding:10px 0px 40px;
}
.location-block, .team-body , .padding-block, .ex-team {
  padding: 40px 0px;
}
/*//the padding adjusted for the margins on the p in the CMS- so page titles will be 80px space between body content */
.padding-title-block {
  padding: 20px 0px;
}
/*if the body content starts with an H2 from the CMS (so the big blue title) padding adjust for the title */
.h2-body-content-padding {
  padding: 30px 0px;
}
if the cms body content starts with an h4 element, the margin top there is 30, to make the distance between the title 80, add 
.location-row {
  margin: 20px 0px;
}

.gray {
  background-color:  rgb(242, 241, 241);
}
.odd:last-child {
  border-bottom: 2px solid #f2f1f1;
} 
.small-space {
  padding-bottom: 15px;
}
.header-room {
  padding: 15px 0px;
}
.authorized {
  font-size: 14px;
}
/*EXECUTIVE TEAM */ 
.team-body p, .energy-block p {
    font-size: 16px;
    line-height: 22px;
    width: 97%;
    margin-top: .4em;
}
.m-padding-right img {
  padding-right: 15px;
}
.team-body img {
  float: none;
  width: 100%;
}
/*ENERGY PAGE*/
/*ABSTRACT CSS*/
.abstract.mar-left {
  margin-left: 30px;
}
.abstract.mar-right {
  margin-right:10px;
}
.abstract p {
  margin: -5px 0px 1em;
}

/*style for buttons that have to be in the header but cant be so we use a position absolute */
.button-header-ul {
  position:absolute;
  right: 0;
  top: -100px;
}
ul.button-header-ul li {
  display: inline-block;
}
ul.button-header-ul li:first-child {
  margin-right: 10px;
}
.li-ul-list {
    display: block;
    float: right;
    position: relative;
  }
.mock-header-right {
  position: relative;
  float: left;
}
/*.mock-header-right#slight {
  margin-right: 10px;
}
.mock-header-right#report {
  top: 300px;
  right: 255px;
}*/
.no-padding {
  padding-left: 0px;
  list-style: none;
}
ul.move-report {
  padding-bottom: 15px;
  margin-top:10px;
}
ul.no-padding.archive-list {
  position: absolute;
  top: 50px;
  left: 0;
  margin-top: 0px;
  display: none;
}
ul.archive-list.active {
  display:block;
}
ul.no-padding.archive-list li:hover button {
  background-color: #e5e5e5;
}
ul.no-padding.move-report li {
  display: inline;
  width: 33%;
  float: left;
}
ul.no-padding.archive-list li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
ul.no-padding.move-report li a {
  font-family: Lato;
  color:  #002e5b;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  text-shadow: 0px 1px 0px #ffffff;
}
ul.no-padding.move-report li a:hover {
  color:#507d1a;
}
/****** Add Footer CSS Here *******/
footer {
  background-color:  #1a1c27;
} 
.footer-nav  a, #footer-nav a {
  text-decoration: none !important;
}
.footer-nav ul {
  padding: 0px;
  padding-left: 15px;
  margin: 0 auto;
  list-style: none;
  display: inline-block;
  width: 100%;
  margin-bottom: -18px;
}
.footer-nav ul li {
  display: block;
 /* border-right: 1px solid #243240;*/
}
.footer-nav > ul > li:first-child {
 margin-bottom: 15px;
}

.footer-nav > ul > li > ul> li> a {
  font-family: 'Lato';
  color:  #a1b1bc;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: .5px;
}

.footer-nav > ul > li > a:hover {
  color:  #507d1a;
}
.footer-nav ul.subnav > li > a {
  font-family: 'Lato';
  color:  #a1b1bc;
  font-size: 14px;
  font-weight: 700;
  line-height: 35px;
  text-align: left;
  text-transform: capitalize;
  letter-spacing: .5px;
}

.footer-nav  ul li a.list-title:hover, .footer-nav , .footer-nav > ul > li > ul> li> a:hover, .footer-nav ul.subnav > li > a:hover, .side-block li a:hover {
  color:  #507d1a;
  text-decoration: none;
}
.footer-nav .subnav > li:hover a:before {
  border: none;
}
#one-true .nav-blocks ul>li>ul {
  padding-left: 0 !important;
}

.footer-nav  ul li.list-title, .footer-nav  ul li a.list-title:hover {
 font-family: 'Lato';
  color: #ffffff;
  font-size: 18px; 
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 48px; 
  text-align: left;
  text-transform: uppercase;
  cursor: default;
}

.footer-nav {
  list-style: none;
}
#footer-nav p {
  color:  #a1b1bc;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px
}

.footer-wrapper {
  padding: 50px 0px;
}
/*FOR SIDE BLOCKS */
.side-block ul , .footer-social-media {
  list-style: none;
  text-align: center;
  padding: 0px;
}
.side-block {
  border-bottom: 1px solid #243240;
}
.footer-social-media li , .newsroom-footer li:first-child {
  margin-bottom: 10px;
}
.side-block:last-child {
  border-bottom: none !important;
  margin-bottom: -15px !important;
}
.side-block li a {
  font-family: 'Lato';
  color:  #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;

}
.lowercase {
  text-transform: lowercase !important;
}
.footer-social-media li , .newsroom-footer li:first-child  {
  font-family: 'Lato';
  color:  #a1b1bc;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.footer-social-media .social-icon {
  display: inline-block;
}
.footer-social-media {
    list-style: none;
    text-align: center !important;
    margin: 0;
    height: 100%;
    float: left;
}
.newsroom-footer {
/*  padding: 20px 10px !important;*/
}
.newsroom-footer li a {
  font-family: 'Lato';
  color: #758590;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; 
  text-align: center;
}
#one-true { 
  overflow: hidden;
 }

#one-true .nav-blocks {
    padding: 0px;
    float: left;
    margin-bottom: -99999px;
    padding-bottom: 99999px;
    border-right: 1px solid #243240;
}

#one-true .nav-blocks:nth-child(1) { margin-left: 0%;  }
#one-true .nav-blocks:nth-child(2) { margin-left: 0%;  }
#one-true .nav-blocks:nth-child(1) ul {padding-left: 15px;}
#one-true .nav-blocks:nth-child(2) ul, #one-true .nav-blocks:nth-child(3)}
#one-true .nav-blocks:nth-child(3) { margin-left: 0%;   }
#one-true .nav-blocks:nth-child(4) { margin-right: -3%; border-right: none !important;  }
/*#one-true p { margin-bottom: 30px; } /* Bottom padding on col is busy */
ul.social-icon-list {
    width: initial;
    float: initial;
    border-bottom: none;
}
#footer-nav ul li:last-child a:before {
  content: '\00A9';
}
#one-true .nav-blocks:nth-child(3) ul li a.has-children {
  text-transform: uppercase;
}
.side-block ul.for-padding {
  margin: 40px 10px;
}
.footer-nav  ul.subnav {
  padding-left: 0px;
  list-style: square;
  padding-bottom: 25px;
}
.footer-nav ul.subnav li:before {
  content: "-";
  color: #a1b1bc;
  font-size: 14px;
  padding-right: 5px;
}
.footer-credits {

}
.footer-credits #copyright {

}
.footer-credits #otherinfo {
  
}
.right-list-footer {
  position: absolute;
  top:0;
  right: 0;
}
.right-list-footer ul {
  list-style: none;
}
.end-grid {
  background-color:  #222533;
  padding: 1.5em 0;
}
#footer-nav ul {
  list-style: none;
  padding-left: 0px;
  margin:0;
}
#footer-nav ul li {
  display: inline-block;
  list-style: none;
  border-right: 1px solid #a1b1bc;
}
#footer-nav ul li:first-child {
  padding-left: 0px;
}
#footer-nav ul li a , #footer-nav li {
  font-family: 'Lato';
  color:  #a1b1bc;
  font-size: 14px;/* Approximation due to font substitution */
  font-weight: 400;
  line-height: 19px;/* Approximation due to font substitution */
  text-align: left;
 
  padding: 0px 5px;
}
#footer-nav ul li:nth-last-child(-n+2) {
  border-right: none;
}
#footer-nav ul li:last-child {
  float: right;
  border-right: none;
}
#footer-nav ul li:last-child::before {
    content: "©";
  margin-right: 5px;
}
#footer-nav ul li a.underline-hover.active, .top-nav-hover a.active, .top-nav-hover a.active a.parent-active {
 opacity: .5;
}
.top-nav-hover.active .news-hover {
  opacity: 1;
}
li a.underline-hover:hover, #footer-nav a:hover, .top-nav-hover a:hover {
  text-decoration: underline !important;
  color: #a1b1bc;
}

/****** Add Campaign CSS Here *******/
/****** Carousel CSS Auto-embed - Base Styles *******/

/* Slick Base Carousel -- http://kenwheeler.github.io/slick/ -- do not change below */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
        background-position: center;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 0;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: none;
    background: rgba(0,0,0,0.3);
    z-index: 100;
}
/*.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}*/
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 50px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: 0%;
}
[dir='rtl'] .slick-prev {
    right: 25px;
    left: auto;
}
.slick-prev:before {
    content: '\f104';
}
[dir='rtl'] .slick-prev:before {
    content: '\f104';

}

.slick-next {
    right: 0% ;
}
[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}
.slick-next:before {
   content: '\f105';
}
[dir='rtl'] .slick-next:before {
    content: '\f105';
}

/* Dots */
.slick-dotted.slick-slider {
    /*margin-bottom: 30px;*/
}
.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'arial', sans-serif;
    font-size: 48px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
}
/* End Slick Base Carousel -- do not change above */

/****** End Carousel CSS Auto-embed - Base Styles *******/
/****** Carousel CSS Auto-embed - site specific area *******/

/* Carousel content styling, including any Slick changes to dots, arrows, etc. */
.byte-parent-carousel {
	position: relative;
	height: 650px;
  width: 100%;
}
.top-carousel-text {
  height: 60px;
  background-color: #1a1c27;
  opacity: .8;
  text-align: center;
  position: absolute;
  top: 0;
  z-index: 199;
  width: 100%;

}
.top-carousel-text h3 {
  font-family: 'Lato';
  color:  #ffffff;
  font-size: 26px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 1px;
  position: absolute;
 /*
 width: 100%;
  top: 15%;
  display: inline-block;
*/

  }
.byte-carousel {
  width: 100%;
	height: 650px;
	position: absolute;
	top: 0;
	left: 0;
}
.byte-carousel .slick-track {
    height: 650px;
}
.mobile-align {
	display: inline-block;
    vertical-align: middle;
    }
.byte-carousel-pane {
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
	position: relative;
}
.byte-carousel-pane .byte-carousel-text h3 {
  font-family: 'Lato';
  color:  #ffffff;
  font-size: 50px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase; 
  width: 100%; 
  letter-spacing: 2px;
}
.byte-carousel-pane .byte-carousel-text  {
    
    top: 30%;
    
}
.byte-carousel-text p {
    font-family: 'Lato';
    color:  #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    text-transform: uppercase;
    width: 60%;
    margin-bottom: 40px;
    letter-spacing: 2px;

}
.fake-button  {
   border-radius: 2px;
  border-style: solid;
  width: 170px;
  height: 50px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  background-color:  #ffffff;
  text-align: center;
  position: relative;

}
.byte-carousel-pane .byte-carousel-link {
  position: absolute;
  width: 100%;
  font-family: 'Lato';
  color:  #002e5b;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  left: 0;
  padding-top: 13px;
  display: inline-block;
  height: 100%;
}
.byte-carousel .slick-dots {
    bottom: 15px;
}
.byte-carousel .slick-dots li button:before {
    color: white;
}
.byte-carousel .slick-dots li.slick-active button:before {
    color: white;
}
.byte-carousel-pane-link {
    position: absolute;
    bottom: 20px;
    right: 20px;

    text-decoration: none;
    color: yellow;
    text-transform: uppercase;
}

.byte-parent-carousel.is-hidden-fade {
    opacity: 0;
}
.byte-parent-carousel.is-visible-fade {
    opacity: 1;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
    position: relative;
}



.byte-carousel-2 {
    display: none;
}
/* End Carousel content styling, including any Slick changes to dots, arrows, etc. */
/****** Carousel CSS Auto-embed - Base Styles *******/

/* Slick Base Carousel -- http://kenwheeler.github.io/slick/ -- do not change below */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* Dots */
.slick-dotted.slick-slider {
    /*margin-bottom: 30px;*/
}
.home-block .slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.home-block .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0px;
    padding: 0;
    cursor: pointer;
}
.home-block .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.home-block .slick-dots li button:hover, .slick-dots li button:focus {
   color: green;
}
.home-block .slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}
.home-block .slick-dots li button:before {
    font-family: 'arial', sans-serif;
    font-size: 35px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.home-block .slick-dots li.slick-active button:before {
    opacity: .75;
}
/* End Slick Base Carousel -- do not change above */

/****** End Carousel CSS Auto-embed - Base Styles *******/

/****** Carousel CSS Auto-embed - Base Styles *******/

/* Slick Base Carousel -- http://kenwheeler.github.io/slick/ -- do not change below */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* Dots */
.slick-dotted.slick-slider {
    /*margin-bottom: 30px;*/
}
.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'arial', sans-serif;
    font-size: 48px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
}
/* End Slick Base Carousel -- do not change above */

/****** End Carousel CSS Auto-embed - Base Styles *******/

/****** End Carousel CSS Auto-embed - site specific area *******/

/****** Carousel CSS Auto-embed - site specific area *******/

/* Slick more site defined additions -- change if necessary below */

.slick-loading .slick-list
{
    /*background: #fff url('./ajax-loader.gif') center center no-repeat;*/
}

/* Icons */
/*
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
*/

/* End Slick more site defined additions -- change if necessary below */
.home-block .byte-logo-carousel .slick-dots li button:before {
    color: black;
}
.home-block .byte-logo-carousel .slick-dots li.slick-active button:before {
    color: #507d1a;
}

/* Carousel content styling, including any Slick changes to dots, arrows, etc. */
/* Carousel content styling, including any Slick changes to dots, arrows, etc. */
.byte-parent-logo-carousel {
    position: relative;
    height: 265px;
    width: 100%;
}
.byte-logo-carousel {
    width: 100%;
    height: 220px;
    position: absolute;
    top:0;
    left: 0;
}
.byte-parent-logo-carousel .slick-dots {
    bottom: -25px;
}
.byte-parent-logo-carousel .slick-track {
  text-align: center;
  box-sizing: border-box;
}
.byte-logo-carousel-pane {
  box-sizing: border-box;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.byte-logo-carousel-pane .byte-carousel-text h3 {
    color: white;
    font-size: 28px;
    font-family: "Montserrat", sans-serif
}
.byte-logo-carousel-pane .byte-carousel-text {
    position: absolute;
    width: 40%;
    right: 25px;
    bottom: 75px;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 100;
    line-height: 26px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    color: white;
}
.byte-logo-carousel-pane .byte-carousel-link {
    display: block;
    width: 225px;
    text-decoration: none;
    padding: 10px;
    background-color: #091933;
    color: white;
}

.byte-parent-logo-carousel.is-hidden-fade {
    opacity: 0;
}
.byte-parent-logo-carousel.is-visible-fade {
    opacity: 1;
    -webkit-transition: opacity .5s;
    -moz-transition: opacity .5s;
}

.byte-logo-carousel-pane img {
    display: inline-block;
    margin-left: -.25em;
}
.vertical-center-wrapper {
  display: block;
  width: 250px;
  height: 225px;
  text-align: center;
  box-sizing: border-box;
}
.vertical-center-wrapper:before { /*this CSS gives the 'vertical-center' div a reference to align to*/
  content: '';
  display: inline-block;
  min-height: 100%;
  vertical-align: middle;
  margin-right: -0.5em; /*offsets this :before element*/
}
.vertical-center {
  display: inline-block;
  vertical-align: middle; /*maybe not needed: check after installing*/
  height: auto;
  text-align: center;
}
/* End Carousel content styling, including any Slick changes to dots, arrows, etc. */

/****** End Carousel CSS Auto-embed - site specific area *******/


/****** Add Buckets CSS Here *******/
.notice-wrap {
	position: fixed;
    top: 0;
    left: 0;
    z-index: 100001;
    width: 100%;
    height: 120px;
    overflow: hidden;
    color: #fff;
    background-color: #333333;
}
.notice-container {
	outline: 1px solid #77838b;
    outline-offset: -5px;
	position: relative;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    height: 100%;
}
.notice-info {
	margin: 0 auto;
    display: block;
    width: 95%;
}
#notice-exit {
	position: absolute;
    top: .5em;
    right: 1em;
}
.notice-info a {
	    color: #77838b;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;        font-family: 'Lato' !important;
    font-size: 16px;
        line-height: 20px;
}
#notice-exit:after {
	content: '\f00d';
	font-family: 'FontAwesome';
	color: #888;
	font-size: 20px;
}
/****** Add Email Signup Form CSS Here *******/

/****** Add Mobile Menu CSS Here *******/
/* Search Icon */
.m-background {
  height: 100vh;
  background-color: #444;
  opacity: .5;
}
.search-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 1.5px 12px;/*style to design*/
  z-index: 10;
}	
#search-icon {
  color: #a1b1bc;
  margin: 0 10px;

}

/* Search Input */
.mobile-search {
   /* display: none;*/
}

/* Hamburger Icon */
.hamb-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	padding: 12px 1.5px 12px;/*style to design*/
	z-index: 10;
}
.hamb-wrapper:before {
	content: '';
	display: inline-block;
	min-height: 100%;
	vertical-align: middle;
	margin-right: -0.5em;
}
.hamb-wrapper > span {
	color: #a1b1bc
	font-size: 16px;/*style to design*/
	font-weight: 700;/*style to design*/
  padding-left: 15px;/*style to design*/
  vertical-align: middle;/*style to design*/
}
#hamb-icon {
  color: #a1b1bc;
	position: relative;
	display: inline-block;
	margin: 0 10px;
	float: left;
  vertical-align: middle;
	width: 35px;/*style to design*/
	height: 25px;/*style to design*/
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	z-index: 100;
}
#hamb-icon span {
	display: block;
	position: absolute;
	height: 5px;/*style to design*/
	width: 100%;
	background: #a1b1bc;
	border-radius: 0;
	opacity: 1;
	left: 0;
	/* Animate "X" back to Hamburger Icon */
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
#hamb-icon span:nth-child(1) {
	top: 0px;
}
#hamb-icon span:nth-child(2) {
	top: 11px;/*style to design*/
}
#hamb-icon span:nth-child(3) {
	top: 11px;/*style to design*/
}
#hamb-icon span:nth-child(4) {
	top: 22px;/*style to design*/
}
#hamb-icon.open span:nth-child(1) {
	top: 22px;/*style to design*/
	width: 0%;
	left: 50%;
}
#hamb-icon.open span:nth-child(2) {
	/* Animate Hamburger Icon into clickable "X" */
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#hamb-icon.open span:nth-child(3) {
	/* Animate Hamburger Icon into clickable "X" */
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#hamb-icon.open span:nth-child(4) {
	top: 22px;/*style to design*/
	width: 0%;
	left: 50%;
}
/* End Hamburger Icon */

/* MAIN NAV */

.main-nav-wrapper {
  width: 100%;
}
.main-nav {
	  display: none;
    position: absolute;
    width: 100%;
    top: 50px;
    margin: 0 auto 5px;
    z-index: 200;
    background-color: #444444;
    overflow-y: auto; /* creates scrollable area inside open menu */
    height: 100vh; /* makes mobile navigation fill viewport 100% */
}
.main-nav.active {
  display: block;
}
.main-nav > ul {
    height: auto;
    padding: 0 0 120px;
    margin: 0 auto;
}
nav.main-nav > ul > li {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;/*style to design*/
    padding: 10px 0px 0px;
    margin: 0 auto 0;
    text-transform: uppercase;
    font-size: 18px;
    text-align: left;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(54, 54, 54);
}
nav.main-nav ul li.second-nav a {
  text-transform: none;
}
nav.main-nav ul li a {
    color: #fff;
    font-family: 'Lato';
    font-weight: 500;
    text-decoration: none;
    padding-left: 10px;
    margin: 0 auto 0;
    text-transform: uppercase;
    font-size: 18px;
    text-align: left;
    box-sizing: border-box;
    display: block;
    padding: 20px 15px;
    letter-spacing: .5px;
}
/*nav.main-nav ul li a.drop:after {
  content: "\f105";
  font-family: 'FontAwesome';
  position: absolute;
  right: 15px;
}*/

nav.main-nav ul li.active {
    color: #fff;
    background-color: #222;
}
nav.main-nav ul li:hover > a {
    color: #fff;
}

/* SUBNAV DROP ARROW */
.main-nav a.down {
    position: absolute;
    text-align: center;
    top: 5px;/*style to design*/
    right: 0;
	  background-color: #7D7D7D;/*style to design*/
    margin: 0;
    padding: 5px 10px;/*style to design*/
}


/****** Add Forms CSS Here *******/


/****** Add Specific Site, Page CSS Content, Tools Here *******/

/****** Add WYSIWYG / Body Content CSS Here *******/

h1 {
  font-family: 'Lato';
  color:  #2c3e50;
  font-size: 54px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: left;
  margin: .4em 0 40px;
}
h3 {
  color: #333;
  font-size: 16px;
  margin: 0;
  font-family:'Montserrat', sans-serif;
}
p  {
  font-family: 'Lato';
  color:  #77838b;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px
}
.common-grid ul { overflow: hidden; }
li {
  font-family: 'Lato';
  color:  #77838b;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px
}
.award-date {
  font-weight: bold;
  padding-right: 30px;
  font-family: 'Lato';
  color:  #77838b;
  font-size: 18px;
  line-height: 32px
}
.small-bullet-head {
    font-weight: 700;
    float: left;
    padding-bottom: 20px;
    width: 15%;
    font-family: 'Lato';
    color:  #77838b;
    font-size: 18px;
   
}
/*.button-header-ul {
  position: static;
  margin-bottom: 0;
}
*/
.index-body a {
  color:  #002e5b;
  font-family: 'Lato';
}
.large-paragraph, table caption {
  font-family: 'Lato';
  color:  #77838b;
  font-size: 24px;
  font-weight: 300;
  line-height: 34px;
}
.small-blue-title {
    font-family: 'Lato';
    margin: 0;
    color: #002e5b;
    font-size: 16px;
    letter-spacing: 0px;
    font-weight: 700;
    text-align: left;
    text-shadow: 0px 1px 0px #ffffff;
    text-transform: none;
}
ul.middle-text li, td {
  font-family: 'Lato';
  color:  #77838b;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}
h5.report-small-blue-title {
  font-family: 'Lato';
  color:  #002e5b;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  text-transform: none;
  letter-spacing: 0px;
  margin: 10px 0;
}
.header-2 {
    font-family: 'Lato';
    color: #2c3e50;
    font-size: 30px;
    font-weight: 900;
    line-height: 25px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 10px 0px 25px 0px;

}
h4.italic-title {
    color: #a1b1bc;
    font-family: 'Lato';
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: .5px;
    line-height: 20px;
    font-weight: 300;
    margin: 10px 0 .75em;
    font-style: italic;
}
.blockquote {
  display: block;
  font-family:'Montserrat', sans-serif;
  color:  #0c437a;
  font-size: 17px;
  font-style: italic;
  margin-left: 2em;
  padding-left: 1.5em;
  border-left: solid 3px #c5d9ec;
  line-height: 28px;
  quotes: none;
}
.small-paragraph {
   font-size: 14px;
   line-height: 20px; 
}

.img_right_25,
.img_left_25,
.img_right_50,
.img_left_50 {
  width: 100%;
  margin-bottom: 1em;
}

.img_left_50 {
	width: 50%;
	float: left;
	margin-right: 10px;
}
.img_left_25 {
	width: 30%;
	float: left;
	margin-right: 10px;
}
.img_full_width {
  width: 100%;
  float: none;
  margin-bottom: 1em;
}
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}
.email a {
  color:  #002e5b;
  text-decoration: underline;
}
.email a:hover {
  text-decoration: underline;
}


/* Specific Screen Sizes from Foundation */

/* Small only */
@media screen and (max-width: 39.9375em) {
/*  energy and enviroment third child pages*/
  .mobile-extra-padding {
    padding: 10px 0px;
  }
  .common-report-block {
    margin: 10px 0px;
  }
  .small-bullet-head {
    width: 100%;
    padding-bottom: 0px;
    font-size:16px;
  }
  .s-line {
    
  }
  .desk-type-btn {
    margin: 10px 0;
  }
  .desk-type-btn.no-left {
    margin-left: 1.6%;
  }
  .pdf-a {
    font-size: 16px;
  }
  .energy-block img {
    width: 100%;
  }
  .team-body img {
    width: 100%;
    margin-bottom: -20px;
  }
  .team-body p, .energy-block p {
    width: 100%;
    line-height: 30px;
  }
  .big-header-text {
    top: 20%;
  }
      /* SUBNAV */
  ul.active {
    display: block;
  }
  .right-location {
    width: 50%;
    text-align: right;
  }
  .city-top {
    margin-top:0;
  }
  .m-padding-right img {
    padding-right: 10px;
    width: 12%;
  
  }
  p {
    font-size: 16px;
    margin: 1em 0;
  }
  .large-paragraph {
    font-size: 20px;
    line-height: 30px;
  }
  .end-grid #footer-nav ul li:last-child {
    float: none;
  }
  .subnav {
      display: none;
      position: relative;
      width: 100%;
      box-sizing: border-box;
      padding-left: 0px !important;
      background: #444;
      
  }
  .subnav > li {
      position: relative;
      border-bottom: 1px solid rgb(54, 54, 54);
      display: list-item !important;
  }
  .subnav li:last-child, nav.main-nav ul.subnav li ul.subnav2 li:last-child {
    border-bottom: none;
  }
  nav.main-nav ul.subnav li a {
    text-transform: none;
    padding-left: 40px;
  }
  nav.main-nav ul.subnav li ul.subnav2 li {
    border-bottom: 1px solid rgb(54, 54, 54);
  }
  nav.main-nav ul.subnav li ul.subnav2 li a  {
      color: #a1b1bc;
  }
  li a.has-children {
    text-transform: uppercase;
  }
  nav.main-nav .subnav > li.active {
   background-color: #222;
  }

  /* SUBNAV2 */
  .subnav2 {
      padding-left: 0px;
      background: #444;
  }
  .subnav-wrapper2 {
    display: none;
  }
  .subnav-wrapper2.active {
    display: block;
  }

  i.first-i.switch-icon {
    float: right;
    padding: 15px 15px 15px 20px;
    margin-top: -15px;
  }
  .main-menu li {
    border-right: none;
    width: 100%;
  }
  .main-menu li a {
    padding: 15px 0;
  }
  li.first-menu a {
    cursor: default;
  }
  .side-block{
    text-align: left;
    padding: 1em 0em;

  }
  .top-search {
    position: absolute;
    top: 8px;
    right: -1000%;
    left: 17%;
    width: 81%;
    margin: 0 auto;
    float: none;

 }
 .top-search-icon {
  top:17px;
 }
   #footer-nav ul li,  #footer-nav ul p {
    padding: 1.5em 1em;
    float: none;
    text-align: left;
  }
  #footer-nav ul li {
    border-bottom: 1px solid #243240;
  }
  .end-grid {
    padding: 0;
  }
  ul.footer-social-media:first-child li , .newsroom-footer li:first-child a {
    display: none;
  }
  ul.social-icon-list {
    width: 100%;
  }
  .social-icon {
    padding: 1.25em;
    border-right: 1px solid #243240;
    width: 19%;
  }
  ul li.social-icon:last-child {
    border-right: none;
  }
  .footer-social-media li, .newsroom-footer li:first-child {
    margin-bottom: 0;
  }
  .social-icon a {
    padding: 1.25em .50em 0.50em;
    display: inline;
    border-radius: 4px;
  }
  .twitter i, .facebook i, .linkedin i {
    font-size: 35px;
  }
  .social-icon a.facebook {
    padding: 1.25em .75em 0.5em;
  }
  .side-block.social-media-block {
    padding: 0;
    border-bottom: none;
  }
  #footer-nav ul li:first-child {
    padding-left: 1em;
  }
  .side-block ul.for-padding {
    margin:0;
    text-align: left;
    margin-left: 5%;
  }
  .footer-wrapper {
    padding: 0;
  }
  .top-carousel-text h3 {
    font-size: 15px;
    line-height: 20px;
  }
  .byte-parent-carousel, .byte-carousel, .byte-carousel .slick-track {
    height: 580px;
  }
  .byte-carousel-text p {
    line-height: 30px;
    font-size: 20px;
    width: 100%
  }
  .byte-carousel-pane .byte-carousel-text {
    margin: 0 auto;
    top: 20%;
    left: 10px;
    padding: 0px 25px;
  }
  .byte-carousel-pane .byte-carousel-text h3 {
    font-size: 38px;
  }
  .slick-prev, .slick-next {
    width: 30px;
    height: 30px;
  }
  .slick-prev:before, .slick-next:before {
    font-size: 30px;
  }
  .home-block h3 {
    text-align: left;
    font-weight: 700;
    padding-left: 10px;
  }

  .home-content {
    padding: 5% 2.5%;
  }
  .body-wrapper {
    padding: 20px 0;
  }
  .background-header.scroll {
  position: fixed;
  top: 0;
  z-index: 100;
}
 .big-header {
  position: relative;
    z-index: -10;
    height: 220px;
    background-position: center;
    background-size: auto 100%;
 } 
 .big-header h1 {
  font-size: 34px;
  letter-spacing: 3px;
  padding-left: 6%;
 }
 h1.contact-us {
  font-size: 27px;
  line-height: 25px;
  letter-spacing: 1px;
 }
.mobile-menu-wrap.scroll {
  position: fixed;
  z-index: 120;
}
.main-nav-wrapper.scroll {
  position: fixed;
    width: 100%;
    z-index: 100;
    height: 100vh;
    overflow: auto;
    padding-bottom: 36px;
}
h5, .index-body h5, h2.header-2, .index-body h2 {
  font-size: 20px;
  line-height: 25px;
  margin: 5px 0px;
}
h5> a.link-title {
  font-size: 22px;
}
h4, .index-body h4, h4.italic-title {
  font-size: 15px;
  font-weight: 500;
}
h1 {
  font-size: 31px;
  letter-spacing: 2px;
  margin: 1em 0 .3em;
}
.report-block h5 {
  line-height: 20px;
  font-size: 14px;
}
.location-block, .team-body, .padding-block, .ex-team {
  padding: 20px 0;
}

.s-bottom-padding {
  padding-bottom: 15px;
}
ul.button-header-ul li {
  display: inline-block;
  float: none;
}
.abstract.mar-left, .abstract.mar-right {
  margin: 0px;
}
	/* to disable touch panning / scrolling */
	html,body {
		overflow-x: hidden;
	}
	body {
		position: relative;
	}
	.grid-w-gutters .column + .column {
		margin-left: 0;
	}
	.grid, .grid-w-gutters { width: 100%; }
	/* standard stuff for small only screen */
	.s-one { width: 8.33%; }
	.s-two { width: 16.66%; }
	.s-three { width: 25%; }
	.s-four { width: 33.33%; }
	.s-five { width: 41.66%; }
	.s-six { width: 50%; }
	.s-seven { width: 58.33%; }
	.s-eight { width: 66.66%; }
	.s-nine { width: 75%; }
	.s-ten { width: 83.33%; }
	.s-eleven { width: 95%; }
	.s-twelve { width: 100% !important; }

	.s-text-left { text-align: left; }
	.s-text-right { text-align: right; }
	.s-text-center { text-align: center; }
	.s-text-justify { text-align: justify; }

  .s-margin-top {
    margin-top: -40px;
  }
  .button-header-ul {
    position: static;
  }

	/****** Add Site CSS Content, Tools for Small Here *******/
  footer {
/*    margin-top: 50px;*/
  }

	/****** Add Regular WYSIWYG Content for Small Here *******/
	.img_right_25,
	.img_right_50 {
		float: right;
		width: 50%;
		margin: 1em 0 2em 2em;
	}
	.img_left_25,
	.img_left_50 {
		float: left;
		width: 50%;
		margin: 1em 2em 2em 0;
	}
	.img_full_width {
		width: 100%;
		float: none;
		margin: .5em auto 1em;
	}
	.mobile-only {
		display: block;
	}
	.desktop-only {
		display: none;
	}
  .header-2 {
    font-size: 21px;
    letter-spacing: 1px;
  }

}

/* Medium and up */
@media screen and (min-width: 40em) {

}

/* Medium only */
@media screen and (min-width: 500px) and (max-width: 985px) {
	.notice-wrap {
		height: 230px;
	}
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  #market h5, #locations h5 {
    line-height: 30px;
  }
  .report-page-block p {
    margin: 0;
  }
	/* to disable touch panning / scrolling */
	html,body {
		overflow-x: hidden;
	}
	body {
		position: relative;
	}
  li.second-menu ul {
    left: 100%;
  }
  ul.main-menu li:first-child {
    border: none;
  }
  .grid-w-gutters .column + .column {
    margin-left: 0.8%;
  }
  .tablet-no {
    display: none;
  }
  .tablet-yes {
    display: block;
  }
  .right-report {
    float:left;
    /*margin-right: 1.6% !important;*/
  }
  .view-more {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .m-full img {
    width: 100%;
  }
  .top-carousel-text h3 {
    font-size: 21px;
  }
  .report-col {
/*    width: 48% !important;
    display: inline-block;
    margin-left: -.25em;*/
    margin-right: 0;
  }
  .right-report {
/*    margin-right: 1.6% !important;*/
  }
  .m-right {
    float: right;
  }
/*  .mock-header-right#slight {
    left: 0;
  }
  .mock-header-right {
    top: -10px;
    left: 200px;
  }*/
/*  COPIED FROM SMALL */
  .end-grid #footer-nav ul li:last-child {
    float: none;
  }
  ul.active {
    display: block;
  }
  .subnav {
      display: none;
      position: relative;
      width: 100%;
      box-sizing: border-box;
      padding-left: 0px !important;
      background: #444;
      
  }
  .subnav > li {
      position: relative;
      border-bottom: 1px solid rgb(54, 54, 54);
      display: list-item !important;
  }
  .subnav li:last-child, nav.main-nav ul.subnav li ul.subnav2 li:last-child {
    border-bottom: none;
  }
  nav.main-nav ul.subnav li a {
    text-transform: none;
    padding-left: 40px;
  }
  nav.main-nav ul.subnav li ul.subnav2 li {
    border-bottom: 1px solid rgb(54, 54, 54);
  }
  nav.main-nav ul.subnav li ul.subnav2 li a  {
      color: #a1b1bc;
  }
  li a.has-children {
    text-transform: uppercase;
  }
  nav.main-nav .subnav > li.active {
   background-color: #222;
  }

  /* SUBNAV2 */
  .subnav2 {
      padding-left: 0px;
      background: #444;
  }
  .subnav-wrapper2 {
    display: none;
  }
  .subnav-wrapper2.active {
    display: block;
  }

  i.first-i.switch-icon {
    float: right;
  }
  .main-menu li {
    border-right: none;
    width: 100%;
  }
  .main-menu li a {
    padding: 15px 0;
  }
  .side-block{
    text-align: left;
    padding: 1em;

  }
  .top-search {
    position: absolute;
    top: 8px;
    right: -1000%;
    left: 17%;
    width: 81%;
    margin: 0 auto;
    float: none;

 }
 .top-search-icon {
  top:17px;
 }
   #footer-nav ul li,  #footer-nav ul p {
    padding: 1.5em 1em;
    float: none;
    text-align: left;
  }
  #footer-nav ul li {
    border-bottom: 1px solid #243240;
  }
  .end-grid {
    padding: 0;
  }
  ul.footer-social-media:first-child li , .newsroom-footer li:first-child a {
    display: none;
  }
  ul.social-icon-list {
    width: 100%;
  }
  .social-icon {
    padding: 1.25em;
    border-right: 1px solid #243240;
    width: 19%;
  }
  ul li.social-icon:last-child {
    border-right: none;
  }
  .footer-social-media li, .newsroom-footer li:first-child {
    margin-bottom: 0;
  }
  .social-icon a {
    padding: 1.25em .50em 0.50em;
    display: inline;
    border-radius: 4px;
  }
  .twitter i, .facebook i, .linkedin i {
    font-size: 35px;
  }
  .social-icon a.facebook {
    padding: 1.25em .75em 0.5em;
  }
  .side-block.social-media-block {
    padding: 0;
    border-bottom: none;
  }
  #footer-nav ul li:first-child {
    padding-left: 1em;
  }
  .side-block ul.for-padding {
    margin:0;
    text-align: left;
  }
  .footer-wrapper {
    padding: 0;
  }
/*  END OF COPIED FROM SMALL*/

.m-auto-fix {
  margin: 0 auto;
  text-align: center;
}
.home-block.tab-half {
  float: none;
  display: inline-block;
  margin-left: -.25em !important;
  vertical-align: top;
  max-width: 350px;
}
#feat-d-right {
  margin-right: .8em;
}
.bucket-slider-text {
  margin-top: -4px;
}
.home-block.tab-full {
  max-width: 715px;
  float: none;
  display: inline-block;
  margin-left: -.25em !important;
}
	/* give us some space */
	.grid, .grid-w-gutters { width: 95%; }
  .grid-w-gutters .m-one { width: 6.86666666667%; }
  .grid-w-gutters .m-two { width: 15.3333333333%; }
  .grid-w-gutters .m-three { width: 23.8%; }
  .grid-w-gutters .m-four { width: 32.2666666667%; }
  .grid-w-gutters .m-five { width: 40.7333333333%; }
  .grid-w-gutters .m-six { width: 49.2%; }
  .grid-w-gutters .m-seven { width: 57.6666666667%; }
  .grid-w-gutters .m-eight { width: 66.1333333333%; }
  .grid-w-gutters .m-nine { width: 74.6%; }
  .grid-w-gutters .m-ten { width: 83.0666666667%; }
  .grid-w-gutters .m-eleven { width: 91.5333333333%; }
  .grid-w-gutters .m-twelve { width: 100%; }

	/* standard stuff for medium only screen */
	.m-one { width: 8.33%; }
	.m-two { width: 16.66%; }
	.m-three { width: 25%; }
	.m-four { width: 33.33%; }
	.m-five { width: 41.66%; }
	.m-six { width: 50%; }
	.m-seven { width: 58.33%; }
	.m-eight { width: 66.66%; }
	.m-nine { width: 75%; }
	.m-ten { width: 83.33%; }
	.m-eleven { width: 91.66%; }
	.m-twelve { width: 100%; }


	.m-text-left { text-align: left; }
	.m-text-right { text-align: right; }
	.m-text-center { text-align: center; }
	.m-text-justify { text-align: justify; }

	/* Show mobile navs and details here */
/*	.hamb-wrapper {
		display: block;
	}*/
	.header-logo {
		padding-top: 5px;
		margin-left: 5px;
	}
	.header-toolmenu {
		display: none;
	}
	.main-navigation {
		display: none;
	}
  #main-logo {

  }
  #evo-text {
    width: 70%;
  }
  .small-bullet-head {
    padding-bottom: 40px;
  }
  .button-header-ul {
    left: 0;
    top: -40px;
    margin-bottom: 20px;
    position: static;
  }
  .li-ul-list {
    display: block;
    float: none;
    position: relative;
  }
  .abstract.mar-left {
    margin-left: 0;
  }
  .abstract.mar-right {
    margin-right: 0;
  }
  .big-header h1 {
    font-size: 50px;
  }
  .m-bio.ex-team {
    padding-top: 0px;
  }
  .m-name.ex-team {
    padding-bottom:10px;
  }
footer> .grid, #footer-nav {
  width:100%;
}
	/****** Add Site CSS Content, Tools for Medium Here *******/


	/****** Regular WYSIWYG Content for Medium *******/

	.h2-header {
		color: #091521;
		margin: 1em auto .25em;
		font-family: "Code-Pro", sans-serif;
		font-weight: 100;
		font-size: 20px;
		line-height: 17px;
	}

	.h3-subheader {
		font-family: 'Open Sans', sans-serif;
		color:  #214364;
	}

	.h3-subheader-italic {
		margin: .25em auto .75em;
		font-family: 'Open Sans';
		font-style: italic;
		color: #214364;
		font-weight: 100;
	}

	.blockquote {
		display: block;
		font-family: 'Open Sans', sans-serif;
		color:  #0c437a;
		font-size: 17px;
		font-style: italic;
		margin-left: 2em;
		padding-left: 1.5em;
		border-left: solid 3px #c5d9ec;
		line-height: 28px;
		quotes: none;
	}

	/****** Regular image WYSIWYG Content for Medium *******/
	.img_right_25,
	.img_right_50 {
		float: right;
		width: 50%;
		margin: 1em 0 2em 2em;
	}
	.img_left_25,
	.img_left_50 {
		float: left;
		width: 50%;
		margin: 1em 2em 2em 0;
	}

	.img_full_width {
		width: 100%;
		float: none;
		margin: .5em auto 1em;
	}

}

/* Large and up */
@media screen and (min-width: 64em) {
  .grid, .grid-w-gutters {
  width: 95%;
  max-width: 960px;
  position: relative;
  margin: 0 auto;
  box-sizing: border-box;
}
.col-1-across { width: 8.33%; }
.col-2-across { width: 16.66%; }
.col-3-across { width: 25%; }
.col-4-across { width: 33.33%; }
.col-5-across { width: 41.66%; }
.col-6-across { width: 50%; }
.col-7-across { width: 58.33%; }
.col-8-across { width: 66.66%; }
.col-9-across { width: 75%; }
.col-10-across { width: 83.33%; }
.col-11-across { width: 91.66%; }
.col-12-across { width: 100%; }
.grid-w-gutters .col-1-across { width: 6.86666666667%; }
.grid-w-gutters .col-2-across { width: 15.3333333333%; }
.grid-w-gutters .col-3-across { width: 23.8%; }
.grid-w-gutters .col-4-across { width: 32.2666666667%; }
.grid-w-gutters .col-5-across { width: 40.7333333333%; }
.grid-w-gutters .col-6-across { width: 49.2%; }
.grid-w-gutters .col-7-across { width: 57.6666666667%; }
.grid-w-gutters .col-8-across { width: 66.1333333333%; }
.grid-w-gutters .col-9-across { width: 74.6%; }
.grid-w-gutters .col-10-across { width: 83.0666666667%; }
.grid-w-gutters .col-11-across { width: 91.5333333333%; }
.grid-w-gutters .col-12-across { width: 100%; }

	/* Hide mobile navs and details here */
	.hamb-wrapper {
		display: none;
	}
	.main-navigation-mobile {
		display: none;
	}
	.content-social-buttons {
		display: block;
	}

	/****** Regular WYSIWYG Content for Large *******/

	.h2-header {
		color: #091521;
		margin: 1em auto .25em;
		font-family: "Code-Pro", sans-serif;
		font-weight: 100;
		font-size: 20px;
		line-height: 17px;
	}

	.h3-subheader {
		font-family: 'Open Sans', sans-serif;
		color:  #214364;
	}

	.h3-subheader-italic {
		margin: .25em auto .75em;
		font-family: 'Open Sans';
		font-style: italic;
		color: #214364;
		font-weight: 100;
	}

	.blockquote {
		display: block;
		font-family: 'Open Sans', sans-serif;
		color:  #0c437a;
		font-size: 17px;
		font-style: italic;
		margin-left: 2em;
		padding-left: 1.5em;
		border-left: solid 3px #c5d9ec;
		line-height: 28px;
		quotes: none;
	}

	/****** Regular Image WYSIWYG Content for Large *******/

}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
}

/* End Specific Screen Sizes from Foundation */

/*@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
  body {
    zoom: .5;
   }

}*/

  /* ==========================================================================
 START SEARCH PATTERN styles
   ========================================================================== */
  
/*
*, *:before, *:after {
  box-sizing: border-box;
}
*/
.highlight{
  font-weight: bold;
  font-style: italic;
  color: black;
}
.toggled{
  display: block!important;
}
#search-container{
  overflow: auto;
  box-sizing: border-box;
  font-family: "Signika", sans-serif;
}
#search-container hr{
  background: #D2D2D2;
    height: 1px;
    border: none;
}
.search-icon{
  color: #005b7f;
  cursor: pointer;
}
#top-search-input{
    position: absolute;
    left: 3000px;
    width: 480px;
    background: white;
    display:none;
}
#top-search-input form input[type=text]{
  width: 80%;
}
.search-input {
    padding: 4px 14px;
    background: #0f6186;
    color: #fff;
    height: 27px;
    border: 0 none;
    vertical-align: top;
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 3px;
}
.search-input {
  outline: none;
}
#search-results-container{
      position: absolute;
    left: 0;
    top: 40px;
}
#search-results{
  width: 364px;
    position: absolute;
/*
    top: 46px;
    left: 145px;
*/
    background: rgba(254,254,254,1);
    border: 1px solid #444;
    z-index: 999;
    padding: 12px;
    line-height: normal;
    text-transform: none;
    letter-spacing: normal;
    display: none;
    max-height: 600px;
    overflow: scroll;
}
#search-results .result {
    padding-left: 30px;
    margin-bottom: 15px;
    font-family: "Montserrat",sans-serif;
    font-size: 11px;
    color: #000;
    background-position: top 5px left;
    background-repeat: no-repeat;
    position: relative;
}
#search-results .result i {
    /* padding-right: 5px; */
    position: absolute;
    left: 5px;
    top: 5px;
}
#search-results a, #main-nav li.research #search-results a {
    font-family: "Montserrat",sans-serif;
    font-size: 15px;
    color: #000;
    display: block;
    font-weight: bold;
}
.result #meta-info {
    text-transform: uppercase;
}
#search-results .tag {
    text-transform: uppercase;

    font-weight: bold;

    padding: 2px 4px;
    color: #000;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 11px;
    font-family: "Montserrat",sans-serif;
}

.search-col-left{
  box-sizing: border-box;
  width: 50%;
  padding-right:15px;
  float: left;
  margin-top: 15px;
}
.search-col-right{
  box-sizing: border-box;
  width: 50%;
  padding-left:15px;
  float: left;
  margin-top: 15px;
}

.results-container{
  margin-bottom: 20px;
    background: white;
    border: 1px solid #e8e8e8;
    padding: 0px 20px;
}
.results-container .result{
  padding: 10px 0px;
    border: none;
    /* border-bottom: 1px solid #909090; */
    background: none;
    overflow: auto;
    border-bottom: none;
    margin-bottom: 5px!important;
}
.results-container .result-head{
  border-bottom: 1px solid #e8e8e8!important;
  padding: 10px 0px 7px;
}
.result-title{
  margin-bottom: 5px;
  font-size: 16px;
  margin:0px 0px 0px 0px;
}
.result-body{
  font-size: 14px;
  margin:0px 0px 0px 0px;
}
.result-aside{
  float: left;
  margin-right:15px;
  min-width: 40px;
/*  min-height: 42px; */
}
.result-aside img{
  max-width: 45px;
    max-height: 63px;
}
.result-right-container{
  display: table;
}
.search-more{
  text-align: center;
    cursor: pointer;
    border-top: 1px solid #E3E3E3;
    text-transform: uppercase;
  font-size: 14px;
    color: #005b7f!important;
    letter-spacing: 0px;
    padding: 10px;
}
#full-search-results{
  text-align: center;
}


@media (max-width: 750px) {
	body #cookie-line-2,
	body #cookie-line-2  a {
		margin-bottom: 0 !important;
		font-size: 14px;
		line-height: 14px !important;
	}
	body .notice-info p:first-of-type {
	    margin-top: -32px !important;
	    padding-bottom: 6px;
	}
  .search-results-count{
    display: none;  
  }
  .search-col-left{
    box-sizing: border-box;
    width: 100%;
    padding-right:0px;
    float: left;
    margin-top: 15px;
  }
  .search-col-right{
    box-sizing: border-box;
    width: 100%;
    padding-left:0px;
    float: left;
    margin-top: 15px;
  }

  .notice-wrap {
	  height:150px;
  }
}
  /* ==========================================================================
 END SEARCH PATTERN styles
   ========================================================================== */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.notice-container {
		border: 1px solid #77838b;
	}	
}
