﻿@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;1,100&display=swap');

.hide {
    display: none !important;
}

.offscreen {
    top: -9999em;
    left: -9999em;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.center-block {
    display: block;
    float: none !important;
    margin-left: auto;
    margin-right: auto;
}

ul.unstyled,
ol.unstyled {
    margin-left: 0;
    list-style: none;
}

ul.inline,
ol.inline {
    margin-left: 0;
    list-style: none;
}

    ul.inline > li,
    ol.inline > li {
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
    }

@-ms-viewport {
    width: device-width;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in .5s;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    animation: fadeIn ease-in .5s;
    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    animation-fill-mode: forwards;
}

.fade-out {
    opacity: 0;
    -webkit-animation: fadeOut ease-in .15s;
    animation: fadeOut ease-in .15s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.lt-ie10 .fade-in {
    opacity: 1;
}

* {
    box-sizing: border-box;
}

/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
    display: block;
}

    nav ul {
        list-style: none;
    }

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

img {
    max-width: 100%;
}

.modal-open {
    overflow: hidden;
    width: 100%;
}

/*12/6 Suja hide the overflow-y bar
    12/11 Suja added max z-index
    1/15/2018 Suja Hiding the overflow element as per Laura suggestion to test the Safari
*/
.modal {
    display: none;
    /*overflow: auto;*/
    /*overflow-y: scroll;*/
    overflow-y: no-content;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

/*12/8 Suja make the video take over full screen to  prevent bleeding added !important to the existing bleeding*/
.modal-dialog {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    padding: 10px;
    z-index: 1010 !important;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: none;
    z-index: 1010 !important; /*12/11 Suja FMApprovals modal-content fullscreen bleed*/
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
    background-color: #111;
}

    .modal-backdrop.fade {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
        opacity: 0.5;
    }

.modal-header {
    padding: 20px 20px 0;
    min-height: 40px;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0 0 20px;
    line-height: 1.1;
}

.modal-body {
    position: relative;
    padding: 0 20px 20px;
}

.modal-footer {
    margin-top: 15px;
    padding: 0 20px;
    text-align: right;
    zoom: 1;
}

    .modal-footer:before, .modal-footer:after {
        content: "\0020";
        display: block;
        height: 0;
        overflow: hidden;
    }

    .modal-footer:after {
        clear: both;
    }

    .modal-footer .btn + .btn {
        margin-left: 5px;
        margin-bottom: 0;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

@media screen and (min-width: 768px) {
    .modal-dialog {
        width: 800px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
}
/**** Bootstrap's grid ****/
/**** end Bootstrap's grid ****/
/**** Bootstrap's grid ****/
/**** end Bootstrap's grid ****/
/*** Define Colors ***/
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    zoom: 1;
}

    .container:before, .container:after {
        content: "\0020";
        display: block;
        height: 0;
        overflow: hidden;
    }

    .container:after {
        clear: both;
    }

.row {
    margin-left: -15px;
    margin-right: -15px;
    zoom: 1;
}

    .row:before, .row:after {
        content: "\0020";
        display: block;
        height: 0;
        overflow: hidden;
    }

    .row:after {
        clear: both;
    }

.col-xs-12, .main-content, .rail-content, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .main-content, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .rail-content, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-12, .main-content, .rail-content, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1 {
    float: left;
}

.col-xs-1 {
    width: 8.33333%;
}

.col-xs-2 {
    width: 16.66667%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-4 {
    width: 33.33333%;
}

.col-xs-5 {
    width: 41.66667%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-7 {
    width: 58.33333%;
}

.col-xs-8 {
    width: 66.66667%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-10 {
    width: 83.33333%;
}

.col-xs-11 {
    width: 91.66667%;
}

.col-xs-12, .main-content, .rail-content {
    width: 100%;
}

.col-xs-pull-0 {
    right: 0%;
}

.col-xs-pull-1 {
    right: 8.33333%;
}

.col-xs-pull-2 {
    right: 16.66667%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-4 {
    right: 33.33333%;
}

.col-xs-pull-5 {
    right: 41.66667%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-7 {
    right: 58.33333%;
}

.col-xs-pull-8 {
    right: 66.66667%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-10 {
    right: 83.33333%;
}

.col-xs-pull-11 {
    right: 91.66667%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-push-0 {
    left: 0%;
}

.col-xs-push-1 {
    left: 8.33333%;
}

.col-xs-push-2 {
    left: 16.66667%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-4 {
    left: 33.33333%;
}

.col-xs-push-5 {
    left: 41.66667%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-7 {
    left: 58.33333%;
}

.col-xs-push-8 {
    left: 66.66667%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-10 {
    left: 83.33333%;
}

.col-xs-push-11 {
    left: 91.66667%;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

.col-xs-offset-1 {
    margin-left: 8.33333%;
}

.col-xs-offset-2 {
    margin-left: 16.66667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33333%;
}

.col-xs-offset-5 {
    margin-left: 41.66667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333%;
}

.col-xs-offset-8 {
    margin-left: 66.66667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.33333%;
}

.col-xs-offset-11 {
    margin-left: 91.66667%;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }

    .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1 {
        float: left;
    }

    .col-sm-1 {
        width: 8.33333%;
    }

    .col-sm-2 {
        width: 16.66667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33333%;
    }

    .col-sm-5 {
        width: 41.66667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33333%;
    }

    .col-sm-8 {
        width: 66.66667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33333%;
    }

    .col-sm-11 {
        width: 91.66667%;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-pull-0 {
        right: 0%;
    }

    .col-sm-pull-1 {
        right: 8.33333%;
    }

    .col-sm-pull-2 {
        right: 16.66667%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-4 {
        right: 33.33333%;
    }

    .col-sm-pull-5 {
        right: 41.66667%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-7 {
        right: 58.33333%;
    }

    .col-sm-pull-8 {
        right: 66.66667%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-10 {
        right: 83.33333%;
    }

    .col-sm-pull-11 {
        right: 91.66667%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-push-0 {
        left: 0%;
    }

    .col-sm-push-1 {
        left: 8.33333%;
    }

    .col-sm-push-2 {
        left: 16.66667%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-4 {
        left: 33.33333%;
    }

    .col-sm-push-5 {
        left: 41.66667%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-7 {
        left: 58.33333%;
    }

    .col-sm-push-8 {
        left: 66.66667%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-10 {
        left: 83.33333%;
    }

    .col-sm-push-11 {
        left: 91.66667%;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }

    .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
        float: left;
    }

    .col-md-1 {
        width: 8.33333%;
    }

    .col-md-2 {
        width: 16.66667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.33333%;
    }

    .col-md-5 {
        width: 41.66667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.33333%;
    }

    .col-md-8 {
        width: 66.66667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.33333%;
    }

    .col-md-11 {
        width: 91.66667%;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-pull-0 {
        right: 0%;
    }

    .col-md-pull-1 {
        right: 8.33333%;
    }

    .col-md-pull-2 {
        right: 16.66667%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-4 {
        right: 33.33333%;
    }

    .col-md-pull-5 {
        right: 41.66667%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-7 {
        right: 58.33333%;
    }

    .col-md-pull-8 {
        right: 66.66667%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-10 {
        right: 83.33333%;
    }

    .col-md-pull-11 {
        right: 91.66667%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-push-0 {
        left: 0%;
    }

    .col-md-push-1 {
        left: 8.33333%;
    }

    .col-md-push-2 {
        left: 16.66667%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-4 {
        left: 33.33333%;
    }

    .col-md-push-5 {
        left: 41.66667%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-7 {
        left: 58.33333%;
    }

    .col-md-push-8 {
        left: 66.66667%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-10 {
        left: 83.33333%;
    }

    .col-md-push-11 {
        left: 91.66667%;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333%;
    }

    .col-md-offset-2 {
        margin-left: 16.66667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333%;
    }

    .col-md-offset-5 {
        margin-left: 41.66667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333%;
    }

    .col-md-offset-8 {
        margin-left: 66.66667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333%;
    }

    .col-md-offset-11 {
        margin-left: 91.66667%;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }

    .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .main-content, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .rail-content, .col-lg-3, .col-lg-2, .col-lg-1 {
        float: left;
    }

    .col-lg-1 {
        width: 8.33333%;
    }

    .col-lg-2 {
        width: 16.66667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4, .rail-content {
        width: 33.33333%;
    }

    .col-lg-5 {
        width: 41.66667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.33333%;
    }

    .col-lg-8, .main-content {
        width: 66.66667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.33333%;
    }

    .col-lg-11 {
        width: 91.66667%;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-pull-0 {
        right: 0%;
    }

    .col-lg-pull-1 {
        right: 8.33333%;
    }

    .col-lg-pull-2 {
        right: 16.66667%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-4 {
        right: 33.33333%;
    }

    .col-lg-pull-5 {
        right: 41.66667%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-7 {
        right: 58.33333%;
    }

    .col-lg-pull-8 {
        right: 66.66667%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-10 {
        right: 83.33333%;
    }

    .col-lg-pull-11 {
        right: 91.66667%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-push-0 {
        left: 0%;
    }

    .col-lg-push-1 {
        left: 8.33333%;
    }

    .col-lg-push-2 {
        left: 16.66667%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-4 {
        left: 33.33333%;
    }

    .col-lg-push-5 {
        left: 41.66667%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-7 {
        left: 58.33333%;
    }

    .col-lg-push-8 {
        left: 66.66667%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-10 {
        left: 83.33333%;
    }

    .col-lg-push-11 {
        left: 91.66667%;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }
}

form {
    margin: 0 0 20px;
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 40px;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

    legend small {
        font-size: 15px;
        color: #999999;
    }

label,
input,
button,
select,
textarea {
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
}

input,
button,
select,
textarea {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

label {
    display: block;
    margin-bottom: 5px;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    display: inline-block;
    height: 30px;
    padding: 7px 8px 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    outline: none;
}

    select:focus,
    textarea:focus,
    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="datetime"]:focus,
    input[type="datetime-local"]:focus,
    input[type="date"]:focus,
    input[type="month"]:focus,
    input[type="time"]:focus,
    input[type="week"]:focus,
    input[type="number"]:focus,
    input[type="email"]:focus,
    input[type="url"]:focus,
    input[type="search"]:focus,
    input[type="tel"]:focus,
    input[type="color"]:focus,
    .uneditable-input:focus {
        border: 1px solid #313333;
        outline: none;
    }

input,
textarea,
.uneditable-input {
    width: 100%;
}

textarea {
    height: auto;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    border: none;
    color: #333333;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
}

    textarea:focus,
    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="datetime"]:focus,
    input[type="datetime-local"]:focus,
    input[type="date"]:focus,
    input[type="month"]:focus,
    input[type="time"]:focus,
    input[type="week"]:focus,
    input[type="number"]:focus,
    input[type="email"]:focus,
    input[type="url"]:focus,
    input[type="search"]:focus,
    input[type="tel"]:focus,
    input[type="color"]:focus,
    .uneditable-input:focus {
        outline: 0;
        /* IE6-9 */
    }

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    *margin-top: 0;
    /* IE7 */
    margin-top: 1px \9;
    /* IE8-9 */
    line-height: normal;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
    width: auto;
}

select,
input[type="file"] {
    height: 30px;
    /* In IE7, the height of the select element cannot be changed by height, only font-size */
    *margin-top: 4px;
    /* For IE7, add top margin to align select with labels */
}

select {
    box-shadow: inset 0 1px 0 rgba(70, 57, 63, 0.3);
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    width: 220px;
    position: relative;
}

    select[multiple],
    select[size] {
        height: auto;
    }

    select:focus,
    input[type="file"]:focus,
    input[type="radio"]:focus,
    input[type="checkbox"]:focus {
        border: 1px solid #722750;
        outline: none;
    }

.uneditable-input,
.uneditable-textarea {
    color: #999999;
    background-color: #fcfcfc;
    border-color: #cccccc;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
    cursor: not-allowed;
}

.uneditable-input {
    overflow: hidden;
    white-space: nowrap;
}

.uneditable-textarea {
    width: auto;
    height: auto;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999999;
}

.radio,
.checkbox {
    min-height: 20px;
    padding-left: 20px;
}

    .radio input[type="radio"],
    .checkbox input[type="checkbox"] {
        float: left;
        margin-left: -20px;
    }

    .radio.inline,
    .checkbox.inline {
        display: inline-block;
        padding-top: 5px;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .radio.inline + .radio.inline,
        .checkbox.inline + .checkbox.inline {
            margin-left: 10px;
        }

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
    cursor: not-allowed;
    background-color: #eeeeee;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
    background-color: transparent;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
    color: #b94a48;
    border-color: #ee5f5b;
}

    input:focus:invalid:focus,
    textarea:focus:invalid:focus,
    select:focus:invalid:focus {
        border-color: #313333;
        box-shadow: 0 0 6px #FFFFFF;
    }

.btn {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #333333;
    background-color: #f5f5f5;
}

button.btn,
input[type="submit"].btn {
    *padding-top: 3px;
    *padding-bottom: 3px;
}

    button.btn::-moz-focus-inner,
    input[type="submit"].btn::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

::-webkit-input-placeholder {
    color: #555555;
}

:-moz-placeholder {
    color: #555555;
}

::-moz-placeholder {
    color: #555555;
}

:-ms-input-placeholder {
    color: #555555;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
    color: #555555;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #555555;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #555555;
}

.search-box ::-webkit-input-placeholder {
    color: #555555;
}

.search-box :-moz-placeholder {
    opacity: 1;
    color: #555555;
}

.search-box ::-moz-placeholder {
    opacity: 1;
    color: #555555;
}

.search-box :-ms-input-placeholder {
    color: #555555;
}

body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    zoom: 1;
    -webkit-text-size-adjust: none;
}

small {
    font-size: 85%;
}

strong {
    font-weight: bold;
}

sup {
    vertical-align: super;
    font-size: small;
}

em {
    font-style: italic;
}

.fm-logos {
    text-transform: none;
    white-space: pre;
}

    .fm-logos em {
        padding-right: .15em;
    }

cite {
    font-style: normal;
}

a {
    color: #7B2B63;
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        color: #7B2B63;
        text-decoration: underline;
    }

ul li a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 10px 0;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: normal;
    line-height: 1;
    color: #333333;
    text-rendering: optimizelegibility;
}

    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small {
        font-weight: normal;
        line-height: 1;
        color: #333333;
    }

h1 {
    font-size: 40px;
    margin-top: 0;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 60px;
    }
}

h2 {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 25px;
    font-weight: normal;
}

@media (min-width: 1200px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    color: #6e6358;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0;
}

h4 {
    font-size: 32px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

h5 {
    font-size: 18px;
}

h6 {
    color: #6e6358;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

dl {
    margin-bottom: 20px;
}

dt,
dd {
    line-height: 20px;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 10px;
}

hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #ffffff;
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #999999;
}

abbr.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

p {
    font-size: 14px;
    margin: 10px 0;
}

article {
    margin-bottom: 40px;
}

@media (min-width: 1200px) {
    article {
        margin-bottom: 65px;
    }
}

article p {
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 768px) {
    article p {
        font-size: 18px;
        line-height: 26px;
    }
}

article ul {
    font-size: 16px;
    margin: 30px 0 30px 50px;
}

    article ul li {
        list-style: none;
        margin-bottom: 10px;
        position: relative;
    }

        article ul li:before {
            color: #6e6358;
            content: "■";
            font-family: "Arial Black";
            font-size: 14px;
            left: -18px;
            top: -2px;
            position: absolute;
        }

article ol {
    font-size: 16px;
    margin: 30px 0 30px 50px;
}

    article ol li {
        list-style: decimal;
        margin-bottom: 10px;
        position: relative;
    }

blockquote {
    color: #e08a4c;
}

    blockquote p {
        text-transform: uppercase;
        font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 40px;
        line-height: 1;
    }

    blockquote cite {
        font-size: 16px;
    }

        blockquote cite .author {
            font-family: "roboto_condensedbold_italic", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        blockquote cite .title {
            font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

label {
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
}

    label.error {
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 16px;
        color: #9f1b29;
        display: inline;
        margin: 0 5px;
    }

figure h1 {
    font-size: 18px;
    padding: 20px;
    margin: 0;
}

figcaption h2 {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: none;
}

figcaption p {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.2;
}

    figcaption p a {
        font-size: 14px;
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

figcaption a {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    color: #3A1392;
}

span[class^="meta"] {
    color: #6e6358;
    display: inline;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
}

span.meta-date {
    text-transform: uppercase;
}

span.meta-name {
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-transform: uppercase;
}

span.meta-title {
    text-transform: uppercase;
}

span.meta-type {
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-transform: uppercase;
}

/*lists*/
nav ul, nav ol {
    list-style: none;
}

ul, ol {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

/*
   Animation example, for spinners
*/
.animate-spin {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
    display: inline-block;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.icon-arrow-thin-right:before {
    content: '\e800';
}

/* '' */
.icon-arrow-up:before {
    content: '\e801';
}

/* '' */
.icon-arrow-thin-up:before {
    content: '\e802';
}

/* '' */
.icon-arrow-down:before {
    content: '\e803';
}

/* '' */
.icon-arrow-thin-down:before {
    content: '\e804';
}

/* '' */
.icon-right-arrow:before {
    content: '\e805';
}

/* '' */
.icon-left-arrow:before {
    content: '\e806';
}

/* '' */
.icon-up-arrow:before {
    content: '\e807';
}

/* '' */
.icon-down-arrow:before {
    content: '\e808';
}

/* '' */
.icon-arrow-left:before {
    content: '\e809';
}

/* '' */
.icon-arrow-thin-left:before {
    content: '\e80a';
}

/* '' */
.icon-arrow-right:before {
    content: '\e80b';
}

/* '' */
.icon-full-arrow-up:before {
    content: '\e80c';
}

/* '' */
.icon-play:before {
    content: '\e80d';
}

/* '' */
.icon-checkmark:before {
    content: '\e80e';
}

/* '' */
.icon-file-other:before {
    content: '\e80f';
}

/* '' */
.icon-file-zip:before {
    content: '\e810';
}

/* '' */
.icon-file-pdf:before {
    content: '\e811';
}

/* '' */
.icon-small-pdf:before {
    content: '\e812';
}

/* '' */
.icon-plus:before {
    content: '\e813';
}

/* '' */
.icon-minus:before {
    content: '\e814';
}

/* '' */
@font-face {
    font-family: 'fm-global';
    src: url("../font/fm-global.eot?15973130");
    src: url("../font/fm-global.eot?15973130#iefix") format("embedded-opentype"), url("../font/fm-global.svg?15973130#fm-global") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fm-global';
    src: url("data:application/octet-stream;base64,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") format("woff"), url("data:application/octet-stream;base64,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AxpZQkIjIEewBEOwAmIgsABQWLBAYFlmsAFjYCCwASsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsAJiILAAUFiwQGBZZrABY2GwAiVGYTgjIDwjOBshICBGI0ewASsjYTghWbErARQrLbBCLLA1Ky6xKwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKxAAAqsQAFQrEACCqxAAVCsQAIKrEABUK5AAAACSqxAAVCuQAAAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbEADCq4Af+FsASNsQIARAA=") format("truetype");
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fm-global';
    src: url('../font/fm-global.svg?15973130#fm-global') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fm-global";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-arrow-thin-right:before {
    content: '\e800';
}

/* '' */
.icon-arrow-up:before {
    content: '\e801';
}

/* '' */
.icon-arrow-thin-up:before {
    content: '\e802';
}

/* '' */
.icon-arrow-down:before {
    content: '\e803';
}

/* '' */
.icon-arrow-thin-down:before {
    content: '\e804';
}

/* '' */
.icon-right-arrow:before {
    content: '\e805';
}

/* '' */
.icon-left-arrow:before {
    content: '\e806';
}

/* '' */
.icon-up-arrow:before {
    content: '\e807';
}

/* '' */
.icon-down-arrow:before {
    content: '\e808';
}

/* '' */
.icon-arrow-left:before {
    content: '\e809';
}

/* '' */
.icon-arrow-thin-left:before {
    content: '\e80a';
}

/* '' */
.icon-arrow-right:before {
    content: '\e80b';
}

/* '' */
.icon-full-arrow-up:before {
    content: '\e80c';
}

/* '' */
.icon-play:before {
    content: '\e80d';
}

/* '' */
.icon-checkmark:before {
    content: '\e80e';
}

/* '' */
.icon-file-other:before {
    content: '\e80f';
}

/* '' */
.icon-file-zip:before {
    content: '\e810';
}

/* '' */
.icon-file-pdf:before {
    content: '\e811';
}

/* '' */
.icon-small-pdf:before {
    content: '\e812';
}

/* '' */
.icon-plus:before {
    content: '\e813';
}

/* '' */
.icon-minus:before {
    content: '\e814';
}

/* '' */
.icon-arrow-thin-right {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;');
}

.icon-arrow-up {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;');
}

.icon-arrow-thin-up {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;');
}

.icon-arrow-down {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;');
}

.icon-arrow-thin-down {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;');
}

.icon-right-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;');
}

.icon-left-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;');
}

.icon-up-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;');
}

.icon-down-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;');
}

.icon-arrow-left {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;');
}

.icon-arrow-thin-left {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;');
}

.icon-arrow-right {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;');
}

.icon-full-arrow-up {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;');
}

.icon-play {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;');
}

.icon-checkmark {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;');
}

.icon-file-other {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;');
}

.icon-file-zip {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;');
}

.icon-file-pdf {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;');
}

.icon-small-pdf {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;');
}

.icon-plus {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;');
}

.icon-minus {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;');
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'fm-global';
    font-style: normal;
    font-weight: normal;
    /* fix buttons height */
    line-height: 1em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
}

.icon-arrow-thin-right {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;');
}

.icon-arrow-up {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;');
}

.icon-arrow-thin-up {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;');
}

.icon-arrow-down {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;');
}

.icon-arrow-thin-down {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;');
}

.icon-right-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;');
}

.icon-left-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;');
}

.icon-up-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;');
}

.icon-down-arrow {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;');
}

.icon-arrow-left {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;');
}

.icon-arrow-thin-left {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;');
}

.icon-arrow-right {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;');
}

.icon-full-arrow-up {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;');
}

.icon-play {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;');
}

.icon-checkmark {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;');
}

.icon-file-other {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;');
}

.icon-file-zip {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;');
}

.icon-file-pdf {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;');
}

.icon-small-pdf {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;');
}

.icon-plus {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;');
}

.icon-minus {
    *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;');
}

@font-face {
    font-family: 'fm-global';
    src: url("../fonts/fm-global.eot?12147649");
    src: url("../fonts/fm-global.eot?12147649#iefix") format("embedded-opentype"), url("../fonts/fm-global.woff?12147649") format("woff"), url("../fonts/fm-global.ttf?12147649") format("truetype"), url("../fonts/fm-global.svg?12147649#fm-global") format("svg");
    font-weight: normal;
    font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fm-global';
    src: url('../font/fm-global.svg?12147649#fm-global') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fm-global";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-arrow-thin-right:before {
    content: '\e800';
}

/* '' */
.icon-arrow-up:before {
    content: '\e801';
}

/* '' */
.icon-arrow-thin-up:before {
    content: '\e802';
}

/* '' */
.icon-arrow-down:before {
    content: '\e803';
}

/* '' */
.icon-arrow-thin-down:before {
    content: '\e804';
}

/* '' */
.icon-right-arrow:before {
    content: '\e805';
}

/* '' */
.icon-left-arrow:before {
    content: '\e806';
}

/* '' */
.icon-up-arrow:before {
    content: '\e807';
}

/* '' */
.icon-down-arrow:before {
    content: '\e808';
}

/* '' */
.icon-arrow-left:before {
    content: '\e809';
}

/* '' */
.icon-arrow-thin-left:before {
    content: '\e80a';
}

/* '' */
.icon-arrow-right:before {
    content: '\e80b';
}

/* '' */
.icon-full-arrow-up:before {
    content: '\e80c';
}

/* '' */
.icon-play:before {
    content: '\e80d';
}

/* '' */
.icon-checkmark:before {
    content: '\e80e';
}

/* '' */
.icon-file-other:before {
    content: '\e80f';
}

/* '' */
.icon-file-zip:before {
    content: '\e810';
}

/* '' */
.icon-file-pdf:before {
    content: '\e811';
}

/* '' */
.icon-small-pdf:before {
    content: '\e812';
}

/* '' */
.icon-plus:before {
    content: '\e813';
}

/* '' */
.icon-minus:before {
    content: '\e814';
}

/* '' */

/* Google Roboto font-face*/

/*Roberto Condensed Regular 400*/
@font-face {
    font-family: 'roboto_condensedregular';
    src: url('../fonts/RobotoCondensed-Regular-webfont.eot');
    src: url('../fonts/RobotoCondensed-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/RobotoCondensed-Regular-webfont.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Regular-webfont.woff') format('woff'),
         url('../fonts/RobotoCondensed-Regular-webfont.ttf') format('truetype'),
         url('../fonts/RobotoCondensed-Regular-webfont.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Roberto Condensed Light 300 italic*/
@font-face {
    font-family: 'roboto_condensedlight_italic';
    src: url('../fonts/RobotoCondensed-LightItalic-webfont.eot');
    src: url('../fonts/RobotoCondensed-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/RobotoCondensed-LightItalic-webfont.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-LightItalic-webfont.woff') format('woff'),
         url('../fonts/RobotoCondensed-LightItalic-webfont.ttf') format('truetype'),
         url('../fonts/RobotoCondensed-LightItalic-webfont.svg#roboto_condensedlight_italic') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Roberto Condensed Light 300*/
@font-face {
    font-family: 'roboto_condensedlight';
    src: url('../fonts/RobotoCondensed-Light-webfont.eot');
    src: url('../fonts/RobotoCondensed-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/RobotoCondensed-Light-webfont.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Light-webfont.woff') format('woff'),
         url('../fonts/RobotoCondensed-Light-webfont.ttf') format('truetype'),
         url('../fonts/RobotoCondensed-Light-webfont.svg#roboto_condensedlight') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/Roboto-Regular-webfont.eot');
    src: url('../fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Roboto-Regular-webfont.woff2') format('woff2'),
         url('../fonts/Roboto-Regular-webfont.woff') format('woff'),
         url('../fonts/Roboto-Regular-webfont.ttf') format('truetype'),
         url('../fonts/Roboto-Regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Roberto Medium 500*/
@font-face {
    font-family: 'robotomedium';
    src: url('../fonts/Roboto-Medium-webfont.eot');
    src: url('../fonts/Roboto-Medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Roboto-Medium-webfont.woff2') format('woff2'),
         url('../fonts/Roboto-Medium-webfont.woff') format('woff'),
         url('../fonts/Roboto-Medium-webfont.ttf') format('truetype'),
         url('../fonts/Roboto-Medium-webfont.svg#robotomedium') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Roboto Bold 700*/
@font-face {
    font-family: 'robotobold';
    src: url('../fonts/Roboto-Bold-webfont.eot');
    src: url('../fonts/Roboto-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Roboto-Bold-webfont.woff2') format('woff2'),
         url('../fonts/Roboto-Bold-webfont.woff') format('woff'),
         url('../fonts/Roboto-Bold-webfont.ttf') format('truetype'),
         url('../fonts/Roboto-Bold-webfont.svg#robotobold') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Roboto Condensed Bold 700*/
@font-face {
    font-family: 'roboto_condensedbold';
    src: url('../fonts/RobotoCondensed-Bold-webfont.eot');
    src: url('../fonts/RobotoCondensed-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/RobotoCondensed-Bold-webfont.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Bold-webfont.woff') format('woff'),
         url('../fonts/RobotoCondensed-Bold-webfont.ttf') format('truetype'),
         url('../fonts/RobotoCondensed-Bold-webfont.svg#roboto_condensedbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

/*Roboto Condensed Bold 700 italic*/
@font-face {
    font-family: 'roboto_condensedbold_italic';
    src: url('../fonts/RobotoCondensed-BoldItalic-webfont.eot');
    src: url('../fonts/RobotoCondensed-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/RobotoCondensed-BoldItalic-webfont.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-BoldItalic-webfont.woff') format('woff'),
         url('../fonts/RobotoCondensed-BoldItalic-webfont.ttf') format('truetype'),
         url('../fonts/RobotoCondensed-BoldItalic-webfont.svg#roboto_condensedbold_italic') format('svg');
    font-weight: normal;
    font-style: normal;

}

header.gc-01-header, header.gc-06-fma-header {
    background-color: #5D6469;
    position: relative;
}

@media (min-width: 992px) {
    header.gc-01-header, header.gc-06-fma-header {
        background-color: #FFFFFF;
    }
}

header.gc-01-header .container-fluid, header.gc-06-fma-header .container-fluid {
    padding: 10px;
}

@media (min-width: 992px) {
    header.gc-01-header .container-fluid, header.gc-06-fma-header .container-fluid {
        padding: 0px;
    }
}

header.gc-01-header .container-fluid .header-nav, header.gc-06-fma-header .container-fluid .header-nav {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: auto;
}

@media (min-width: 992px) {
    header.gc-01-header .container-fluid .header-nav, header.gc-06-fma-header .container-fluid .header-nav {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    header.gc-01-header .container-fluid .header-nav, header.gc-06-fma-header .container-fluid .header-nav {
        width: 1170px;
    }
}

@media (min-width: 992px) {
    header.gc-01-header .container-fluid .header-nav, header.gc-06-fma-header .container-fluid .header-nav {
        height: 145px;
        padding-top: 20px;
        margin-bottom: 0px;
    }
}

header.gc-01-header .container-fluid .header-nav [class^="col-xs"], header.gc-06-fma-header .container-fluid .header-nav [class^="col-xs"] {
    margin: 0;
    padding: 0;
}

header.gc-01-header .btn, header.gc-06-fma-header .btn {
    background: #8A9094;
    color: #FFFFFF;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 20px;
    line-height: 40px;
    min-width: 40px;
    padding: 0 10px;
    text-transform: uppercase;
    z-index: 10;
    height: 40px;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

header.gc-01-header a.btn.menu {
    background: #3A1392;
}

@media (min-width: 992px) {
    header.gc-01-header .btn, header.gc-06-fma-header .btn {
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        text-transform: none;
        background: #74726f;
        /* FF3.6+ */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        /* Chrome,Safari4+ */
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* W3C */
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
        background-size: 100%;
        background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    }
}

header.gc-01-header .btn .fa, header.gc-06-fma-header .btn .fa {
    margin: 0;
}

header.gc-01-header .brand, header.gc-06-fma-header .brand {
    left: 35px;
    overflow: visible;
}

@media (min-width: 992px) {
    header.gc-01-header .brand, header.gc-06-fma-header .brand {
        left: 0px;
    }
}

header.gc-01-header .brand img, header.gc-06-fma-header .brand img {
    height: 40px;
    width: auto;
    min-width: 55px;
}

    header.gc-01-header .brand img.desktop, header.gc-06-fma-header .brand img.desktop {
        display: none;
    }

@media (min-width: 992px) {
    header.gc-01-header .brand img.desktop, header.gc-06-fma-header .brand img.desktop {
        height: 100%;
        margin-left: 0;
        display: block;
    }
}

@media (min-width: 992px) {
    header.gc-01-header .brand img.mobile-tablet, header.gc-06-fma-header .brand img.mobile-tablet {
        display: none;
    }
}

header.gc-01-header .search-box, header.gc-06-fma-header .search-box {
    background: #5D6469;
    padding-top: 0px;
    clear: both;
    width: 100%;
    height: 0px;
    -webkit-transition: padding-top .2s, height .2s, opacity .2s;
    transition: padding-top .2s, height .2s, opacity .2s;
    opacity: 0;
    display: block;
    margin-right: 10px;
    overflow: hidden;
}

@media (min-width: 992px) {
    header.gc-01-header .search-box, header.gc-06-fma-header .search-box {
        background: transparent;
        clear: none;
        width: 60%;
        float: right;
        height: auto;
        opacity: 1;
    }
}

header.gc-01-header .search-box form, header.gc-06-fma-header .search-box form {
    -webkit-transition: margin .25s linear;
    transition: margin .25s linear;
    margin: 0;
    position: relative;
}

@media (min-width: 992px) {
    header.gc-01-header .search-box form, header.gc-06-fma-header .search-box form {
        margin-right: 130px;
    }
}

header.gc-01-header .search-box form .btn, header.gc-06-fma-header .search-box form .btn {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0px;
    top: 0px;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc1NzM3MCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2FlYWJhNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-linear-gradient(90deg, #757370 0%, #aeaba7 100%);
    background-image: linear-gradient(0deg, #757370 0%, #aeaba7 100%);
    -webkit-transition: background-image 1s;
    transition: background-image 1s;
    cursor: pointer;
    padding: 0;
}

    header.gc-01-header .search-box form .btn:hover, header.gc-01-header .search-box form .btn:focus, header.gc-06-fma-header .search-box form .btn:hover, header.gc-06-fma-header .search-box form .btn:focus {
        background-image: none;
    }

    header.gc-01-header .search-box form .btn:active, header.gc-06-fma-header .search-box form .btn:active {
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIyMCUiIHN0b3AtY29sb3I9IiM3NTczNzAiLz48c3RvcCBvZmZzZXQ9IjEyMCUiIHN0b3AtY29sb3I9IiNhZWFiYTciLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
        background-size: 100%;
        background-image: -webkit-linear-gradient(270deg, #757370 20%, #aeaba7 120%);
        background-image: linear-gradient(180deg, #757370 20%, #aeaba7 120%);
        background-position: 0 2px;
    }

    header.gc-01-header .search-box form .btn i.fa-search, header.gc-06-fma-header .search-box form .btn i.fa-search {
        background: transparent;
    }

header.gc-01-header .search-box input[type="search"], header.gc-06-fma-header .search-box input[type="search"] {
    background: #FFFFFF;
    color: #74726f;
    box-shadow: 0 0 1 0 rgba(0, 0, 0, 0.05) inset;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YyZjNmNCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Y3ZjhmOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-linear-gradient(90deg, #f2f3f4 0%, #f7f8f8 100%);
    background-image: linear-gradient(0deg, #f2f3f4 0%, #f7f8f8 100%);
}

    header.gc-01-header .search-box input[type="search"]:-moz-placeholder, header.gc-06-fma-header .search-box input[type="search"]:-moz-placeholder {
        font-style: italic;
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    header.gc-01-header .search-box input[type="search"]::-moz-placeholder, header.gc-06-fma-header .search-box input[type="search"]::-moz-placeholder {
        font-style: italic;
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    header.gc-01-header .search-box input[type="search"]:-ms-input-placeholder, header.gc-06-fma-header .search-box input[type="search"]:-ms-input-placeholder {
        font-style: italic;
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    header.gc-01-header .search-box input[type="search"]::-webkit-input-placeholder, header.gc-06-fma-header .search-box input[type="search"]::-webkit-input-placeholder {
        font-style: italic;
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

header.gc-01-header .search-box .placeholder, header.gc-06-fma-header .search-box .placeholder {
    font-style: italic;
    color: #74726f;
    font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

header.gc-01-header .search-box .btn, header.gc-06-fma-header .search-box .btn {
    margin: 0;
    background: #525252;
    text-decoration: none;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
}

header.gc-01-header .search-box.expanded, header.gc-06-fma-header .search-box.expanded {
    opacity: 1;
    height: auto;
    padding-top: 10px;
}

@media (min-width: 992px) {
    header.gc-01-header .search-box, header.gc-06-fma-header .search-box {
        min-height: 50px;
        padding-top: 20px;
        padding-bottom: 20px;
        opacity: 1;
    }
}

@media (min-width: 992px) {
    header.gc-01-header .search-box.advanced, header.gc-06-fma-header .search-box.advanced {
        width: 70%;
    }
}

@media (min-width: 992px) {
    header.gc-01-header .search-box.advanced.active form, header.gc-06-fma-header .search-box.advanced.active form {
        margin-right: 440px;
    }

    header.gc-01-header .search-box.advanced.active .advanced-search, header.gc-06-fma-header .search-box.advanced.active .advanced-search {
        width: 430px;
    }

        header.gc-01-header .search-box.advanced.active .advanced-search .advanced-menu, header.gc-06-fma-header .search-box.advanced.active .advanced-search .advanced-menu {
            left: 0%;
            display: block;
        }
}

header.gc-01-header .search-box.advanced .btn, header.gc-06-fma-header .search-box.advanced .btn {
    display: table-cell;
    line-height: 1;
    color: #ffffff;
    padding: 0 11px;
    border-left: 1px solid #ffffff;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc1NzM3MCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2FlYWJhNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-linear-gradient(90deg, #757370 0%, #aeaba7 100%);
    background-image: linear-gradient(0deg, #757370 0%, #aeaba7 100%);
    -webkit-transition: background-image 1s;
    transition: background-image 1s;
    background-image: linear-gradient(0deg, #82898E 0%, #82898E 100%);
    cursor: pointer;
}

    header.gc-01-header .search-box.advanced .btn:hover, header.gc-01-header .search-box.advanced .btn:focus, header.gc-06-fma-header .search-box.advanced .btn:hover, header.gc-06-fma-header .search-box.advanced .btn:focus {
        background-image: none;
    }

    header.gc-01-header .search-box.advanced .btn:active, header.gc-06-fma-header .search-box.advanced .btn:active {
        background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIyMCUiIHN0b3AtY29sb3I9IiM3NTczNzAiLz48c3RvcCBvZmZzZXQ9IjEyMCUiIHN0b3AtY29sb3I9IiNhZWFiYTciLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
        background-size: 100%;
        background-image: -webkit-linear-gradient(270deg, #757370 20%, #aeaba7 120%);
        background-image: linear-gradient(180deg, #757370 20%, #aeaba7 120%);
        background-position: 0 2px;
    }

header.gc-01-header .search-box .advanced-search, header.gc-06-fma-header .search-box .advanced-search {
    display: none;
}

@media (min-width: 992px) {
    header.gc-01-header .search-box .advanced-search, header.gc-06-fma-header .search-box .advanced-search {
        float: right;
        height: 40px;
        line-height: 40px;
        display: table;
        table-layout: fixed;
        overflow: hidden;
        width: 120px;
        -webkit-transition: width .25s linear;
        transition: width .25s linear;
    }

        header.gc-01-header .search-box .advanced-search .advanced-menu, header.gc-06-fma-header .search-box .advanced-search .advanced-menu {
            display: none;
            -webkit-transition: left .25s linear;
            transition: left .25s linear;
            position: relative;
            left: 0px;
        }
}

header.gc-01-header .search-box .advanced-search .advanced, header.gc-06-fma-header .search-box .advanced-search .advanced {
    cursor: pointer;
}

header.gc-01-header .search-box .advanced-search .advanced a {
    color: #3A1392
}

header.gc-01-header .menu, header.gc-06-fma-header .menu {
    position: absolute;
    width: 40px;
    left: 0px;
}

@media (min-width: 992px) {
    header.gc-01-header .menu, header.gc-06-fma-header .menu {
        display: none;
    }
}

header.gc-01-header .utility-nav, header.gc-06-fma-header .utility-nav {
    float: right;
    padding-right: 0px;
}

    header.gc-01-header .utility-nav .desktop-only, header.gc-06-fma-header .utility-nav .desktop-only {
        display: none;
    }

@media (min-width: 992px) {
    header.gc-01-header .utility-nav .desktop-only, header.gc-06-fma-header .utility-nav .desktop-only {
        display: inline-block !important;
    }

        header.gc-01-header .utility-nav .desktop-only.li, header.gc-06-fma-header .utility-nav .desktop-only.li {
            display: table-cell !important;
        }
}

header.gc-01-header .utility-nav ul, header.gc-06-fma-header .utility-nav ul {
    display: table;
    table-layout: fixed;
    float: left;
}

    header.gc-01-header .utility-nav ul li, header.gc-06-fma-header .utility-nav ul li {
        float: left;
        display: table-cell;
        margin: 0 2px;
    }

@media (min-width: 992px) {
    header.gc-01-header .utility-nav ul li, header.gc-06-fma-header .utility-nav ul li {
        margin: 0;
    }
}

header.gc-01-header .utility-nav ul li ul.sub, header.gc-06-fma-header .utility-nav ul li ul.sub {
    position: absolute;
    z-index: 100;
}

@media (max-width: 992px) {
    header.gc-01-header .utility-nav ul li ul.sub, header.gc-06-fma-header .utility-nav ul li ul.sub {
        display: none !important;
    }
}

@media (min-width: 992px) {
    header.gc-01-header .utility-nav ul li.mobile-tablet, header.gc-06-fma-header .utility-nav ul li.mobile-tablet {
        display: none !important;
    }
}

@media (min-width: 768px) {
    header.gc-01-header .utility-nav ul li.mobile-only, header.gc-06-fma-header .utility-nav ul li.mobile-only {
        display: none !important;
    }
}

@media (min-width: 992px) {
    header.gc-01-header .utility-nav ul li.tablet-only, header.gc-06-fma-header .utility-nav ul li.tablet-only {
        display: none !important;
    }
}

@media (min-width: 480px) {
    header.gc-01-header .utility-nav ul li.report, header.gc-06-fma-header .utility-nav ul li.report {
        display: none;
    }
}

@media (min-width: 992px) {
    header.gc-01-header .utility-nav a, header.gc-01-header .utility-nav .tag, header.gc-06-fma-header .utility-nav a, header.gc-06-fma-header .utility-nav .tag {
        display: inline-block;
        background: transparent;
        color: #6e6358;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 12px;
        line-height: normal;
        text-transform: uppercase;
        padding: 13px;
        vertical-align: middle;
    }

        header.gc-01-header .utility-nav a i.fa, header.gc-01-header .utility-nav .tag i.fa, header.gc-06-fma-header .utility-nav a i.fa, header.gc-06-fma-header .utility-nav .tag i.fa {
            margin: 0 5px;
            color: #6C6359;
        }
}

@media (min-width: 992px) {
    header.gc-01-header .utility-nav a:hover, header.gc-06-fma-header .utility-nav a:hover {
        text-decoration: underline;
    }
}

header.gc-01-header .utility-nav .location, header.gc-06-fma-header .utility-nav .location {
    text-align: center;
}

    header.gc-01-header .utility-nav .location i.icon.icon-down-arrow, header.gc-06-fma-header .utility-nav .location i.icon.icon-down-arrow {
        font-size: 5px;
        position: relative;
        top: -2px;
        left: 5px;
    }

    header.gc-01-header .utility-nav .location ul.sub, header.gc-06-fma-header .utility-nav .location ul.sub {
        display: none;
        background-color: transparent;
    }

        header.gc-01-header .utility-nav .location ul.sub li, header.gc-06-fma-header .utility-nav .location ul.sub li {
            display: block;
            width: 100%;
            float: none;
            padding: 0;
            text-align: center;
            margin: 0;
            background-color: transparent;
        }

            header.gc-01-header .utility-nav .location ul.sub li:last-of-type, header.gc-06-fma-header .utility-nav .location ul.sub li:last-of-type {
                border-bottom: none;
            }

            header.gc-01-header .utility-nav .location ul.sub li:hover > a, header.gc-01-header .utility-nav .location ul.sub li.open > a, header.gc-06-fma-header .utility-nav .location ul.sub li:hover > a, header.gc-06-fma-header .utility-nav .location ul.sub li.open > a {
                background: rgba(34, 34, 33, 0.95);
                color: #ffffff;
                text-decoration: none;
            }

            header.gc-01-header .utility-nav .location ul.sub li a, header.gc-06-fma-header .utility-nav .location ul.sub li a {
                background-color: rgba(70, 69, 67, 0.95);
                padding: 20px 10px;
                display: block;
                height: auto;
                text-align: left;
                color: #b6b1ab;
            }

@media (min-width: 992px) {
    header.gc-01-header .utility-nav .location, header.gc-06-fma-header .utility-nav .location {
        min-width: 153px;
        padding-left: 20px;
    }

        header.gc-01-header .utility-nav .location:hover, header.gc-06-fma-header .utility-nav .location:hover {
            background-color: #e2e0de;
        }

            header.gc-01-header .utility-nav .location:hover ul.sub, header.gc-06-fma-header .utility-nav .location:hover ul.sub {
                display: block;
            }
}

header.gc-01-header .utility-nav .social, header.gc-06-fma-header .utility-nav .social {
    display: inline-block;
    margin-bottom: 0;
}

    header.gc-01-header .utility-nav .social .tag, header.gc-06-fma-header .utility-nav .social .tag {
        margin: 0;
    }

    header.gc-01-header .utility-nav .social .icon-list, header.gc-06-fma-header .utility-nav .social .icon-list {
        width: 130px;
        margin-top: 5px;
    }

        header.gc-01-header .utility-nav .social .icon-list ul li, header.gc-06-fma-header .utility-nav .social .icon-list ul li {
            padding: 0;
            margin: 0;
        }

        header.gc-01-header .utility-nav .social .icon-list a, header.gc-06-fma-header .utility-nav .social .icon-list a {
            margin: 0;
            padding: 0;
        }

        header.gc-01-header .utility-nav .social .icon-list i.fa, header.gc-06-fma-header .utility-nav .social .icon-list i.fa {
            height: 20px;
            width: 20px;
            font-size: 10px;
            padding: 5px;
            color: #fff;
        }

header.gc-01-header .main-nav-wrap, header.gc-06-fma-header .main-nav-wrap {
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzcyMjc1MCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzgzMmQ1YyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-linear-gradient(0deg, #722750 0%, #832d5c 100%);
    background-image: linear-gradient(90deg, #722750 0%, #832d5c 100%);
    background: #5d6469;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    display: none;
}

@media (max-width: 992px) {
    header.gc-01-header .main-nav-wrap.active, header.gc-06-fma-header .main-nav-wrap.active {
        display: block;
        position: relative;
    }

        header.gc-01-header .main-nav-wrap.active:before, header.gc-06-fma-header .main-nav-wrap.active:before {
            position: absolute;
            top: 0px;
            left: 0px;
            height: 3px;
            content: " ";
            z-index: 10;
            right: 0px;
            background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
            background-size: 100%;
            background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(100%, rgba(0, 0, 0, 0)));
            background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
        }

        header.gc-01-header .main-nav-wrap.active .main-nav, header.gc-01-header .main-nav-wrap.active .container, header.gc-06-fma-header .main-nav-wrap.active .main-nav, header.gc-06-fma-header .main-nav-wrap.active .container {
            margin: 0;
            padding: 0;
        }

            header.gc-01-header .main-nav-wrap.active .main-nav li.dropdown, header.gc-01-header .main-nav-wrap.active .container li.dropdown, header.gc-06-fma-header .main-nav-wrap.active .main-nav li.dropdown, header.gc-06-fma-header .main-nav-wrap.active .container li.dropdown {
                display: block;
                color: #b6b1ab;
            }

                header.gc-01-header .main-nav-wrap.active .main-nav li.dropdown a, header.gc-01-header .main-nav-wrap.active .container li.dropdown a, header.gc-06-fma-header .main-nav-wrap.active .main-nav li.dropdown a, header.gc-06-fma-header .main-nav-wrap.active .container li.dropdown a {
                    color: #FFFFFF;
                }

                header.gc-01-header .main-nav-wrap.active .main-nav li.dropdown ul.sub, header.gc-01-header .main-nav-wrap.active .container li.dropdown ul.sub, header.gc-06-fma-header .main-nav-wrap.active .main-nav li.dropdown ul.sub, header.gc-06-fma-header .main-nav-wrap.active .container li.dropdown ul.sub {
                    position: relative;
                    top: 0px;
                }

                    header.gc-01-header .main-nav-wrap.active .main-nav li.dropdown ul.sub li, header.gc-01-header .main-nav-wrap.active .container li.dropdown ul.sub li, header.gc-06-fma-header .main-nav-wrap.active .main-nav li.dropdown ul.sub li, header.gc-06-fma-header .main-nav-wrap.active .container li.dropdown ul.sub li {
                        padding-left: 40px;
                    }

                header.gc-01-header .main-nav-wrap.active .main-nav li.dropdown:hover a, header.gc-01-header .main-nav-wrap.active .container li.dropdown:hover a, header.gc-01-header .main-nav-wrap.active .main-nav li.dropdown.open a, header.gc-01-header .main-nav-wrap.active .container li.dropdown.open a, header.gc-06-fma-header .main-nav-wrap.active .main-nav li.dropdown:hover a, header.gc-06-fma-header .main-nav-wrap.active .container li.dropdown:hover a, header.gc-06-fma-header .main-nav-wrap.active .main-nav li.dropdown.open a, header.gc-06-fma-header .main-nav-wrap.active .container li.dropdown.open a {
                    color: #ffffff;
                }
}

@media (min-width: 992px) {
    header.gc-01-header .main-nav-wrap, header.gc-06-fma-header .main-nav-wrap {
        display: block;
    }
}

header.gc-01-header .main-nav-wrap a, header.gc-06-fma-header .main-nav-wrap a {
    font-size: 22px;
    color: #FFFFFF;
}

header.gc-01-header .main-nav, header.gc-01-header .container, header.gc-06-fma-header .main-nav, header.gc-06-fma-header .container {
    height: 100%;
    display: none;
}

@media (min-width: 992px) {
    header.gc-01-header .main-nav, header.gc-01-header .container, header.gc-06-fma-header .main-nav, header.gc-06-fma-header .container {
        display: block;
    }
}

header.gc-01-header .main-nav.active, header.gc-01-header .active.container, header.gc-06-fma-header .main-nav.active, header.gc-06-fma-header .active.container {
    display: block;
}

header.gc-01-header .main-nav > ul, header.gc-01-header .container > ul, header.gc-01-header header.gc-06-fma-header .container > ul, header.gc-06-fma-header .main-nav > ul, header.gc-06-fma-header header.gc-01-header .container > ul, header.gc-06-fma-header .container > ul {
    display: table;
    width: 100%;
    height: 100%;
}

    header.gc-01-header .main-nav > ul .dropdown, header.gc-01-header .container > ul .dropdown, header.gc-06-fma-header .main-nav > ul .dropdown, header.gc-06-fma-header .container > ul .dropdown {
        text-align: left;
        background-color: #7C848B;
        color: #b6b1ab;
        -moz-user-select: -moz-none;
        -ms-user-select: none;
        -webkit-user-select: none;
        user-select: none;
    }

        header.gc-01-header .main-nav > ul .dropdown > a, header.gc-01-header .container > ul .dropdown > a, header.gc-06-fma-header .main-nav > ul .dropdown > a, header.gc-06-fma-header .container > ul .dropdown > a {
            position: relative;
            padding: 20px;
            padding-right: 55px;
            border-bottom: 1px solid #FFFFFF;
        }

        header.gc-01-header .main-nav > ul .dropdown i.icon, header.gc-01-header .container > ul .dropdown i.icon, header.gc-06-fma-header .main-nav > ul .dropdown i.icon, header.gc-06-fma-header .container > ul .dropdown i.icon {
            float: right;
            line-height: .9rem;
            text-align: center;
            vertical-align: middle;
            position: absolute;
            top: 50%;
            right: 20px;
            font-size: 25px;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

@media (min-width: 992px) {
    header.gc-01-header .main-nav > ul .dropdown i.icon, header.gc-01-header .container > ul .dropdown i.icon, header.gc-06-fma-header .main-nav > ul .dropdown i.icon, header.gc-06-fma-header .container > ul .dropdown i.icon {
        display: inline-block;
        line-height: 10px;
        top: 5px;
        right: auto;
        font-size: 6px;
        margin-left: 5px;
        position: relative;
        float: none;
    }

        header.gc-01-header .main-nav > ul .dropdown i.icon:before, header.gc-01-header .container > ul .dropdown i.icon:before, header.gc-06-fma-header .main-nav > ul .dropdown i.icon:before, header.gc-06-fma-header .container > ul .dropdown i.icon:before {
            content: '\E808';
        }
}

header.gc-01-header .main-nav > ul .dropdown ul, header.gc-01-header .container > ul .dropdown ul, header.gc-06-fma-header .main-nav > ul .dropdown ul, header.gc-06-fma-header .container > ul .dropdown ul {
    background: transparent;
}

    header.gc-01-header .main-nav > ul .dropdown ul li, header.gc-01-header .container > ul .dropdown ul li, header.gc-06-fma-header .main-nav > ul .dropdown ul li, header.gc-06-fma-header .container > ul .dropdown ul li {
        padding: 0;
    }

@media (min-width: 992px) {
    header.gc-01-header .main-nav > ul .dropdown, header.gc-01-header .container > ul .dropdown, header.gc-06-fma-header .main-nav > ul .dropdown, header.gc-06-fma-header .container > ul .dropdown {
        text-align: center;
        background-color: transparent;
        color: inherit;
    }

        header.gc-01-header .main-nav > ul .dropdown > a, header.gc-01-header .container > ul .dropdown > a, header.gc-06-fma-header .main-nav > ul .dropdown > a, header.gc-06-fma-header .container > ul .dropdown > a {
            padding: 29px 5px;
            border-bottom: none;
        }

        header.gc-01-header .main-nav > ul .dropdown.mobile-tablet, header.gc-01-header .container > ul .dropdown.mobile-tablet, header.gc-06-fma-header .main-nav > ul .dropdown.mobile-tablet, header.gc-06-fma-header .container > ul .dropdown.mobile-tablet {
            display: none !important;
        }

        header.gc-01-header .main-nav > ul .dropdown:hover i.icon.icon-arrow-thin-down:before, header.gc-01-header .container > ul .dropdown:hover i.icon.icon-arrow-thin-down:before, header.gc-06-fma-header .main-nav > ul .dropdown:hover i.icon.icon-arrow-thin-down:before, header.gc-06-fma-header .container > ul .dropdown:hover i.icon.icon-arrow-thin-down:before {
            content: '\E807';
        }

        header.gc-01-header .main-nav > ul .dropdown:hover > a, header.gc-01-header .container > ul .dropdown:hover > a, header.gc-06-fma-header .main-nav > ul .dropdown:hover > a, header.gc-06-fma-header .container > ul .dropdown:hover > a {
            color: #ffffff;
            background-color: #3a1392;
        }

        header.gc-01-header .main-nav > ul .dropdown:hover .sub, header.gc-01-header .container > ul .dropdown:hover .sub, header.gc-06-fma-header .main-nav > ul .dropdown:hover .sub, header.gc-06-fma-header .container > ul .dropdown:hover .sub {
            display: block;
        }
}

@media (max-width: 992px) {
    header.gc-01-header .main-nav > ul .dropdown.open i.icon.icon-arrow-thin-down:before, header.gc-01-header .container > ul .dropdown.open i.icon.icon-arrow-thin-down:before, header.gc-06-fma-header .main-nav > ul .dropdown.open i.icon.icon-arrow-thin-down:before, header.gc-06-fma-header .container > ul .dropdown.open i.icon.icon-arrow-thin-down:before {
        content: '\E802';
    }

    header.gc-01-header .main-nav > ul .dropdown.open > a, header.gc-01-header .container > ul .dropdown.open > a, header.gc-06-fma-header .main-nav > ul .dropdown.open > a, header.gc-06-fma-header .container > ul .dropdown.open > a {
        background-color: #333333;
        color: #ffffff;
    }
}

@media (max-width: 992px) and (min-width: 992px) {
    header.gc-01-header .main-nav > ul .dropdown.open > a, header.gc-01-header .container > ul .dropdown.open > a, header.gc-06-fma-header .main-nav > ul .dropdown.open > a, header.gc-06-fma-header .container > ul .dropdown.open > a {
        background-color: #5b2040;
    }
}

@media (max-width: 992px) {
    header.gc-01-header .main-nav > ul .dropdown.open .sub, header.gc-01-header .container > ul .dropdown.open .sub, header.gc-06-fma-header .main-nav > ul .dropdown.open .sub, header.gc-06-fma-header .container > ul .dropdown.open .sub {
        display: block;
    }
}

header.gc-01-header .main-nav > ul > li, header.gc-01-header .container > ul > li, header.gc-06-fma-header .main-nav > ul > li, header.gc-06-fma-header .container > ul > li {
    display: table-cell;
    /*height: 100%;*/
    vertical-align: middle;
    text-align: center;
    -webkit-transition: background .2s;
    transition: background .2s;
    cursor: pointer;
}

    header.gc-01-header .main-nav > ul > li:hover, header.gc-01-header .container > ul > li:hover, header.gc-06-fma-header .main-nav > ul > li:hover, header.gc-06-fma-header .container > ul > li:hover {
        border-radius: 2px;
    }

    header.gc-01-header .main-nav > ul > li > a, header.gc-01-header .container > ul > li > a, header.gc-06-fma-header .main-nav > ul > li > a, header.gc-06-fma-header .container > ul > li > a {
        display: block;
        padding: 29px 5px;
        -webkit-transition: background .2s;
        transition: background .2s;
    }

    header.gc-01-header .main-nav > ul > li a.active, header.gc-01-header .container > ul > li a.active, header.gc-06-fma-header .main-nav > ul > li a.active, header.gc-06-fma-header .container > ul > li a.active {
        background: #5b2040;
    }

    header.gc-01-header .main-nav > ul > li .sub, header.gc-01-header .container > ul > li .sub, header.gc-06-fma-header .main-nav > ul > li .sub, header.gc-06-fma-header .container > ul > li .sub {
        min-width: 140px;
        position: absolute;
    }

        header.gc-01-header .main-nav > ul > li .sub li, header.gc-01-header .container > ul > li .sub li, header.gc-06-fma-header .main-nav > ul > li .sub li, header.gc-06-fma-header .container > ul > li .sub li {
            background-color: #454545;
            border-bottom: 1px solid #FFFFFF;
            text-align: left;
        }

@media (min-width: 992px) {
    header.gc-01-header .main-nav > ul > li .sub li, header.gc-01-header .container > ul > li .sub li, header.gc-06-fma-header .main-nav > ul > li .sub li, header.gc-06-fma-header .container > ul > li .sub li {
        background-color: rgba(69, 69, 69, 1);
    }
}

header.gc-01-header .main-nav > ul > li .sub li a, header.gc-01-header .container > ul > li .sub li a, header.gc-06-fma-header .main-nav > ul > li .sub li a, header.gc-06-fma-header .container > ul > li .sub li a {
    font-size: 16px;
    display: block;
    padding: 12px;
}

header.gc-01-header .main-nav > ul > li .sub li:last-of-type, header.gc-01-header .container > ul > li .sub li:last-of-type, header.gc-06-fma-header .main-nav > ul > li .sub li:last-of-type, header.gc-06-fma-header .container > ul > li .sub li:last-of-type {
    border-bottom: none;
}

header.gc-01-header .main-nav > ul > li .sub li:hover, header.gc-01-header .container > ul > li .sub li:hover, header.gc-06-fma-header .main-nav > ul > li .sub li:hover, header.gc-06-fma-header .container > ul > li .sub li:hover {
    background: rgba(34, 34, 33, 0.95);
}

    header.gc-01-header .main-nav > ul > li .sub li:hover > a, header.gc-01-header .container > ul > li .sub li:hover > a, header.gc-06-fma-header .main-nav > ul > li .sub li:hover > a, header.gc-06-fma-header .container > ul > li .sub li:hover > a {
        text-decoration: none;
    }

@media (max-width: 992px) {
    header.gc-01-header .container, header.gc-06-fma-header .container {
        width: 100%;
    }
}

header.gc-01-header .container.location, header.gc-01-header .container.report, header.gc-06-fma-header .container.location, header.gc-06-fma-header .container.report {
    display: none;
}

@media (max-width: 992px) {
    header.gc-01-header .container.location.active, header.gc-01-header .container.report.active, header.gc-06-fma-header .container.location.active, header.gc-06-fma-header .container.report.active {
        display: block;
    }
}

.gc-03-breadcrumbs {
    color: #888888;
    display: none;
}

@media (min-width: 768px) {
    .gc-03-breadcrumbs {
        width: 80%;
        display: inline-block;
        margin-bottom: 25px;
    }
}

@media (min-width: 1200px) {
    .gc-03-breadcrumbs {
        width: 66.66667%;
    }
}

.gc-03-breadcrumbs a {
    color: #333333;
    text-decoration: none;
}

    .gc-03-breadcrumbs a:after {
        content: "\f105";
        color: #888888;
        font-family: 'FontAwesome';
        padding: 0 10px;
        display: inline-block;
        height: 15px;
        overflow: hidden;
    }

.gc-03-breadcrumbs ul li {
    display: inline;
}

.gap-space {
    height: 100px;
}

footer {
    position: relative;
    overflow: auto;
    /* Set wrapper div to bootstrap container size */
    /* Navigation Links */
    /* Plus/Minus icons */
}

    footer div[class^="footer-"] {
        padding: 0;
        width: 100%;
    }

        footer div[class^="footer-"] .wrapper {
            margin: 0 auto;
            width: 100%;
        }

@media (min-width: 768px) {
    footer div[class^="footer-"] .wrapper {
        width: 750px;
    }
}

@media (min-width: 992px) {
    footer div[class^="footer-"] .wrapper {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    footer div[class^="footer-"] .wrapper {
        width: 1170px;
    }
}

footer div.footer-top {
    background: #5a6167;
}

@media (min-width: 768px) {
    footer div.footer-top {
        background: #5a6167;
    }
}

footer div.footer-middle {
    background: #32373A;
}

    footer div.footer-middle h1 {
        border-color: #2b2b2b;
    }

    footer div.footer-middle ul li ul {
        background-color: #333333;
    }

        footer div.footer-middle ul li ul li {
            border-color: #2b2b2b;
        }

footer div.footer-bottom {
    background: #272b2e;
    overflow: auto;
}

    footer div.footer-bottom h1 {
        border: none;
    }

@media (min-width: 768px) {
    footer ul {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
}

footer ul li {
    padding: 0;
    /* Chevron links (Contact Us, etc) */
    /* Sub navigation */
}

@media (min-width: 768px) {
    footer ul li {
        padding: 40px 20px 30px;
        margin-left: 10px;
        display: table-cell;
        vertical-align: top;
    }
}

footer ul li h1 {
    border-top: #393d41 2px solid;
    color: #FFFFFF;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    padding: 25px;
    padding-right: 50px;
    position: relative;
    text-transform: none;
    overflow: visible;
}

@media (min-width: 768px) {
    footer ul li h1 {
        border: none !important;
        padding: 0;
        margin-bottom: 15px;
    }
}

footer ul li h1 a,
footer ul li h1 a:hover {
    color: #FFFFFF
}

footer ul li a {
    text-decoration: none;
}

    footer ul li a:hover {
        color: #b6b1ab;
    }

@media (min-width: 768px) {
    footer ul li.chevron-links {
        height: 100%;
    }

        footer ul li.chevron-links a {
            display: inline-block;
            height: 30%;
            min-height: 60px;
        }

        footer ul li.chevron-links h1 {
            padding: 0 0 10px 38px;
            color: white;
            opacity: 1;
        }
}

footer ul li:first-child h1 {
    border: none;
}

footer ul li ul {
    background-color: #606569;
}

@media (min-width: 768px) {
    footer ul li ul {
        display: inline;
        background: none !important;
    }
}

footer ul li ul li {
    padding: 25px;
    border-top: #393d41 1px solid;
    float: none;
    display: block;
    margin: 0;
}

@media (min-width: 768px) {
    footer ul li ul li {
        padding: 10px 0;
        border: none !important;
    }
}

footer ul li ul li a {
    color: #e2e0de;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 22px;
}

@media (min-width: 768px) {
    footer ul li ul li a {
        font-size: 16px;
    }
}

footer h1 i.fa {
    padding: 6.25px;
    display: inline-block;
    border-radius: 100px;
    height: 25px;
    width: 25px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 11px;
    position: absolute;
    right: 25px;
    top: calc(50% - 12.5px);
}

@media (min-width: 768px) {
    footer h1 i.fa {
        display: none;
    }
}

footer .chevron-links h1 i.icon {
    position: absolute;
    right: 25px;
    top: calc(50% - 12.5px);
    border: none;
    font-size: 22px;
    padding: 1px;
    -webkit-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    transform: translateX(-25%);
}

@media (min-width: 768px) {
    footer .chevron-links h1 i.icon {
        display: inline;
        left: 0px;
        top: -3px;
        right: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

footer .search-connect {
    color: #e2e0de;
    padding: 10%;
    border-top: #323232 2px solid;
    overflow: auto;
}

@media (min-width: 768px) {
    footer .search-connect {
        width: 40%;
        padding: 40px 20px 0;
        border: none;
    }
}

footer .search-connect .search-box {
    width: 100%;
}

    footer .search-connect .search-box input {
        background: #666666;
        /* FF3.6+ */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        /* Chrome,Safari4+ */
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* W3C */
        color: white;
    }

        footer .search-connect .search-box input:-moz-placeholder {
            font-style: italic;
            color: white;
            font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        footer .search-connect .search-box input::-moz-placeholder {
            font-style: italic;
            color: white;
            font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        footer .search-connect .search-box input:-ms-input-placeholder {
            font-style: italic;
            color: white;
            font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        footer .search-connect .search-box input::-webkit-input-placeholder {
            font-style: italic;
            color: white;
            font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        footer .search-connect .search-box input .placeholder {
            font-style: italic;
            color: white;
            font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

footer .search-connect .social {
    /* Styling for desktop and tablet includes labels */
}

    footer .search-connect .social .tag {
        display: none;
    }

    footer .search-connect .social ul {
        background: none;
    }

@media (min-width: 768px) {
    footer .search-connect .social {
        display: block;
        text-align: left;
        width: 180px;
        float: right;
    }
}

@media (min-width: 768px) and (min-width: 1200px) {
    footer .search-connect .social {
        width: 80%;
    }
}

@media (min-width: 768px) {
    footer .search-connect .social .tag, footer .search-connect .social .icon-list {
        padding: 0;
        margin-bottom: 5px;
        float: none;
    }

    footer .search-connect .social .tag {
        display: inline-block;
        font-size: 16px;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        margin-top: 5px;
        width: 100%;
    }

        footer .search-connect .social .tag ul {
            margin: 0;
        }

            footer .search-connect .social .tag ul li {
                margin: 0;
                padding: 0;
            }
}

@media (min-width: 768px) and (min-width: 1200px) {
    footer .search-connect .social .tag {
        width: 40%;
        vertical-align: top;
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    footer .search-connect .social .icon-list ul {
        display: inline-block;
    }

        footer .search-connect .social .icon-list ul li {
            padding: 0 6px;
        }
}

@media (min-width: 768px) and (min-width: 1200px) {
    footer .search-connect .social .icon-list {
        display: inline-block;
        margin-left: 0;
        margin-bottom: 25px;
    }
}

@media (min-width: 768px) {
    footer .search-connect .social.email .icon-list ul {
        width: 25%;
        /* email only has one icon */
    }
}

@media (max-width: 768px) {
    .js-closed-mobile ~ ul {
        max-height: 0;
        overflow: hidden;
        -webkit-transition-duration: 400ms;
        transition-duration: 400ms;
    }
}

@media (max-width: 768px) {
    .js-open-mobile ~ ul {
        max-height: 1000px;
        overflow: auto;
        -webkit-transition-duration: 800ms;
        transition-duration: 800ms;
    }
}

.site-links {
    padding: 25px;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 768px) {
    .site-links {
        text-align: left;
        padding: 20px 0;
        float: left;
    }
}

@media (min-width: 768px) {
    .site-links ul {
        display: inline;
    }
}

.site-links ul li {
    padding: 5px;
    display: inline-block;
}

    .site-links ul li a {
        color: #99918a;
        font-size: 14px;
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

@media (min-width: 768px) {
    .site-links ul li a {
        font-size: 16px;
    }
}

.copyright {
    padding: 25px;
    color: #99918a;
    font-size: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .copyright {
        display: inline;
        float: right;
        padding: 20px 0;
        font-size: 16px;
    }
}

.gc-05-share-print {
    display: inline-block;
    float: right;
    position: relative;
    max-width: 33%;
    text-align: right;
}

@media (max-width: 768px) {
    .gc-05-share-print {
        max-width: 40%;
    }
}

.gc-05-share-print .share-label {
    margin-left: 20px;
}

.round-icons {
    display: inline-block;
    vertical-align: bottom;
}

    .round-icons a[class*="btn"] {
        border-radius: 50%;
        margin: 5px;
        color: white;
        height: 20px;
        width: 20px;
        display: inline-block;
        text-align: center;
    }

        .round-icons a[class*="btn"].btn-print {
            background: black;
        }

        .round-icons a[class*="btn"].btn-share {
            background: #007bb0;
        }

    .round-icons a[class*="email"] {
        background: #812c5b;
    }

.email .round-icons a[class*="subs"] {
    background: #7b7720;
}

.btn-subs i {
    margin-top: 4px;
    font-size: 10px;
}

.round-icons .btn-subs i.fa.fa-envelope {
    background: #7b7720;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
}

.round-icons .btn-subs {
    background: #7b7720;
}

.share-label {
    color: #767471;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 5px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .share-label {
        margin-left: 50px;
    }
}

.share-label:first-child {
    margin: 0;
}

@media (max-width: 1200px) {
    .slide-menu {
        box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
        border: solid 1px rgba(0, 0, 0, 0.2);
        background: white;
        display: none;
        padding: 10px;
        position: absolute;
        top: 0;
        right: -199px;
        z-index: 99;
    }

        .slide-menu a[class*="btn"] {
            display: block;
        }
}

.large-buttons a[class*="btn"] {
    max-height: 30px !important;
    max-width: 30px !important;
    height: 30px;
    width: 30px;
    margin: 12px;
}

    .large-buttons a[class*="btn"] span {
        height: 30px;
        width: 30px;
        line-height: 30px;
        background-size: 30px !important;
    }

.c-01-page-banner, .c-54-fma-apn-feature-banner {
    position: relative;
    overflow: hidden;
    max-height: 250px;
}

@media (min-width: 768px) {
    .c-01-page-banner, .c-54-fma-apn-feature-banner {
        max-height: 500px;
    }

        .c-01-page-banner.c-01b-short-page-banner, .c-54-fma-apn-feature-banner.c-01b-short-page-banner {
            max-height: 450px;
        }
}

@media (min-width: 1200px) {
    .c-01-page-banner, .c-54-fma-apn-feature-banner {
        max-height: 400px;
    }

        .c-01-page-banner.c-01b-short-page-banner, .c-54-fma-apn-feature-banner.c-01b-short-page-banner {
            max-height: 300px;
        }
}

.c-01-page-banner img, .c-54-fma-apn-feature-banner img {
    display: block;
    width: 100%;
    padding: 0;
}

@media (max-width: 1200px) {
    .c-01-page-banner img, .c-54-fma-apn-feature-banner img {
        width: 1200px;
        max-width: none;
        position: relative;
        left: 50%;
        margin-left: -600px;
    }
}

@media (max-width: 992px) {
    .c-01-page-banner img, .c-54-fma-apn-feature-banner img {
        width: 992px;
        margin-left: -496px;
    }
}

@media (max-width: 768px) {
    .c-01-page-banner img, .c-54-fma-apn-feature-banner img {
        width: 768px;
        margin-left: -384px;
    }
}

.c-01-page-banner figcaption, .c-54-fma-apn-feature-banner figcaption {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
}

@media (min-width: 768px) {
    .c-01-page-banner figcaption, .c-54-fma-apn-feature-banner figcaption {
        margin: 0 10%;
    }
}

@media (min-width: 1200px) {
    .c-01-page-banner figcaption, .c-54-fma-apn-feature-banner figcaption {
        width: 40%;
    }
}

.c-01-page-banner h1, .c-54-fma-apn-feature-banner h1 {
    color: #FFFFFF;
    margin: 0;
    padding: 10px;
}

.c-01-page-banner h2, .c-54-fma-apn-feature-banner h2 {
    color: #333536;
    margin: 0;
    padding: 10px;
}

@media (min-width: 768px) {
    .c-01-page-banner h1, .c-01-page-banner h2, .c-54-fma-apn-feature-banner h1, .c-54-fma-apn-feature-banner h2 {
        padding: 35px 30px;
    }
}

@media (min-width: 1200px) {
    .c-01-page-banner h1, .c-01-page-banner h2, .c-54-fma-apn-feature-banner h1, .c-54-fma-apn-feature-banner h2 {
        padding: 20px 30px;
    }
}

.c-01-page-banner h1, .c-54-fma-apn-feature-banner h1 {
    background-color: #3a1392;
    font-size: 32px;
    line-height: 32px;
}

.c-01-page-banner h2, .c-54-fma-apn-feature-banner h2 {
    background-color: #c5cacd;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 16px;
    padding: 20px 30px;
    display: none;
}

@media (min-width: 768px) {
    .c-01-page-banner h2, .c-54-fma-apn-feature-banner h2 {
        display: block;
    }
}

.c-03-page-nav {
    width: 100%;
    z-index: 999;
}

@media (min-width: 1200px) {
    .c-03-page-nav {
        background: #6e6358;
        /* FF3.6+ */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        /* Chrome,Safari4+ */
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* W3C */
        padding: 0;
    }
}

.c-03-page-nav a.btn {
    background: #6e6358;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    text-shadow: 0 1px 0 #722750;
    text-shadow: 0 1px 0 0 #722750;
    font-size: 20px;
    line-height: 1;
    padding: 15px 0;
    text-transform: none;
    display: block;
}

    .c-03-page-nav a.btn i.icon::before {
        -webkit-transition-duration: 400ms;
        transition-duration: 400ms;
    }

    .c-03-page-nav a.btn:hover {
        background-image: none;
    }

.c-03-page-nav .js-open i.icon::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.c-03-page-nav .js-open + ul {
    max-height: 900px;
    overflow: auto;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

.c-03-page-nav .js-closed + ul {
    max-height: 0;
    overflow: hidden;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

@media (min-width: 1200px) {
    .c-03-page-nav ul {
        display: table !important;
        /* overrides hidden ul coming from mobile */
        margin: 0 auto;
        table-layout: fixed;
        width: 1170px;
        padding-left: 15px;
    }
}

.c-03-page-nav ul li {
    background: #48413b;
    border-color: white;
    border-style: solid;
    border-width: 2px 0 0 0;
    line-height: 1;
    padding: 35px 20px;
}

@media (min-width: 1200px) {
    .c-03-page-nav ul li {
        background: none;
        display: table-cell;
        border-width: 0 0 0 2px;
        padding: 20px;
        text-align: center;
        vertical-align: middle;
    }

        .c-03-page-nav ul li:last-child {
            border-width: 0 2px 0 2px;
        }

        .c-03-page-nav ul li:hover {
            background: #48413b;
            cursor: pointer;
        }
}

.c-03-page-nav ul li a {
    color: #FFFFFF;
    font-size: 20px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.c-03-page-nav.opaque {
    opacity: 1;
}

.c-05-reverse-subhead.subhead {
    border: none;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .c-05-reverse-subhead.subhead .container {
        margin-bottom: 115px;
    }
}

.c-05-reverse-subhead.subhead .background {
    display: none;
}

@media (min-width: 768px) {
    .c-05-reverse-subhead.subhead .background {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }
}

.c-05-reverse-subhead.subhead h2 {
    margin: 10px 0;
}

@media (min-width: 768px) {
    .c-05-reverse-subhead.subhead h2 {
        margin: 50px 0;
    }
}

.c-05-reverse-subhead.subhead p.copy {
    background: #eaead5;
    margin: 0;
    padding: 15px;
}

@media (min-width: 768px) {
    .c-05-reverse-subhead.subhead p.copy {
        padding: 30px;
        font-size: 16px;
    }
}

.c-05-reverse-subhead.subhead a.btn {
    background: #cbc995;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    color: #333333;
}

    .c-05-reverse-subhead.subhead a.btn i.icon {
        color: #333333;
    }

.c-07-promo-list, .promo-list {
    overflow: hidden;
}

    .c-07-promo-list ul, .promo-list ul {
        margin: 0;
    }

        .c-07-promo-list ul li:before, .promo-list ul li:before {
            content: '';
        }

    .c-07-promo-list h1, .promo-list h1 {
        font-size: 22px;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        padding: 0;
        text-transform: none;
    }

    .c-07-promo-list a.btn, .promo-list a.btn {
        width: auto;
        text-transform: none;
        padding-right: 25px;
    }

@media (max-width: 768px) {
    .c-07-promo-list a.btn, .promo-list a.btn {
        height: 40px;
        line-height: 40px;
    }
}

.c-07-promo-list a.btn i.icon, .promo-list a.btn i.icon {
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
    position: relative;
    margin-right: 5px;
}

.c-07-promo-list a.btn:hover, .promo-list a.btn:hover {
    background-image: none;
    color: #FFFFFF;
}

    .c-07-promo-list a.btn:hover i.icon, .promo-list a.btn:hover i.icon {
        text-decoration: none;
    }

.c-07-promo-list figure, .promo-list figure {
    border-top: 1px solid #cacaba;
    overflow: auto;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .c-07-promo-list figure, .promo-list figure {
        padding: 22px 4px;
    }
}

.c-07-promo-list figure figcaption, .promo-list figure figcaption {
    display: inline;
    float: right;
    padding: 10px 15px;
}

@media (min-width: 768px) {
    .c-07-promo-list figure figcaption, .promo-list figure figcaption {
        width: 50%;
    }
}

.c-07-promo-list figure img, .promo-list figure img {
    float: left;
    padding: 10px 15px;
}

@media (min-width: 768px) {
    .c-07-promo-list figure img, .promo-list figure img {
        width: 50%;
        height: auto;
    }
}

.c-09-related-content {
    background-color: #eeeceb;
    padding: 5px 0 45px 0;
    /* override owl theme from style.css */
}

@media (min-width: 1200px) {
    .c-09-related-content {
        padding: 50px 0;
    }

        .c-09-related-content .container {
            margin-top: 0;
        }
}

.c-09-related-content h1 {
    font-size: 28px;
    text-transform: none;
}

.c-09-related-content h2 {
    margin: 0;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    text-transform: none;
}

@media (min-width: 1200px) {
    .c-09-related-content h2 {
        font-size: 20px;
    }
}

.c-09-related-content img {
    margin-bottom: 20px;
}

.c-09-related-content p {
    font-size: 14px;
}

.c-09-related-content .dc-14-article-date-type {
    margin-bottom: 5px;
}

.c-09-related-content .carousel {
    margin: 0 auto;
    padding-top: 20px;
    width: 90%;
}

@media (min-width: 768px) {
    .c-09-related-content .carousel {
        margin: 0;
        width: auto;
    }
}

@media (min-width: 1200px) {
    .c-09-related-content .carousel {
        margin: 0 -15px;
    }
}

.c-09-related-content .item {
    margin: 0 25px;
}

@media (min-width: 768px) {
    .c-09-related-content .item {
        margin: 0 35px;
    }
}

@media (min-width: 1200px) {
    .c-09-related-content .item {
        margin: 0 15px;
    }
}

.c-09-related-content .nav-icon {
    padding: 10px;
    display: inline-block;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    background-color: #FFFFFF;
    color: #404040;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.3);
    margin-top: 2px;
    font-size: 28px;
    padding: 7px 15px;
    height: 40px;
    width: 40px;
}

.c-09-related-content .owl-theme .owl-controls .owl-buttons .owl-prev {
    margin-right: -35px;
    left: -30px;
}

@media (min-width: 768px) {
    .c-09-related-content .owl-theme .owl-controls .owl-buttons .owl-prev {
        right: 100%;
        left: auto;
        margin-right: -35px;
    }
}

@media (min-width: 1200px) {
    .c-09-related-content .owl-theme .owl-controls .owl-buttons .owl-prev {
        padding-right: 20px;
        margin-right: -15px;
    }
}

.c-09-related-content .owl-theme .owl-controls .owl-buttons .owl-next {
    margin-left: -35px;
    right: -30px;
}

@media (min-width: 768px) {
    .c-09-related-content .owl-theme .owl-controls .owl-buttons .owl-next {
        left: 100%;
        right: auto;
        margin-left: -35px;
    }
}

@media (min-width: 1200px) {
    .c-09-related-content .owl-theme .owl-controls .owl-buttons .owl-next {
        padding-left: 20px;
        margin-left: -15px;
    }
}

.c-09-related-content .owl-pagination {
    display: none;
}

@media (min-width: 1200px) {
    .c-10-nav-block, .c-44-fma-section-children-navigation-block {
        padding: 0;
    }
}

.c-10-nav-block .top, .c-44-fma-section-children-navigation-block .top {
    background: none;
    font-size: 18px;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .c-10-nav-block .top, .c-44-fma-section-children-navigation-block .top {
        /* tablet */
        display: none;
    }
}

@media (min-width: 1200px) {
    .c-10-nav-block .top, .c-44-fma-section-children-navigation-block .top {
        background-color: #404040;
        margin: 0;
        padding: 20px;
        padding-right: 45px;
        position: relative;
    }
}

@media (min-width: 1200px) {
    .c-10-nav-block .top:hover, .c-44-fma-section-children-navigation-block .top:hover {
        background: #404040;
        /* FF3.6+ */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        /* Chrome,Safari4+ */
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* W3C */
    }
}

.c-10-nav-block .top i.icon, .c-44-fma-section-children-navigation-block .top i.icon {
    color: #FFFFFF;
    right: 20px;
    padding: 2px;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.c-10-nav-block .js-closed i.icon, .c-44-fma-section-children-navigation-block .js-closed i.icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.c-10-nav-block i.icon, .c-44-fma-section-children-navigation-block i.icon {
    position: absolute;
    top: 17px;
    top: calc(50% - 16px);
    font-size: 23px;
    color: #333333;
}

@media (max-width: 1200px) {
    .c-10-nav-block .dropdown, .c-44-fma-section-children-navigation-block .dropdown {
        height: 50px;
    }

        .c-10-nav-block .dropdown .psuedo-select, .c-44-fma-section-children-navigation-block .dropdown .psuedo-select {
            padding: 15px;
        }
}

@media (min-width: 1200px) {
    .c-10-nav-block .dropdown ul, .c-44-fma-section-children-navigation-block .dropdown ul {
        box-shadow: none;
        position: relative;
        display: inline-block;
    }
}

.c-10-nav-block .dropdown ul li.active, .c-10-nav-block .dropdown ul li:hover, .c-10-nav-block .dropdown ul li:active, .c-44-fma-section-children-navigation-block .dropdown ul li.active, .c-44-fma-section-children-navigation-block .dropdown ul li:hover, .c-44-fma-section-children-navigation-block .dropdown ul li:active {
    cursor: initial;
    position: relative;
}

@media (min-width: 1200px) {
    .c-10-nav-block .dropdown ul li.active:before, .c-10-nav-block .dropdown ul li:hover:before, .c-10-nav-block .dropdown ul li:active:before, .c-44-fma-section-children-navigation-block .dropdown ul li.active:before, .c-44-fma-section-children-navigation-block .dropdown ul li:hover:before, .c-44-fma-section-children-navigation-block .dropdown ul li:active:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        top: calc(50% - 10px);
        left: 0;
        border-top: 10px solid transparent;
        border-left: 10px solid #FFFFFF;
        border-bottom: 10px solid transparent;
    }
}

.c-10-nav-block .dropdown ul li.active a, .c-10-nav-block .dropdown ul li.active a:hover, .c-10-nav-block .dropdown ul li:hover a, .c-10-nav-block .dropdown ul li:hover a:hover, .c-10-nav-block .dropdown ul li:active a, .c-10-nav-block .dropdown ul li:active a:hover, .c-44-fma-section-children-navigation-block .dropdown ul li.active a, .c-44-fma-section-children-navigation-block .dropdown ul li.active a:hover, .c-44-fma-section-children-navigation-block .dropdown ul li:hover a, .c-44-fma-section-children-navigation-block .dropdown ul li:hover a:hover, .c-44-fma-section-children-navigation-block .dropdown ul li:active a, .c-44-fma-section-children-navigation-block .dropdown ul li:active a:hover {
    text-decoration: none;
    color: #333333;
}

@media (min-width: 1200px) {
    .c-10-nav-block .dropdown ul li, .c-44-fma-section-children-navigation-block .dropdown ul li {
        font-size: 18px;
        padding: 15px 20px;
    }
}

.c-10-nav-block .dropdown ul li.bottom, .c-44-fma-section-children-navigation-block .dropdown ul li.bottom {
    background: #e2e0de;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    color: #333333;
    padding-left: 55px;
    position: relative;
}

    .c-10-nav-block .dropdown ul li.bottom i.fa, .c-44-fma-section-children-navigation-block .dropdown ul li.bottom i.fa {
        left: 18px;
        top: 50%;
        font-size: 20px;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .c-10-nav-block .dropdown ul li.bottom a, .c-44-fma-section-children-navigation-block .dropdown ul li.bottom a {
        color: #333333;
    }

    .c-10-nav-block .dropdown ul li.bottom:hover, .c-44-fma-section-children-navigation-block .dropdown ul li.bottom:hover {
        background-image: none;
    }

        .c-10-nav-block .dropdown ul li.bottom:hover:before, .c-44-fma-section-children-navigation-block .dropdown ul li.bottom:hover:before {
            border: none;
        }

@media (max-width: 1200px) {
    .rail-content .rail-item .c-10-nav-block, .rail-content .rail-item .c-44-fma-section-children-navigation-block {
        background: #404040;
        margin: 0 0 30px 0;
        padding: 20px;
    }
}

/*12/5 Suja Added this inline block form thead vertical scroll bar showing up fullscreen in Chrome browser
    12/11 Suja added max z-index for full screen
*/
.c-13-large-video {
    margin: 30px 0;
}

/*}*/

.c-14-large-promo {
    border-top: 2px solid #cacaba;
    border-bottom: 2px solid #cacaba;
    clear: both;
    float: left;
    margin: 10px 0;
    padding: 10px 0;
}

@media (min-width: 768px) {
    .c-14-large-promo {
        padding: 30px 0;
    }
}

.c-14-large-promo h1 {
    color: #722750;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 32px;
    margin: 10px 0;
    padding: 0;
    text-transform: none;
}

.c-14-large-promo .meta-type {
    color: #d35800;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 20px;
    margin-left: 30px;
    text-transform: none;
}

@media (min-width: 768px) {
    .c-14-large-promo .meta-type {
        margin: 0;
    }
}

.c-14-large-promo a.btn {
    background: #e4d5dd;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    color: #333333;
    text-transform: none;
}

    .c-14-large-promo a.btn i.icon {
        color: #333333;
        font-size: 18px;
        font-weight: normal;
        display: inline-table;
        position: relative;
        width: 23px;
    }

    .c-14-large-promo a.btn:hover {
        background-image: none;
        color: #333333;
    }

.c-14-large-promo figcaption {
    display: block;
    margin-left: 0px;
    min-width: 50%;
    padding: 10px 0;
    overflow: auto;
}

.c-14-large-promo img {
    clear: both;
    float: left;
    position: absolute;
    margin-top: 8px;
    height: 25px;
    width: 25px;
}

@media (min-width: 768px) {
    .c-14-large-promo img {
        width: auto;
        height: 100%;
        max-width: 50%;
        margin: 0;
        padding: 10px 30px 10px 25px;
        position: relative;
    }
}

.c-16-upcoming-event-list figcaption h2 {
    margin: 0;
}

    .c-16-upcoming-event-list figcaption h2 a {
        margin: 5px 0;
        font-size: 22px;
    }

        .c-16-upcoming-event-list figcaption h2 a:hover {
            text-decoration: underline;
        }

.c-16-upcoming-event-list span.meta-date {
    text-transform: capitalize;
}

.c-16-upcoming-event-list .item {
    padding-bottom: 30px;
}

    .c-16-upcoming-event-list .item:last-child {
        padding-bottom: 0;
    }

blockquote.c-17-pull-quote {
    padding: 50px 0;
    margin-left: 10px;
}

    blockquote.c-17-pull-quote p {
        text-indent: -10px;
        margin-bottom: 0;
    }

    blockquote.c-17-pull-quote cite {
        display: block;
    }

        blockquote.c-17-pull-quote cite:before {
            content: "- ";
            display: inline;
        }

.c-18-chart-graph h1 {
    color: #d35800;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 24px;
    padding: 5px 0;
    text-transform: none;
}

.c-18-chart-graph img {
    max-width: 100%;
}

.c-19-photo-gallery {
    /* override owl theme from style.css */
}

    .c-19-photo-gallery .img-wrap {
        display: block;
        width: 100%;
        position: relative;
        height: 0;
        padding: 56.25% 0 0 0;
        overflow: hidden;
    }

        .c-19-photo-gallery .img-wrap img {
            position: absolute;
            display: block;
            width: 100%;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
        }

    .c-19-photo-gallery .owl-theme {
        /* top is a magic number used to align pagination above figcaption */
    }

        .c-19-photo-gallery .owl-theme .owl-controls .owl-buttons i.fa {
            -webkit-transition: opacity 0.5s 0;
            transition: opacity 0.5s 0;
            background-color: white;
            color: #333333;
            font-size: 50px;
            height: 50px;
            line-height: 50px;
            opacity: .3;
            text-align: center;
            width: 50px;
        }

            .c-19-photo-gallery .owl-theme .owl-controls .owl-buttons i.fa:hover {
                opacity: .5;
            }

@media (min-width: 480px) {
    .c-19-photo-gallery .owl-theme .owl-controls .owl-buttons i.fa {
        font-size: 60px;
        height: 80px;
        line-height: 80px;
        width: 80px;
    }
}

.c-19-photo-gallery .owl-theme .owl-controls .owl-buttons .owl-prev, .c-19-photo-gallery .owl-theme .owl-controls .owl-buttons .owl-next {
    top: 20%;
    left: 0;
    padding: 0;
}

@media (min-width: 480px) {
    .c-19-photo-gallery .owl-theme .owl-controls .owl-buttons .owl-prev, .c-19-photo-gallery .owl-theme .owl-controls .owl-buttons .owl-next {
        top: 30%;
    }
}

.c-19-photo-gallery .owl-theme .owl-controls .owl-buttons .owl-next {
    right: 0;
    left: auto;
}

.c-19-photo-gallery .owl-theme .owl-pagination {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    text-align: center;
}

@media (min-width: 330px) {
    .c-19-photo-gallery .owl-theme .owl-pagination {
        top: 45%;
    }
}

@media (min-width: 480px) {
    .c-19-photo-gallery .owl-theme .owl-pagination {
        top: 225px;
    }
}

@media (min-width: 992px) {
    .c-19-photo-gallery .owl-theme .owl-pagination {
        top: 475px;
    }
}

@media (min-width: 1200px) {
    .c-19-photo-gallery .owl-theme .owl-pagination {
        top: 340px;
    }
}

.c-19-photo-gallery .owl-theme .owl-pagination .owl-page span {
    background: #333333;
}

.c-19-photo-gallery .owl-theme .owl-pagination .owl-page.active span, .c-19-photo-gallery .owl-theme .owl-pagination .owl-page:hover span {
    background: white;
}

.c-20-featured-tl-list h1 {
    font-size: 18px;
    padding: 20px;
    margin: 0;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .c-20-featured-tl-list h1 {
        padding: 20px 8%;
    }
}

.c-20-featured-tl-list li {
    padding: 0 8%;
}

@media (min-width: 1200px) {
    .c-20-featured-tl-list li {
        padding: 0 20px;
    }
}

.c-20-featured-tl-list li:first-child figure {
    border-top: none;
}

.c-20-featured-tl-list li:last-child figure {
    border-bottom: none;
}

.c-20-featured-tl-list figure {
    padding: 20px 0;
}

    .c-20-featured-tl-list figure img {
        width: 40%;
        display: inline-block;
        padding: 0;
    }

    .c-20-featured-tl-list figure figcaption {
        width: 60%;
        padding: 0;
        padding-left: 10px;
        display: inline-block;
    }

    .c-20-featured-tl-list figure h2 a {
        margin: 5px 0;
    }

@media (max-width: 1200px) {
    .c-20-featured-tl-list figure h2 a {
        font-size: 22px;
    }
}

article .c-21-download {
    display: inline-block;
    margin: 40px 20px 40px 0;
    float: left;
}

.c-22-tags {
    background-color: #eaead5;
    display: inline-block;
    padding: 20px;
}

    .c-22-tags h1 {
        font-size: 18px;
    }

        .c-22-tags h1 i.fa {
            margin-right: 10px;
        }

    .c-22-tags ul li {
        display: inline;
        float: left;
        padding: 2px;
    }

        .c-22-tags ul li a {
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
            font-size: 18px;
        }

            .c-22-tags ul li a:hover {
                text-decoration: underline;
            }

        .c-22-tags ul li:after {
            content: ',';
        }

        .c-22-tags ul li:last-child:after {
            content: none;
        }

.c-23-bio-list .header {
    padding-right: 20%;
}

    .c-23-bio-list .header.js-open, .c-23-bio-list .header.js-close {
        cursor: pointer;
        margin-left: 55px;
    }

.c-23-bio-list ul.bio-list {
    margin-left: 0;
    position: relative;
    zoom: 1;
}

    .c-23-bio-list ul.bio-list > li {
        border-top: 1px solid #cacaba;
        position: relative;
        padding: 25px 0;
    }

        .c-23-bio-list ul.bio-list > li:before {
            content: '';
        }

        .c-23-bio-list ul.bio-list > li i.icon {
            position: absolute;
            padding: 1px;
            left: 0;
            top: 40px;
            color: #722750;
            font-size: 25px;
            cursor: pointer;
            -webkit-transition-duration: 400ms;
            transition-duration: 400ms;
        }

        .c-23-bio-list ul.bio-list > li em.icon {
            position: absolute;
            padding: 1px;
            left: 0;
            top: 27px;
            color: #722750;
            font-size: 25px;
            cursor: pointer;
            -webkit-transition-duration: 400ms;
            transition-duration: 400ms;
        }

        .c-23-bio-list ul.bio-list > li h2 {
            color: #722750;
            font-size: 30px;
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
            margin: 0 0 5px;
            text-transform: none;
        }

            .c-23-bio-list ul.bio-list > li h2:hover {
                text-decoration: underline;
            }

        .c-23-bio-list ul.bio-list > li h3 {
            color: #333333;
            font-size: 18px;
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
            margin: 0;
            font-weight: normal !important;
        }

.c-23-bio-list .js-open i.icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.c-24-bio-block {
    display: none;
}

    .c-24-bio-block h4 {
        color: #6e6358;
        font-size: 18px;
        margin: 5px 0;
    }

    .c-24-bio-block .description p {
        font-size: 14px;
    }

@media (min-width: 768px) {
    .c-24-bio-block .bio-rail {
        display: none;
        padding-left: 20px;
        width: 20%;
        float: right;
    }
}

.c-24-bio-block .bio-rail .image img {
    width: 50%;
    float: left;
}

@media (min-width: 768px) {
    .c-24-bio-block .bio-rail .image img {
        width: 100%;
        float: none;
    }
}

.c-24-bio-block .description {
    max-width: 80%;
    float: left;
}

.c-24-bio-block .social .icon-list {
    float: none;
}

    .c-24-bio-block .social .icon-list ul li {
        position: relative;
        display: block;
        text-align: left;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 18px;
        color: #333333;
        padding-left: 40px;
        margin-left: 10px;
        line-height: 30px;
    }

        .c-24-bio-block .social .icon-list ul li:before {
            content: '';
        }

@media (min-width: 768px) {
    .c-24-bio-block .social .icon-list ul li {
        margin-left: 0;
        line-height: 50px;
    }
}

.c-24-bio-block .social .icon-list ul li i.fa {
    position: absolute;
    left: 0;
    top: 12px;
    padding: 8.25px 0 8.25px 2px;
    text-align: center;
    font-size: 18px;
}

.c-25-product-list.block-listing {
    background-color: #ccdae4;
    padding: 40px 0;
}

    .c-25-product-list.block-listing .block-row .block-item {
        border-color: #ccdae4;
        background-color: white;
    }

        .c-25-product-list.block-listing .block-row .block-item figcaption .content {
            margin-bottom: 50px;
        }

    .c-25-product-list.block-listing figure figcaption {
        padding-top: 210px;
    }

    .c-25-product-list.block-listing figure img ~ figcaption {
        padding-top: 10px;
    }

.c-26-featured-tl-carousel {
    position: relative;
}

    .c-26-featured-tl-carousel .owl-pagination {
        position: absolute;
        left: 50%;
        bottom: 5%;
    }

    .c-26-featured-tl-carousel .item, .c-26-featured-tl-carousel img {
        margin: 0;
        padding: 0;
        height: 416px;
        width: auto;
        max-width: none;
        position: relative;
    }

@media (min-width: 768px) {
    .c-26-featured-tl-carousel .item, .c-26-featured-tl-carousel img {
        height: auto;
        width: 100%;
    }
}

.c-26-featured-tl-carousel figcaption {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    padding: 50px;
}

@media (min-width: 768px) {
    .c-26-featured-tl-carousel figcaption {
        left: 10%;
        width: 60%;
        margin: 10px;
        padding: 10px 20px;
    }
}

@media (min-width: 992px) {
    .c-26-featured-tl-carousel figcaption {
        width: 50%;
    }
}

.c-26-featured-tl-carousel a.cta {
    padding: 14px;
    margin: 0px;
    display: block;
    color: #3A1392;
    text-decoration: none;
    font-size: 16px;
    background-color: #C8CDCF;
}

@media (min-width: 768px) {
    .c-26-featured-tl-carousel a.cta {
        display: inline-block;
        padding: 10px 15px 10px;
    }
}

@media (min-width: 992px) {
    .c-26-featured-tl-carousel a.cta {
        font-size: 16px;
        padding: 14px 20px;
    }
}

.c-26-featured-tl-carousel a.cta:hover {
    background-color: #7C858E;
    color: #FFFFFF;
}

.c-26-featured-tl-carousel .owl-buttons {
    position: absolute;
    z-index: 100;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 40px;
    right: 40px;
}

.c-26-featured-tl-carousel .owl-theme .owl-controls .owl-buttons .owl-next, .c-26-featured-tl-carousel .owl-theme .owl-controls .owl-buttons .owl-prev {
    top: 0;
}

@media (min-width: 1200px) {
    .c-26-featured-tl-carousel .owl-theme .owl-controls .owl-buttons .owl-next {
        right: 0;
    }

    .c-26-featured-tl-carousel .owl-theme .owl-controls .owl-buttons .owl-prev {
        left: 0;
    }
}

.c-26-featured-tl-carousel .owl-buttons div {
    width: 41px;
    height: 41px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.31);
    border: none;
    cursor: pointer;
    -webkit-transition: background-color .5s ease;
    transition: background-color .5s ease;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 992px) {
    .c-26-featured-tl-carousel .owl-buttons div {
        width: 82px;
        height: 82px;
        font-size: 30px;
    }
}

.c-26-featured-tl-carousel .owl-buttons div:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.c-26-featured-tl-carousel .owl-buttons div i {
    -webkit-transform: translateX(-30%) translateY(-50%);
    -ms-transform: translateX(-30%) translateY(-50%);
    transform: translateX(-30%) translateY(-50%);
    left: 50%;
    top: 50%;
    position: relative;
    display: block;
    width: auto;
}

    .c-26-featured-tl-carousel .owl-buttons div i.icon-left-arrow {
        -webkit-transform: translateX(-30%) translateY(-50%);
        -ms-transform: translateX(-30%) translateY(-50%);
        transform: translateX(-30%) translateY(-50%);
    }

.c-26-featured-tl-carousel h1, .c-26-featured-tl-carousel h2 {
    color: #ffffff;
    margin: 0;
    padding: 10px;
}

@media (min-width: 992px) {
    .c-26-featured-tl-carousel h1, .c-26-featured-tl-carousel h2 {
        padding: 20px 30px;
    }
}

.c-26-featured-tl-carousel h1 {
    background-color: #3A1392;
    font-size: 32px;
    line-height: 32px;
}

@media (min-width: 992px) {
    .c-26-featured-tl-carousel h1 {
        padding: 10px 30px 20px;
    }
}

.c-26-featured-tl-carousel h2 {
    background-color: #9c6784;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 16px;
}

.c-26-featured-tl-carousel h4 {
    background-color: #3A1392;
    margin: 0;
    color: #C9CED0;
    padding: 20px 30px 0px;
    font-size: 16px;
}

    .c-26-featured-tl-carousel h4 .category {
        font-weight: bold;
        text-transform: uppercase;
    }

.c-27-homepage-carousel, .c-40-fma-homepage-carousel {
    position: relative;
    width: 100%;
}

    .c-27-homepage-carousel .no-carousel, .c-40-fma-homepage-carousel .no-carousel {
        display: block;
    }

        .c-27-homepage-carousel .no-carousel .paging, .c-40-fma-homepage-carousel .no-carousel .paging {
            display: none;
        }

    .c-27-homepage-carousel .move-right .owl-custom-in, .c-40-fma-homepage-carousel .move-right .owl-custom-in {
        -webkit-animation: 1.25s ease 0s normal both 1 fadeIn;
        animation: 1.25s ease 0s normal both 1 fadeIn;
    }

        .c-27-homepage-carousel .move-right .owl-custom-in img, .c-40-fma-homepage-carousel .move-right .owl-custom-in img {
            -webkit-animation: 1.25s ease 0s normal both 1 fadeInMoveRight;
            animation: 1.25s ease 0s normal both 1 fadeInMoveRight;
        }

        .c-27-homepage-carousel .move-right .owl-custom-in figcaption, .c-40-fma-homepage-carousel .move-right .owl-custom-in figcaption {
            -webkit-animation: 1.25s ease 0s normal both 1 fadeIn;
            animation: 1.25s ease 0s normal both 1 fadeIn;
        }

    .c-27-homepage-carousel .move-right .owl-custom-out, .c-40-fma-homepage-carousel .move-right .owl-custom-out {
        -webkit-animation: 1.5s ease 0s normal both 1 fadeOut;
        animation: 1.5s ease 0s normal both 1 fadeOut;
    }

        .c-27-homepage-carousel .move-right .owl-custom-out figcaption, .c-40-fma-homepage-carousel .move-right .owl-custom-out figcaption {
            -webkit-animation: 1.25s ease 0s normal both 1 fadeOutMoveRightMobile;
            animation: 1.25s ease 0s normal both 1 fadeOutMoveRightMobile;
        }

@media (min-width: 480px) {
    .c-27-homepage-carousel .move-right .owl-custom-out figcaption, .c-40-fma-homepage-carousel .move-right .owl-custom-out figcaption {
        -webkit-animation: 1.25s ease 0s normal both 1 fadeOutMoveRight;
        animation: 1.25s ease 0s normal both 1 fadeOutMoveRight;
    }
}

.c-27-homepage-carousel .move-left .owl-custom-in, .c-40-fma-homepage-carousel .move-left .owl-custom-in {
    -webkit-animation: 1.25s ease 0s normal both 1 fadeIn;
    animation: 1.25s ease 0s normal both 1 fadeIn;
}

    .c-27-homepage-carousel .move-left .owl-custom-in img, .c-40-fma-homepage-carousel .move-left .owl-custom-in img {
        -webkit-animation: 1.25s ease 0s normal both 1 fadeInMoveLeft;
        animation: 1.25s ease 0s normal both 1 fadeInMoveLeft;
    }

    .c-27-homepage-carousel .move-left .owl-custom-in figcaption, .c-40-fma-homepage-carousel .move-left .owl-custom-in figcaption {
        -webkit-animation: 1.25s ease 0s normal both 1 fadeIn;
        animation: 1.25s ease 0s normal both 1 fadeIn;
    }

.c-27-homepage-carousel .move-left .owl-custom-out, .c-40-fma-homepage-carousel .move-left .owl-custom-out {
    -webkit-animation: 1.5s ease 0s normal both 1 fadeOut;
    animation: 1.5s ease 0s normal both 1 fadeOut;
}

    .c-27-homepage-carousel .move-left .owl-custom-out figcaption, .c-40-fma-homepage-carousel .move-left .owl-custom-out figcaption {
        -webkit-animation: 1.25s ease 0s normal both 1 fadeOutMoveLeftMobile;
        animation: 1.25s ease 0s normal both 1 fadeOutMoveLeftMobile;
    }

@media (min-width: 480px) {
    .c-27-homepage-carousel .move-left .owl-custom-out figcaption, .c-40-fma-homepage-carousel .move-left .owl-custom-out figcaption {
        -webkit-animation: 1.25s ease 0s normal both 1 fadeOutMoveLeft;
        animation: 1.25s ease 0s normal both 1 fadeOutMoveLeft;
    }
}

.c-27-homepage-carousel .owl-item, .c-40-fma-homepage-carousel .owl-item {
    height: auto;
    overflow: hidden;
}

.c-27-homepage-carousel .owl-carousel .owl-item .item, .c-40-fma-homepage-carousel .owl-carousel .owl-item .item {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .c-27-homepage-carousel .owl-carousel .owl-item .item, .c-40-fma-homepage-carousel .owl-carousel .owl-item .item {
        height: 350px;
    }
}

@media (min-width: 480px) {
    .c-27-homepage-carousel .owl-carousel .owl-item .item, .c-40-fma-homepage-carousel .owl-carousel .owl-item .item {
        padding-bottom: 44%;
        height: 0;
        max-height: none;
    }
}

.c-27-homepage-carousel .owl-carousel .owl-item .item img, .c-40-fma-homepage-carousel .owl-carousel .owl-item .item img {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    left: 50%;
    margin-left: -50%;
    padding: 0;
}

@media (min-width: 480px) {
    .c-27-homepage-carousel .owl-carousel .owl-item .item img, .c-40-fma-homepage-carousel .owl-carousel .owl-item .item img {
        margin-left: 0;
        width: 100%;
        height: auto;
        position: absolute;
        left: 0;
        top: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@media(min-width:320px) {
    .c-27-homepage-carousel > .owl-carousel > .item > figcaption {
        padding: 0px;
    }

    .c-27-homepage-carousel figcaption {
        position: relative;
        bottom: 5%;
        padding: 40px;
    }
}

@media (min-width: 480px) {
    .c-27-homepage-carousel figcaption {
        position: absolute;
        bottom: 5%;
        padding: 40px;
    }
}

.c-40-fma-homepage-carousel figcaption {
    /*position: absolute;*/
    bottom: 5%;
    padding: 40px;
}

@media (min-width: 480px) {
    .c-27-homepage-carousel figcaption, .c-40-fma-homepage-carousel figcaption {
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        bottom: auto;
        right: 0;
        width: 50%;
        margin: 10px;
        padding: 10px 20px;
    }
}

.c-27-homepage-carousel .cta {
    color: #3A1392;
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 0;
}

.c-40-fma-homepage-carousel .cta {
    color: #333333;
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 0;
}

    .c-27-homepage-carousel .cta:hover, .c-40-fma-homepage-carousel .cta:hover {
        color: #b2abc3;
        text-decoration: none;
    }

        .c-27-homepage-carousel .cta:hover i, .c-40-fma-homepage-carousel .cta:hover i {
            text-decoration: none;
        }

.c-27-homepage-carousel .paging, .c-40-fma-homepage-carousel .paging {
    display: block;
    text-align: right;
    pointer-events: none;
}

.c-27-homepage-carousel button, .c-40-fma-homepage-carousel button {
    width: 41px;
    height: 41px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    -webkit-transition: background-color .5s ease;
    transition: background-color .5s ease;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    pointer-events: all;
}

    .c-27-homepage-carousel button.left-button, .c-40-fma-homepage-carousel button.left-button {
        left: 0px;
    }

    .c-27-homepage-carousel button.right-button, .c-40-fma-homepage-carousel button.right-button {
        right: 0px;
    }

@media (min-width: 768px) {
    .c-27-homepage-carousel button, .c-40-fma-homepage-carousel button {
        position: relative;
        left: 0px;
        right: 0px;
        top: 0px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .c-27-homepage-carousel button, .c-40-fma-homepage-carousel button {
        width: 82px;
        height: 82px;
        font-size: 30px;
    }
}

.c-27-homepage-carousel button:hover, .c-40-fma-homepage-carousel button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.c-27-homepage-carousel h1, .c-40-fma-homepage-carousel h1, .c-40-fma-homepage-carousel h2 {
    color: #FFFFFF;
    margin: 0;
    padding: 10px;
}

.c-27-homepage-carousel h2 {
    color: #313333;
    margin: 0;
    padding: 10px;
}

@media (min-width: 992px) {
    .c-27-homepage-carousel h1, .c-27-homepage-carousel h2, .c-40-fma-homepage-carousel h1, .c-40-fma-homepage-carousel h2 {
        padding: 20px 30px;
    }
}

.c-27-homepage-carousel h1 {
    background-color: #3A1392;
    font-size: 32px;
    line-height: 32px;
}

.c-40-fma-homepage-carousel h1 {
    background-color: #b2abc3;
    font-size: 32px;
    line-height: 32px;
}

.c-27-homepage-carousel h2 {
    background-color: #C5CACD;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 16px;
}

.c-40-fma-homepage-carousel h2 {
    background-color: #81759d;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 16px;
}

.c-27-homepage-carousel a.latest, .c-40-fma-homepage-carousel a.latest {
    display: block;
    width: auto;
    border-radius: 0;
    position: relative;
    top: 0px;
    left: 0px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    height: 60px;
    margin: 0;
    padding: 25px 0px;
    text-transform: none;
    font-size: 20px;
    background-color: #e2e0de;
    text-align: center;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #333333;
}

@media (min-width: 992px) {
    .c-27-homepage-carousel a.latest, .c-40-fma-homepage-carousel a.latest {
        width: 126px;
        height: 126px;
        border-radius: 50%;
        text-align: center;
        position: absolute;
        z-index: 100;
        left: 50%;
        top: 100%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        padding: 24px;
        text-transform: uppercase;
        padding-top: 36px;
        font-size: 13px;
        -webkit-transition: background-color .5s ease, box-shadow .5s ease;
        transition: background-color .5s ease, box-shadow .5s ease;
    }
}

.c-27-homepage-carousel a.latest:hover, .c-40-fma-homepage-carousel a.latest:hover {
    text-decoration: none;
    background-color: #d6d3d0;
    box-shadow: 0px 0px 10px #333333;
}

.c-27-homepage-carousel .latest i.fa.fa-angle-down, .c-40-fma-homepage-carousel .latest i.fa.fa-angle-down {
    display: none;
    font-size: 30px;
}

@media (min-width: 992px) {
    .c-27-homepage-carousel .latest i.fa.fa-angle-down, .c-40-fma-homepage-carousel .latest i.fa.fa-angle-down {
        display: block;
    }
}

@media (min-width: 992px) {
    .c-27-homepage-carousel .latest .icon-arrow-down, .c-40-fma-homepage-carousel .latest .icon-arrow-down {
        display: none;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInMoveRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }
}

@keyframes fadeInMoveRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }
}

@-webkit-keyframes fadeOutMoveRight {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, -50%, 0);
        transform: translate3d(0%, -50%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(10%, -50%, 0);
        transform: translate3d(10%, -50%, 0);
    }
}

@keyframes fadeOutMoveRight {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, -50%, 0);
        transform: translate3d(0%, -50%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(10%, -50%, 0);
        transform: translate3d(10%, -50%, 0);
    }
}

@-webkit-keyframes fadeOutMoveRightMobile {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0%, 0);
        transform: translate3d(10%, 0%, 0);
    }
}

@keyframes fadeOutMoveRightMobile {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0%, 0);
        transform: translate3d(10%, 0%, 0);
    }
}

@-webkit-keyframes fadeOutMoveLeftMobile {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0%, 0);
        transform: translate3d(-10%, 0%, 0);
    }
}

@keyframes fadeOutMoveLeftMobile {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0%, 0);
        transform: translate3d(-10%, 0%, 0);
    }
}

@-webkit-keyframes fadeInMoveLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }
}

@keyframes fadeInMoveLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }
}

@-webkit-keyframes fadeOutMoveLeft {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, -50%, 0);
        transform: translate3d(0%, -50%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, -50%, 0);
        transform: translate3d(-10%, -50%, 0);
    }
}

@keyframes fadeOutMoveLeft {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0%, -50%, 0);
        transform: translate3d(0%, -50%, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, -50%, 0);
        transform: translate3d(-10%, -50%, 0);
    }
}

@media (min-width: 480px) and (max-width: 1200px) {
    .c-40-fma-homepage-carousel .owl-carousel .owl-item .item {
        padding-bottom: 0;
        height: calc(100vh - 70px);
        max-height: 500px;
    }

        .c-40-fma-homepage-carousel .owl-carousel .owl-item .item img {
            height: 100%;
            top: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            width: auto;
            min-width: 100%;
        }
}

@media (min-width: 1200px) {
    .c-40-fma-homepage-carousel .owl-carousel .owl-item .item {
        padding-bottom: 0;
        height: calc(100vh - 225px);
        max-height: 500px;
    }

        .c-40-fma-homepage-carousel .owl-carousel .owl-item .item img {
            height: auto;
            top: 50%;
            left: 50%;
            -ms-transform: translateY(-50%) translateX(-50%);
            -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
            width: 100%;
        }
}

@media (min-width: 1200px) and (min-height: 700px) {
    .c-40-fma-homepage-carousel .owl-carousel .owl-item .item {
        height: 0;
        max-height: none;
        padding-bottom: 33%;
    }
}

.c-40-fma-homepage-carousel figcaption {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
}

@media (min-width: 480px) and (max-width: 1200px) {
    .c-40-fma-homepage-carousel figcaption {
        width: 70%;
        left: 40px;
    }
}

@media (min-width: 992px) {
    .c-40-fma-homepage-carousel figcaption {
        -ms-transform: translateY(-10%);
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        top: calc(50% - 150px);
        width: 1170px;
        margin: 0 auto;
        padding: 10px 0px;
        left: 80px;
    }

        .c-40-fma-homepage-carousel figcaption > * {
            width: 60% !important;
        }
}

@media (min-width: 992px) and (max-height: 700px) {
    .c-40-fma-homepage-carousel figcaption h1 {
        font-size: 40px;
        padding: 15px 25px;
    }

    .c-40-fma-homepage-carousel figcaption h2 {
        padding: 15px 25px;
    }
}

.c-40-fma-homepage-carousel .paging {
    position: absolute;
    width: 100%;
    height: 100%;
}

    .c-40-fma-homepage-carousel .paging button {
        position: absolute;
        background: rgba(255, 255, 255, 0.7);
        top: calc(50% - 41px);
    }

    .c-40-fma-homepage-carousel .paging .left-button {
        left: -41px;
    }

@media (min-width: 992px) {
    .c-40-fma-homepage-carousel .paging .left-button {
        left: -82px;
    }
}

.c-40-fma-homepage-carousel .paging .right-button {
    left: auto;
    right: 41px;
}

@media (min-width: 480px) {
    .c-40-fma-homepage-carousel .paging .right-button {
        right: -1px;
    }
}

@media (min-width: 992px) {
    .c-40-fma-homepage-carousel .paging .right-button {
        right: -82px;
    }
}

.c-40-fma-homepage-carousel h1, .c-40-fma-homepage-carousel h2 {
    color: white;
    line-height: 1;
}

@media (min-width: 768px) {
    .c-40-fma-homepage-carousel h1, .c-40-fma-homepage-carousel h2 {
        padding: 25px;
    }
}

.c-40-fma-homepage-carousel h1 {
    background: #352a21;
    opacity: .7;
    font-size: 40px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

@media (min-width: 1200px) {
    .c-40-fma-homepage-carousel h1 {
        font-size: 50px;
    }
}

.c-40-fma-homepage-carousel h2 {
    background-color: #99918a;
    font-size: 14px;
}

@media (min-width: 1200px) {
    .c-40-fma-homepage-carousel h2 {
        font-size: 16px;
    }
}

.c-40-fma-homepage-carousel h2 .cta {
    color: white;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
    margin-left: -2px;
}

    .c-40-fma-homepage-carousel h2 .cta:hover {
        text-decoration: none;
        border-bottom: none;
    }

    .c-40-fma-homepage-carousel h2 .cta i {
        margin-right: 5px;
    }

.c-28-tall-parallax {
    position: relative;
    overflow: hidden;
}

    .c-28-tall-parallax figure {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

        .c-28-tall-parallax figure .image {
            background-position: 50% top;
            background-size: cover;
            background-repeat: no-repeat;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

@media (max-width: 993px) {
    .c-28-tall-parallax figure .image {
        background-position: 50% top !important;
    }
}

@media (min-width: 1200px) {
    .c-28-tall-parallax figure .image {
        background-size: cover;
        background-attachment: fixed;
    }
}

.c-28-tall-parallax figcaption {
    margin: 0;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .c-28-tall-parallax figcaption {
        margin: 0;
        position: absolute;
        left: 10%;
        width: 40%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .c-28-tall-parallax figcaption.align-right {
            left: auto;
            right: 10%;
        }
}

@media (min-width: 992px) {
    .c-28-tall-parallax figcaption {
        margin: 10px;
        width: 40%;
        left: 10%;
    }

        .c-28-tall-parallax figcaption.right {
            left: auto;
            right: 10%;
        }
}

.c-28-tall-parallax figcaption p {
    padding: 20px;
    margin-bottom: 0;
    font-size: 14px;
    margin-top: 0px;
}

@media (min-width: 768px) {
    .c-28-tall-parallax figcaption p {
        padding: 10px;
        margin-top: 5px;
    }
}

@media (min-width: 992px) {
    .c-28-tall-parallax figcaption p {
        padding: 20px;
        margin-top: 20px;
        font-size: 18px;
    }
}

.c-28-tall-parallax figcaption a.cta {
    padding: 20px;
    margin: 0px;
    display: block;
    color: #333333;
    text-decoration: none;
    font-size: 20px;
}

@media (min-width: 768px) {
    .c-28-tall-parallax figcaption a.cta {
        display: inline-block;
        padding: 10px 15px 10px;
    }
}

@media (min-width: 992px) {
    .c-28-tall-parallax figcaption a.cta {
        font-size: 30px;
        padding: 30px;
    }
}

.c-28-tall-parallax figcaption a.cta i {
    font-weight: normal;
    font-size: .9rem;
    border: 2px solid;
    border-radius: 50%;
    padding: 6px;
    line-height: 0.7rem;
    width: 25px;
    height: 25px;
    position: relative;
}

@media (min-width: 992px) {
    .c-28-tall-parallax figcaption a.cta i {
        vertical-align: text-top;
    }
}

.c-28-tall-parallax h1, .c-28-tall-parallax h2 {
    color: #ffffff;
    margin: 0;
    padding: 0;
    padding: 35px 30px;
}

.c-28-tall-parallax h1 {
    margin: 0;
    font-size: 80px;
    font-size: 11vw;
}

@media (min-width: 768px) {
    .c-28-tall-parallax h1 {
        font-size: 43px;
    }
}

@media (min-width: 992px) {
    .c-28-tall-parallax h1 {
        font-size: 80px;
        line-height: 70px;
    }
}

.c-28-tall-parallax h2 {
    background-color: #9c6784;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 16px;
    padding: 20px 30px;
}

.c-28-tall-parallax header {
    position: relative;
    height: 100vw;
    max-height: 450px;
    background-size: cover;
    background-position: center right;
}

@media (min-width: 992px) {
    .c-28-tall-parallax header {
        background-image: none;
        height: auto;
        position: relative;
        top: 0px;
    }
}

.c-28-tall-parallax header h1 {
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    padding: 50px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .c-28-tall-parallax header h1 {
        top: 0px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .c-28-tall-parallax.parallax-blue figure .image {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .c-28-tall-parallax.parallax-blue figure .image {
        height: 800px;
    }
}

.c-28-tall-parallax.parallax-blue figcaption p {
    background-color: #ccdae6;
}

.c-28-tall-parallax.parallax-blue figcaption a.cta {
    background-color: #8eadc8;
}

    .c-28-tall-parallax.parallax-blue figcaption a.cta:hover {
        background-color: #5280a8;
        color: #e3e3e3;
    }

@media (min-width: 768px) {
    .c-28-tall-parallax.parallax-blue header {
        height: auto;
        background-image: none !important;
    }
}

.c-28-tall-parallax.parallax-blue header h1 {
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .c-28-tall-parallax.parallax-green figure .image {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .c-28-tall-parallax.parallax-green figure .image {
        height: 800px;
    }
}

.c-28-tall-parallax.parallax-green figcaption p {
    background-color: #cbc995;
}

.c-28-tall-parallax.parallax-green figcaption a.cta {
    background-color: #adaa57;
}

    .c-28-tall-parallax.parallax-green figcaption a.cta:hover {
        background-color: #716f37;
        color: #e3e3e3;
    }

@media (min-width: 768px) {
    .c-28-tall-parallax.parallax-green header {
        height: auto;
        background-image: none !important;
    }
}

.c-28-tall-parallax.parallax-green header h1 {
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .c-28-tall-parallax.parallax-orange figure .image {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .c-28-tall-parallax.parallax-orange figure .image {
        height: 800px;
    }
}

.c-28-tall-parallax.parallax-orange figcaption p {
    background-color: #e9ab7f;
}

.c-28-tall-parallax.parallax-orange figcaption a.cta {
    background-color: #dc7831;
}

    .c-28-tall-parallax.parallax-orange figcaption a.cta:hover {
        background-color: #974e1a;
        color: #e3e3e3;
    }

@media (min-width: 768px) {
    .c-28-tall-parallax.parallax-orange header {
        height: auto;
        background-image: none !important;
    }
}

.c-28-tall-parallax.parallax-orange header h1 {
    color: rgba(255, 255, 255, 0.9);
}

.c-29-short-parallax {
    position: relative;
    height: 320px;
}

@media (min-width: 768px) {
    .c-29-short-parallax {
        height: 230px;
    }
}

@media (min-width: 992px) {
    .c-29-short-parallax {
        overflow: hidden;
        height: 500px;
    }
}

@media (min-width: 1750px) {
    .c-29-short-parallax {
        height: 550px;
    }
}

.c-29-short-parallax figure {
    background-image: url(../img/parallax/parallax-small.jpg);
    height: 320px;
    background-size: cover;
}

@media (max-width: 992px) {
    .c-29-short-parallax figure {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}

@media (min-width: 768px) {
    .c-29-short-parallax figure {
        height: 230px;
        background-image: url(../img/parallax/frames/small_soccer_0000.jpg);
    }
}

@media (min-width: 992px) {
    .c-29-short-parallax figure {
        height: 400px;
        background-image: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media (min-width: 1750px) {
    .c-29-short-parallax figure {
        height: 550px;
    }
}

.c-29-short-parallax figure .image {
    display: none;
}

@media (min-width: 992px) {
    .c-29-short-parallax figure .image {
        display: block;
        padding: 0;
        margin: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.c-29-short-parallax figcaption {
    position: absolute;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
    left: 6%;
    width: 85%;
}

@media (min-width: 992px) {
    .c-29-short-parallax figcaption {
        left: 2%;
        width: 96%;
    }
}

@media (min-width: 1200px) {
    .c-29-short-parallax figcaption {
        left: 8%;
        width: 84%;
    }
}

.c-29-short-parallax figcaption h1 {
    color: rgba(240, 239, 238, 0.8);
    margin: 0;
    font-size: 40px;
}

@media (min-width: 768px) {
    .c-29-short-parallax figcaption h1 {
        font-size: 60px;
    }
}

@media (min-width: 992px) {
    .c-29-short-parallax figcaption h1 {
        font-size: 90px;
    }
}

.c-30-latest-news {
    background-color: #eeeceb;
    display: table;
    table-layout: fixed;
    padding: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .c-30-latest-news {
        padding: 0;
    }
}

.c-30-latest-news h1 {
    margin-bottom: 0;
    font-size: 30px;
}

@media (min-width: 768px) {
    .c-30-latest-news h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

.c-30-latest-news .date {
    font-weight: bold;
}

.c-30-latest-news p {
    font-size: 16px;
}

.c-30-latest-news .cta {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    padding-left: 25px;
    display: block;
    line-height: 1.1;
    position: relative;
    color: #3A1392;
}

    .c-30-latest-news .cta .icon-arrow-right {
        position: absolute;
        top: 0px;
        left: 0;
    }
    .c-30-latest-news .cta:hover {
        color: #525252;
    }

.c-30-latest-news .column {
    padding: 15px 0;
}

@media (min-width: 768px) {
    .c-30-latest-news .column {
        padding: 100px 5%;
        display: table-cell;
        width: 33%;
        vertical-align: top;
    }
}

@media (min-width: 768px) {
    .c-30-latest-news .column:first-child {
        background-color: #e2e0de;
        padding-left: 10%;
    }
}

.c-30-latest-news .column:first-child .cta {
    color: #333333;
    font-size: 30px;
    padding-left: 45px;
}

    .c-30-latest-news .column:first-child .cta .icon-arrow-right {
        position: absolute;
        top: 0px;
        left: 0;
    }

.c-30-latest-news .column:last-child {
    padding-right: 10%;
    padding-left: 0;
}

.c-31-section-menu {
    background: #404040;
    padding: 20px 10px 20px;
    position: relative;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .c-31-section-menu {
        margin-top: 0;
    }
}

.c-31-section-menu form.container {
    margin-top: 0;
    margin-bottom: 0;
}

.c-31-section-menu h1 {
    font-size: 18px;
    display: inline-block;
    line-height: 40px;
    vertical-align: top;
    float: left;
}

.c-31-section-menu span.more-in {
    color: white;
    margin-right: 25px;
}

.c-31-section-menu .styled-select {
    display: inline-block;
    width: 100%;
}

@media (min-width: 768px) {
    .c-31-section-menu .styled-select {
        float: left;
        width: auto;
        min-width: 200px;
        max-width: 45%;
    }
}

@media (min-width: 1200px) {
    .c-31-section-menu .styled-select {
        max-width: 90%;
    }
}

.c-31-section-menu .styled-select:after {
    right: 15px;
    color: #74726f;
}

.c-31-section-menu .styled-select select {
    font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    height: 40px;
    display: block;
    width: 100%;
    margin: 0;
    padding-right: 30px;
}

.c-31-section-menu .to-top {
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    margin-top: 0;
}

@media (min-width: 768px) {
    .c-31-section-menu .to-top {
        position: relative;
        top: inherit;
        left: inherit;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        line-height: 40px;
        color: white;
        border-color: white;
    }
}

.c-31-section-menu .to-top i.icon {
    text-decoration: none;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.c-32-ri-share {
    margin: 40px 0;
    display: inline-block;
}

@media (max-width: 768px) {
    .c-32-ri-share .large-buttons {
        text-align: center;
        width: 100%;
    }
}

.c-32-ri-share .large-buttons a[class*="btn"]:first-child {
    margin-left: 0;
}

.c-33-print {
    margin-bottom: 50px;
}

    .c-33-print .container {
        margin-top: 0;
        border-top: 1px solid #cacaba;
        padding-top: 30px;
    }

    .c-33-print .share-label:first-child {
        margin-left: 0;
    }

@media (max-width: 1200px) {
    .c-33-print .share-label {
        margin: 0;
    }
}

.c-33-print a.btn-top:hover {
    text-decoration: none;
}

ul.selections {
    display: inline;
    float: left;
}

    ul.selections li {
        background: #3A1392;
        /* FF3.6+ */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        /* Chrome,Safari4+ */
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* W3C */
        background-image: linear-gradient( 0deg, #3A1392 0%, #3A1392 100%);
        float: left;
        margin: 0 0 10px 10px;
        padding: 5px 10px;
        color: white;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 16px;
    }

        ul.selections li i.icon {
            color: #341225;
            margin-left: 10px;
            cursor: pointer;
        }

.c-39-tl-listing .dropdown input[type="checkbox"]:checked + label:after {
    top: -2px;
}

@media (min-width: 1200px) {
    .c-39-tl-listing .dropdown:hover ul, .c-39-tl-listing .dropdown:focus ul {
        display: block !important;
    }
}

.search {
    margin: 0;
}

    .search .row .col-sm-2 {
        display: table;
    }

    .search .selection-display i.icon {
        margin-right: 5px;
    }

@media (max-width: 768px) {
    .search .selection-display {
        font-size: 18px;
    }
}

.adv-search span {
    line-height: 30px;
}

@media (min-width: 1200px) {
    .c-39-tl-listing .filter-form {
        padding: 0 30px;
    }
}

.c-39-tl-listing .filter-form a {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-decoration: none;
}

.c-39-tl-listing .filter-form .selection-display a, .c-39-tl-listing .filter-form .js-clear a {
    color: #3A1392;
}

.c-39-tl-listing .filter-form .dropdown {
    margin-bottom: 10px;
}

    .c-39-tl-listing .filter-form .dropdown .psuedo-select {
        color: #74726f;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        height: 50px;
        line-height: 26px;
        font-style: initial;
        padding-right: 30px;
    }

    .c-39-tl-listing .filter-form .dropdown ul li {
        position: relative;
    }

        .c-39-tl-listing .filter-form .dropdown ul li label {
            color: #74726f;
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
            display: block;
        }

            .c-39-tl-listing .filter-form .dropdown ul li label:before {
                top: 0;
            }

        .c-39-tl-listing .filter-form .dropdown ul li input[type="checkbox"] {
            margin: 0 10px 0 0;
        }

.top-corner {
    position: absolute;
}

.item-card {
    background: #EBF0F3;
}

    .item-card figure:not(.tweet) figcaption {
        padding-top: 210px;
    }

@media (max-width: 1200px) {
    .item-card figure:not(.tweet) figcaption {
        padding-top: 166px;
    }
}

@media (max-width: 990px) {
    .item-card figure:not(.tweet) figcaption {
        padding-top: 126px;
    }
}

@media (max-width: 766px) {
    .item-card figure:not(.tweet) figcaption {
        padding-top: 10px;
    }
}

.item-card figure:not(.tweet) img ~ figcaption {
    padding-top: 10px;
}

.item-card figcaption .content {
    margin: 0 0 60px;
    background: none;
}

.item-card figcaption .actions {
    padding: 10px 15px;
    background: none;
}

    .item-card figcaption .actions a {
        color: #3A1392;
        font-size: 16px;
    }

.item-card figcaption ul li {
    padding-left: 30px;
}

    .item-card figcaption ul li:after {
        height: 18px;
        width: 18px;
        padding: 0 4px;
        top: 0;
        left: 5px;
        line-height: 15px;
    }

.listing figure.tweet .img-wrapper {
    height: 250px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

    .listing figure.tweet .img-wrapper img {
        position: absolute;
        top: 50%;
        left: 0;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.listing figure.tweet h2 {
    color: #0381b9;
    font-size: 18px;
    margin-bottom: 15px;
}

.listing figure.tweet img.profile-img {
    height: 50px;
    width: 50px;
    border-radius: 4px;
    display: inline;
}

.listing figure.tweet .profile {
    display: inline-block;
    padding-left: 20px;
    vertical-align: top;
}

    .listing figure.tweet .profile a {
        margin: 0;
        font-weight: bold;
        font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    .listing figure.tweet .profile .date:before {
        content: "•";
        margin: 0 8px;
    }

.listing figure.tweet .name {
    color: #afaca7;
}

.listing figure.tweet .text {
    margin: 10px 0;
    line-height: 18px;
}

    .listing figure.tweet .text a {
        color: #0381b9;
    }

.listing figure.tweet .retweet {
    background-color: rgba(255, 255, 255, 0.4);
}

    .listing figure.tweet .retweet:hover {
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .listing figure.tweet .retweet blockquote {
        border: 2px solid #afaca7;
        padding: 10px;
        color: black;
        text-transform: none;
        border-radius: 3px;
    }

        .listing figure.tweet .retweet blockquote .name {
            font-size: 90%;
        }

        .listing figure.tweet .retweet blockquote p {
            text-transform: none;
        }

.listing figure.tweet ul.tweet-actions {
    float: right;
}

    .listing figure.tweet ul.tweet-actions li {
        float: left;
        display: inline;
        padding-left: 15px;
    }

        .listing figure.tweet ul.tweet-actions li a {
            color: #3A1392;
        }

.dc-01-event-date-time.event-block ul.single-row-table.divided li.cell {
    padding: 0 5px;
}

.dc-01-event-date-time.event-block ul.single-row-table.divided h2 a {
    font-size: 24px;
    text-transform: uppercase;
}

.dc-01-event-date-time.event-block span.meta-date {
    font-size: 16px;
    text-transform: none;
}

.dc-02-event-location-details.event-block {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 30px;
    margin-top: 30px;
}

.event-block {
    border-color: #cacaba;
    border-width: 2px 0;
    border-style: solid;
    margin: 50px 0;
    padding: 40px 0 20px 0;
}

h2.event-header {
    font-size: 40px;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #6e6358;
    text-transform: uppercase;
}

h3.event-header {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 25px;
    line-height: 30px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    h3.event-header {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (min-width: 768px) {
    ul.single-row-table.speakers {
        border-spacing: 30px 0;
        display: inline-block;
        list-style: none;
    }

        ul.single-row-table.speakers .cell {
            width: 24%;
            padding: 0 10px;
            display: inline-block;
            vertical-align: top;
        }
}

.dc-06-event-language-location {
    color: #722750;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 20px;
}

@media (max-width: 1200px) {
    .dc-06-event-language-location div[class^="col-"] {
        width: auto;
    }
}

.dc-06-event-language-location .block {
    padding-left: 25px;
    position: relative;
    line-height: 30px;
}

.dc-06-event-language-location i.fa {
    position: absolute;
    left: 0;
    top: 3px;
}

.dc-07-search-result-listing span.meta-type.divider {
    margin: 0;
}

    .dc-07-search-result-listing span.meta-type.divider:before {
        display: none;
    }

.dc-07-search-result-listing span.category ~ span.meta-type.divider:before {
    display: inline;
    margin: 0 5px;
}

@media (min-width: 1200px) {
    .adv-search > div.col-sm-6:first-child {
        border-right: 1px solid #888888;
    }
}

.adv-search input[type="checkbox"]:checked + label:after {
    top: -2px;
    left: 2px;
}

.results-container {
    padding-bottom: 20px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #404040;
    font-size: 18px;
}

.dc-08-data-sheet .content-row .title-cell {
    position: relative;
}

.dc-08-data-sheet .content-row .ds-number {
    position: absolute;
    left: 50px;
    top: 0;
}

.dc-08-data-sheet .content-row .ds-title {
    margin-left: 50px;
}

@media (max-width: 768px) {
    .dc-08-data-sheet .content-row {
        background-color: #FAF7F9;
    }

        .dc-08-data-sheet .content-row .date {
            padding: 10px 10px 0 10px;
        }

        .dc-08-data-sheet .content-row .title {
            padding: 0 10px 10px 10px;
        }
}

.divided-col {
    position: relative;
    padding: 50px 0 0 0;
    /* special adjustments for full width col on tablet */
}

@media (max-width: 768px) {
    .divided-col:first-child {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .divided-col {
        padding: 0px 25px;
    }

        .divided-col:first-child {
            padding-left: 15px;
            padding-right: 20px;
        }

        .divided-col:last-child {
            padding-right: 15px;
        }
}

.divided-col label {
    text-transform: uppercase;
}

.divided-col .styled-select select {
    margin-bottom: 0;
    color: #404040;
    height: 50px;
    padding-right: 35px;
}

.divided-col .styled-select:after {
    right: 15px;
}

.divided-col .styled-select:before {
    width: 30px;
}

.divided-col .search-box {
    width: 100%;
}

    .divided-col .search-box input[type="search"] {
        height: 50px;
        padding-right: 55px;
    }

    .divided-col .search-box i.fa-search {
        height: 50px;
        width: 50px;
        padding: 14px;
    }

.divided-col .or {
    position: absolute;
    width: 20px;
    text-transform: uppercase;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #74726f;
    top: 15px;
    left: 0;
}

@media (min-width: 768px) {
    .divided-col .or {
        top: auto;
        bottom: 10px;
        left: -10px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .divided-col.col-sm-12 {
        padding: 50px 15px 0 15px;
    }

        .divided-col.col-sm-12 .or {
            top: 15px;
            left: 15px;
        }
}

.tabs {
    table-layout: fixed;
}

@media (min-width: 1200px) {
    .tabs {
        width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

.tabs li {
    background: #FFFFFF;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    background-image: linear-gradient(0deg, #FFFFFF 0%, #FFFFFF 100%);
    display: table-cell;
    font-size: 18px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    padding: 20px 45px;
    vertical-align: middle;
    width: 50%;
}

    .tabs li a {
        color: #3A1392;
    }

    .tabs li.active {
        background: #EAEAEB;
    }

        .tabs li.active a {
            color: #333536;
        }

@media (min-width: 992px) {
    .tabs li {
        border-right: 10px solid white;
        width: 330px;
    }
}

.tab-content .tab-pane {
    display: none;
}

    .tab-content .tab-pane.active {
        display: block;
    }

table.listing-table {
    width: 100%;
    display: table;
}

    table.listing-table tr {
        display: table-row;
        height: 100%;
        position: relative;
    }

        table.listing-table tr td, table.listing-table tr th {
            color: #7C858E;
            display: table-cell;
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
            font-size: 16px;
            padding: 25px 0;
            vertical-align: top;
        }

            table.listing-table tr td:last-child, table.listing-table tr th:last-child {
                border-right: none;
            }

@media (max-width: 480px) {
    table.listing-table tr td, table.listing-table tr th {
        border-right: none;
        display: inline-block;
        padding-bottom: 0;
        margin-right: 20px;
    }
}

table.listing-table tr th {
    border-bottom: 2px solid #EAEAEB;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    text-align: left;
    text-transform: uppercase;
    padding: 5px 0;
    padding-right: 20px;
    position: relative;
    vertical-align: bottom;
}

    table.listing-table tr th.title-head {
        width: 50%;
    }

    table.listing-table tr th:not(:last-child):after {
        content: '';
        background-color: white;
        border: 2px solid white;
        position: absolute;
        right: 0;
        height: 100%;
        width: 10px;
    }

@media (max-width: 480px) {
    table.listing-table tr th {
        display: none;
    }

        table.listing-table tr th.title-head {
            width: 100%;
            display: block;
        }
}

table.listing-table tr th i.fa {
    margin-right: 5px;
}

table.listing-table tr th.tablesorter-headerAsc i.fa:before {
    content: '\f0de';
}

table.listing-table tr th.tablesorter-headerDesc i.fa:before {
    content: '\f0dd';
}

table.listing-table tr th.tablesorter-headerUnSorted:not(.tablesorter-noSort) i.fa:before {
    content: '\f0dc';
}

@media (min-width: 480px) {
    table.listing-table tr th[data-sort] {
        cursor: pointer;
    }

        table.listing-table tr th[data-sort] i.fa {
            float: right;
        }
}

table.listing-table tr td i.fa {
    display: none;
}

@media (max-width: 480px) {
    table.listing-table tr td i.fa {
        display: inline;
        margin-right: 5px;
    }
}

@media (max-width: 480px) {
    table.listing-table .title {
        width: 100%;
        display: block;
        padding-top: 5px;
        margin: 0;
    }
}

table.listing-table .title .title-cell {
    position: relative;
    padding-left: 50px;
}

table.listing-table .title i.icon {
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: -10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #7B2B63;
}

    table.listing-table .title i.icon:before {
        width: auto;
    }

@media (max-width: 480px) {
    table.listing-table .date {
        color: #6e6358;
    }
}

table.listing-table .screen-only {
    display: none;
}

@media (max-width: 480px) {
    table.listing-table .screen-only {
        display: block;
    }
}

@media (max-width: 480px) {
    table.listing-table .no-screen {
        display: none;
    }
}

.new, .updated {
    color: white;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 10px;
    margin: 0 15px;
    padding: 4px 5px 2px;
    text-transform: uppercase;
    vertical-align: middle;
}

.mobile-expand .updated {
    margin: 0 5px;
}

.new {
    background-color: #9f1b29;
}

.updated {
    background-color: #97942c;
}

.listing-section {
    display: none;
}

    .listing-section.active {
        display: block;
        margin-bottom: 50px;
    }

.dc-10-report-contact-nav {
    background: #e7d9e0;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    margin: 30px 0;
    padding: 20px;
}

    .dc-10-report-contact-nav label {
        font-size: 18px;
        text-transform: uppercase;
    }

    .dc-10-report-contact-nav .styled-select:before {
        width: 40px;
    }

    .dc-10-report-contact-nav .styled-select select {
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 18px;
        height: 50px;
        margin-bottom: 0;
        padding-left: 20px;
    }

.dc-11-report-contact-block {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    overflow: visible;
    border-bottom: 1px solid #cacaba;
    padding: 50px 0;
    position: relative;
}

    .dc-11-report-contact-block:last-child {
        border: none;
    }

    .dc-11-report-contact-block h3 {
        color: #6e6358;
        font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 32px;
        margin: 0 0 30px 0;
        text-transform: uppercase;
    }

@media (min-size: 1200px) {
    .dc-11-report-contact-block h3 {
        font-size: 40px;
    }
}

.dc-11-report-contact-block h4 {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #d35800;
    font-size: 24px;
}

.dc-11-report-contact-block .styled-select select {
    background: #f5f5f6;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    height: 50px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    padding-left: 20px;
}

.dc-11-report-contact-block .styled-select:before {
    background: #f5f5f6;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    width: 40px;
    height: 48px;
}

.dc-11-report-contact-block ul.address {
    margin: 0;
}

    .dc-11-report-contact-block ul.address li {
        margin: 0;
    }

        .dc-11-report-contact-block ul.address li:before {
            content: '';
        }

.dc-11-report-contact-block .dd-section {
    margin: 30px 0 0 0;
}

.dc-11-report-contact-block .office {
    margin: 10px 0 30px;
}

@media (min-width: 768px) {
    .dc-11-report-contact-block .thumbnail {
        float: left;
        margin-right: 20px;
    }
}

.dc-11-report-contact-block .description {
    overflow: hidden;
    word-wrap: break-word;
}

.dc-11-report-contact-block a.btn {
    width: auto;
    margin-top: 10px;
}

.xor-section {
    margin-left: 25px;
}

    .xor-section:before {
        content: "\f054";
        font-family: 'FontAwesome';
        font-size: 20px;
        color: #6e6358;
        position: absolute;
        top: 55px;
        left: -25px;
    }

.xor-divider {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    width: 40px;
    height: 24px;
    font-size: 24px;
    background-color: white;
    bottom: -14px;
    left: calc(50% - 20px);
    z-index: 99;
    color: #6e6358;
}

.dc-12-map {
    position: relative;
    height: 740px;
    height: 100vh;
}

    .dc-12-map .map-form {
        display: none;
    }

    .dc-12-map .pagehead {
        position: relative;
        z-index: 3;
        padding-top: 10px;
    }

@media (min-width: 992px) {
    .dc-12-map .pagehead {
        padding-top: 50px;
    }
}

.dc-12-map .pagehead .col-lg-12 {
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .dc-12-map .pagehead .col-lg-12 {
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .dc-12-map .pagehead .gc-05-share-print {
        background-color: rgba(255, 255, 255, 0.7);
    }
}

.dc-12-map .pagehead .gc-03-breadcrumbs {
    background-color: rgba(255, 255, 255, 0.7);
}

.dc-12-map .pagehead .gc-03-breadcrumbs, .dc-12-map .pagehead .gc-05-share-print {
    margin: 0;
    padding: 10px;
    height: 50px;
}

    .dc-12-map .pagehead .gc-03-breadcrumbs .share-label:first-child, .dc-12-map .pagehead .gc-05-share-print .share-label:first-child {
        margin-left: 10px;
    }

    .dc-12-map .pagehead .gc-03-breadcrumbs > ul, .dc-12-map .pagehead .gc-05-share-print > ul {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.dc-12-map .title {
    background-color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    padding: 10px;
}

@media (min-width: 992px) {
    .dc-12-map .title {
        padding: 20px;
    }
}

@media (min-width: 992px) {
    .dc-12-map .title {
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .dc-12-map .title h1 {
        font-size: 10vw;
    }
}

@media (min-width: 992px) {
    .dc-12-map .title h1 {
        padding: 0 20px 0 0;
        float: left;
        margin: 0;
        font-size: none;
    }
}

.dc-12-map .title .country {
    overflow: hidden;
    clear: left;
}

@media (min-width: 768px) {
    .dc-12-map .title .country {
        margin-top: 10px;
    }
}

@media (min-width: 992px) {
    .dc-12-map .title .country {
        clear: none;
        margin-top: 0;
    }
}

.dc-12-map .title .country .styled-select {
    width: 100%;
}

    .dc-12-map .title .country .styled-select:before {
        width: 40px;
    }

.dc-12-map .title .country select {
    margin: 0;
    height: 40px;
}

@media (min-width: 1200px) {
    .dc-12-map .title .country select {
        height: 50px;
    }
}

.dc-12-map .title .country select:focus {
    border: none !important;
    outline: none !important;
}

.dc-12-map .title .country select:hover {
    border: none !important;
    outline: none !important;
}

.dc-12-map .title .country select:visited {
    border: none !important;
    outline: none !important;
}

.dc-12-map .loading {
    position: absolute;
    top: 50%;
    z-index: -1;
}

.dc-12-map .infobox-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

@media (min-width: 992px) and (orientation: landscape) and (min-device-width: 768px) and (max-device-width: 1024px) {
    .dc-12-map .infobox-container {
        display: none;
        float: left;
    }
}

@media (min-width: 992px) {
    .dc-12-map .infobox-container {
        height: 100%;
        width: 100%;
        top: 0;
        bottom: auto;
    }
}

.dc-12-map .infobox-container .infobox {
    padding: 15px;
    background: RGBA(255, 255, 255, 0.8);
    box-shadow: 0px 0px 15px RGBA(0, 0, 0, 0.65);
    width: 344px;
    font-size: 18px;
    font-family: "robotoregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    position: absolute;
    top: 0;
    left: calc(50% + 60px);
    padding: 25px;
    z-index: 10;
}

@media (max-width: 992px) {
    .dc-12-map .infobox-container .infobox {
        width: auto;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto !important;
    }
}

@media (min-width: 768px) {
    .dc-12-map .infobox-container .infobox {
        padding: 15px;
    }
}

.dc-12-map .infobox-container .infobox b {
    font-family: "robotomedium", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.dc-12-map .infobox-container .infobox > img {
    width: 115px;
    height: 80px;
    border: 1px solid #fff;
    background-color: #222;
}

@media (min-width: 768px) and (max-width: 992px) {
    .dc-12-map .infobox-container .infobox > img {
        float: left;
        display: block;
    }
}

@media (max-width: 480px) {
    .dc-12-map .infobox-container .infobox > img {
        display: none;
    }
}

.dc-12-map .infobox-container .infobox .infobox-close {
    font-size: 30px;
    color: #333333;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 10px;
}

    .dc-12-map .infobox-container .infobox .infobox-close img {
        width: 24px;
        height: 24px;
    }

.dc-12-map .infobox-container .infobox .infoboxDetails {
    margin-bottom: 110px;
    margin-top: 10px;
}

@media (min-width: 768px) and (max-width: 992px) {
    .dc-12-map .infobox-container .infobox .infoboxDetails {
        margin-left: 140px;
        margin-bottom: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .dc-12-map .infobox-container .infobox .infoboxDetails {
        margin-bottom: 20px;
        margin-top: 30px;
    }
}

.dc-12-map .infobox-container .infobox .infoboxActions {
    position: absolute;
    bottom: 15px;
    width: 312px;
    background-color: #e2e2e2;
    padding: 10px;
    height: 90px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #722750;
}

    .dc-12-map .infobox-container .infobox .infoboxActions div {
        padding: 5px;
    }

    .dc-12-map .infobox-container .infobox .infoboxActions i.fa {
        border: 2px solid #722750;
        border-radius: 50%;
        line-height: .7rem;
        width: 25px;
        height: 25px;
        font-size: .9em;
        text-align: center;
        padding-top: 5px;
    }

@media (min-width: 768px) and (max-width: 992px) {
    .dc-12-map .infobox-container .infobox .infoboxActions {
        position: absolute;
        right: 5%;
        bottom: 25px;
        width: 325px;
    }
}

@media (max-width: 767px) {
    .dc-12-map .infobox-container .infobox .infoboxActions {
        position: relative;
        bottom: 0;
        width: auto;
    }
}

@media (min-width: 768px) {
    .dc-12-map .infobox-container .infobox a[href^="tel"], .dc-12-map .infobox-container .infobox a[href^="tel"]:hover, .dc-12-map .infobox-container .infobox a[href^="tel"]:focus {
        color: #333333;
        text-decoration: none;
        pointer-events: none;
        cursor: initial;
    }
}

.dc-12-map .map .infobox {
    display: none;
}
/*RIXMap*/
#RIXbody {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    zoom: 1;
    -webkit-text-size-adjust: none;
}

.RIXcol-lg-12 {
    width: 100%;
}

/*//Global flood Maps*/

.floodmap {
    position: relative;
    /*height: 740px;
  height: 100vh;*/
}

    .floodmap .globalfloodmap {
        height: 740px;
        position: relative;
        height: 100vh;
        width: 100%;
        margin: 0 auto;
    }

    .floodmap .loading {
        position: absolute;
        top: 50%;
        z-index: -1;
    }
/*need to set dropdowns to z-index higher than everything*/
/*Microsoft is 1001 , set breadcrumbs to 1002, header dropdowns to 1003*/
@media (min-width: 992px) {
    header.gc-01-header .main-nav > ul > li .sub, header.gc-01-header .container > ul > li .sub,
    header.gc-06-fma-header .main-nav > ul > li .sub, header.gc-06-fma-header .container > ul > li .sub {
        z-index: 1004;
    }
}


/*Need to set breadprint z-index to 1 higher than the microsoft Nav*/
.floodmap .breadprint {
    position: relative;
    /*z-index: 1002;*/
    padding: 0;
    margin: 0;
    height: 30px;
}

@media (min-width: 992px) {
    .floodmap .breadprint .gc-03-breadcrumbs {
        margin-left: 15px;
        margin-top: 5px;
    }
}

@media (min-width: 992px) {
    .floodmap .breadprint .gc-05-share-print {
        margin-right: 15px;
        z-index: 1020;
    }
}

.floodmap .breadprint .gc-05-share-print {
    margin-right: 15px;
    z-index: 1020;
}

    .floodmap .breadprint .gc-03-breadcrumbs > ul, .floodmap .breadprint .gc-05-share-print > ul {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.floodmap .backgroundbar {
    position: absolute;
    z-index: 3;
    background-color: white;
    width: 100%;
    height: 50px;
    opacity: .85;
}

.floodmap .backgroundbardark {
    position: absolute;
    z-index: 3;
    background-color: black;
    width: 100%;
    height: 50px;
    color: white;
    opacity: .85;
}

.floodmap .mapsearch {
    width: 55%;
    display: inline-block;
    margin-left: 5px;
    padding-top: 10px;
}

.floodmap .searchBox {
    border-color: red;
}

.floodmap input[type=search] {
    background-color: white !important;
    background-repeat: no-repeat;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    width: 55%;
    background-size: 18px 18px;
    background-position: right -32px center;
    line-height: 10px;
    border-width: 1px;
    padding-left: 15px;
    padding-bottom: 6px
}

    .floodmap input[type=search]:focus {
        width: 90%;
        border-width: 1px;
    }

.floodmap .aboutlegend {
    display: inline-block;
    width: 50%;
    position: absolute;
}

.floodmap .aboutmaps:hover {
    box-shadow: inset;
}

.floodmap .aboutmaps {
    display: inline-block;
    width: 45%;
    position: absolute;
    padding-top: 5px;
    padding-right: 10px;
}

    .floodmap .aboutmaps a {
        color: black;
    }

.floodmap .aboutmapsdark {
    display: inline-block;
    width: 45%;
    position: absolute;
    padding-top: 5px;
    padding-right: 10px;
}

    .floodmap .aboutmapsdark a {
        color: white;
    }

.floodmap .gflegend {
    margin-left: 45%;
    padding-top: 15px;
}

.floodmap .moderateflood {
    margin-left: 3%;
}

.floodmap .Infobox {
    padding: 15px;
    background: RGBA(255, 255, 255, 0.8);
    box-shadow: 0px 0px 15px RGBA(0, 0, 0, 0.65);
    /*width: 344px;*/
    font-size: 18px;
    font-family: "robotoregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    position: absolute;
    top: 0;
    left: calc(50% + 60px);
    z-index: 2;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto !important;
    margin-top: -40px;
    border-radius: 0px !important;
    opacity: .80;
}

.floodmap .infobox-title {
    color: black !important;
    font-family: "robotomedium", Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-size: 15px !important;
    height: 25px;
}

.floodmap .infobox-stalk {
    margin-top: 30px;
}

.MicrosoftMap .Infobox {
    min-width: 220px !important;
}

.nearBySearchText {
    display: none;
}

.floodmap .infobox-info {
    max-height: none !important;
    margin-right: 0px !important;
}

.floodmap .Infobox .infobox-close {
    font-size: 30px;
    color: #333333;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.floodmap .infobox-container {
    padding-bottom: 10px;
}

.floodmap .Infobox .infobox-close img {
    width: 24px;
    height: 24px;
}


.floodmap .Infobox .infoboxDetails {
    color: black;
    margin-top: 10px;
    margin-bottom: 35px;
    font-family: "robotomedium", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px !important;
}

.floodmap .Infobox .infoboxActions {
    position: absolute;
    bottom: 10px;
    width: 85%;
    background-color: #e2e2e2;
    padding: 10px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #722750;
}

.floodmap .infobox-info a {
    float: none !important;
    margin-left: 20px;
    line-height: 25px;
}

.floodmap .Infobox .infoboxActions i.fa {
    border: 2px solid #722750;
    border-radius: 50%;
    line-height: .7rem;
    width: 25px;
    height: 25px;
    font-size: 1.5em;
    text-align: center;
    padding-top: 5px;
    float: left;
    padding-left: 2px;
}
/*for whatever reason. the dropdown arrow for the map selector wasn't showing, doubled the pixel size*/
.MicrosoftMap .NavBar_Container .NavBar_MapTypeButtonDropDownIcon {
    width: 20px !important;
}

.MicrosoftMap .NavBar_Container .NavBar_MapTypeButtonIcon {
    width: 35px !important;
}

@media (min-width: 1200px) {
    .filter-form {
        width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

.load {
    min-height: 100px;
    margin: 50px 0;
}

    .load .center-block {
        display: table;
    }

.no-results {
    padding: 20px 0 40px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #404040;
    font-size: 18px;
}

.search {
    background: #EAEAEB;
    padding: 20px 30px;
}

    .search .search-box input[type="search"] {
        background: white;
        color: #404040;
    }

    .search .search-box i.fa-search {
        background: #3A1392;
        /* FF3.6+ */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        /* Chrome,Safari4+ */
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* W3C */
    }

    .search select {
        height: 50px;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        color: #74726f;
        font-size: 18px;
        padding: 0 10px;
        margin-right: 20px;
    }

    .search i.fa.fa-tags {
        margin-right: 5px;
        color: #3A1392
    }

.adv-search {
    display: none;
    background: #dedede;
    padding: 20px;
    margin: 0;
}

@media (min-width: 1200px) {
    .adv-search {
        padding: 20px;
    }
}

.adv-search h2 {
    font-size: 21px;
    margin: 15px 0 25px 0;
}

@media (max-width: 1200px) {
    .adv-search h2 {
        font-size: 26px;
    }
}

.refine-search {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    display: table;
}

@media (min-width: 1200px) {
    .refine-search {
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .refine-search {
        margin-top: 10px;
        padding-left: 0;
    }
}

.refine-search a {
    text-decoration: none;
    cursor: pointer;
    vertical-align: middle;
    display: table-cell;
    color: #3A1392
}

@media (max-width: 768px) {
    .refine-search a {
        padding-left: 30px;
    }
}

.refine-search i {
    color: #3A1392;
    font-size: 20px;
    padding: 1px;
}

    .refine-search i:before {
        -webkit-transition-duration: 400ms;
        transition-duration: 400ms;
    }

@media (max-width: 768px) {
    .refine-search i {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.refine-search i.fa {
    padding-right: 5px;
    line-height: 50px;
}

.refine-search .js-adv-open i.icon:before, .refine-search.js-adv-open i.icon:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

ul.filter-list {
    margin: 0;
    float: left;
    width: 100%;
}

    ul.filter-list li {
        width: 100%;
        float: left;
        position: relative;
        margin-bottom: 25px;
    }

        ul.filter-list li:before {
            content: '';
        }

@media (min-width: 1200px) {
    ul.filter-list li {
        width: 50%;
    }
}

ul.filter-list li input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
}

ul.filter-list li label {
    color: #313333;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    margin-left: 20px;
}

@media (min-width: 1200px) {
    ul.filter-list li label {
        font-size: 18px;
    }
}

.listing, .listing figcaption {
    margin: 0;
}

    .listing h2, .listing h2 a, .listing figcaption h2, .listing figcaption h2 a {
        color: #3A1392;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        margin: 5px 0;
        text-transform: none;
        font-size: 22px;
    }

    .listing .item {
        padding: 40px 0;
        border-top: 1px solid rgba(136, 136, 136, 0.5);
    }

        .listing .item:before {
            content: '';
        }

        .listing .item h2 {
            font-size: 30px;
        }

        .listing .item .url {
            color: #d35800;
        }

        .listing .item .meta-data {
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

.item-card {
    position: relative;
}

    .item-card h2 {
        font-size: 20px;
    }

    .item-card > div {
        padding: 0 20px;
        display: table;
    }

    .item-card .event-date {
        background-color: #722750;
        color: white;
        font-size: 24px;
        font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        text-align: center;
        text-transform: uppercase;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
    }

        .item-card .event-date > span {
            vertical-align: middle;
            display: table-cell;
        }

    .item-card .content {
        margin: 70px 0 100px 0;
        background-color: #eeeceb;
    }

    .item-card .locale {
        margin: 5px 0;
    }

        .item-card .locale i.fa {
            color: #d35800;
            margin: 0 5px 0 0;
        }

    .item-card .actions {
        background: #e3d4dd;
        /* FF3.6+ */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        /* Chrome,Safari4+ */
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
        /* W3C */
        position: absolute;
        bottom: 0;
        left: 0;
        height: 90px;
        width: 100%;
    }

        .item-card .actions ul {
            vertical-align: middle;
            display: table-cell;
        }

            .item-card .actions ul li {
                padding: 5px 0;
            }

        .item-card .actions a {
            color: #333333;
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
            font-size: 18px;
        }

        .item-card .actions i.icon {
            color: #333333;
            font-size: 20px;
            margin-right: 5px;
        }

/* Styling for the grid */
.block-listing {
    position: relative;
}

    .block-listing .block-row {
        display: table !important;
        table-layout: fixed;
        width: 100%;
    }

        .block-listing .block-row .block-item {
            border: 15px solid white;
            border-width: 0 15px 30px;
            display: inline-block;
            float: none;
            padding: 0;
            position: relative;
            vertical-align: top;
            width: 100%;
        }

@media (min-width: 768px) {
    .block-listing .block-row .block-item {
        display: table-cell;
        width: 33.3%;
    }
}

.item-card figcaption .actions {
    padding: 10px 15px;
    height: 60px;
}

    .item-card figcaption .actions li {
        padding: 0;
        min-height: 32px;
    }

        .item-card figcaption .actions li:hover {
            cursor: pointer;
        }

            .item-card figcaption .actions li:hover a {
                text-decoration: underline;
                color: #525252;
            }

            .item-card figcaption .actions li:hover i {
                color: #525252;
            }

    .item-card figcaption .actions a {
        margin: 0;
        display: inline;
    }

        .item-card figcaption .actions a:hover {
            text-decoration: underline;
        }

    .item-card figcaption .actions i.icon {
        color: #3A1392;
        font-size: 18px;
    }

.dc-16-article-logo-author {
    display: table;
}

    .dc-16-article-logo-author img {
        margin-right: 30px;
    }

    .dc-16-article-logo-author img, .dc-16-article-logo-author ul {
        display: block;
        vertical-align: middle;
    }

@media (min-width: 768px) {
    .dc-16-article-logo-author img, .dc-16-article-logo-author ul {
        display: table-cell;
    }
}

.dc-16-article-logo-author li {
    padding: 5px 0;
}

    .dc-16-article-logo-author li:before {
        content: '';
    }

@media (min-width: 768px) {
    .dc-16-article-logo-author li {
        padding: 0;
    }
}

.dc-16-article-logo-author span[class^="meta"] {
    padding-right: 5px;
    display: block;
}

@media (min-width: 768px) {
    .dc-16-article-logo-author span[class^="meta"] {
        display: inline;
    }
}

.dc-17-subscription-modal .gated-only, .external-site-warning .gated-only {
    display: none;
}

.dc-17-subscription-modal.gated .gated-only, .external-site-warning.gated .gated-only {
    display: block;
}

.dc-17-subscription-modal.gated .no-gated, .external-site-warning.gated .no-gated {
    display: none;
}

.dc-17-subscription-modal.gated .email-options, .external-site-warning.gated .email-options {
    padding-top: 10px;
}

    .dc-17-subscription-modal.gated .email-options label, .external-site-warning.gated .email-options label {
        display: inline;
    }

    .dc-17-subscription-modal.gated .email-options .radio-options, .external-site-warning.gated .email-options .radio-options {
        display: inline;
    }

.dc-17-subscription-modal.gated .subscribe, .external-site-warning.gated .subscribe {
    padding: 20px 10px 0;
}

.dc-17-subscription-modal .loading-content .modal-body, .external-site-warning .loading-content .modal-body {
    min-height: 50px;
    margin: 30px;
}

.dc-17-subscription-modal .success-content, .external-site-warning .success-content {
    margin-bottom: 20px;
}

    .dc-17-subscription-modal .success-content ul li, .external-site-warning .success-content ul li {
        color: #333333;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 32px;
        margin: 20px;
    }

        .dc-17-subscription-modal .success-content ul li img, .external-site-warning .success-content ul li img {
            vertical-align: middle;
            margin: 0 20px;
        }

.dc-17-subscription-modal .footer, .dc-17-subscription-modal .modal-footer, .external-site-warning .footer, .external-site-warning .modal-footer {
    text-align: right;
}

.dc-17-subscription-modal .form, .external-site-warning .form {
    margin: 0;
}

.dc-17-subscription-modal .inner, .external-site-warning .inner {
    margin: 0 0 20px 0;
}

.dc-17-subscription-modal .modal-content {
    padding: 0 0 20px 0;
}

.dc-17-subscription-modal h1, .external-site-warning h1 {
    color: #6e6358;
    font-size: 40px;
    margin: 0;
}

.dc-17-subscription-modal h2, .external-site-warning h2 {
    font-size: 22px;
}

.dc-17-subscription-modal label, .external-site-warning label {
    margin-top: 10px;
    font-size: 14px;
}

    .dc-17-subscription-modal label.inline-label, .external-site-warning label.inline-label {
        display: inline-block;
        margin: 5px;
        padding-left: 20px;
        position: relative;
        text-align: left;
    }

        .dc-17-subscription-modal label.inline-label input, .external-site-warning label.inline-label input {
            margin: 0;
            position: absolute;
            left: 0;
            top: 1px;
        }

.dc-17-subscription-modal ul.subscriptions.single-row-table.divided, .external-site-warning ul.subscriptions.single-row-table.divided {
    margin-bottom: 15px;
}

    .dc-17-subscription-modal ul.subscriptions.single-row-table.divided label, .external-site-warning ul.subscriptions.single-row-table.divided label {
        font-size: 16px;
    }

@media (min-width: 768px) {
    .dc-17-subscription-modal ul.subscriptions.single-row-table.divided label, .external-site-warning ul.subscriptions.single-row-table.divided label {
        font-size: 14px;
        line-height: 14px;
    }
}

.dc-17-subscription-modal ul.subscriptions.single-row-table.divided figcaption, .external-site-warning ul.subscriptions.single-row-table.divided figcaption {
    padding: 0;
}

@media screen and (min-width: 480px) {
    .dc-17-subscription-modal ul.subscriptions.single-row-table.divided figcaption, .external-site-warning ul.subscriptions.single-row-table.divided figcaption {
        padding: 10px 15px;
    }
}

.dc-17-subscription-modal ul.subscriptions.single-row-table.divided li.cell, .external-site-warning ul.subscriptions.single-row-table.divided li.cell {
    position: relative;
    min-height: 90px;
    text-align: left;
}

    .dc-17-subscription-modal ul.subscriptions.single-row-table.divided li.cell:nth-child(3), .external-site-warning ul.subscriptions.single-row-table.divided li.cell:nth-child(3) {
        clear: left;
    }

@media screen and (min-width: 768px) {
    .dc-17-subscription-modal ul.subscriptions.single-row-table.divided li.cell, .external-site-warning ul.subscriptions.single-row-table.divided li.cell {
        min-height: none;
        text-align: center;
        clear: none;
    }
}

.dc-17-subscription-modal a.rss-btn, .external-site-warning a.rss-btn {
    color: #722750;
    background-color: #e2e0de;
    position: absolute;
    bottom: 0;
    left: 15%;
    -ms-transform: translateY(25%);
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
    padding: 10px;
    width: 70%;
    height: auto;
}

@media (min-width: 768px) {
    .dc-17-subscription-modal a.rss-btn, .external-site-warning a.rss-btn {
        -ms-transform: initial;
        -webkit-transform: initial;
        transform: initial;
        padding: 16px 10px;
        min-height: 50px;
        width: 80%;
        left: 10%;
    }
}

.dc-17-subscription-modal a.cancel, .external-site-warning a.cancel {
    text-align: right;
    margin: 25px;
    color: #333333;
    line-height: 50px;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.dc-17-subscription-modal .modal-footer a.submit, .dc-17-subscription-modal a.close, .external-site-warning .modal-footer a.submit, .external-site-warning a.close {
    width: auto;
    padding: 0 30px;
    line-height: 50px;
}

.dc-17-subscription-modal .submit i.fa, .external-site-warning .submit i.fa {
    margin-right: 5px;
}

.dc-17-subscription-modal .submit.disabled, .external-site-warning .submit.disabled {
    background: #e2e0de !important;
    cursor: not-allowed;
}

.dc-17-subscription-modal .radio-options, .external-site-warning .radio-options {
    height: 62px;
    padding: 5px 0;
}

    .dc-17-subscription-modal .radio-options label, .external-site-warning .radio-options label {
        color: #74726f;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 16px;
    }

.dc-17-subscription-modal .toc-checkbox, .external-site-warning .toc-checkbox {
    padding-top: 35px;
}

    .dc-17-subscription-modal .toc-checkbox label, .external-site-warning .toc-checkbox label {
        margin-right: 0;
    }

    .dc-17-subscription-modal .toc-checkbox input[type="checkbox"] + label:not(.error):before, .external-site-warning .toc-checkbox input[type="checkbox"] + label:not(.error):before {
        top: 0;
    }

.dc-17-subscription-modal input[type="text"], .dc-17-subscription-modal input[type="email"], .dc-17-subscription-modal select, .external-site-warning input[type="text"], .external-site-warning input[type="email"], .external-site-warning select {
    height: 40px;
    margin: 0;
}

    .dc-17-subscription-modal input[type="text"]:-moz-placeholder, .dc-17-subscription-modal input[type="email"]:-moz-placeholder, .dc-17-subscription-modal select:-moz-placeholder, .external-site-warning input[type="text"]:-moz-placeholder, .external-site-warning input[type="email"]:-moz-placeholder, .external-site-warning select:-moz-placeholder {
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    .dc-17-subscription-modal input[type="text"]::-moz-placeholder, .dc-17-subscription-modal input[type="email"]::-moz-placeholder, .dc-17-subscription-modal select::-moz-placeholder, .external-site-warning input[type="text"]::-moz-placeholder, .external-site-warning input[type="email"]::-moz-placeholder, .external-site-warning select::-moz-placeholder {
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    .dc-17-subscription-modal input[type="text"]:-ms-input-placeholder, .dc-17-subscription-modal input[type="email"]:-ms-input-placeholder, .dc-17-subscription-modal select:-ms-input-placeholder, .external-site-warning input[type="text"]:-ms-input-placeholder, .external-site-warning input[type="email"]:-ms-input-placeholder, .external-site-warning select:-ms-input-placeholder {
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

    .dc-17-subscription-modal input[type="text"]::-webkit-input-placeholder, .dc-17-subscription-modal input[type="email"]::-webkit-input-placeholder, .dc-17-subscription-modal select::-webkit-input-placeholder, .external-site-warning input[type="text"]::-webkit-input-placeholder, .external-site-warning input[type="email"]::-webkit-input-placeholder, .external-site-warning select::-webkit-input-placeholder {
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

.dc-17-subscription-modal input[type="radio"] + label, .dc-17-subscription-modal input[type="checkbox"] + label, .external-site-warning input[type="radio"] + label, .external-site-warning input[type="checkbox"] + label {
    padding-left: 30px;
}

.dc-17-subscription-modal .styled-select select, .external-site-warning .styled-select select {
    height: 40px;
    font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
}

    .dc-17-subscription-modal .styled-select select option[disabled], .external-site-warning .styled-select select option[disabled] {
        color: #74726f;
        font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

.dc-17-subscription-modal .styled-select:after, .external-site-warning .styled-select:after {
    color: #74726f;
}

.dc-17-subscription-modal .styled-select:before, .external-site-warning .styled-select:before {
    width: 40px;
    height: 37px;
}

.dc-17-subscription-modal p, .external-site-warning p {
    color: #333333;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
}

.modal-header {
    position: relative;
}

    .modal-header a.close {
        font-size: 20px;
        color: #333333;
        position: absolute;
        top: 10px;
        right: 10px;
    }

.modal-content {
    background-color: #eeeceb;
    border-radius: 0;
}

form div.modal-body div.content-entry div.row div.col-md-6 label.required {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: bold;
}

a.btn {
    color: white;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
    height: 50px;
    padding: 0 20px;
    text-transform: none;
    text-decoration: none;
    width: auto;
    display: table-cell;
}

@media (min-width: 1200px) {
    a.btn {
        text-transform: none;
    }
}

a.btn:hover {
    text-decoration: underline;
}

a.btn i.icon, a.btn i.fa {
    margin-right: 15px;
}

a.btn i.icon-small-pdf {
    margin-right: 20px;
}

a.btn:hover {
    background-image: none;
    color: white;
}

a.btn-green {
    background: #9f9c2f;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
}

a.btn-blue {
    background: #0083b6;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
}

a.btn-purple {
    background: #3A1392;
}


a.btn-purple-noarrow {
    background: #3A1392;
    color: #ffffff
}

    a.btn-purple-noarrow:hover {
        background: #7C858E;
        color: #ffffff;
    }


a.btn-pink {
    background: #e8dbe2;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    color: #333333;
}

    a.btn-pink i.fa {
        color: #333333;
    }

    a.btn-pink:hover {
        color: #333333;
    }

a.btn-grey {
    background: #C8CDCF;
    color: #3A1392;
}

    a.btn-grey i.fa {
        color: #3A1392;
    }

    a.btn-grey:hover i.fa {
        color: #FFFFFF;
    }

    a.btn-grey:hover {
        background: #7C858E;
        color: #FFFFFF;
        text-decoration: none
    }

a.btn-teal {
    background: #2d6b73;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    font-size: 17px;
}

.c-11-contact-us, .c-12-subscribe, .c-21-download, .dc-05-event-registration,
.c-45-fma-apply-for-certification-button, .c-37-subscription-promo .btn-wrapper,
.c-50-fma-report-counterfeiting-button, .c-59-fma-download-pdf-button {
    width: 100%;
    display: table;
}

.eu-cookie-notification {
    background: #722750;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    display: none;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    text-align: center;
    padding: 10px 20px;
}

    .eu-cookie-notification p {
        padding: 0;
        margin: 0;
        color: white;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.5;
    }

    .eu-cookie-notification .wrapper {
        margin: 15px auto;
        display: table;
        border-spacing: 15px;
    }

    .eu-cookie-notification .btn {
        line-height: 1;
        margin: 15px;
    }

    .eu-cookie-notification .tdleft {
        float: left;
        position: relative;
        top: 1px;
        left: auto;
    }

    .eu-cookie-notification .tdright {
        float: right;
        height: auto;
        align-content: center;
    }

    .eu-cookie-notification .tdmain {
        padding: 1px 10px;
        height: auto;
    }

.message-notification {
    background: #5d6469;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(93, 100, 105, 1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(93, 100, 105, 1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    display: none;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    text-align: center;
    padding: 10px 20px;
}

    .message-notification p {
        padding: 0;
        margin: 0;
        color: white;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.5;
    }

    .message-notification .wrapper {
        margin: 15px auto;
        display: table;
        border-spacing: 15px;
    }

    .message-notification .btn {
        line-height: 1;
        margin: 15px;
    }

    .message-notification .tdleft {
        float: left;
        position: relative;
        top: 1px;
        left: auto;
    }

    .message-notification .tdright {
        float: right;
        height: auto;
        align-content: center;
    }

    .message-notification .tdmain {
        padding: 1px 10px;
        height: auto;
    }

.video-container {
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 75%;
}

@media (max-height: 400px) {
    .video-container {
        width: 80%;
        margin: 0 auto;
    }
}

.video-js {
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 75%;
}

@media (max-height: 400px) {
    .video-js {
        width: 80%;
        margin: 0 auto;
    }
}



/***************************
 * Fullscreen display      *
 ***************************/
body.vjs-full-window {
    padding: 0;
    margin: 0;
    height: 100%;
}

.video-js.vjs-fullscreen {
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.video-js:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important; /*12/11 Suja added this for Safari in macbook*/
    /*z-index: 9999 !important;*/
    z-index: 2147483647 !important;
    opacity: 0;
}

.video-js.vjs-fullscreen.vjs-user-inactive {
    cursor: none;
}

.BrightcoveExperience {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*}*/

.generic-video .modal-backdrop.in {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.75;
}

.generic-video .modal-content {
    background-color: black;
}

.generic-video .modal-dialog {
    width: auto;
    max-width: 800px;
}

.generic-video h1 {
    color: #eeeceb;
    display: inline-block;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 24px;
    line-height: 30px;
    padding-top: 20px;
    text-transform: none;
}

@media (min-width: 768px) {
    .generic-video h1 {
        max-width: 50%;
    }
}

.generic-video .modal-header a.close {
    color: #404040;
}

.generic-video .loading {
    position: absolute;
    top: 50%;
    left: 50%;
}

a.popup-video-link {
    display: block;
    position: relative;
    width: 100%;
    z-index: 0; /*11/29 Suja - added this for the black play button showing up in large video block to disappear in full screen mode of html5 player*/
}

    a.popup-video-link:before {
        content: '\e80d';
        font-family: 'fm-global';
        font-size: 75px;
        position: absolute;
        top: 50%;
        left: 50%;
        line-height: 100%;
        color: black;
        z-index: 5;
        -ms-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    a.popup-video-link:after {
        content: ' ';
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        background-color: white;
        z-index: 4;
        -ms-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    a.popup-video-link:hover {
        text-decoration: none;
    }

    a.popup-video-link img {
        width: 100%;
    }

.gated-report table.listing-table th, .gated-report table.listing-table td {
    width: auto;
}

@media (max-width: 768px) {
    .gated-report table.listing-table td {
        width: 50%;
        margin-right: 0;
        padding-top: 0;
        padding-right: 10px;
    }

        .gated-report table.listing-table td:first-child {
            padding-top: 25px;
        }

        .gated-report table.listing-table td.email {
            width: 100%;
        }
}

.gated-report .divided-col label {
    display: inline;
    float: left;
    line-height: 50px;
    margin-bottom: 0;
    margin-right: 10px;
}

.gated-report .refine-search {
    height: 50px;
}

.gated-report .styled-select {
    position: relative;
    display: inline;
    float: left;
}

@media (min-width: 768px) {
    .gated-report .styled-select {
        min-width: 500px;
    }
}

.gated-report .styled-select select {
    font-family: "robotobold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
}

.main-content {
    /* gap between columns on desktop */
}

@media (min-width: 1200px) {
    .main-content {
        padding-right: 95px;
    }
}

.main-content.no-padding {
    margin-bottom: 0;
}

.rail-content {
    /* full bleed on mobile */
    padding: 0;
    /*z-index:-1;*/ /*11/28 Suja for html5 full screen video*/
}

.content-full-width > .row, .container-fluid > .row {
    margin: 0;
}

    .content-full-width > .row > div[class^="col-"], .container-fluid > .row > div[class^="col-"] {
        padding: 0;
    }

main {
    position: relative;
}

    main .container {
        margin-top: 10px;
    }

@media (min-width: 768px) {
    main .container {
        margin-top: 40px;
    }
}

/* Desktop-, Tablet-, and Mobile-Only Settings */
@media (max-width: 480px) {
    .desktop-only {
        display: none !important;
    }

    .tablet-only {
        display: none !important;
    }

    .desktop-tablet {
        display: none !important;
    }
}

@media (min-width: 480px) and (max-width: 1200px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .mobile-only {
        display: none !important;
    }

    .tablet-only {
        display: none !important;
    }

    .mobile-tablet {
        display: none !important;
    }
}
/* ensure modal is never taller than screen */
.modal-body {
    max-height: none;
}

.modal-dialog {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    top: 30px;
    padding: 0 !important;
}

@media screen and (max-width: 768px) {
    .modal-dialog {
        top: 15px;
        max-height: calc(100vh - 100px);
        margin: 0 10px;
    }
}

@media (max-height: 400px) {
    .modal-dialog {
        top: 0;
        max-height: 100vh;
    }
}
/* fix for modal being too wide on some screens */
@media screen and (min-width: 768px) {
    .modal-dialog {
        width: 758px;
        top: 10vh;
        max-height: 90vh;
    }
}

@media screen and (min-width: 992px) {
    .modal-dialog {
        width: 982px;
    }
}

.modal-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* Promo and Button Styling Classes */
.promo-gold {
    background-color: #ebead8;
}

    .promo-gold h1 {
        background-color: #cbc99c;
    }

.promo-silver {
    background-color: #f0efee;
}

    .promo-silver h1 {
        background-color: #e2e0de;
    }

.promo-blue {
    background-color: #ccdae4;
}

    .promo-blue h1 {
        background-color: #B8CAD6;
    }

.promo-grey {
    background-color: #D5DADD;
}

    .promo-grey h1 {
        background-color: #D5DADD;
    }

    .promo-grey figcaption ul {
        color: #3A1392
    }

.promo-pink {
    background-color: #ecd1d4;
}

    .promo-pink h1 {
        background-color: #ecd1d4;
    }

.promo-orange {
    background-color: #f6decc;
}

    .promo-orange h1 {
        background-color: #f6decc;
    }

.promo-teal {
    background-color: #d5e2e3;
}

    .promo-teal h1 {
        background-color: #2d6b73;
        color: white;
    }

.pull-right {
    float: right !important;
}

a.cta-link {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    text-decoration: none;
}

    a.cta-link i.fa {
        padding: 5px;
        display: inline-block;
        border-radius: 100px;
        height: 20px;
        width: 20px;
        background-color: transparent;
        color: #722750;
        border: 2px solid #722750;
        font-size: 10px;
        margin-right: 10px;
        padding: 4px;
        padding-left: 5px;
        position: relative;
        top: -2px;
    }

/* Used in c-02, c-06, etc */
figure h1 {
    padding: 20px;
    margin: 0;
}

@media (min-width: 768px) and (max-width: 1200px) {
    figure h1 {
        padding: 20px 8%;
    }
}

figure img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) and (max-width: 1200px) {
    figure img {
        padding: 0;
    }
}

figcaption {
    padding: 10px 20px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    figcaption {
        padding: 10px 8% 10px;
    }
}

figcaption h2 {
    text-transform: none;
}

figcaption p {
    margin: 10px 0;
}

    figcaption p a {
        display: inline;
        margin: 0;
    }

figcaption a {
    margin: 10px 0;
    display: block;
}

figcaption i.fa {
    font-weight: bold;
    margin-right: 7px;
}

.c-06-promo-block figcaption ul.actions li:hover a, .c-06-promo-block figcaption ul.actions li:hover:after {
    color: #525252;
}

ul.actions {
    margin: 10px 0;
}

    ul.actions li {
        padding-left: 25px;
        position: relative;
    }

        ul.actions li:hover {
            cursor: pointer;
        }

            ul.actions li:hover a, ul.actions li:hover a:hover {
                text-decoration: underline;
            }

        ul.actions li:after {
            box-sizing: border-box;
            content: '\e80b';
            font-family: "fm-global";
            font-size: 18px;
            color: #3A1392;
            position: absolute;
            left: 0;
            top: -2px;
            padding: 1px;
        }

hr {
    background-color: #cacaba;
    border: none;
    height: 2px;
}

i.icon {
    padding: 1px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.divider {
    margin-left: 5px;
}

    .divider:before {
        content: '|';
        margin-right: 5px;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    }

.info-block {
    color: #666666;
    padding-top: 10px;
}

@media (min-width: 768px) {
    .info-block {
        padding-top: 0;
    }
}

.field-validation-error {
    color: #9f1b29;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 14px;
}

.print-share {
    font-size: 12px;
    text-transform: uppercase;
}

.rail-item {
    margin-bottom: 30px;
}

.sticky-rail {
    background: #404040;
    margin: 0 0 30px 0;
    padding: 20px;
}

@media (max-width: 768px) {
    .sticky-rail div[class*="col-"] {
        margin: 10px 0;
    }
}

.sticky-rail .rail-item {
    margin-bottom: 0;
}

.sticky-nav-scrolled {
    margin: 0;
    position: fixed;
    top: 0;
    width: 100%;
}

    .sticky-nav-scrolled ul {
        margin: 0 auto;
    }

.resilienceindex li:before {
    content: '';
}

.resilienceindex .resilienceindexSpiderPopup div {
    float: left;
    width: 100%;
}

.resilienceindex .resilienceindexSpiderPopup .label {
    float: left;
    width: auto;
    margin: 0;
}

.resilienceindex .resilienceindexSpiderPopup .value {
    float: right;
}

label.inline-label {
    display: inline-block;
    margin: 5px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

    label.inline-label input {
        margin: 0;
        position: absolute;
        left: 0;
        top: 1px;
    }

/* styling for fancy checkboxes and radio buttons */
input[type="radio"], input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

    input[type="radio"] + label:not(.error), input[type="checkbox"] + label:not(.error) {
        position: relative;
        padding-left: 30px;
    }

        input[type="radio"] + label:not(.error):before, input[type="checkbox"] + label:not(.error):before {
            background-color: white;
            border: 5px solid white;
            border-radius: 50%;
            box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
            content: ' ';
            cursor: pointer;
            display: inline-block;
            height: 10px;
            position: absolute;
            left: 0px;
            top: 0;
            width: 10px;
            -webkit-transition: background-color 0.1s linear;
            transition: background-color 0.1s linear;
            vertical-align: middle;
            -moz-border-radius: 50%;
            -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
            -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
            -webkit-transition: background-color 0.1s linear;
            -o-transition: background-color 0.1s linear;
            -moz-transition: background-color 0.1s linear;
        }

    input[type="radio"]:checked + label:not(.error):before, input[type="checkbox"]:checked + label:not(.error):before {
        background-color: #74726f;
    }

    input[type="radio"]:focus + label:not(.error):before, input[type="checkbox"]:focus + label:not(.error):before {
        box-shadow: 0 0 3px #722750;
        -webkit-box-shadow: 0 0 3px #722750;
        -moz-box-shadow: 0 0 3px #722750;
    }

    input[type="checkbox"] + label:not(.error):before {
        border-radius: 0;
        top: -3px;
    }

    input[type="checkbox"]:checked + label:not(.error):before {
        background-color: white;
    }

    input[type="checkbox"]:checked + label:after {
        content: "\f00c";
        color: #404040;
        font-family: 'FontAwesome';
        position: absolute;
        top: 0px;
        left: 3px;
    }

.styled-select {
    position: relative;
}

    .styled-select select {
        height: 30px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        padding-right: 20px;
        width: 100%;
    }

        .styled-select select::-ms-expand {
            display: none;
        }

    .styled-select:after {
        content: "\f078";
        position: absolute;
        right: 25px;
        top: 50%;
        height: 20px;
        margin-top: -10px;
        color: #333333;
        font-family: 'FontAwesome';
        pointer-events: none;
        z-index: 10;
        cursor: default;
    }

/* this hack is purely for Firefox 34 which doesn’t want to hide the native arrow */
@-moz-document url-prefix() {
    .styled-select:before {
        content: " ";
        width: 25px;
        height: calc(100% - 3px);
        background-color: white;
        position: absolute;
        right: 1px;
        top: 2px;
        pointer-events: none;
        z-index: 5;
    }
}
/* this hack is purely for IE 9 which needs to use the native arrow instead of the styled arrow */
.ie9 .styled-select select {
    padding-right: 5px;
}

.ie9 .styled-select:after {
    content: '';
}

.dropdown {
    position: relative;
}

    .dropdown .more-in {
        color: #74726f;
    }

    .dropdown .psuedo-select {
        background: #FFFFFF;
        display: inline-block;
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 16px;
        font-style: italic;
        padding: 12px;
        position: relative;
        text-align: left;
        text-decoration: none;
        text-transform: none;
        width: 100%;
    }

        .dropdown .psuedo-select:after {
            content: "\f078";
            color: #74726f;
            font-family: FontAwesome;
            font-size: 16px;
            font-style: initial;
            position: absolute;
            right: 10px;
        }

    .dropdown ul {
        box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
        background-color: #f0efee;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 99;
    }

        .dropdown ul li {
            color: #333333;
            border-bottom: 2px solid #FFFFFF;
            font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
            font-size: 18px;
            padding: 12px;
            cursor: pointer;
        }

span.more-in {
    color: #FFFFFF;
    font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-transform: uppercase;
    font-style: normal;
}

@media (min-width: 768px) and (max-width: 1200px) {
    span.more-in {
        /* tablet */
        color: #74726f;
    }
}

span.more-in span {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: normal;
}
/* Begin fm-form */

.fm-form {
    margin: 0;
}

    .fm-form label {
        font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 12pt;
    }

        .fm-form label.inline {
            display: inline-block;
        }

    .fm-form input,
    .fm-form select,
    .fm-form textarea {
        background: #f5f5f6;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 12pt;
        border-radius: 0;
        box-shadow: none;
        border: 2px solid #f5f5f6;
        width: 100%;
        height: 40px;
        position: static;
    }

    .fm-form textarea {
        height: 200px;
    }

    .fm-form input:focus,
    .fm-form select:focus,
    .fm-form textarea {
        border: 1px solid #722750;
    }

    .fm-form input[type="checkbox"] {
        width: 1.25em;
        height: 1.25em;
        margin: -.1em .1em 0 0;
        position: static;
        opacity: 1;
    }

    .fm-form input[name="SelectedSubscriptions"] {
        display: none;
    }

input#toc {
    display: none;
}

.fm-form input.btn,
.fm-form button.btn {
    background: #0083b6;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 0;
    color: #ffffff;
    width: 200px;
    height: 40px;
    padding: 0;
}

    .fm-form input.btn:hover {
        text-decoration: underline;
        background-image: none;
    }

.fm-form .row div[class^="col-"] {
    padding-bottom: 10px;
}

@media (min-width: 768px) {
    .fm-form .row div[class^="col-"] {
        padding-bottom: 20px;
    }
}

/* End fm-form */

.d-none {
    display: none;
}

/* Begin flex */

.flex-row {
    display: flex;
    flex-direction: row;
    padding: .25em;
}

.flex-row-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding: .25em;
}

.flex-col {
    display: flex;
    flex-direction: column;
    padding: .25em;
}

.flex-item {
    flex-grow: 1;
    flex-shrink: 1;
}

.flex-check-list {
    display: flex;
    flex-direction: row;
}

    .flex-check-list > label {
        flex-grow: 1;
        flex-shrink: 1;
    }

.flex-vertical-center {
    align-items: center;
}

/* End flex */

.search-box {
    display: inline-block;
    padding: 0;
    position: relative;
}

    .search-box input[type="search"] {
        font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 18px;
        height: 40px;
        width: 100%;
        padding: 0 20px;
        line-height: 40px;
        padding-right: 85px;
        margin: 0;
        -webkit-appearance: none;
        border-radius: 0;
        color: #333333;
    }

        .search-box input[type="search"]:-moz-placeholder {
            color: #333333;
            font-size: 18px;
        }

        .search-box input[type="search"]::-moz-placeholder {
            color: #333333;
            font-size: 18px;
        }

        .search-box input[type="search"]:-ms-input-placeholder {
            color: #333333;
            font-size: 18px;
        }

        .search-box input[type="search"]::-webkit-input-placeholder {
            color: #333333;
            font-size: 18px;
        }

@media (min-width: 768px) {
    .search-box input[type="search"] {
        height: 40px;
        font-size: 16px;
        padding-right: 45px;
    }
}

.search-box i.fa-search {
    background: #333333;
    /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
    /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    /* W3C */
    color: #FFFFFF;
    display: inline;
    font-size: 20px;
    height: 40px;
    width: 40px;
    padding: 10px;
    top: 0;
    right: 0;
    position: absolute;
    cursor: pointer;
}

@media (min-width: 768px) {
    .search-box i.fa-search {
        height: 40px;
        width: 40px;
        font-size: 20px;
        padding: 10px;
    }
}

.search-box i.fa-search:hover {
    background-image: none;
}

i.search-tooltip {
    right: -30px;
    position: absolute;
    top: 12px;
    color: #722750;
    border-radius: 50%;
    background: white;
    border: 2px solid #722750;
    font-weight: bold;
    font-family: 'Georgia';
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
    z-index: 10;
}

.active i.search-tooltip {
    display: none;
}

i.search-tooltip.open {
    background: #722750;
    color: white;
    border-color: white;
}

    i.search-tooltip.open label {
        display: block;
    }

i.search-tooltip label {
    display: none;
    position: absolute;
    padding: 20px;
    border: 2px solid #722750;
    background: white;
    color: #722750;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-style: normal;
    width: 275px;
    left: 50%;
    top: 30px;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 14px;
    text-align: left;
    text-transform: none;
}

    i.search-tooltip label:before, i.search-tooltip label:after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        top: -10px;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    i.search-tooltip label:before {
        border-width: 0 8px 10px 8px;
        border-color: transparent transparent #722750 transparent;
    }

    i.search-tooltip label:after {
        top: -7px;
        border-width: 0 5px 7px 5px;
        border-color: transparent transparent white transparent;
    }

.to-top {
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 18px;
}

@media (max-width: 480px) {
    .to-top {
        float: none;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

.to-top a[class*="btn"] {
    color: #722750;
    margin-left: 20px;
}

    .to-top a[class*="btn"] i.icon {
        font-size: 18px;
    }

.required:after {
    content: '*';
    color: #9f1b29;
    margin: 0 5px;
}

ul.single-row-table {
    margin: 30px 0;
    overflow: auto;
}

@media (min-width: 768px) {
    ul.single-row-table {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
}

ul.single-row-table li.cell {
    vertical-align: top;
    margin-bottom: 30px;
    text-align: center;
    width: 50%;
    float: left;
    padding-left: 10px;
}

@media (min-width: 768px) {
    ul.single-row-table li.cell {
        text-align: left;
        margin-bottom: 0;
        display: table-cell;
        width: auto;
        float: none;
        padding: 0;
    }
}

ul.single-row-table li.cell:before {
    content: '';
}

ul.single-row-table li.cell img {
    max-width: 150px;
    padding: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    ul.single-row-table li.cell img {
        margin: 0;
    }
}

ul.single-row-table figcaption {
    padding: 10px 0;
}

    ul.single-row-table figcaption h2 a {
        font-size: 26px;
    }

    ul.single-row-table figcaption .meta-title {
        font-size: 18px;
    }

ul.single-row-table.divided li.cell {
    text-align: center;
}

@media (min-width: 768px) {
    ul.single-row-table.divided li.cell {
        border-right: 1px solid #767471;
    }
}

ul.single-row-table.divided li.cell:last-child {
    border: none;
}

ul.single-row-table.divided li.cell img {
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto;
}

.social {
    display: inline;
    /* Styling for desktop and tablet includes labels */
}

    .social .tag, .social .icon-list {
        padding: 0;
        margin-bottom: 5px;
        float: left;
    }

        .social .icon-list ul {
            display: table;
            table-layout: fixed;
        }

            .social .icon-list ul li {
                border: none;
                display: table-cell;
                padding: 6px;
                text-align: center;
            }

            .social .icon-list ul i.fa {
                padding: 8.25px;
                display: inline-block;
                border-radius: 100px;
                height: 33px;
                width: 33px;
                background-color: blue;
                color: #FFFFFF;
                font-size: 15px;
                cursor: pointer;
                /* Colors for specific brand icons */
            }

                .social .icon-list ul i.fa.fa-linkedin {
                    background: #1864b8;
                    /* FF3.6+ */
                    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
                    /* Chrome,Safari4+ */
                    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* Chrome10+,Safari5.1+ */
                    /* Opera 11.10+ */
                    /* IE10+ */
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* W3C */
                }

                .social .icon-list ul i.fa.fa-facebook {
                    background: #3c59ab;
                    /* FF3.6+ */
                    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
                    /* Chrome,Safari4+ */
                    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* Chrome10+,Safari5.1+ */
                    /* Opera 11.10+ */
                    /* IE10+ */
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* W3C */
                }

                .social .icon-list ul i.fa.fa-twitter {
                    background: #56bfec;
                    /* FF3.6+ */
                    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
                    /* Chrome,Safari4+ */
                    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* Chrome10+,Safari5.1+ */
                    /* Opera 11.10+ */
                    /* IE10+ */
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* W3C */
                }

                .social .icon-list ul i.fa.fa-youtube-play {
                    background: #e34936;
                    /* FF3.6+ */
                    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
                    /* Chrome,Safari4+ */
                    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* Chrome10+,Safari5.1+ */
                    /* Opera 11.10+ */
                    /* IE10+ */
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* W3C */
                }

                .social .icon-list ul i.fa.fa-envelope {
                    background: #7b7720;
                    /* FF3.6+ */
                    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
                    /* Chrome,Safari4+ */
                    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* Chrome10+,Safari5.1+ */
                    /* Opera 11.10+ */
                    /* IE10+ */
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* W3C */
                }

                .social .icon-list ul i.fa.fa-image {
                    background: #7d7921;
                    /* FF3.6+ */
                    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
                    /* Chrome,Safari4+ */
                    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* Chrome10+,Safari5.1+ */
                    /* Opera 11.10+ */
                    /* IE10+ */
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* W3C */
                }

                .social .icon-list ul i.fa.fa-file-text-o {
                    background: #7d7921;
                    /* FF3.6+ */
                    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.1)));
                    /* Chrome,Safari4+ */
                    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* Chrome10+,Safari5.1+ */
                    /* Opera 11.10+ */
                    /* IE10+ */
                    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
                    /* W3C */
                }

@media (min-width: 768px) {
    .social div {
        padding: 0;
        margin-bottom: 5px;
    }
        .social div ul {
            margin: 0;
        }

            .social div ul li {
                margin: 0;
                padding: 0;
            }
}

.subhead {
    padding: 0;
    overflow: auto;
}

@media (min-width: 1200px) {
    .subhead {
        border-bottom: 1px solid #cacaba;
        padding: 65px 0;
    }
}

.subhead:last-of-type {
    border: none;
}

@media (min-width: 1200px) {
    .subhead .rail-item:last-of-type {
        margin-bottom: 0;
    }
}

.subhead .container {
    margin-top: 0;
}

.subhead article {
    margin: 0 auto;
}

    .subhead article > h2 {
        color: #6e6358;
        font-family: "roboto_condensedbold", Arial, "Helvetica Neue", Helvetica, sans-serif;
        font-size: 35px;
        text-transform: uppercase;
    }

@media (min-width: 768px) {
    .subhead article > h2 {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    .subhead article > h2 {
        margin-top: 30px;
    }
}

.subhead article h3 {
    color: #333333;
    font-family: "roboto_condensedregular", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 25px;
    margin: 0;
}

@media (min-width: 768px) {
    .subhead article h3 {
        font-size: 32px;
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    .subhead article p {
        margin-bottom: 30px;
    }
}

.subhead .c-07-promo-list, .subhead .promo-list {
    margin-bottom: -30px;
}

/*
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

/* display none until init */
.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

    .owl-carousel .owl-wrapper {
        display: none;
        position: relative;
        -webkit-transform: translate3d(0px, 0px, 0px);
    }

    .owl-carousel .owl-wrapper-outer {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

        .owl-carousel .owl-wrapper-outer.autoHeight {
            -webkit-transition: height 500ms ease-in-out;
            transition: height 500ms ease-in-out;
        }

    .owl-carousel .owl-item {
        float: left;
    }

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
    cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

/* navigation arrows */
.owl-theme .owl-controls .owl-buttons div {
    padding: 5px 9px;
}

.owl-theme .owl-buttons i {
    margin-top: 2px;
}

.owl-theme .owl-controls .owl-buttons div {
    position: absolute;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
    left: -35px;
    top: 55px;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
    right: -35px;
    top: 55px;
}

/* Styling Pagination*/
.owl-theme .owl-pagination .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline;
    /*IE7 life-saver */
}

    .owl-theme .owl-pagination .owl-page span {
        display: block;
        width: 12px;
        height: 12px;
        margin: 5px 7px;
        filter: Alpha(Opacity=50);
        /*IE7 fix*/
        opacity: 0.5;
        border-radius: 20px;
        background: #869791;
    }

    .owl-theme .owl-pagination .owl-page.active span,
    .owl-theme .owl-pagination.clickable .owl-page:hover span {
        filter: Alpha(Opacity=100);
        /*IE7 fix*/
        opacity: 1;
    }

.loading,
.loading:before,
.loading:after {
    -webkit-animation: load 1s infinite ease-in-out;
    animation: load 1s infinite ease-in-out;
    background: #979DA2;
    box-shadow: 0 0 #979DA2;
    height: 15px;
    width: 1em;
}

    .loading:before,
    .loading:after {
        content: '';
        position: absolute;
        top: 0;
    }

    .loading:before {
        left: -1.5em;
    }

.loading {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    font-size: 9px;
    margin: 30px auto;
    opacity: .5;
    position: absolute;
    text-indent: -9999em;
    top: -15px;
    left: 50%;
}

    .loading:after {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
        left: 1.5em;
    }

.colorStripe {
    display: flex;
}

.colorStripeSegment {
    height: 14px;
}

.colorStripeSegment.teal {
    width: 25%;
    background-color: #6ABFDD;
}

.colorStripeSegment.gray {
    width: 13%;
    background-color: #5D666F;
}

.colorStripeSegment.purple {
    width: 42%;
    background-color: #7B2B63;
}

.colorStripeSegment.yellow {
    width: 20%;
    background-color: #F5BE58;
}

@-webkit-keyframes load {
    50% {
        box-shadow: 0 -2em #722750;
        height: 30px;
        opacity: 1;
    }
}

@keyframes load {
    50% {
        box-shadow: 0 -2em #979DA2;
        height: 30px;
        opacity: 1;
    }
}

@media print {
    * {
        background: transparent !important;
        color: black !important;
        text-shadow: none !important;
        float: none !important;
        -ms-filter: none !important;
        -webkit-filter: none !important;
        filter: none !important;
    }

    .print-only {
        display: block !important;
    }

    a.menu, div.search-box, nav.utility-nav, nav.c-03-page-nav, figure.c-01-page-banner, div.gc-05-share-print,
    section.c-07-promo-list, .rail-content, a.popup-video-link, aside.c-31-section-menu, .owl-controls, div.sticky-rail,
    div.footer-top, div.footer-middle, div.site-links, div.c-33-print, div.load, form.filter-form, aside.c-26-featured-tl-carousel,
    div.rail-item, ul.tabs, div.bio-rail, div.dc-12-map {
        display: none !important;
    }

    div.brand img.mobile-tablet {
        display: none;
    }

    div.brand img.desktop {
        display: block !important;
        height: auto !important;
    }

    a,
    a:visited {
        color: #333 !important;
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    nav a,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    .gc-03-breadcrumbs a:after {
        content: "\f105";
    }

    a.btn {
        padding: 0;
    }

    figure * {
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        position: relative !important;
        text-align: left !important;
    }

    figure figcaption {
        margin: 30px 0 !important;
    }

    pre, figure,
    blockquote {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3,
    h4,
    h5,
    h6 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    aside.c-09-related-content img {
        display: none !important;
    }

    aside.c-09-related-content div.owl-item {
        width: 100% !important;
    }

        aside.c-09-related-content div.owl-item div.item {
            margin: 0 !important;
        }

    section.c-24-bio-block {
        display: block !important;
    }

    img {
        max-height: 300px !important;
        width: auto !important;
        display: inline !important;
    }

    input, textarea, select {
        border: 1px solid black !important;
    }

    .block-listing {
        padding: 0 !important;
    }

        .block-listing .block-row .block-item {
            display: block;
            width: 100%;
            border: none;
        }

            .block-listing .block-row .block-item figure img {
                display: none !important;
            }

            .block-listing .block-row .block-item figure figcaption * {
                margin: 0 !important;
                position: relative !important;
            }

            .block-listing .block-row .block-item .content {
                margin: 0 !important;
            }

            .block-listing .block-row .block-item .actions, .block-listing .block-row .block-item .event-date {
                position: relative !important;
                text-align: left;
            }
}
