@font-face {
    font-family: 'helvetica_neueregular';
    src: url('../_fonts/helveticaneue-ultralight-webfont.eot');
    src: url('../_fonts/helveticaneue-ultralight-webfont.eot?#iefix') format('embedded-opentype'),
         url('../_fonts/helveticaneue-ultralight-webfont.woff') format('woff'),
         url('../_fonts/helveticaneue-ultralight-webfont.ttf') format('truetype'),
         url('../_fonts/helveticaneue-ultralight-webfont.svg#helvetica_neueregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro-Light';
    src: url('../_fonts/MyriadPro-Light.eot');
    src: url('../_fonts/MyriadPro-Light.eot?#iefix') format('embedded-opentype'),
         url('../_fonts/MyriadPro-Light.woff') format('woff'),
         url('../_fonts/MyriadPro-Light.ttf') format('truetype'),
         url('../_fonts/MyriadPro-Light.svg#MyriadPro-Light') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro-Regular';
    src: url('../_fonts/MyriadPro-Regular.eot');
    src: url('../_fonts/MyriadPro-Regular.eot?#iefix') format('embedded-opentype'),
         url('../_fonts/MyriadPro-Regular.woff') format('woff'),
         url('../_fonts/MyriadPro-Regular.ttf') format('truetype'),
         url('../_fonts/MyriadPro-Regular.svg#MyriadPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    background: #fff;
    font-family: 'MyriadPro-Light';
    color: #000;
    font-weight: 300;
    letter-spacing: .7px;
    width: 100%;
    footer: 100%;
}

.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.clear { clear: both; }

a, a:visited {
    color: #333;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2em;
    margin-bottom: 10px;
    /*letter-spacing: 1px;*/
    font-weight: 300;
    color: #2B2B2B;
}
h1 {
    font-size: 1.8em;
}
h2 {
    font-size: 1.7em;
}
h3 {
    font-size: 1.6em;
}
h4 {
    font-size: 1.3em;
}
h5 {
    font-size: 1.2em;
}
h6 {
    font-size: 1em;
}
strong {
    font-weight: 500;
    letter-spacing: 0.6px;
    font-family: 'MyriadPro-Regular';
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="phone"],
input[type="tel"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="search"],
input[type="range"],
input[type="file"],
input[type="datetime-local"],
textarea,
select {
    margin-bottom: 10px;
    padding: 10px 5px;
    font-size: 0.8em;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    background-color: #fff;
    border: 0;
    color: #000;
}

.nominate input[type="text"]{
    border: 1px solid #e0e0e0;
    padding: 6px;
    transition: all 0.3s ease 0s
}

.nominate input[type="text"]:focus{
    outline: 0;
    border: 1px solid #bdbdbd;
}

.nominate label{
    font-family: 'Open Sans';
    padding-bottom: 5px;
    display: inline-block;
}

.btn.inverted{
    background-color: #676767;
    color: #FFF;
    font-size:11px;
}

.btn.inverted:hover{
    background-color: #575757;
}

.btn,
input[type="submit"] {
    background: #fff;
    color: #000;
    -moz-border-radius: 3px;
    /* -webkit-border-radius: 3px; */
    /* border-radius: 3px; */
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
}

textarea {
    width: 100% !important;
    height: 125px;
    line-height: 1.5em;
    padding-top: 5px;
}

textarea[name^="question"]{
    border: 1px solid #E0E0E0;
}

select[name^="question"]{
    border: 1px solid #E0E0E0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
    margin-bottom: 20px;
}
table td {
    padding: 10px;
    border: 1px solid #888;
}

/* --------------------------------------------------------------------------------- */

header {
    position: fixed;
    padding: 0 0 0 0;
    margin: 0 0 00px 0;
    top: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}
header nav {
    /*font: 12px/18px "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;*/
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 57px;
}
header nav ul {
    position: relative;
    list-style-type: none;
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
header nav ul:after {
    content: '';
    width: 100%;
    display: inline-block;
    font-size: 0;
    line-height: 0;
}
header nav li {
    display: inline-block;
    list-style-type: none;
}
header nav li:first-child {
    /*float: left;*/
}

header nav li a:visited,
header nav li a {
    text-decoration: none;
    color: #fff;
    padding: 20px;
    display: inline-block;
    transition: all .5s;
    -webkit-transition: all .5s;
}
header nav li a:hover {
    color: #DBDBDB;
}
header nav li.search {
    position: relative;
}
header nav li.search i {
    position: absolute;
    top: 7px;
    left: 8px;
    font-size: 1em;
    pointer-events: none;
    color: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
}
header nav li.search input {
    outline: none !important;
    width: 32px;
    height: 32px;
    line-height: 30px;
    margin: 0 0 0 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 0 0 0 0;
    background: none;
    transition: all .5s;
    -webkit-transition: all .5s;
    display: inline-block;
    cursor: pointer;
}
/*header nav li.search input:focus {
    background: #fff;
}*/

header nav .logo {
    position: relative;
    padding: 0;
}
header nav .logo img {
    z-index: 9;
    display: inline-block;
    height: 50px;
    vertical-align: middle;
    margin-top: 3px;
}

nav.bigsearch li a {
    padding: 20px 0px 20px 0px !important;
}
nav.bigsearch li a.logo {
    padding: 0 !important;
}
nav.bigsearch .search {
    margin-left: 10px;
}
nav.bigsearch .search input {
    width: 260px;
    background: #fff;
    padding: 0 0 0 27px;
    cursor: inherit;
}
nav.bigsearch .search i {
    color: #BEBEBE;
}

section.awards{
    font-family: 'Lato';
}

.units-row.success a {
    color: #159776;
    font-weight: bold;
}

.units-row.success a:hover {
    text-decoration: underline;
}


/*header nav ul li {
    display: inline-block;
    margin-bottom: 0!important;
}
header nav ul li a,
header nav ul li a:visited {
    padding: 15px 5px 0 15px;
    font-weight: 300;
    display: block;
    font-size: 1.2em;
    text-align: center;
}
header nav ul li a:hover,
header nav ul li a.active {
    color: #aaa;
}

header .social {
    text-align: right;
    padding: 30px 20px 0 0;
}
header .social .fa {
    color: black;
}
header .social a {
    width: 25px;
    height: 25px;
    color: #FFF;
    line-height: 25px;
    font-size: 1.1em;
    text-align: center;
    margin-left: 6px;
    display: inline-block;
    background: white;
}
header .social a img {
    vertical-align: middle;
}*/

/* --------------------------------------------------------------------------------- */

.slider .owl-item .item {
    background-position: center;
    background-size: cover;
    height: 700px;
}
.slider .owl-item .item img {
    visibility: hidden;
    display: block;
}
.slider .owl-item .content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    text-align: left;
    color: #000;
}
.slider .owl-item .content.dark {
    color: #fff;
}
.slider .owl-item .content h2 {
    margin: 185px 0 20px 0;
    font-size: 2.2em;
    color: #000;
    line-height: 1em;
    width: 50%;
}
.slider .owl-item .content.dark h2 {
    color: #fff;
}
.slider .owl-item .content p {
    margin-bottom: 10px;
    line-height: 1.3em;
    font-size: 1.35em;
    letter-spacing: 1px;
    color: #000;
    width: 57%;
    float: left;
}
.slider .owl-item .content.dark p {
    color: #fff;
}
.slider .owl-item .content a {
    font-size: 1.4em;
    margin-top: 25px;
    display: inline-block;
    color: #000;
}
.slider .owl-item .content.dark a {
    color: #fff;
}

.slider .owl-item .content .article {
    display: none;
}

.slider .owl-item .content.alignright h2 {
    margin-left: auto;
}
.slider .owl-item .content.aligncenter h2 {
    margin-left: auto;
    margin-right: auto;
}
.slider .owl-item .content.alignright {
    left: inherit;
    right: 0;
    text-align: right;
}
.slider .owl-item .content.alignright p {
    float: right;
}

.slider .owl-item .content.aligncenter {
    left: inherit;
    right: inherit;
    text-align: center;
}
.slider .owl-item .content.aligncenter p {
    float: none;
    margin-right: auto;
    margin-left: auto;
}

.owl-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
}
.owl-buttons .wrapper {
    position: relative;
}
.owl-buttons .wrapper > div,
.owl-buttons .wrapper > a {
    display: inline-block;
    position: absolute;
    left: -100px;
    margin-top: -65px;
    font-size: 8em;
    opacity: 0.15;
}
.owl-buttons .wrapper > div.owl-next,
.owl-buttons .wrapper > a.owl-next {
    left: inherit;
    right: -100px;
}

.hardcoded.owl-buttons .wrapper > a {
    opacity: .7;
    color: #999;
    z-index: 9999;
}
.owl-theme .owl-controls .owl-page {
  position: relative;
  z-index: 9999;
}

.owl-carousel-logos .owl-item {
    height: 160px;
    line-height: 160px;
    vertical-align: middle;
    padding: 0 10px;
    text-align: center;
}
.owl-carousel-logos .owl-item .item {
    vertical-align: middle;
    height: 100%;
    text-align: center;
}
.owl-carousel-logos .owl-item .item img {
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
}
/* --------------------------------------------------------------------------------- */

article,
article .wrapper {
    position: relative;
}

article .wrapper ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

article .wrapper ul li {
    margin-bottom: 10px;
}

section {
    padding: 40px 0;
    background: #F2F2F2;
    position: relative;
    z-index: 999;
    width: 100%;
}
section+section,
article > section {
    -webkit-transform: translate3d(0,0,0);
}

section.title+section:last-child {
    min-height: 490px;
}

section:nth-child(even) {
    background: #F9F9F9;
}

section .wrapper p:last-child {
    margin-bottom: 0;
}

section.slider {
    margin-top: 0;
    padding: 0;
    /*max-width: 1100px;*/
    background: none;
}
body#post section.slider,
body#posts section.slider .owl-carousel {
    position: fixed;
    top: 0;
    z-index: 99;
}
body#post section.title,
body#posts section.title {
    margin-top: 700px;
    opacity: .95;
    -webkit-transform: translate3d(0,0,0);
}

section.slider.article-header {
    height: 870px;
    position: relative;
    background-position: center;
    background-size: cover;
}
section.slider.article-header img {
    visibility: hidden;
    width: 100%;
}
section.slider.article-header .title {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: rgba(218, 218, 218, 0.92);
    opacity: .95;
}

.featuredplus {
    display: inline-block;
    position: relative;
    width: 10px;
    z-index: 9999;
}
.featuredplus i {
    display: block;
    position: relative;
    top: -4.55px;
    margin: 0 7px;
    filter: Alpha(Opacity=50);
    opacity: 0.5;
    color: #869791;
}
.featuredplus .tooltip {
    position: absolute;
    background: #444;
    padding: 6px 10px;
    color: #FFF;
    border-radius: 4px;
    left: 32px;
    top: -12px;
    display: none;
    white-space: nowrap;
}
.featuredplus .tooltip span {
    position: absolute;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 8.7px 5px 0;
    border-color: rgba(0, 0, 0, 0) #444 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    top: 9px;
}
.featuredplus:hover .tooltip {
    display: block;
    opacity: .9;
}

.cats {
    background: #57A4AE;
    position: relative;
}
.cats+.cats {
    background: #7FBBC3;
}
.cats .color {
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    background: #494949;
    z-index: 8;
}
.cats+.cats .color {
    background: #767676;
}
.cats h2 {
    color: #fff;
}
.cats a.unit-20 {
    color: #fff;
    padding: 18px;
    height: 165px;
    position: relative;
    z-index: 9;
    display: block;
}
.cats a p {
    font-size: 0.75em;
    line-height: 1.2em;
}
.cats a span {
    font-size: 0.8em;
    color: #FFF;
    margin-top: 14px;
    display: block;
}
.cats .regions > a:first-child {
    background-color: #4b99a3;
}
.cats .regions > a:nth-child(2) {
    background-color: #bd9557;
}
.cats .regions > a:nth-child(3) {
    background-color: #be528c;
}
.cats .regions > a:nth-child(4) {
    background-color: #908663;
}
.cats .regions > a:nth-child(5) {
    background-color: #3c3a3b;
}

.cats .categories > a:first-child {
    background-color: #76B0B8;
}
.cats .categories > a:nth-child(2) {
    background-color: #CBAD7F;
}
.cats .categories > a:nth-child(3) {
    background-color: #CC7BA7;
    padding: 10px;
    text-align: center;
}
.cats .categories > a:nth-child(3) img {
    max-height: 100%;
}
.cats .categories > a:nth-child(4) {
    background-color: #AAA288;
}
.cats .categories > a:nth-child(5) {
    background-color: #6B696A;
}

section.title {
    background: #D3D3D3;
}
section.title.noimage {
    margin-top: 162px !important;
}
section.title.noimage.nobanner {
    margin-top: 57px;
}
section.title.noimage.acqz {
    padding: 15px 0 0 0;
}
section.title.noimage.acqz h1 img {
    height: 100px;
}
section.title h1 {
    color: #fff;
    font-size: 2.9em;
}
section.title.subject {
    background-color: #DADADA;
}
section.title.subject h1 {
    color: #2B2B2B;
    font-size: 2.5em;
}

section.sub-category  {
    color: #888;
}
section.sub-category h2 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 2.3em;
    display: inline-block;
}
section.sub-category h3 {
    font-weight: 600;
}
section.sub-category a.article {
    display: block;
}
section.sub-category a.article p:last-child {
    margin-bottom: 0;
}
section.sub-category a.article+a.article {
    margin-top: 20px;
}


#atoz section:nth-child(even)  {
    background: #E2E2E2;
}
#atoz section.sub-category {
    padding: 13px 0;
}

section .box p {
    margin-bottom: 20px;
    line-height: 24px;
}

section .private img {
    width: 100%;
}

section .topboxes li {
    background-color: #333333;
}

section .topboxes li h2 {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #282828;
}

section .topboxes li.mailing p {
    padding: 10px 20px;
    font-size: 1em;
}

section .topboxes li.mailing form:after {
    clear: both;
    display: block;
    content: " ";
}

section .topboxes li img {
    width: 100%;
}

section .topboxes li.events img {
    padding: 10px 20px 20px 20px;
    width: 100%;
}

section .topboxes li form {
    padding: 10px 20px 20px 20px;
    width: 100%;
}

section .about {
    color: white;
}

section .about h2 {
    font-size: 1.5em;
}

section .about p {
    margin-bottom: 20px;
    font-size: .9em;
    line-height: 1.1em;
}

section .about .gallery img {
    width: 100%;
}

p{
    margin-bottom: 20px;
    line-height: 23px;
}

/* --------------------------------------------------------------------------------- */

section .events ul li {
    height: 200px;
    background-size: cover;
    background-position: center;
}

section .events ul li h2 {
    background: rgba(0,0,0,.7);
    padding: 10px 10px 0 10px;
    margin: 0;
    line-height: 1em;
    font-size: 1.4em;
}
section .events ul li h3 {
    background: rgba(0,0,0,.7);
    padding: 5px 10px 10px 10px;
    margin: 0;
    line-height: .8em;
    font-size: 1em;
}

section .events img {
    width: 100%;
}

section .events p {
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------------- */

footer {
    padding: 30px 0;
    font-size: 0.9em;
    position: relative;
    z-index: 999;
    background: #fff;
}
footer .wrapper .copyright {
    text-align: right;
    color: #7E7E7E;
    line-height: 1.3em;
    font-size: .9em;
}
footer .wrapper .copyright .license {
    margin-top: 9px;
}
footer nav ul {
    list-style: none;
}
footer nav ul li {
    display: block;
    /*display: inline-block;*/
}
footer nav ul li a,
footer nav ul li a:visited {
    display: block;
    padding: 0 0 9px 0;
    color: #7E7E7E;
    /*padding: 0 10px 0 6px;*/
    /*border-right: 1px solid #CFCFCF;*/
}
/*footer nav ul li:first-child a {
    padding-left: 0;
}
footer nav ul li:last-child a {
    border: none;
}*/

/* --------------------------------------------------------------------------------- */

section .twitter,
section .map {
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.15);
  padding: 0;
}

section .twitter .head img.logo {
  border: none;
  background: #282828;
  padding: 10px;
  float: left;
  margin-right: 10px;
}
section .twitter .head .title {
  background: #282828;
  padding: 10px;
  color: #fff;
  line-height: 1.2em;
  height: 57px;
}
section .twitter .head .title h3 {
  color: #fff;
  font-size: 1em;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin-bottom: 0;
  text-transform: initial;
}
section .twitter .head .title span {
  font-weight: 300;
  font-size: 0.8em;
}
section .twitter #twitter {
  list-style: none;
  margin: 0;
}
section .twitter #twitter li.comment {
  padding: 15px 15px;
  color: #ccc;
  background: #363636;
  font-size: 0.9em;
  line-height: 1.4em;
}
section .twitter #twitter li.comment:nth-child(odd) {
  background: #333333;
}
section .twitter #twitter li.comment a,
section .twitter #twitter li.comment a:hover {
  color: #eee;
}
section .twitter #twitter li.comment .comment-date a {
  color: #fff;
  margin-top: 5px;
  display: block;
}

div.star{
    display: inline-block;
    height: 20px;
    width: 25px;
    background-image: url('/_img/star.png');
    background-repeat: no-repeat;
    cursor: pointer;
}

div.star-rating{
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

span.required{
    color: red;
    position: relative;
    top: -0.5em;
    font-size: 80%;
}

.form-error{
    margin: 10px 0;
    padding: 10px;
    background: #FFE4E4;
    color: #AC0000;
    border: 1px dotted #E7BBBB;
}

.slicknav_nav li:first-child,
.slicknav_nav .search {
    display: none;
}
.js .slicknav_menu {
    display: none;
}

.tags{
    margin-bottom: 15px;
}

.tags a{
    padding: 5px;
    background-color: #EFEFEF;
    border-radius: 0px;
    color: #fff;
}

.tags a.americas{
    background-color: #4b99a3;
}

.tags a.asia-pacific{
    background-color: #bd9557;
}

.tags a.europe{
    background-color: #be528c;
}

.tags a.mena{
    background-color: #908663;
}

.tags a.international{
    background-color: #3c3a3b;
}

.tags a.headlines{
    background-color: #76B0B8;
}

.tags a.finance{
    background-color: #cbad7f;
}

.tags a.legal{
    background-color: #cc7ba7;
}

.tags a.deals{
    background-color: #aaa288;
}

.tags a.acq-lite{
    background-color: #6b696a;
}

h2.search-results{
    color: #fff;
}

.centered{
    text-align:center;
}
.pagination a {
    display: inline-block;
    margin-bottom: 5px;
}
.pagination-text{
    margin-top: 20px;
}

.pagination .active{
    background-color: #efefef;
}

.banner.skyscraper {
    list-style: none;
    position: absolute;
    left: -145px;
    top: 160px;
    width: 120px;
    height: 600px;
    overflow: hidden;
    z-index: 99998;
}
.banner.leaderboard {
    list-style: none;
    width: 100%;
    text-align: center;
    position: relative;
    display: block;
    width: 728px;
    height: 90px;
    margin: 10px auto 5px auto;
    background: #fff;
}
.banner > a {
    display: none;
}
.banner > a.active {
    display: block;
}

@media screen and (max-width: 60em) {
    .js #menu, .js .menu, .twitter, .map {
        display:none;
    }
    .js .slicknav_menu {
        display:block;
    }
    header {
        padding: 0 20px;
    }
    header nav {
        height: auto;
            }
    header nav li {
        display: none;
    }
    header nav li:first-child {
        display: block;
    }
    header nav li .logo {
        display: block !important;
        text-align: center;
        margin-bottom: 5px;
    }

    header nav .logo img {
        height: auto;
        max-width: 170px;
    }
    header nav ul:after {
        display: none;

    }
    .banner.skyscraper,
    .banner.leaderboard {
        display: none;
    }
    .slider .owl-item .content {
        padding: 10px;

    }
    .slider .owl-item .content h2 {
        margin: 95px 0 10px 0;
        font-size: 1.45em;
        line-height: 1em;
        width: 75%;
    }
    .slider .owl-item .content p {
        width: 90%;
        font-size: 1em;
        display: none;
    }
    .slider .owl-item .content a {
        margin-top: 10px;
        font-size: 1.2em;
        opacity: .7;
    }
    .featuredplus .tooltip {
        display: none !important;
    }
    section.slider.article-header {
        height: 300px;
    }
    .slider .owl-item .item {
        height: 300px;
    }
    .owl-buttons {
        display: none !important;
    }
    .cats a.unit-20 {
        height: auto;
    }
    section.title.noimage {
        margin-top: 67px;
    }
    body#post section.title,
    body#posts section.title {
        margin-top: 300px;
    }
    section {
        min-height: 0;
        padding: 30px 20px;
    }
    section .intro,
    section .box {
        font-size: 18px;
        line-height: 20px;
    }
    section .intro a.button {
        display: none;
    }
    article section.title h1 {
        font-size: 2.2em;
        line-height: 1em;
    }
    .cats a.unit-20 {
        margin-bottom: 0;
    }
    .box { padding-top: 0!important; }
    footer {
        text-align: center;
    }
    footer .wrapper .copyright {
        text-align: center;
        padding: 0 40px;
    }
}

body section.awards {
    background: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    margin-top: 160px;
}
body section.awards li.award a {
    display: block;
    text-align: center;
}
body section.awards li.award a img {
    display: inline-block;
}

section.slider.article-header.atoz {
  background-size: contain;
  background-repeat-x: no-repeat;
}