/*
Theme Name: GMCN
Theme URI: http://globalmissingkids.org/
Description: Helping Recover Missing and Abducted Children
Author: Helium Studio
Author URI: http://heliumstudio.com
Version: 1.0
*/

/* ===================================================================== */
/* =============================== Style =============================== */
/* ===================================================================== */

/* ==================== 
    - HTML5 Reset
    - Layout
    - Navigation
    - General
    - Forms & Buttons
    - Fonts
    - Hides & Fixes
    - Media:Mobile
    - Media:Print
   ====================
*/

/* ==================== HTML5 Reset ==================== */
*,*:before,*:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0; padding:0; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
body { margin: 0; font-size: 100%; }
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
svg:not(:root) { overflow: hidden; }
figure { margin: 0; }
form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
button[disabled], input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
a { outline: none; }
iframe {
    width: 100%;
}

/* ========================================== 

    Layout 

========================================== */

html { font-size: 62.5%;}
body {
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    background: #0092a0;    
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
}

p {
    line-height: 24px;
    padding: 0 0 20px 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
ul li {
    margin: 0;
    padding: 0 0 20px 30px;
}
ol {
    padding: 0 0 20px 20px;
}
ol li {
    margin: 0;
    padding: 0 0 10px 0;
}

::selection {
    background: #000;
    color: #fff;
}
::-moz-selection {
    background: #000;
    color: #fff;
}

.row {
/* Rows are the main wrapping element above ANY column-type NEVER put a .row inside a column */
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    *zoom: 1;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap; 
}
    
    /* Safari width hack: flexbox */
    .safari-css .row {
        width: 99.8%;
    }
    

.row:before,
.row:after { content: ""; display: table; }
.row:after { clear: both; }
.row.full { max-width: 100% !important; padding: 0;}

.col, /*col (columns) should break between 768 - 640*/
.mcol, /*mcol (mobile columns) should break between 568 - 320*/
.scol /*scol (small columns) should never break*/ {
    position: relative;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.col > .inner,
.mcol > .inner,
.scol > .inner {
    width: 100%;
    padding: 15px;
}

.one    { width: 8.3333%;} /* 1/12 of container */
.two    { width: 16.6667%;} /* 1/6 of container */
.three  { width: 25%;} /* 1/4 of container */
.four   { width: 33.3333%;} /* 1/3 of container */
.five   { width: 41.6667%;} /* 5/12 of container */
.six    { width: 50%;} /* 1/2 of container */
.seven  { width: 58.3333%;} /* 7/12 of container */
.eight  { width: 66.6667%;} /* 2/3 of container */
.nine   { width: 75%;} /* 3/4 of container */
.ten    { width: 83.3333%;} /* 5/6 of container */
.eleven { width: 91.6667%;} /* 11/12 of container */
.twelve { width: 100%;} /* Full Width */

    
     safari-css .one    { width: 8%;} /* 1/12 of container */
    .safari-css .two    { width: 16%;} /* 1/6 of container */
    .safari-css .three  { width: 24%;} /* 1/4 of container */
    .safari-css .four   { width: 33%;} /* 1/3 of container */
    .safari-css .five   { width: 41%;} /* 5/12 of container */
    .safari-css .six    { width: 49%;} /* 1/2 of container */
    .safari-css .seven  { width: 58%;} /* 7/12 of container */
    .safari-css .eight  { width: 66%;} /* 2/3 of container */
    .safari-css .nine   { width: 74%;} /* 3/4 of container */
    .safari-css .ten    { width: 83%;} /* 5/6 of container */
    .safari-css .eleven { width: 91%;} /* 11/12 of container */
    .safari-css .twelve { width: 99.8%;} /* Full Width */
    
    
    /* ========================================== 

        IE Fixes ( fixes for 8/9/10 )
    
    ========================================== */
    
    html.no-borderimage .row,
    html.no-borderimage .col,
    html.no-borderimage .mcol,
    html.no-borderimage .scol { 
        display: block;
    }
    html.no-borderimage .col,
    html.no-borderimage .mcol,
    html.no-borderimage .scol { 
        float: left;
    }
    html.no-borderimage #report .col.six,
    html.no-borderimage #message .col.eight,
    html.no-borderimage #message .row {
        margin: 0 auto;
        text-align: center;
        float: none;
    }
    html.no-borderimage .inner.copyright {
        text-align: left;
        float: none;
        clear: both;
    } 
    html.no-borderimage .col.six.caption {
        float: right;
    }
    html.no-borderimage #accreditations .item.mcol {
        max-width: 20%;
    }
    
    /* ========================================== 

        end IE Fixes
    
    ========================================== */
    
    

img {
    max-width: 100%;
    height: auto;
    margin: 0 0 15px 0;
}

/* Logo */
img#logo {
    position: absolute;
    top: 20px;
    left: 10px;    
}

header#site-header {
    width: 100%;
    height: 110px;
    background-color: #ffffff;
}
header#site-header a.btn::after {
    font-size: 16px;
    font-size: 1.6rem;    
}
header#site-header > .row {
    display: block;
}

/* Search */
#search {
    display: none;
    position: absolute;
    z-index: 15;
    right: 0;
    top: 0;
    width: 100%;
    height: 110px;
    background: #d16200;
}
#search form {
    width: 100%;
}
#search form .row {
    padding: 0;
}
#search .inner {
    text-align: left;
}

.screen-reader-text {
    display: none;
}

/* Wrapper */
#search-wrapper .inner {
    padding: 15px 0;
}
#search-wrapper {
    padding: 25px 0 0 0;
}
#search-wrapper #close {
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    font-size: 46px;
    font-size: 4.6rem;
}
#search-wrapper #close:hover {
    color: #dcad00;
}

/* Search Magnify Icon */
#primary .magnify {
    cursor: pointer;
    color: #ffffff;
    font-size: 19px;
    font-size: 1.9rem;
    position: relative;
}

/* Search: Inputs */
#search input[type="text"]#s {
    width: 100%;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 50px;
    font-size: 5rem;
    text-indent: 15px;
    background: transparent;
    border: none;  
    outline: none;  
}

/* Magnifying Glass */
#search input[type="submit"]#searchsubmit {
    position: relative;
    top: 0;
    color: #ffffff;
    font-family: 'gmcn';
    font-size: 46px;
    font-size: 4.6rem;
    line-height: inherit;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;  
    width: auto;
    display: inline-block;
}
#search input[type="submit"]#searchsubmit:hover {
    color: #dcad00;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}


/* Placeholder Text */
#search input[type="text"]#s::-webkit-input-placeholder {
    color: #ffffff;
    font-size: 50px;
    font-size: 5rem;
    overflow: visible;
}
#search input[type="text"]#s:-moz-placeholder {
    color: #ffffff;
    font-size: 50px;
    font-size: 5rem;
    overflow: visible;
}
#search input[type="text"]#s::-moz-placeholder {
    color: #ffffff;
    font-size: 50px;
    font-size: 5rem;
    overflow: visible;
}
#search input[type="text"]#s:-ms-input-placeholder {
    color: #ffffff;
    font-size: 50px;
    font-size: 5rem;
    overflow: visible;
}


/*Footer*/
footer {
    color: #ffffff;    
    border-top: 7px solid #dcad00;
    background-color: #0092a0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
footer.row.full {
    min-height: 250px;
    padding: 25px 0;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center top;
}
footer p {
    color: #ffffff;
}
footer ul {
    padding: 0;
    margin: 0;
}
footer ul li {
    color: #ffffff;
    padding: 0;
}
footer .social ul {
    position: absolute;
    top: 30px;
    right: 20px;
}
footer .social ul li {
    float: left;
    padding: 0 0 0 10px;
    list-style-type: none;
}
footer .social ul li a {
    color: #ffffff;
    font-size: 40px;
    font-size: 4rem;
}
footer .social ul li a:hover {
    color: #dcad00;
}
footer span {
    color: #ffffff;
}
footer img.logo {
    position: absolute;
    right: 20px;
    top: 85px;
    max-width:220px;
}

/* Info */
footer > .row {
    justify-content: flex-start;
}
footer .col .inner {
    width: 100%;
    display: block;
    padding: 20px;
}
    .lt-ie9 footer .col .inner {
        float: none !important;
        clear: both !important;
    }

/* Logos */
footer .col.eight .row .inline {
    padding: 0 20px;
    margin: 0 0 0 20px;
    border-left: 1px solid #ffffff;
}
footer .col.eight .row .inline:first-of-type {
    padding: 0;
    margin: 0;
    border: none;
}
footer .col.eight .address-info,
footer .col.eight ul.details,
footer.sub .col.eight #bureau {
    max-width: 100%;
    float: left;
    font-size: 13px;
    font-size: 1.3rem;
}
footer .col.eight ul.details {
    padding: 0;
}
footer .col.eight ul.details li a,
footer.sub .col.eight #bureau a {
    color: #ffffff;
}
footer .col.eight ul.details li a:hover,
footer.sub .col.eight #bureau a:hover {
    color: #dcad00;
}
footer .col.eight ul.terms li {
    font-size: 13px;
    font-size: 1.3rem;
    float: left;
    padding: 0 0 0 20px;
}
footer .col.eight ul.terms li:first-of-type {
    padding: 0;
}
footer .col.eight ul.terms li a {
    color: #ffffff;
}
footer .col.eight ul.terms li a:hover {
    color: #dcad00;
}


/* Sections */
section {
    width: 100%;
    position: relative;
}
section#about p:last-of-type {
    padding: 0;
}
.section-title {
    width: 100%;
    text-align: center;
}
    .section-title a.btn {
        margin: 15px 0;
        font-size: 30px;
        font-size: 3rem;
    }
section#hero {
    height: 530px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}
section#hero > .row {
    justify-content: flex-start;
}
section#hero .caption {
    max-width: 50%;
    position: absolute;
    top: 150px;
    left: 20px;
}
section#hero .caption h1 {
    color: #ffffff;
    font-size: 46px;
    font-size: 4.6rem;
    line-height: 56px;
    text-align: left;
    padding: 0 0 25px 0;
}
section#hero .caption .btn {
    font-size: 26px;
    font-size: 2.6rem;
}

/* Callouts */
section#callouts {
    background-color: #0092a0;
    padding: 50px 0;
}
    
    /* Icons */
    section#callouts .ic {
        font-size: 45px;
        font-size: 4.5rem;
        padding: 0 0 10px;
    }
    
section#callouts .col.four {
    text-align: center;
    margin: 0 auto;
    border-left: 1px solid #1d9eab;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}

section#callouts .col.four > .inner {
    margin: 0 auto;
    padding: 50px 0;
}
section#callouts .col.four:hover {
    background-color: #1d9eab;
}
section#callouts .col.four:first-of-type {
    border-left: 0;
}
section#callouts .col.four h2 {
    color: #ffffff;
    font-size: 40px;
    font-size: 4rem;
    font-weight: 700;
}
section#callouts .col.four p {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 0 30px 0;
}
section#callouts .col.four a {
    color: #ffffff;
    display: block;
    padding: 25px 0;
}
section#callouts .col.four a:hover {
    color: #ffffff;
}

section#callouts .col.four a div.btn {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 26px;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
section#callouts .col.four a:hover div.btn {
    border-color: #d16200;
    background-color: #d16200;
}
section#callouts .col.four a div.btn::after {
    position: absolute;
    right: -1px;
    bottom: -1px;
    content: "T";
    font-family: "gmcn";
    font-size: 20px;
    font-size: 2rem;
}
    .safari-css section#callouts .col.four a div.btn::after {
        right: -2px;
        bottom: -2px;
    }


/* six column callouts */


section#callouts h1 {
    color: #ffffff;
    font-size: 46px;
    font-size: 4.6rem;
    line-height: 56px;
    text-align: left;
    padding: 0 0 35px 0;
    margin: 0 auto;
    font-weight: normal;
}
section#callouts .col.two {
    text-align: center;
    margin: 0 auto;
    border-left: 1px solid #1d9eab;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
    padding-bottom: 35px;
}
section#callouts .col.two > .inner {
    margin: 0 auto;
    padding: 0;
}
section#callouts .col.two:hover {
    background-color: #1d9eab;
}
section#callouts .col.two:first-of-type {
    border-left: 0;
}
section#callouts .col.two h2 {
    color: #ffffff;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 0px !important;
}
section#callouts .col.two p {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 !important;
}
section#callouts .col.two a {
    color: #ffffff;
    display: block;
    padding: 12px 0;
}
section#callouts .col.two a:hover {
    color: #ffffff;
}

section#callouts .col.two a div.btn {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 26px;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
section#callouts .col.two a:hover div.btn {
    border-color: #d16200;
    background-color: #d16200;
}
section#callouts .col.two a div.btn::after {
    position: absolute;
    right: -1px;
    bottom: -1px;
    content: "T";
    font-family: "gmcn";
    font-size: 20px;
    font-size: 2rem;
}
    .safari-css section#callouts .col.two a div.btn::after {
        right: -2px;
        bottom: -2px;
    }


/* Video */
section#video-banner {
    position: relative;
    height: 745px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}
section#video-banner a {
    color: #ffffff;
    font-size: 90px;
    font-size: 9rem;
}
section#video-banner a:hover {
    color: #dcad00;
}
section#video-banner .row .caption {
    padding: 300px 0 0 0;
}
section#video-banner .row .caption h1 {
    color: #ffffff;
    max-width: 90%;    
    font-size: 46px;
    font-size: 4.6rem;
    line-height: 56px;
    text-align: left;
    padding: 0 0 25px 0;
}


/* Accreditations */
section#accreditations {
    padding: 75px 0;
    background-color: #ffffff;
}
section#accreditations h1 {
    padding: 0 0 75px 0;
    margin: 0 auto;
    max-width: 95%;
    font-size: 45px;
    font-size: 4.5rem;
}
section#accreditations .mcol.item {
    width: 100%;
    max-width: 17%;
    display: inline-block;
    margin: 0 auto;
    margin-bottom: 0!important;
}
    .safari-css section#accreditations .mcol.item {
        width: auto;
    }
    .lt-ie9 section#accreditations .mcol.item,
    .lt-ie9 section#accreditations .item.mcol {
        max-width: 20%!important;
    }

/* PAGE: Page-callout */
section#content .page-callout h2 {
    font-size: 30px;
    font-size: 3rem;
    text-align: left;
    padding: 35px 0 15px;
}
section#content .page-callout img {
    max-width: 35%;
    float: left;
    margin: 0 35px 0 15px;
}
section#content .page-callout .call {
    padding: 25px 15px;
    margin: 0 0 15px 0;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
section#content .call:hover {
    background-color: #F5EED7;
}

/* PAGE: Search Bar */
section#search-bar {
    padding: 50px 0;
    background-color: #cccccc;
}
/* Search */
.search .mcol {
    display: block;
}
.search #content {
    padding: 0;
}
.search #content h2,
.search #content h3,
.search #content h4,
.search #content h5 {
    text-align: left; 
    padding: 0 0 15px 0;   
}
.search #content .block {
    border-bottom: 1px solid #cccccc;
    padding: 0 0 15px 0;
    margin: 15px 0;
}
.search form > .inner {
    width: 100%;
}
.search form input {
    font-size: 24px;
    font-size: 2.4rem;
    width: 100%;
    padding: 25px;
    background-color: #ffffff;
    font-family: 'Open Sans', sans-serif;
}
section#search-bar {
    padding: 25px 0;
    background-color: #F5EED7;
}
section#search-bar input[type="submit"] {
    position: relative;
    top: -5px;
    color: #0092a0;
    font-family: 'gmcn';
    font-size: 46px;
    font-size: 4.6rem;
    line-height: inherit;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 0 10px;
    width: auto;
    display: inline-block;
}


/* PAGE */
section#banner {
    position: relative;
    height: 410px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
}
section#banner .banner-fade {
    width: 596px;
    height: 450px;
    background-image: url(images/graphic-black-fade.png);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
section#banner > .row {
    justify-content: flex-start;
}
section#banner .page-title {
    position: relative;
    z-index: 5;
    top: 120px;
    left: 20px;
}
section#banner .page-title h1 {
    color: #ffffff;
    font-size: 54px;
    font-size: 5.4rem;
    position: relative;
    font-weight: 600;
    z-index: 5;
}
section#banner .page-title h2 {
    color: #ffffff;
}

section#banner #banner-fg-overlay {
    position: absolute;
    top: 30px;
    right: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* Content */
section#content {
    padding: 50px 0;
    background-color: #f7f5f6;
}
section#content h1 {
    text-align: center;
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 4.8rem;
    padding: 0 0 35px 0;
}
section#content h2 {
    text-align: center;
    padding: 0 0 15px 0;
}
section#content ul {
    padding: 0 0 15px 20px;
}
section#content ul li {
    list-style-type: disc;
    padding: 0 0 5px 0;
    margin: 0;
}


/* About */
section#about {
    padding: 50px 0;
    background-color: #ffffff;
}


/* Membership */
section#membership {
    padding: 50px 0;
    background-color: #f7f5f6;
}
section#membership p {
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 30px;
}
section#membership #col-b p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
}
section#membership .countries .listContainer2 {
    padding: 15px 0 0 0;
}
section#membership .countries ul {
    float: left;
    width: 100%;
    max-width: 33%;
}
section#membership .countries ul li img {
    margin: 0 5px 0 0;
}
section#membership .countries ul li {
    padding: 0 0 10px 0;
}
section#membership .countries ul li a {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 14px;
    position: relative;
    display: block;
}
/* Flag Title */
.c-title {
    width: 100%;   
    text-transform: uppercase; 
    position: absolute;
    top: 0;
    display: block;
    padding: 8px 0 12px 50px;
}

/* News & Events */
article .inner {
    padding: 20px;
}
section#news-post {
    background-color: #ffffff;
}
section#news-events.blog-feed,
.blog-feed {
    padding: 50px 0;
}
section#news-events.blog-feed .row {
    justify-content: flex-start;
}


/* Single */
section#news-post .col.eight {
    display: block;
}
section#news-post.blog-feed article {
    display: block;
}
section#news-post.blog-feed .container-pic {
    max-width: 50%;
    position: relative;
    z-index: 3;
    float: right;
    padding: 0 20px 20px 20px;
}
section#news-post.blog-feed h1 {
    line-height: 36px;
    padding: 0 0 35px 0;
}

/* Content */
.container-post {
    position: relative;
}
.container-arrows {
    width: 100%;
    position: relative;
    float: none;
    display: block;
    padding: 35px 0 0 0;
}
.container-arrows .prev {
    float: left;
    margin: 0 1% 0 0;
}
.container-arrows .next {
    float: right;
    margin: 0 0 0 1%;
}
.container-arrows span {
    display: inline-block;
}


/* Sidebar */
aside a {
    color: #d16200;
}
aside a:hover {
    color: #00929F;
}
.recent h2 {    
    font-weight: 600;
    padding: 0;
}
.recent ul li {
    padding: 10px 0;
    border-bottom: 1px solid #cccccc;
}
.recent ul li a date {
    color: #666666;
}
.categories h2 {
    font-weight: 600;
    padding: 0;
}
.categories ul li {
    padding: 10px 0;
    border-bottom: 1px solid #cccccc;
}

/* ========================================== 

    Navigation 

========================================== */

/* Primary Alternative */
header.alternative nav#primary {
    padding: 50px 10px 0 0;
    float: right;
}
header.alternative nav#primary ul li a {
    color: #000000;
}
header.alternative nav#primary ul li a:hover {
    color: #dcad00;
}
header.alternative nav#primary .menu-header-container > ul > li.menu-item-has-children > a {
    position: relative;
    padding-right:18px;
}
header.alternative nav#primary .menu-header-container > ul > li.menu-item-has-children > a::after {
    display: inline-block;
    font-family: "gmcn";
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    content: '\44';
    padding-left: .2rem;
    font-size: 25px;
    position: absolute;
    top: -1px;
    right: 0;
}

header.alternative .menu-header-container {
    display: inline-block;
}
header.alternative nav#primary .menu-header-container ul {
    padding: 0;
}
header.alternative nav#secondary {
    float: right;
}
header.alternative nav#secondary ul li.donate a.btn {
    color: #d16200;
}
header.alternative nav#secondary ul li.donate a.btn:hover {
    color: #ffffff;
}

/* MENU */
header.alternative .c-nav-bar__nav {
    float: right;
}
header.alternative .c-nav-bar__primary {
    display: inline-block;
    padding-left: 0;
    padding-right: 0; 
    width: inherit; 
    float: inherit; 
    float: inherit; 
}
header.alternative nav#primary .c-nav-bar__primary-links,
header.alternative .c-nav-bar__primary-links a {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 0;
}


/* Aside Menu PUSH */
body.page {
    right: 0;
    transition: all .5s;
}
body.page.pushmenu-push-toright {
    right: 300px;
}

/* Aside Menu */
#menulink{
    width:100%;
    cursor:pointer;
}
aside#right-menu {
    width: 300px;
    height:100%;
    position:absolute;
    right: -300px;
    top: 0;
    z-index: 9000;
    background: #fff;    
    transition: all .5s;
}
    body.page.pushmenu-push-toright aside#right-menu {
        box-shadow: -4px 0 4px rgba(31,25,26,.2);    
    }

ul#menu-aside {
    background: #e6e6e6;
}
ul#menu-aside > li {
    position: relative;
    padding: 12px 0 0;
    border-bottom: 1px solid #fff;
}
ul#menu-aside li a {
    color: #0092a0;
    font-weight: 700;
    letter-spacing: -.01em;
    text-transform: uppercase;
}
    ul#menu-aside li > a {
        padding: 0 12px 12px;
        display: block;
    }
    ul#menu-aside li > a:hover {
        color: #d16200;
    }
    ul#menu-aside li.menu-item-has-children > a:after {
        display: inline-block;
        font-family: "gmcn";
        content: '\44';
        -webkit-font-smoothing: antialiased;
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
        color: #0092a0;
        font-size: 20px;
        padding: 0 .66667rem;
        position: absolute;
        right: 0;
        top: 13.5px;
        -webkit-transition: -webkit-transform .3s;
        transition: transform .3s;
    }
    ul#menu-aside li.menu-item-has-children.open > a:after {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    ul#menu-aside li > ul.sub-menu {
        display: none;
        padding: 0 0 16px 12px;
        background: #ffffff;
    }
    ul#menu-aside li > ul.sub-menu > li {
        padding: 0;
    }
    ul#menu-aside li > ul.sub-menu > li > a {
        padding: 16px 0 0;
    }
    
    
ul#menu-aside li.orange {
    background-color: #d16200;
} 
ul#menu-aside li.orange a {
    color: #ffffff;
}


/* Primary Nav*/
nav#primary {
    float: right;
    display: block;
    padding: 50px 10px 0 0;
}
nav#primary ul {
    padding: 10px 0 0 0;
}
nav#primary .menu-primary-container {
    float: left;
    display: block;
}
nav#primary .menu-primary-container ul,
nav#primary ul li {
    position: relative;
    float: left;
    padding: 0 0 0 20px;
}
    nav#primary ul#menu-primary > li,
    nav#primary .menu-header-container > ul > li {
        height: 40px;
    }
nav#primary ul li.icon-menu {
     display: none; 
    cursor: pointer;
    color: #0092a0;
    font-size: 40px;
    font-size: 4rem;
    position: relative;
    top: -9px;
}
nav#primary ul li.current a {
    color: #dcad00;
}


/* Mobile Menu Icon */
#secondary-sub ul li span.icon-menu  {
    display: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 40px;
    font-size: 4rem;
    position: relative;
    top: -9px;
}
nav#primary ul li.current_page_item a,
nav#primary li.current-page-ancestor a,
nav#primary-sub ul li.current-menu-item a,
nav#primary-sub ul li.current_page_parent a,
nav#primary-sub ul li ul.sub-menu li.current_page_item a,
.single nav#primary ul li.current_page_parent a,
.archive nav#primary ul li.current_page_parent a,
.category nav#primary ul li.current_page_parent a,
#sidebar ul#sidenav li.current_page_item a {
    color: #dcad00;
}

nav#primary ul li a {
    color: #0092a0;
    font-weight: 600;
    text-transform: uppercase;
}
    header.alternative nav#primary ul li a {
        font-weight: 700;
    }
nav#primary ul li a:hover {
    color: #dcad00;
    background: transparent;
}
nav#primary ul li.donate a {
    color: #d16200;
    font-weight: 600;
    text-transform: uppercase;
}


/* Icon */
nav#secondary {
    float: left;
    padding: 0;
}
nav#secondary ul {
    padding: 0 0 0 10px;
}
nav#secondary ul li {
    float: left;
    position: inherit;
}
nav#secondary ul li span.icon-globe {
    cursor: pointer;
}
nav#secondary ul li.active span.icon-globe {
    color: #dcad00;
}
nav#secondary ul li span.icon-globe,
nav#secondary ul li span.icon-search {
    cursor: pointer;
    color: #0092a0;
    font-size: 30px;
    font-size: 3rem;
    position: relative;
    top: -3px;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
nav#secondary ul li span.icon-search:hover {
    color: #dcad00;
}
nav#secondary ul li.donate {
    padding: 0;
    margin: 0 0 0 20px;
}
nav#secondary ul li.donate a.btn {
    font-weight: 700;
    padding: 6px 26px;
    top: -10px;
}
nav#secondary ul li.donate a:hover {
    color: #ffffff;
    background-color: #d16200;
}



/* Mobile */
nav#mobile {
    display: none;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 15;
    top: 0;
    background-color: #efefef; 
}
    #right-menu nav#mobile {
        display: none;
        background: transparent;
    }
    #right-menu nav#mobile ul li a {
        padding: 10px 0 10px 10px;
    }
nav#mobile ul > li {
    display: block;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 0;    
}
nav#mobile ul li a {
    font-size: 16px;
    font-size: 1.6rem;
    color: #0092a0;
    display: block;
    padding: 10px 0 10px 20px;
}
nav#mobile > ul > li > a {
    color: #0092a0;
    text-transform: uppercase;
    font-weight: 700;
}
.no-touch nav#mobile ul li a:hover {
    background: #ffffff;
}


/* Mobile: Subnav */
#mobile ul.sub-menu {
    display: none;
    border-top: 1px solid rgba(255,255,255,.2);
    background: #e6e6e6;
}
#site-header .icon-menu.mobile-nav-trigger.open {
    color: #0092a0;
}
#site-header .icon-menu.mobile-nav-trigger.open {
    color: #dcad00;
}
#mobile ul.sub-menu li > a {
    position: relative;
    color: #0092a0;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
    #mobile ul.sub-menu {
        padding: 0;
    }
    #mobile ul.sub-menu li > a {        
        padding: 5px 0 5px 20px;
    }
    #mobile ul.sub-menu li > a .c-title {
        padding: 14px 0 12px 50px;    
    }
    
#mobile .mmobile-nav-trigger.open > a,
#mobile .mmobile-nav-trigger.open > a:hover {
    color: #ffffff;
    font-weight: 600;
    background-color: #0092a0;
}
#mobile ul.sub-menu span.shift {
    position: relative;
    top: -1px;
    padding: 0 5px 0 0;
    font-size: .6em;
}


/* Flyout */
nav#secondary .carrot,
header#site-header-sub .carrot {
    margin: 0 auto;
    visibility: hidden;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8.5px 9px 8.5px;
    border-color: transparent transparent #0092a0 transparent;
    border-style: inset;
    -webkit-transform:rotate(360deg);
}
    nav#secondary .carrot {
        margin: 20px auto 0 auto;
    }
    header#site-header-sub .carrot {
        border-color: transparent transparent #dcad00 transparent;
    }
nav#secondary li.flyout-trigger.active .carrot,
header#site-header-sub .flyout-trigger.active .carrot {
    visibility: visible;
}
nav#secondary ul,
header#site-header-sub ul {
    padding: 0;
}
nav#secondary ul div.flyout,
header#site-header-sub div.flyout {
    display: none;
    color: #ffffff;
    left: 50%;
    position: absolute;
    z-index: 100;
    cursor: default;
    border-top: 4px solid #0092a0;
    background: #efefef;
    height: inherit;
    padding: 30px 0;
    margin: 0;
}
    nav#secondary ul div.flyout {
        top: 110px;
    }
    header#site-header-sub div.flyout {
        border-top: 4px solid #dcad00;
    }
nav#secondary ul div.flyout ul,
header#site-header-sub div.flyout ul {
    width: 100%;
    max-width: 33%;
    padding: 0 20px;
    float: left;
}
nav#secondary ul div.flyout ul li,
header#site-header-sub div.flyout ul li {    
    position: relative;
    text-align: left;
    display: block;
    padding: 0;
    width: 100%;
}
nav#secondary ul div.flyout ul li a,
header#site-header-sub div.flyout ul li a {
    color: #0092a0;
}
nav#secondary ul div.flyout ul li a:hover,
header#site-header-sub div.flyout ul li a:hover {
    color: #d16200;
}

/* Country Menu */
.flyout-trigger {
    color: #ffffff;
    float: right;
}
.menu-primary-container {
    float: right;
}
    
    #mobile .menu-primary-container {
        float: none;
    }
#site-header-sub .flyout-trigger .icon-globe {
    font-size: 26px;
    font-size: 2.6rem;
    height: 46px;
    display: block;
}


/* Multisite: Accordion */
section#content .container-accordion {
    padding: 25px 0 10px 0;
}
section#content .container-accordion ul {
    padding: 0;
}
section#content .container-accordion ul li {
    padding: 10px 10px 0;
    list-style-type: none;
} 
section#content .container-accordion .accordion-item:first-of-type {
    border-top: 1px solid #badce0;
}
section#content .container-accordion .accordion-item {
    border-bottom: 1px solid #badce0;
    padding: 0;
}
section#content .container-accordion .accordion-item h4 {
    position: relative;
    cursor: pointer;
    display: block;
    padding: 10px 0 10px 15px;
    font-weight: 600;        
    font-weight: 400;
    background-color: #f3f3f3;
}
section#content .container-accordion .accordion-item h4.open {
    color: #d16200;
}    
/* Plus & Minus*/
section#content .container-accordion .accordion-item h4 span.plus {
    display: block;
    color: #0092a0;
    position: absolute;
    z-index: 3;
    right: 10px;
    top: 5px;
}
section#content .container-accordion .accordion-item h4 span.minus {
    display: none;
    position: absolute;
    z-index: 3;
    right: 10px;
    top: 5px;
}
section#content .container-accordion .accordion-item h4.open span.plus {
    display: none;
}
section#content .container-accordion .accordion-item h4.open span.minus {
    color: #d16200;
    display: block;
}
/* Hide Content */
section#content .container-accordion .accordion-content {
    display: none;
}
section#content .container-accordion .accordion-item p {
    margin: 0 0 0 25px;
}



/* ========================================== 

    General 

========================================== */
.aligncenter {
    display: table;
    margin: 0 auto 15px auto;
}
hr {
    border-color: #dee9ef;
    max-width: 400px;
    margin: 0 auto;
}
strong {
    font-weight: 700;
}
.block {
    padding: 15px 0;
}
small {
    font-size: 12px;
    font-size: 1.2rem;
}


/* Links */
a {
    color: #0092a0;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
a:hover {
    color: #d16200;
}


/* Hs */
h1,h2,h3,h4,h5,h6 {
    letter-spacing: -1px;
    color: #0092a0;
    line-height: normal;
    padding: 0 0 15px 0;
}
h1 {
    font-weight: 700;
    font-size: 36px;
    font-size: 3.6rem;
}
h2 {
    font-size: 24px;
    font-size: 2.4rem;
}
h3,h4 {
    font-size: 21px;
    font-size: 2.1rem;
}
h5,h6 {
    font-size: 16px;
    font-size: 1.6rem;
}


/* ========================================== 

    Forms & Buttons 

========================================== */
/* BTNs */
a.btn {
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    position: relative;
    z-index: 7;
    text-decoration: none;
    color: #d16200;
    border: 3px solid #d16200;
    background: transparent;
    line-height: normal;
    padding: 12px 26px;
    margin: 0;
}
a.btn:hover {
    color: #0092a0;
    background: transparent;
}
a.btn::after {
    position: absolute;
    right: -1px;
    bottom: 0;
    content: "T";
    font-family: "gmcn";
    font-size: 26px;
    font-size: 2.6rem;
}
    .safari-css a.btn::after {
        right: -2px;
        bottom: -2px;
    }

/* White */
.btn.white {
    color: #ffffff;
    border: 3px solid #ffffff;
}
.btn.white:hover {
    color: #ffffff;
    background-color: #d16200;
    border: 3px solid #d16200;
}

/* Green */
.btn.green {
    color: #0092a0;
    border: 3px solid #0092a0;
}
.btn.green:hover {
    color: #ffffff;
    background-color: #d16200;
    border: 3px solid #d16200;
}

/* Orange */
.btn.orange {
    color: #d16200;
    border: 3px solid #d16200;
}
.btn.orange:hover {
    color: #ffffff;
    background-color: #d16200;
    border: 3px solid #d16200;
}




/* ========================================== 

    Multisite
    
========================================== */


    /* Multisite: Logo */    
    header#site-header-sub {
        width: 100%;
    }
    
    /* Logo */
    header#site-header-sub .container-country {
        position: absolute;
        top: 15px;
        left: 20px;
    }
    header#site-header-sub img#logo-sub {
        margin: 0; 
    }    
    header#site-header-sub .flag {
        position: relative;
        top: 0;
    }
    header#site-header-sub > .row {
        justify-content: flex-end;
    }
    header#site-header-sub {
        height: 105px;
        background-color: #0092a0;
    }
    

    /* Multisite: Nav */
    nav#primary-sub {
        float: right;
        display: block;
        padding: 50px 20px 0 0;
    }
    nav#primary-sub ul {
        padding: 0;
    }
    nav#primary-sub ul li {
        position: relative;
        float: left;
        padding: 0 0 20px 20px;        
    }
    
    /* Current */
    nav#primary-sub ul li.current a,
    nav#primary-sub ul li.current-menu-parent > a {
        color: #dcad00;
    }
    nav#primary-sub > ul > li > a {
        padding: 0 0 30px 0;
    }
    nav#primary-sub ul li a {
        color: #ffffff;
        text-transform: uppercase;
        font-weight: 700;
    }    
    nav#primary-sub ul li a:hover {
        color: #dcad00;
    }
    nav#primary-sub ul.menu > li.menu-item-has-children > a::after {
        color: #22b6c2;
        content: "d";
        font-family: 'gmcn';
        font-size: 14px;
        font-size: 1.4rem;
        margin: 0 0 0 10px;
    }
    


    /* Multisite: Drop Down Nav */
    nav#primary ul#menu-primary li ul.sub-menu,
    nav#primary ul#menu-header li ul.sub-menu,
    nav#primary-sub ul li ul.sub-menu {
        width: 290px;
        display: none;
        position: absolute;
        top: 40px;
        left: -10%;
        padding: 15px;
        border: 1px solid #e6e6e6;
        background: #fff;
        -webkit-box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.2);
        -moz-box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.2);
        box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.2);
        z-index: 9999;   
    }
        header.alternative nav#primary ul#menu-header li ul.sub-menu {
            width: 190px;
        }
    nav#primary ul#menu-primary li ul.sub-menu ul,
    nav#primary ul#menu-header li ul.sub-menu ul,
    nav#primary-sub ul li ul.sub-menu ul {
        display: none!important;
    }
    nav#primary ul#menu-primary li:hover a,
    nav#primary ul#menu-header li:hover a,
    nav#primary-sub ul li:hover a {
        display: block;
        color: #dcad00;
        cursor: pointer;
    }
        header.alternative nav#primary ul#menu-header li:hover a {
            color: #0092a0;    
        }
    nav#primary ul#menu-primary li ul.sub-menu,
    nav#primary ul#menu-header li ul.sub-menu,
    nav#primary-sub ul li ul.sub-menu {
        padding: 10px 20px;
    }
        header.alternative nav#primary ul#menu-header li ul.sub-menu {
            padding: 15px;
        }
    nav#primary ul#menu-primary li ul.sub-menu li,
    nav#primary ul#menu-header li ul.sub-menu li,
    nav#primary-sub ul li ul.sub-menu li {
        display: block;
        width: 100%;
        padding: 0;
        border-top: 1px solid #0092a0;
    }
        header.alternative nav#primary ul#menu-header li ul.sub-menu li {
            border-top: none;    
        }
    nav#primary ul#menu-primary li ul.sub-menu li:first-child,
    nav#primary ul#menu-header li ul.sub-menu li:first-child,
    nav#primary-sub ul li ul.sub-menu li:first-child {
        border-top: none;
    }
    nav#primary ul#menu-primary li ul.sub-menu li a,
    nav#primary ul#menu-header li ul.sub-menu li a,
    nav#primary-sub ul li ul.sub-menu li a {
        color: #0092a0;
        text-transform: uppercase;
        text-align: left;
        display: block;
        width: 100%;
        height: 100%;
        cursor: pointer;
        padding: 10px 0;
    }
        header.alternative nav#primary ul#menu-header li ul.sub-menu li a {
            color: #000;
            font-weight: 300;
            font-size: 14px;
            font-size: 1.4rem;
            text-transform: inherit;
        }
        header.alternative nav#primary ul#menu-header li ul.sub-menu li a:hover {
            color: #0092a0;
        }
    nav#primary ul#menu-primary li ul.sub-menu li a:hover,
    nav#primary ul#menu-header li ul.sub-menu li a:hover,
    nav#primary-sub ul li ul.sub-menu li a:hover {
        color: #d5a00f;
    }    
    /* Carrot */
    nav#primary ul#menu-primary li.hover ul.sub-menu::before,
    nav#primary ul#menu-header li.hover ul.sub-menu::before,
    nav#primary-sub ul li.hover ul.sub-menu::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 50%;
        margin-left: -125px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 9.5px 9px 9.5px;
        border-color: transparent transparent #ffffff transparent;
        border-style: inset;
        -webkit-transform:rotate(360deg);    
    }
        /* Triangle */
        nav#primary ul#menu-primary li.hover ul.sub-menu::before,
        nav#primary ul#menu-header li.hover ul.sub-menu::before {
            top: -10px;
            border-color: transparent transparent #0092a0 transparent;
        }
        header.alternative nav#primary ul#menu-header li.hover ul.sub-menu::before {
            border-style: none;
            border-width: 0;
            border-color: transparent;
            border-style: inherit;
        }
    

    /* Multisite: Secondary Nav · Global Icon */
    .listContainer1 {
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
    }
    nav#secondary-sub {
        padding: 48px 0 0 0; 
    }
    nav#secondary-sub > ul > li {
        padding: 0;
    }
    nav#secondary-sub > ul > li > span {
        cursor: pointer;
        font-size: 3rem;
        font-size: 30px;
        color: #ffffff;
        padding: 0 5px;
    }
    nav#secondary-sub ul li {
        float: left;
        text-transform: uppercase;
    }
    nav#secondary-sub ul  li a {
        font-weight: 600;
    }
    nav#secondary-sub ul li span.mobile-nav-trigger {
        display: none;
        font-size: 55px;
        font-size: 5.5rem;
        position: relative;
        top: 5px;
    }
    

    /* Multisite: Banner & Title */
    section#banner-sub {
        position: relative;
        height: 410px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
    }
    /* Subpages Pages */
    section#banner-sub.interior {
        height: 300px;
    }
    section#banner-sub.interior .page-title {
        top: 80px;
    }
    section#banner-sub .banner-fade {
        width: 596px;
        height: 450px;
        background-image: url(images/graphic-black-fade.png);
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
    }
    section#banner-sub > .row {
        justify-content: flex-start;
    }
    section#banner-sub .page-title {
        position: relative;
        top: 120px;
        left: 20px;
    }
    section#banner-sub .page-title h1 {
        color: #ffffff;
        font-weight: 600;
        font-size: 54px;
        font-size: 5.4rem;
        position: relative;
        z-index: 5;
    }
    
    section#banner-sub.interior .page-title h1 {
        padding: 0;
    }
    section#banner-sub .page-title h2 {
        color: #ffffff;
        font-size: 36px;
        font-size: 3.6rem;
        padding: 0;
    }
    
    
    /* Multisite: Landing Page + Callouts */
    section#content .container-callouts {
        width: 100%;
        margin: 50px 0;
    }
        .safari-css section#content .container-callouts .item {
            min-height: 435px;
        }
    section#content .container-callouts a strong {
        color: #000000;
    }
    section#content .container-callouts a span {
        color: #000000;
    }
    section#content .container-callouts span {
        display: block;
        padding: 0 0 10px 0;
    }
    section#content .item {
        text-align: center;
        cursor: pointer;
        padding: 40px 20px;
        margin: 0 0 10px;
        max-width: 20%;
        width: 100%;
        float: left;
        border-left: 1px solid #efefef;
        -webkit-transition: linear .3s;
        -moz-transition: linear .3s;
        -ms-transition: linear .3s;
        -o-transition: linear .3s;
        transition: linear .3s;
    }
    section#content .item:first-child {
        border: none;
    }
    section#content .item h2 {
        text-align: center;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 21px;
        text-transform: uppercase;
        padding: 0 0 10px 0;
    }
    section#content .item:hover {
        background-color: #ffffff;
        -moz-box-shadow: 1px 1px 2px 0 #d0d0d0;
        -webkit-box-shadow: 1px 1px 2px 0 #d0d0d0;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
    }
    section#content .item > span {
        display: block;
        padding: 0 0 10px 0;
    }
    
    
    /* Multisite: Content Pages */
    section#content.sub {
        padding: 50px 0 100px;
    }
    section#content.sub h1.section-title {
        padding: 0;
    } 
    section#content.sub h1.section-title.orange {
        color: #d16200;
    }   
    #report .col.six a.btn {
        margin: 0 auto;
        font-size: 21px;
        font-size: 2.1rem;
    } 
    
    
    /* Multisite: Sub Pages */
    section#content.sub #page-content h1.section-title {
        padding: 0 0 35px 0;
    }
    section#content.sub #page-content h1.section-title,
    section#content.sub #page-content h2 {
        text-align: left;
    }
    section#content.sub #page-content h2,
    section#content.sub #page-content h3,
    section#content.sub #page-content h4,
    section#content.sub #page-content h5,
    section#content.sub #page-content h6 {
        color: #0092a0;
        padding: 0 0 10px 0;
        margin: 0 !important;
    }
    section#content.sub #page-content .featured-pic,
    section#content .featured-pic {
        position: relative;
        z-index: 1;
        max-width: 50%;
        float: right;
        right: 0;
        top: 0;
        padding: 0 0 20px 20px;
    }
    section#content.sub #page-content .featured-pic img,
    section#content .featured-pic img {
        margin: 0;
    }
    
    
    /* Multisite: Sidebar */
    #sidebar #announcement {
        background-color: #0092a0;
    }
    #sidebar #announcement h2 {
        color: #dcad00;
        text-align: left;
        padding: 0 0 10px 0;
    }
    #sidebar #announcement .inner {
        padding: 0 30px 30px 30px;        
    }
    #sidebar #announcement img {
        padding: 0 0 15px 0;
        width: 100%;
    }
    #sidebar #announcement p {
        color: #ffffff;        
    }
    #sidebar #announcement .container-center {
        text-align: center;
    }
    /* Sidenav */
    #sidebar ul#sidenav {
        padding: 0 0 20px 0;
    }
    #sidebar ul#sidenav li {
        list-style-type: none;
        border-bottom: 1px solid #c3e5e9;
        padding: 0;
    }
    #sidebar ul#sidenav li:last-child {
        border: none;
    }
    #sidebar ul#sidenav li a {
        font-weight: 700;
        display: block;
        padding: 15px 0;
        text-transform: uppercase;
    }
    #sidebar ul#sidenav li a:hover {
        color: #eab410;
    }
    #sidebar ul#sidenav li.current a {
        color: #eab410;
    }
    
    /* Multisite: Accordion */
    section#content.sub #page-content .container-accordion {
        padding: 25px 0 10px 0;
    }
    section#content.sub #page-content .container-accordion ul {
        padding: 0;
    }
    section#content.sub #page-content .container-accordion ul li {
        padding: 10px 10px 0;
        list-style-type: none;
    } 
    section#content.sub #page-content .container-accordion .accordion-item:first-of-type {
        border-top: 1px solid #badce0;
    }
    section#content.sub #page-content .container-accordion .accordion-item {
        border-bottom: 1px solid #badce0;
        padding: 0;
    }
    section#content.sub #page-content .container-accordion .accordion-item h4 {
        position: relative;
        cursor: pointer;
        display: block;
        padding: 10px 0 10px 15px;
        font-weight: 600;        
        font-weight: 400;
        background-color: #f3f3f3;
    }
    section#content.sub #page-content .container-accordion .accordion-item h4.open {
        color: #d16200;
    }    
    /* Plus & Minus*/
    section#content.sub #page-content .container-accordion .accordion-item h4 span.plus {
        display: block;
        color: #0092a0;
        position: absolute;
        z-index: 3;
        right: 10px;
        top: 5px;
    }
    section#content.sub #page-content .container-accordion .accordion-item h4 span.minus {
        display: none;
        position: absolute;
        z-index: 3;
        right: 10px;
        top: 5px;
    }
    section#content.sub #page-content .container-accordion .accordion-item h4.open span.plus {
        display: none;
    }
    section#content.sub #page-content .container-accordion .accordion-item h4.open span.minus {
        color: #d16200;
        display: block;
    }
    /* Hide Content */
    section#content.sub #page-content .container-accordion .accordion-content {
        display: none;
    }
    section#content.sub #page-content .container-accordion .accordion-item p {
        margin: 0 0 0 25px;
    }
    

    /* Multisite: Message */
    section#message {
        padding: 50px 0;
        background-color: #ffffff;
    }    
    section#message img {
        display: block;
        margin: 0 auto 35px auto;
    }
    section#message .col h1,
    section#message .col p {
        width: 100%;
    }        
    

    /* Multisite: Network Partners */
    section#network-partners {
        padding: 50px 0;
        background-color: #f7f5f6;
    }
    section#network-partners .container-partners {
        width: 100%;
        text-align: center;
        padding: 50px 0 100px 0;
        margin: 0 0 35px 0;
        border-bottom: 1px solid #cccccc;
    }
    section#network-partners .container-partners .mcol.item {
        width: 100%;
        max-width: 16%;
        display: inline-block;
        margin: 0 1.5%;
        margin-bottom: 0!important;
    }
    

    /* Multisite: News & Events */
    section#news-events {
        padding: 50px 0;
        background-color: #f7f5f6;
    }
    section#news-events .container-pic {
        position: relative;
        max-height: 235px;
        overflow: hidden;
    }
    section#news-events .container-pic img {
        position: relative;
        z-index: 1;
    }
    section#news-events .container-pic .carrot{
        position: absolute;
        bottom: 0;
        left: 30px;
        z-index: 5;
        margin: 0 auto;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 9.5px 10px 9.5px;
        border-color: transparent transparent #F5EED3 transparent;
        border-style: inset;
        -webkit-transform: rotate(360deg);
    }
    section#news-events article {
        width: 32.3333%;
        display: block;
        margin: 0 .5% 15px .5%;
        text-align: center;
        background-color: #ffffff;
    }
    section#news-events article .inner:hover {
        background-color: #F5EED3;
        -webkit-transition: linear .3s;
        -moz-transition: linear .3s;
        -ms-transition: linear .3s;
        -o-transition: linear .3s;
        transition: linear .3s;
    }
        .safari-css section#news-events article {
            width: 31.3333%;
        }
    section#news-events article h1 {
        font-size: 19px;
        font-size: 1.9rem;
        padding: 0 0 15px 0;
        text-align: left;
    }
    section#news-events article date strong {
        font-size: 16px;
        font-size: 1.6rem;
        padding: 0 0 15px 0;
        display: block;
        text-align: left;
    }
    section#news-events article p {
        text-align: left;
    }
    section#news-events article .inner {
        padding: 20px;
        background-color: #ffffff;
    }
    section#news-events article img {
        width: 100%;
        margin: 0;
    }


    /* Multisite: footer */
    footer.sub ul.details {
        max-width: 100%;
        display: block;
    }
    footer.sub .col.eight ul.details {
        padding: 0;
        display: block;
        width: 100%;
        max-width: 100%;
    } 
    footer.sub .col.eight ul.details li a,
    footer.sub .col.eight #bureau a {
        text-decoration: underline;
    }
    footer.sub .social li.logo {
        display: block;
        float: none;
    }
    footer.sub .social li.logo img {
        padding: 35px 0 0 0;
    }




/* ========================================== 

    Plugins
========================================== */

/*  Flags 
    http://www.icondrawer.com/free.php
*/
.flag {
    max-width: 42px;
    margin: 0;
}
.flag-icon {
    position: relative;
    left: 10px;
    top: 10px;
    margin: 0;
}

/* Fancybox */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}

.fancybox-opened {
    z-index: 8030;
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
       -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url(images/fancybox_sprite.png);
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url(images/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url(images/blank.gif); /* helps IE */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    z-index: 8040;
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px;
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px;
}

.fancybox-nav:hover span {
    visibility: visible;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background-image: url(images/fancybox_overlay.png);
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050;
}

.fancybox-opened .fancybox-title {
    visibility: visible;
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent; /* Fallback for web browsers that doesn't support RGBa */
    background: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
       -moz-border-radius: 15px;
            border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #FFF;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff;
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8);
}


/* Gravity Forms */
/* Form */
.gform_wrapper {
    position: relative;
    margin: -205px 0 0 0;
    padding: 0 30px 0 0;
    background: transparent;
}
#page-content .gform_wrapper .gform_title,
section#content .gform_wrapper .gform_title {
    font-size: 40px;
    font-size: 4rem;
    color: #0092a0;
    padding: 0;
}
#page-content .gform_wrapper .gform_title h3,
section#content .gform_wrapper .gform_title h3 {
    color: #0092a0;
}
#page-content .gform_wrapper ul,
section#content .gform_wrapper ul {
    padding: 0;
}
#page-content .gform_wrapper ul li,
section#content .gform_wrapper ul li {
    font-size: 21px;
    font-size: 2.1rem;
}
#page-content .gform_wrapper input[type="text"],
section#content .gform_wrapper input[type="text"] {
    /*border: none !important;*/
    padding: 15px 0 15px 10px !important;
}
#page-content .gform_wrapper input[type="submit"],
section#content .gform_wrapper input[type="submit"] {
    width: inherit;
    font-size: 21px;
    font-size: 2.1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    position: relative;
    z-index: 7;
    text-decoration: none;
    color: #ffffff;
    border: 3px solid #0092a0;
    background: #0092a0;
    line-height: normal;
    padding: 12px 26px;
    margin: 15px 0 0 0;
        -webkit-transition: linear .3s;
    -moz-transition: linear .3s;
    -ms-transition: linear .3s;
    -o-transition: linear .3s;
    transition: linear .3s;
}
#page-content .gform_wrapper input[type="submit"]:hover,
section#content .gform_wrapper input[type="submit"]:hover {
    color: #ffffff;
    background-color: #dcad00;
    border: 3px solid #dcad00;
}
#page-content .gform_wrapper textarea,
section#content .gform_wrapper textarea {
    border: none;
    width: 100% !important;
    border: 1px solid #ccc;
}

/* Google Translate */
header#site-header .goog-te-gadget {
    color: #fff!important;
}
header#site-header-sub .goog-te-gadget {
    color: #0092a0!important;
}
.goog-te-gadget .goog-te-combo {
    margin: 0;
}

header#site-header select.goog-te-combo,
header#site-header-sub select.goog-te-combo {
    background: transparent;
    border: none;
    height: 28px;    
    margin: 0 !important;
    border: none;
    color: #cccccc !important;
    width: 100% !important;
    padding: 5px 10px 5px 0;
    font-size: 11px;
    font-size: 1.1rem;
    -webkit-appearance: none;
}
header#site-header select.goog-te-combo {
    color: #666666 !important;
}

#google_translate_element {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    padding: 0;
}
#google_translate_element .goog-te-gadget-simple {
    padding: 0;
}
#google_translate_element img {
    margin: 0;
}

#:0.targetLanguage {
    position: relative;
}
label[for="trans"] {
    position: absolute;
    z-index: 5;
    right: 5px;
    top: 3px;
    font-family: 'gmcn';
    font-size: 20px;
    font-size: 2rem;
    color: #22b6c2;
}

a.goog-logo-link {
    display: none;
}


/* Form Resets */
.gform_wrapper .hidden_label input.large, 
.gform_wrapper .hidden_label select.large, 
.gform_wrapper .top_label input.large, 
.gform_wrapper .top_label select.large {
    width: 100% !important;
}
.gform_wrapper input[type=email], 
.gform_wrapper input[type=number], 
.gform_wrapper input[type=password], 
.gform_wrapper input[type=tel], 
.gform_wrapper input[type=text], 
.gform_wrapper input[type=url] {
    outline-style: none;
    font-size: inherit;
    font-family: inherit;
    padding: .5em 0 .25em!important;
    letter-spacing: normal;
    text-indent: .45em !important;
    display:inline-block;
    line-height: 18px;
}
.gform_wrapper textarea {
    padding: 15px 20px !important;
}
form .gform_wrapper ul.gform_fields,
form .gform_wrapper ul.gform_fields li {
    max-width: 100% !important;
    float: none !important;
    margin: 0;
    padding: 0;
}
.gform_wrapper {
    max-width: 100% !important;
    margin: 0 !important;
}
.gform_wrapper ul {
    padding: 0;
    margin: 0;
    line-height: 0;
}
.gform_wrapper form li, 
.gform_wrapper li {
    padding: 0;
}
.gform_wrapper textarea.large {
    width: 100% !important;
    height: 235px !important;
}
.gform_wrapper .gform_footer {
    padding: 0 !important;
    margin: 0 !important;
}
/* Hide Form Labels */
.gform_wrapper .top_label .gfield_label {
    display: none !important;
}
/* Form Error Messages */
.gform_wrapper div.validation_error {
    color: #ff9c00 !important;
    border-top: 0px solid #ff9c00 !important;
    border-bottom: 0px solid #ff9c00 !important;
    padding: .25em 0 !important;
    width: 100% !important;
}
.gform_wrapper li.gfield.gfield_error, 
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background: transparent !important;
    margin-bottom: 0 !important;
    border-top: none !important;
    border-bottom: none !important;
}
.gform_wrapper .gfield_description+.gform_wrapper .gfield_description.validation_message, 
.gform_wrapper .ginput_container+.gfield_description.validation_message {
    margin: 0 !important;
}
.gform_wrapper .gfield_description.validation_message, 
.gform_wrapper .top_label .gfield_description.validation_message {
    padding: 0 !important;    
}
.gform_wrapper .validation_message {
    color: orange !important;
    font-weight: normal !important; 
}
.gform_confirmation_message_1 gform_confirmation_message {
    color: yellow !important;
    font-weight: 700 !important;
}
.gform_wrapper .top_label .gfield_error {
    width: 100% !important;
    max-width: 100% !important;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description, 
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, 
.gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label, 
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
    margin-left: 0 !important;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, 
.gform_wrapper li.gfield_html {
    max-width: 100% !important;
}
.gform_wrapper li.gfield_error input[type=email], 
.gform_wrapper li.gfield_error input[type=number], 
.gform_wrapper li.gfield_error input[type=password], 
.gform_wrapper li.gfield_error input[type=tel], 
.gform_wrapper li.gfield_error input[type=text], 
.gform_wrapper li.gfield_error input[type=url], 
.gform_wrapper li.gfield_error textarea {
     border: 2px solid #ff9c00 !important;
}
.gform_wrapper .gfield_date_day label, 
.gform_wrapper .gfield_date_month label, 
.gform_wrapper .gfield_date_year label, 
.gform_wrapper .gfield_time_ampm label, 
.gform_wrapper .gfield_time_hour label, 
.gform_wrapper .gfield_time_minute label, 
.gform_wrapper .ginput_complex label, 
.gform_wrapper .instruction {
    margin: .188em 0 0 !important;
}
.gform_wrapper .gfield_description.validation_message, 
.gform_wrapper .top_label .gfield_description.validation_message {
    padding: 0 !important;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description,
.gform_wrapper .validation_message {
    display: none !important;
}
/* Validation */
.gform_confirmation_message {
    color: #f7941d;
    font-family: 'Open Sans', sans-serif;
}



/* ========================================== 

    Fonts 

========================================== */
@font-face {
  font-family: 'gmcn';
  src: url('fonts/gmcn.eot?16776690');
  src: url('fonts/gmcn.eot?16776690#iefix') format('embedded-opentype'),
       url('fonts/gmcn.woff2?16776690') format('woff2'),
       url('fonts/gmcn.woff?16776690') format('woff'),
       url('fonts/gmcn.ttf?16776690') format('truetype'),
       url('fonts/gmcn.svg?16776690#gmcn') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "gmcn";
  font-style: normal;
  font-weight: normal;
  speak: none; 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
.icon-plus:before { content: '\2b'; } /* '+' */
.icon-minus:before { content: '\2d'; } /* '-' */
.icon-close:before { content: '\43'; } /* 'C' */
.icon-down:before { content: '\44'; } /* 'D' */
.icon-eye:before { content: '\45'; } /* 'E' */
.icon-left:before { content: '\4c'; } /* 'L' */
.icon-menu:before { content: '\4d'; } /* 'M' */
.icon-yt:before { content: '\50'; } /* 'P' */
.icon-right:before { content: '\52'; } /* 'R' */
.icon-search:before { content: '\53'; } /* 'S' */
.icon-triangle:before { content: '\54'; } /* 'T' */
.icon-globe:before { content: '\57'; } /* 'W' */
.icon-warning:before { content: '\61'; } /* 'a' */
.icon-child-safety:before { content: '\63'; } /* 'c' */
.icon-fb:before { content: '\66'; } /* 'f' */
.icon-file:before { content: '\70'; } /* 'p' */
.icon-shield:before { content: '\73'; } /* 's' */
.icon-twitter:before { content: '\74'; } /* 't' */


/* ie7 */
[class^="icon-"], [class*=" icon-"] {
  font-family: 'gmcn';
  font-style: normal;
  font-weight: normal;
}
 
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x2b;&nbsp;'); }
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x2d;&nbsp;'); }
.icon-close { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x43;&nbsp;'); }
.icon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x44;&nbsp;'); }
.icon-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x45;&nbsp;'); }
.icon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x4c;&nbsp;'); }
.icon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x4d;&nbsp;'); }
.icon-yt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x50;&nbsp;'); }
.icon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x52;&nbsp;'); }
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x53;&nbsp;'); }
.icon-triangle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x54;&nbsp;'); }
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x57;&nbsp;'); }
.icon-warning { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x61;&nbsp;'); }
.icon-child-safety { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x63;&nbsp;'); }
.icon-fb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x66;&nbsp;'); }
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x70;&nbsp;'); }
.icon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x73;&nbsp;'); }
.icon-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#x74;&nbsp;'); }

section#callouts .icon-file.ic, section#callouts .icon-shield.ic, section#callouts .icon-warning.ic {
    font-size: 30px;
    font-size: 3rem;
    margin: 8px 0;
}


/* ========================================== 

    Hides & Fixes 

========================================== */

.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }


/* ========================================== 

    Media: Mobile 

========================================== */

@media screen
and (max-width: 1336px) {
    section#banner #banner-fg-overlay { right: 20px;}
}


/* Desktop less than 1100px */
@media screen
and (max-width: 1100px) { 
    
    /* Primary */
    nav#primary ul#menu-primary,
    nav#primary #secondary li.globe {
        display: none;
    }
    
    /* Secondary */
    nav#primary ul li.icon-menu {
        display: block; 
    }    
    .mobile-nav-trigger {
        display: block;
    }    
    
    /* Hero */
    section#hero {
        background-size: 1100px;
        background-attachment: scroll;
    }
    section#banner{
        min-height: 300px;
        height: auto;
        background-position: 0 0;
    } 
    section#banner #banner-fg-overlay { 
        right: auto;
        top: 0;
        position: relative;
        margin: 30px 30px 30px auto;
    }
    
    /* News & Events */
    section#news-post.blog-feed .container-pic,
    section#content.sub #page-content .featured-pic {
        max-width: 100%;
        float: none;
        display: block;
        padding: 20px 0 10px 0;
    }
    .container-arrows .prev,
    .container-arrows .next {
        float: left;
        padding: 15px 0;
    }
    
    /* Network Partners */
    section#accreditations .mcol.item {
        max-width: 150px;
    }
    
    /* Video Banner */
    section#video-banner {
        height: 545px;
        background-attachment: scroll;
    }
    section#video-banner .row .caption {
        padding: 125px 0 0 0;
        margin: 0!important;
    }
    section#video-banner .row .caption h1 {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 46px;
        padding: 0 0 15px 0;
    }
    section#video-banner a {
        font-size: 60px;
        font-size: 6rem;
    }
    
}

/* Desktop less than 1025px */
@media screen
and (max-width: 1025px) {   
    
    /* HEADER */
    #right-menu nav#mobile {
        display: block;
    }
    
    /* Multisite: Banner */
    section#banner {
        background-attachment: inherit;
    }
    section#banner .banner-fade {
        height: 410px;
    }
    
    /* Navigation */
    header.alternative .menu-header-container {
        display: none;
    }
    
    /* Secondary */ 
    nav#secondary ul li {
        padding: 0 0 0 10px;
    }
    nav#secondary ul li.donate a.btn {
        padding: 6px 20px;
    }
    
    /* Callouts */
    section#callouts {
        padding: 50px 0;
    }
    section#callouts .col.four h2 {
        font-size: 26px;
        font-size: 2.6rem;
    }
    section#hero .caption h1 {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 46px;
        max-width: 95%;
        margin: 0 auto;
    }    

    section#callouts h1 {
        font-size: 30px;
        font-size: 3.0rem;
        line-height: 36px;
        max-width: 95%;
        margin: 0 auto;
    }    
    
    
    /* Content */
    section#content h1 {
        font-size: 26px;
        font-size: 2.6rem;
    }
    
    /* Accreditations */
    section#accreditations h1 {        
        font-size: 36px;
        font-size: 3.6rem;
        padding: 0 0 45px 0;
    }
    section#accreditations .mcol.item {
        width: auto !important;
        padding: 20px 0;
        margin-bottom: 0 !important;
    }
    
    /* Hs */
    h1,h2,h3,h4,h5,h6 {
        padding: 0 0 25px 0;
    }
    h1 {
        font-size: 26px;
        font-size: 2.6rem;
    }
    h2 {
        font-size: 21px;
        font-size: 2.1rem;
    }
    h3,h4 {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

/* Desktop less than 910px */
@media screen
and (max-width: 910px) { 
    
    /* Multisite: Primary Nav */ 
    nav#primary-sub {
        display: none;
    }
    nav#secondary-sub ul li.globe {
        display: none;
    }
    
    /* Multisite: Show Mobile Nav */    
    #secondary-sub {
        padding: 38px 0 0 0;
    }
    #secondary-sub ul li span.mobile-nav-trigger {
        display: block;
    }
    
    /* Multisite: News & Events */
    section#news-events.sub article {
        margin: 0 .5% 10px;
    }

    section#banner #banner-fg-overlay { 
        display: none;
    }
    
    
    
    /* Search */
    #search-wrapper {
        padding: 25px 0 0 0;
    }
    #search input[type="text"]#s {
        font-size: 30px;
        font-size: 3rem;
    }
    #search input[type="submit"]#searchsubmit {
        font-size: 30px;
        font-size: 3rem;
    }
    #search-wrapper #close {
        font-size: 30px;
        font-size: 3rem;
    }
    
    /* Placeholder Text */
    #search input[type="text"]#s::-webkit-input-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search input[type="text"]#s:-moz-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search input[type="text"]#s::-moz-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search input[type="text"]#s:-ms-input-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
     
}    

/* Desktop less than 810px */
@media screen
and (max-width: 810px) {    
    
    /* Multisite: Have you Seen Me */
    section#content .item {
        max-width: 33%;
    }
    section#banner .banner-fade {
        display: none;
    }
    
    /* Multisite: Banner */
    section#banner .page-title h1 {
        color: #ffffff;
        font-size: 46px;
        font-size: 4.6rem;
    }        
    
        
    /* Hero */
    section#hero .caption {
        max-width: 95%;
        position: relative;
        top: 150px;
        left: 0;
        margin: 0 auto;
        text-align: center;
    }
    section#hero .caption h1 {
        text-align: center;
    }
    section#hero {
        background-size: 900px;
    }
    section#callouts h1 {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 32px;
        max-width: 95%;
        margin: 0 auto;
        text-align: center;
        margin-top: 40px;
    }    
    
        
    /* Callouts */
    section#callouts {
        padding: 0;
    }
    section#callouts .col.four p {
        max-width: 100%;
    }
    section#callouts .row .col.four {
        margin-bottom: 0!important;
    }
    section#callouts .ic {
        padding: 0;
    }
    
    
    /* Video Banner */
    section#video-banner {
        height: 745px;
        background-size: 800px;
        background-repeat: no-repeat;
        background-position: top;
        background-attachment: inherit;
    }
    section#video-banner .row .col.six {
        width: 100%;
        display: block;
    }
    section#video-banner .row .caption > .inner {
        text-align: center;
    }
    section#video-banner .row .caption h1 {
        text-align: center;
        margin: 0 auto;
        max-width: 75%;
    }
    
    
    /* Content */
    section#content .eight,
    #sidebar.four {
        width: 100%;
    }
    section#content h1,
    section#content h2 {
        font-weight: 600;
        text-align: left;
    }
    section#content h1 {
        padding: 0;
    }
    section#content h1.section-title {
        text-align: center;
    }
    
    
    /* Membership */
    section#membership #col-a,
    section#membership #col-b {
        width: 100%;
        margin: 0 !important;
    }
    section#membership #col-a p:last-child,
    section#membership #col-b p:last-child {
        padding: 0;
    }
    
    section#membership p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 24px;
    }   
    
    
    /* News & Events */
    section#news-events article {
        margin: 0 1.5%;
    }
    
    /* Page: Search */ 
    .search form input {
        font-size: 18px;
        font-size: 1.8rem;
        padding: 15px;
    }
    section#search-bar input[type="submit"] {
        font-size: 36px;
        font-size: 3.6rem;
    }
    
    /* Page Callouts*/
    section#content .page-callout img {
        max-width: 50%;
        float: none;
        margin: 0;
    }
    section#content .page-callout h2 {
        padding: 15px 0 5px;
    }
    
    
    /* Footer */
    footer .col {
        width: 100%;
    }
    footer .col .inner {
        text-align: center;
        padding: 10px 20px;
    }
    footer .col.eight .address-info, 
    footer .col.eight ul.details,
    footer.sub .col.eight #bureau {
        max-width: 100%;
        float: none;
        text-align: center;
    }
    footer .col.eight ul.details,
    footer.sub .col.eight #bureau {
        padding: 25px 0 0 0;
    }
    footer .col.eight ul.terms li {
        float: none;
        padding: 0;
        text-align: center;
    }
    footer .social ul {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto;
    }    
    footer .social ul li {
        float: none;
        display: inline-block;
    }    
    footer img.logo {
        position: relative;
        right: 0;
        top: 30px;
    }
}

/* Desktop less than 768px */
@media screen
and (max-width: 768px) {     
    
    /* Multisite: Page Content */
    section#content.sub #page-content .featured-pic,
    section#content .featured-pic {
        float: none;
        max-width: 100%;
        padding: 0 0 20px 0;
    }
    section#content.sub {
        padding: 50px 0;
    }
    #page-content.col {
        margin-bottom: 0!important;
    }
    #report .col.six a.btn {
        font-size: 16px;
        font-size: 1.6rem;
    }
    
    
    /* Template */
    .col {
        width: 100%!important;
        margin-bottom: 20px!important;
    }
    
    /* Video Banner */
    section#video-banner {
        height: 445px;
    }
        
    /* Accreditations */
    section#accreditations {
        padding: 50px 0;
    }
        
    

}

/* Desktop less than 650px */
@media screen
and (max-width: 650px) {
    
    /* Multisite: Header */
    header#site-header-sub .container-country {
        left: 10px;
    }
    .flag-icon {
        max-width: 50px;
    }
    header#site-header-sub img#logo-sub {
        max-width: 175px;
    }    
    header#site-header,
    header#site-header-sub {
        height: 90px;
    }
    header#site-header img#logo {
        max-width: 150px;
        top: 20px;
    }
    
    /* Multisite: Mobile Nav */
    nav#secondary-sub {
        padding: 18px 0 0 0;
    }
    nav#secondary {
        padding: 18px 0 0 0;
        position: relative;
        z-index: 11;
    }
    
    /* Multisite: Banner */
    section#banner-sub .page-title,
    section#banner .page-title {
        top: 80px;
        left: 25px;
    }
    section#banner .page-title h1,
    section#banner-sub .page-title h1,
    section#banner-sub.interior .page-title h1 {
        font-size: 30px;
        font-size: 3rem;
        padding: 0 0 10px;
    }
    section#banner-sub.interior .page-title h2 {
        font-size: 20px;
        font-size: 20px;
    }
    section#banner,
    section#banner-sub.interior {
        height: 200px;
    }
    section#banner-sub {
        height: 310px;
    }
    
    /* Multisite: Have you Seen Me */
    section#content .item {
        max-width: 50%;
    }
    
    /* Multisite: Network Partners */
    .container-partners .mcol.item,
    section#network-partners .container-partners .mcol.item {
        max-width: 25%;
    }    
    section#network-partners .container-partners {
        padding: 50px 0 25px 0;
    }

    
    /* Search */
    #search {
        height: 90px;
    } 
    
    /* Header */ 
    header.alternative .c-nav-bar__nav {
        padding: 20px 0 0 0;
    }
    header.alternative nav#primary {
        padding: 20px 10px 0 0;
    }
    nav#primary {
        padding: 25px 10px 0 0;
    }
    
    /* Btns */
    .btn.white {
        padding: 6px 20px;
    }
    
    /* Logo */
    img#logo {
        max-width: 125px;
        top: 15px;
    }
    
    /* Hero */
    section#hero {
        background-size: 800px;
    }
}

/* Desktop less than 568px */
@media screen
and (max-width: 568px) { 
    
    /* Multisite: Have you Seen Me */
    section#content .item {
        max-width: 100%;
    }
        
    /* Multisite: News & Events */
    section#news-events article h1 {
        padding: 0;
    }
    
    /* Multisite: Membership */
    section#membership .countries ul {
        max-width: 100%;
    }
        
    
    /* Search */
    #search input[type="text"]#s {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search input[type="submit"]#searchsubmit {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search-wrapper #close {
        font-size: 26px;
        font-size: 2.6rem;
        position: relative;
        top: 0;
    }
    
    /* Placeholder Text */
    #search input[type="text"]#s::-webkit-input-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search input[type="text"]#s:-moz-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search input[type="text"]#s::-moz-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
    #search input[type="text"]#s:-ms-input-placeholder {
        font-size: 26px;
        font-size: 2.6rem;
    }
    
    /* Header */
    header a.btn::after {
        font-size: 10px;
        font-size: 1rem;
    }
    
    /* Primary */
    nav#secondary ul li.donate {
        padding: 0;
        margin: 0 0 0 10px;
    }
    nav#secondary ul li.donate a.btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
        
    /* Video Banner */
    section#video-banner .row .caption {
        padding: 100px 0 0 0;
    }
    section#video-banner .row .caption h1 {
        max-width: 100%;
        font-size: 26px;
        font-family: 2.6rem;
        line-height: 36px;
    }
    
    
    /* Partners */
    section#accreditations .mcol.item {
        max-width: 47.5%;
    }
    
        
    /* Safari width hack: flexbox */
    .mcol {
        width: 100%!important;
        margin-bottom: 20px!important;
    }
    
}


/* Desktop less than 480px */
@media screen
and (max-width: 480px) { 

    .safari-css .row {
        width: 100%;
    }
    section#hero {
        background-position: right top;
    }
    
    /* Search */
    #search input[type="text"]#s {
        font-size: 20px;
        font-size: 2rem;
    }
    #search input[type="submit"]#searchsubmit {
        font-size: 20px;
        font-size: 2rem;
        top: 5px;
    }
    #search-wrapper #close {
        font-size: 20px;
        font-size: 2rem;
        top: 5px;
    }
    
    /* Placeholder Text */
    #search input[type="text"]#s::-webkit-input-placeholder {
        font-size: 20px;
        font-size: 2rem;
    }
    #search input[type="text"]#s:-moz-placeholder {
        font-size: 20px;
        font-size: 2rem;
    }
    #search input[type="text"]#s::-moz-placeholder {
        font-size: 20px;
        font-size: 2rem;
    }
    #search input[type="text"]#s:-ms-input-placeholder {
        font-size: 20px;
        font-size: 2rem;
    }
}



/* Desktop less than 370px */
@media screen
and (max-width: 370px) {
    body.page.pushmenu-push-toright {
        right: 240px;
    } 
    aside#right-menu {
        width: 240px;
        right: -240px;
    }
    header.alternative nav#secondary ul li.donate a.btn {
        display: none;
    }
}



/* ========================================== 

    Media: Print 

========================================== */

@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } 
  a, a:visited { text-decoration: underline; }
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } 
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}