/*
# Website - Style guide

## Kalei style guide generates documentation for your own CSS!

This project aims at making sure your style sheets are fully documented whilst being synchronized with your webpages styles. To do this it actually uses your live stylesheets in so that at anytime you can review how your styleguide looks.

*/
/*
[//]: # (Body and font sizes)
*/

html {
    font-family: Helvetica, Arial, sans-serif;
    /*letter-spacing: .03em;*/
    line-height: 62.5%;
    color: #222;
    font-size: 62.5%;
}


@media (max-width:991px) {
    html {
        font-size: 46%;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    html {
        font-size: 56%;
    }
}

body {
    font-size: 1.4rem;
    line-height: normal;
    transition:all 0.5s;
    opacity:0
}

/*
# Heading Examples
 ```
    <h1>Heading 1</h1>
    <h2>Heading 2</h2>
    <h3>Heading 3</h3>    
    <h4>Heading 4</h4>    
```
*/
h1, h2, h3, h4, h5 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2.2rem;
    line-height: 2.1rem;
    margin-bottom: 2.0rem;
    font-weight: normal;
}

h2 {
    font-size: 2.0rem;
    line-height: 1.9rem;
    margin-bottom: 2.0rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.3rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.8rem;
    line-height: 1.2rem;
    margin-bottom: 1rem;
}


/*
# Paragraph text
```
    <p class="fixie"></p>
```
*/
p {
    font-size: 1.4rem;
    margin: 0 0 1.0rem 0;
    line-height: 2rem;
}



picture, img {
    display: block;
}

.row-fluid p img,
.row-fluid .width-initial,
.row-fluid .width-initial img {
    width: initial;
}

figure {
    margin: 0;
}


/*
# Unordered List
```
    <ul>
        <li>List item 1</li>
        <lh>A list heading</lh>
        <li>List item 2</li>
    </ul>
```
# Ordered List
```
    <ol>
        <li>List item 1</li>
        <li>List item 2</li>
    </ol>
```
*/

ul, ol {
    font-size: 1.6rem;
    padding: 0;
    margin: 0 0 2.0rem 0;
    /* overflow: hidden;*/
}

    ul lh, ol, lh {
        /*font-weight: bold;*/
    }

    ul li {
        list-style: outside;
        margin-left: 16px;
    }

    ol > li {
        list-style: decimal;
        list-style-position: inside;
    }

    ol.alpha > li {
        list-style: upper-alpha;
    }

/*
# Links
```
    <a href="javascript:void(0);">Link</a>
```
*/

a {
    /* font-size: 1.4rem; */
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    color: #000;
    text-decoration: underline;
}

    a:hover, a.active {
        text-decoration: underline;
    }

p a {
    text-decoration: underline;
}

a.cta-button-in-detailpage {
    text-decoration: none;
}

    a.cta-button-in-detailpage:hover {
        text-decoration: underline;
    }

/*
# Other
```
    <time>Jan 01 0001</time>
    <hr/>
```
*/
time {
    font-size: inherit;
    margin: 0 0 2.0rem 0;
}

hr {
    margin: 1rem 0;
}


/*
[//]: # (Page Structure)
[//]: # (**************)
*/

header {
    padding: 1.5em 0;
}

main {
    margin-top: 1em;
}

@media (min-width:768px) {
    header .logo {
        margin-top: 10px;
    }
}

/*
[//]: # (Navigation)
[//]: # (**********)
*/
@media(min-width:768px) {
    .accessible-megamenu .accessible-megamenu-panel > ol > li > h3 > a {
        font-size: 16px
    }




    .nav-wrapper {
        display: block !important;
        overflow: auto;
        width: 100%;
        margin-right: 25px;
    }
}

nav {
    float: left;
    /*padding-left:1em;*/
}

    nav ul {
        background-color: #fff;
    }

        nav ul li {
            list-style: none;
            padding: 1rem;
        }

            nav ul li:first-child {
                padding-left: 0;
            }

            nav ul li:last-child {
                padding-right: 0;
            }

            nav ul li a {
                font-size: 1.4rem;
                padding: .4rem 0;
                color: #222;
                text-decoration: none;
            }

                nav ul li a:hover {
                    text-decoration: none;
                }

                nav ul li a:first-child {
                    padding-left: 0;
                }


        /*
[//]: # (One Level Navigation)
*/

        nav ul.level-one { /*float:right;*/
            text-transform: uppercase;
            float: left;
        }

header .search-field {
    float: right;
}

@media (min-width: 768px) {
    nav ul.level-one {
        display: block;
        margin-bottom: 0;
    }

        nav ul.level-one li {
            float: left;
            list-style: none;
            margin: 0;
        }

        nav ul.level-one.hover > li:hover ul.level-two {
            display: block;
        }
}
/*
[//]: # (Two Level Navigation)
*/
nav ul.level-two {
    display: none;
    position: absolute;
    z-index: 2;
    width: 100%;
    border: solid 1px #e9e9e9;
    /*background: #e9e9e9;*/
}

@media (min-width: 768px) {
    nav ul.level-two.hover li:hover ul.level-three {
        display: block;
    }
}

/*
[//]: # (Three Level Navigation)
*/
nav ul.level-three {
    display: none;
}

@media (min-width: 768px) {
    nav ul.level-three.hover li:hover ul {
        display: block;
    }
}

/*
[//]: # (Hamburger)
*/
nav .hamburger {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

    nav .hamburger img {
        width: 56%;
        max-width: 44px;
    }

    nav .hamburger a {
        cursor: pointer;
        padding: 10px 36px 16px 0;
        z-index: 999;
        position: absolute;
        right: 3.5rem;
    }

@media (min-width: 768px) {

    nav .hamburger {
        display: none;
    }

    nav.fly-out .hamburger {
        display: block;
    }
}


.hamburger span,
.hamburger span:before,
.hamburger span:after {
    cursor: pointer;
    border-radius: 3px;
    height: 5px;
    width: 35px;
    background: #2d499d;
    position: absolute;
    display: block;
    content: '';
}

    .hamburger span:before {
        top: -10px;
    }

    .hamburger span:after {
        bottom: -10px;
    }


.hamburger-animate span,
.hamburger-animate span:before,
.hamburger-animate span:after {
    transition: all 100ms ease-in-out;
}

.hamburger-animate.active span {
    background-color: transparent;
}

    .hamburger-animate.active span:before, #nav-toggle.active span:after {
        top: 0;
    }

    .hamburger-animate.active span:before {
        transform: rotate(45deg);
        top: 0px;
    }

    .hamburger-animate.active span:after {
        transform: rotate(-45deg);
        bottom: 0px;
    }

/*
[//]: # (Flyout)
*/
nav.fly-out .wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .2);
}

    nav.fly-out .wrapper.menu {
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
    }

nav.fly-out nav .hamburger {
    display: none;
}

@media (max-width:767px) {
    nav.fly-out .wrapper.menu {
        height: 75vh;
    }
}

@media (min-width: 768px) {
}

/*
[//]: # (Footer Navigation)
*/
footer {
    margin-top: 60px;
    padding: 3em 0;
    background: #e9e9e9;
}

@media (min-width: 768px) {
}




/*
[//]: # (Common styles for responsive and layout)
[//]: # (***************************************)
*/

.collapse {
    display: none;
}

.expand {
    display: block !important;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}


.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

@media (min-width: 768px) {
    .no-padding-sm {
        padding: 0;
    }

    .no-margin-sm {
        margin: 0;
    }
}


.center-text {
    text-align: center;
}

.strong {
    font-weight: 900;
}

.no-border {
    border: none !important;
}

.right {
    float: right;
    right: 0;
}

.bottom {
    position: absolute;
    bottom: 0;
}

@media (min-width: 768px) {
    .right-sm {
        float: right;
        right: 0;
    }
}


.full-width {
    position: relative;
    width: calc(100vw);
    left: 0;
    margin-left: calc(-50vw + 50%) !important;
}

.full-container {
    width: 100% !important;
}

.half-container {
    width: 50% !important;
}


/*
[//]: # (Screen Read AODA)
[//]: # (****************)
*/
.off-screen {
    position: absolute;
    left: -99999px
}

/*:focus { background: inherit !important; color:#000 !important; }*/

.accessible {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    color: #fff;
}

    .accessible:focus {
        position: static;
        width: auto;
        height: auto;
        color: #000
    }


/*
[//]: # (TypeKit fix for FOUT on firefox)
[//]: # (*******************************)
*/
.wf-loading {
    visibility: hidden; /* Hide elements while web fonts are loading */
}

/*
[//]: # (Handle Flash of Unstyled Content)
[//]: # (********************************)
*/
.fouc {
    display: none;
}


/*
[//]: # (Magnific popup Overrides)
[//]: # (************************)
*/
.mfp-inline-holder .mfp-content {
    width: initial !important;
}


/*
[//]: # (responsive video)
[//]: # (****************)
*/
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/*
[//]: # (Content Card in Grid)

# Content Card in Grid
```
    <div class="row-fluid equal-height-js grey-bg">
        <div class="span-4 col-sm-4">
            <div class="inner">
                <p>inner stuff</p>
            </div>
        </div>
    </div>
```
*/
[class*=span] .inner {
    height: 100%;
}

.grey-bg [class*=span] .inner {
    padding: 1rem;
    background-color: #cccccc;
}


/*
[//]: # (Form.css Override) 
*/
.form-row label, .form-row span.validation, .form-row .tip, .form-row .tool-tip, .form-row input, .form-row textarea, .form-row keygen, .form-row select, .form-row button {
    font-size: 1.4rem;
}


/*
# Input's
    Most forms will be laid out as per /StyleGuide/#/style/OAA/css/advantage.2.0.css 
    Overrides here for border and colors;
```
    <input type="text" /><br/>
    <select>
		<option value="Please Select">Please Select</option>
	</select><br/>
    <textarea rows="2" cols="20"></textarea><br/>
```
*/
input[type=text],
input[type=password],
select,
textarea {
    padding: 10px 5px !important;
    border: 1px solid #999;
    border-radius: 0;
    -moz-box-shadow: inset 0 0 0px #DDDDDD;
    -webkit-box-shadow: inset 0 0 0px #DDDDDD;
    box-shadow: inset 0 0 0px #DDDDDD; /*Inner Shadow*/
    color: rgb(68, 68, 68);
    height: 58px !important
}

header .search-field input[type=text] {
    height: auto !important
}

.SumoSelect > .CaptionCont {
    height: 58px !important
}

input[type=text]:hover,
input[type=password]:hover,
select:hover,
.list-control:hover,
textarea:hover {
    border-color: #555;
}

input[type=text]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
    border-color: #2d499d;
}


/*
# Button 
```
    <a href="" class="button">Button</a>
    <input type="submit" value="Button" />
```
*/
.button,
input[type=submit], .ruFileInput {
    background-color: #000;
    padding: 2.0rem 10rem 2rem 2rem !important;
    color: #fff;
    font-size: inherit;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    border: none;
    /*background-image: url('/OAA/Assets/Images/button-arrow.png');*/
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    text-align: left;
    font-weight: bold;
    background: #2D425E;
    border: 2px solid #fff;
    border-radius: 5px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}


}

    .button:hover,
    input[type=submit]:hover, .cta-button-in-detailpage:hover {
        background-color: #58595B;
        color: #fff !important;
    }


/*
[//]: # (Tabbed Content)
[//]: # (**************)
[//]: # (*Tabbed Content styles not needed with bootstrap)
*/

.tabbed .tabbed-nav {
    text-align: center;
    margin-bottom: 0;
}


    .tabbed .tabbed-nav li a {
        color: #000000
    }

    .tabbed .tabbed-nav li.active {
        color: #fff;
        border-bottom: 4px solid #000000;
        background-color: #ffffff;
    }

    .tabbed .tabbed-nav li:last-child {
        border-right: 1px solid #ffffff;
    }


.tabbed-content.tab-content {
    padding: 4em 0 0 0;
    border: 1px solid #ffffff;
    background: #ffffff;
    border-top-color: #000000
}

.tabbed .tabbed-content .tab-pane {
    display: none;
}

@media(min-width: 768px) {
    .tabbed .tabbed-nav li {
        float: left;
        list-style: none;
        margin: 0;
        z-index: 1;
        width: 20%;
        border: 1px solid #ffffff;
        border-right: none;
        background-color: #ffffff;
    }

        .tabbed .tabbed-nav li a {
            padding: 10%;
            text-align: center;
            width: 100%;
        }
}

@media(max-width: 767px) {
    .tabbed .tabbed-nav li {
        float: left;
        list-style: none;
        margin: 0;
        z-index: 1;
        width: 100%;
        border: 1px solid #ffffff;
        border-right: none;
        background-color: #ffffff;
    }

        .tabbed .tabbed-nav li a {
            padding: 4% 10% 4% 10%;
            text-align: center;
            width: 100%;
        }
}

.clearfix {
    clear: both
}

.megamenu, .accessible-megamenu {
    position: unset;
}

.cols-4.accessible-megamenu-panel {
    width: 100% !important
}

.accessible-megamenu .accessible-megamenu-panel {
    transition: all 0.5s
}

.accessible-megamenu-panel-group-container {
    width: 100%;
    margin: auto;
    max-width: 1600px;
    padding: 0 25px !important;
}

.accessible-megamenu .accessible-megamenu-panel.cols-4 {
    max-width: 100%
}

.cols-4.accessible-megamenu-panel {
    position: absolute;
    left: 0;
    /*top: 200px !important;*/
}

.accessible-megamenu-panel-group-container > h2 > a {
    font-weight: bold;
    color: #454545;
    font-size: 1.5em;
    margin-bottom: 0;
    margin-top: .8em;
    padding-bottom: 0;
    line-height: 1.4em;
}

    .accessible-megamenu-panel-group-container > h2 > a:hover,
    .accessible-megamenu-panel-group-container > h2 > a:focus,
    .accessible-megamenu-panel-group-container > ol > li > h3 > a:hover,
    .accessible-megamenu-panel-group-container > ol > li > h3 > a:focus {
        color: #333;
    }

/*layouts */

.btn.larger, .accessible {
    padding: 5px;
    border: 0px solid #000;
    margin: 0 0 0 7px
}

.text-size-current, .language-current { /*color:#fff !important; background:#000 !important*/
    font-weight: bold
}

#header-text-resize {
    padding: 0
}

.pull-right {
    position: absolute;
    right: 0
}

.language-selector {
    padding: 5px;
    margin: 0 0 0 7px;
    border: 0px solid #333;
}

.langSelect {
    top: -13px;
    font-size: 80%;
}

.textResize {
    padding-bottom: 10px;
    top: 20px;
    /*border-bottom: 1px solid #333;*/
}

.subnavContainer {
    max-width: 1600px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

header.container > .span-12 {
    padding: 0
}

.accessible-megamenu > .accessible-megamenu-top-nav-item a[aria-expanded] {
    padding-left: 0;
    padding-right: 1.4em
}

.row-fluid.row.breadcrumb, .row-fluid.row.breadcrumb .span-12.col-sm-12 {
    margin-left: 0 !important
}

.search-field input {
    width: 310px
}

.cols-4.accessible-megamenu-panel.open {
    border-top: 0 !important
}

header .search-field {
    margin-top: 20px;
    position: relative;
    z-index: 50
}

.btn.larger, .accessible {
    padding: 5px;
    border: 0px solid #000;
    margin: 0 0 0 7px
}

.text-size-current, .language-current { /*color:#fff !important; background:#000 !important*/
    font-weight: bold
}

#header-text-resize {
    padding: 0
}

.pull-right {
    position: absolute;
    right: 0
}

.language-selector {
    padding: 2px;
    margin: 0 0 0 0px;
    border: 0px solid #333;
}

.langSelect {
    padding-bottom: 10px;
    top: 35px;
    display: none
    /*border-bottom: 1px solid #333;*/
}

.textResize {
    top: -13px;
    /*font-size: 80%;*/
}

.accessible-megamenu-toggle:focus {
}


.cols-4 accessible-megamenu-panel.open {
    border-top: 0
}


@media only screen and (max-width: 1199px) {
    header .search-field {
        margin-top: -50px;
        position: relative;
        z-index: 50
    }
}

@media only screen and (max-width: 767px) {
    header .search-field input[type=text] {
        margin-top: -10px
    }

    header.container > .span-12 hr {
        display: none
    }

    .banner-video {
        position: relative
    }

        .banner-video figcaption {
            position: absolute;
            top: 20px
        }

    figcaption .pull-right {
        position: relative;
        float: left
    }

    .bottom.leftCaption, .bottom.rightCaption, .bottom.rightCaptionButton {
        position: relative;
        float: left;
        width: 100%;
        margin-top: 10px;
        line-height: normal
    }

    header .search-field {
        margin-top: 0px;
        width: 100% !important
    }

    .langSelect {
        top: -10px;
        font-size: 100%;
    }

    .cols-4.accessible-megamenu-panel {
        top: 0 !important;
    }

    .subnavContainer {
        max-width: 1600px;
        margin: auto;
        /*padding-left: 0;
                padding-right: 0;*/
    }

    .accessible-megamenu > .accessible-megamenu-top-nav-item {
        width: 100%
    }

    .megamenu, .accessible-megamenu {
        margin-top: -35px !important
    }

    .accessible-megamenu-top-nav-item > h2 {
        padding: 0 10px
    }

    .accessible-megamenu-top-nav-item.open {
        height: auto
    }

    .pull-right.textResize {
        display: none
    }

    .langSelect {
        top: 10px
    }

    .accessible-megamenu-toggle {
        margin-top: -55px !important;
        width: 50px !important;
        height: 50px !important;
    }

    header .logo {
        width: 80%
    }

    .logoContainer {
        margin-top: 50px
    }

    header .search-field, header .search-field input[type=text] {
        width: 100%
    }

    .footerbadge > .span-4 {
        margin-bottom: 20px;
        width: 100%
    }

    .accessible-megamenu-toggle {
        position: relative !important;
    }

    .accessible-megamenu .accessible-megamenu-panel.cols-4 {
        position: relative !important;
    }

    .accessible-megamenu-toggle {
        display: block;
        float: right;
        /*background: url(/OAA/Assets/Images/hamburger.png) center;
        background-size: cover;*/
        font-size: 16px;
        width: 25px;
        height: 25px;
        border: none;
        right: -5px;
        margin-top: -10%;
        cursor: pointer;
        right: 15px;
        position: absolute !important;
        top: 164px;
    }

    header.container {
        position: relative
    }

    .accessible-megamenu.js-accessible-megamenu {
        margin-top: 20px !important;
        position: relative;
        z-index: 2;
    }

    .accessible-megamenu .accessible-megamenu-panel.cols-4 {
        padding-top: 10px
    }
}

.langSelect {
    /*display: none !important*/
}

.clearBoth {
    clear: both
}

.w100 {
    width: 100% !important
}

.underline {
    text-decoration: underline
}

.PageTitle hr {
    display: none
}

.row-fluid.row.breadcrumb > div {
    padding-left: 0
}

/*.listing div {
    padding-left: 0;
}*/

.listing > div {
    /* padding: 0 20px;*/
}

:focus {
    outline: solid 2px #333
}


.accessible-megamenu .accessible-megamenu-panel a {
    color: #000
}

.SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont, .SumoSelect.open > .CaptionCont {
    box-shadow: 0 0 0px #333 !important;
    border-color: #333 !important;
}

.content-filter-search.span-12.clearBoth {
    padding: 0;
    /*padding-right: 7px;*/
}


@media(max-width:767px) {

    /* .listing div {
        padding-right: 0;
    }*/

    .accessible-megamenu .accessible-megamenu-panel ol {
        width: 100%;
    }

    .accessible-megamenu .accessible-megamenu-panel a {
        font-size: 14px
    }

    .accessible-megamenu > .accessible-megamenu-top-nav-item a[aria-expanded] {
        font-size: 14px
    }
}


/*.textDefault {
    font-size: 14px
}
.textLarger {font-size:16px
}
.textLargest {
    font-size: 18px
}*/


.go-to-top2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #000;
    padding-right: 2rem;
    text-align: center;
    font-size: 27px;
    padding: 15px;
    transform: rotate(-90deg) !important;
    cursor: pointer
}


.padding-left0 {
    padding-left: 0
}

.width100 {
    width: 100%
}

label {
    padding-left: 5px
}

.MemberDirectorySearch.span-12 .span-6 div > .span-12 {
    margin: 5px 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

    .MemberDirectorySearch.span-12 .span-6 div > .span-12:last-child {
        margin-bottom: 25px
    }

.sitemap ul li {
    padding: 0
}

.hide {
    display: none
}

.removePadding {
    padding: 0 !important
}

.fullwidth {
    width: 100%
}


.button, input[type=submit] {
    padding: 2.0rem 10rem 2rem 2rem !important;
}


.row-fluid.row.postGrid {
    margin-left: 0;
    margin-right: 0
}



/* Typography*/
h1 {
    font-size: 6.4rem !important;
    line-height: 120%;
    margin-bottom: 2.0rem;
    font-weight: normal;
}

h2 {
    font-size: 4.8rem !important;
    line-height: 120%;
    margin-bottom: 2.0rem;
    font-weight: normal;
}

h3 {
    font-size: 3.2rem !important;
    line-height: 120%;
    margin-bottom: 1.5rem;
    margin-bottom: 0;
    font-weight: normal;
}

h4 /*, .bottom.title*/ {
    font-size: 2.6rem !important;
    line-height: 120%;
    margin-bottom: 1rem;
    font-weight: normal;
}

h5 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem !important;
    line-height: 120%;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1.8rem !important;
    line-height: 120%;
    margin-bottom: 1rem;
    font-weight: normal;
}


.postDate {
    font-family: 'Raleway', sans-serif;
}

body, p {
    font-size: 1.6rem;
    /*    line-height: 120%*/
}

main a {
    font-size: inherit
}

@media(max-width:767px) {
    a {
        font-size: inherit
    }

    h1 {
        font-size: 3.8rem !important;
    }

    h2 {
        font-size: 3rem !important;
    }

    h3 {
        font-size: 2.6rem !important;
    }

    h4, .bottom.title {
        font-size: 2.2rem !important;
    }

    h5 {
        font-family: 'Raleway', sans-serif;
        font-weight:bold;
        font-size: 2.8rem !important;
    }

    h6 {
        font-size: 1.6rem !important;
    }

    body, p {
        font-size: 14px;
        line-height: 120%;
    }
}

.listing .row-fluid.row.span-4.eq:nth-child(3n+1) {
    clear: left
}

html, body {
    font-family: 'Raleway', sans-serif;

}

b, strong {
    font-family: 'Raleway', sans-serif;
    font-weight:bold
}

.subnavContainer > div a {
    text-transform: uppercase
}

.SelectBox {
    padding: 10px !important
}

.accessible-megamenu .accessible-megamenu-panel a:hover, .accessible-megamenu .accessible-megamenu-panel a:focus {
    color: #000
}

.accessible-megamenu-top-nav-item.open > h2 a {
    text-decoration: none !important
}

.accessible-megamenu > .accessible-megamenu-top-nav-item a[aria-expanded] {
    padding: 0 !important;
    height: 31px
}

.accessible-megamenu h2 {
    padding-right: 1.4rem;
    padding-right: 36px
}

h2.open {
    border: 0
}

.accessible-megamenu-top-nav-item a {
    text-decoration: none !important
}

.accessible-megamenu-top-nav-item a {
    border-bottom: 1px solid transparent
}

    .accessible-megamenu-top-nav-item a:hover {
        border-bottom: 1px solid #000
    }

h2 a {
    border-bottom: 1px solid transparent;
    max-width: 100%;
}

h2.open a {
    border-bottom: 1px solid #000
}

.divider {
    display: block;
    margin-bottom: 20px;
    margin-top: 40px;
}



.PageTitle .divider {
    display: none
}

hr {
    border: 0;
    border-bottom: 1px solid #a7a9ac;
}

.go-to-top {
    /*background: url(/OAA/Assets/Images/up-arrow.png) no-repeat;*/
    background-position: 100% center;
    background-size: 16px;
    padding-right: 2rem;
    cursor: pointer
}

#SocialMediaLink .addthis_toolbox a div {
    height: 40px
}

.span-12.pull-left.clearBoth .span-3.pull-left p, .span-12.clearBoth .span-3.pull-left p, .span-3.pull-left.bold p {
    font-family: 'Raleway', sans-serif;
    font-weight:bold;
    text-transform: uppercase
}

.detail.span-12 .span-12 {
    margin-bottom: 30px
}

.span-8.singleContent .span-12 {
    margin: 10px 0 !important
}

.link-in-list-with-underline {
    /*font-size: 13px*/
}

.pipe {
    padding: 0 8px !important;
    float: left;
    color: #a7a9ac;
    display: inline-block
}

.row-fluid.row.postGrid, .row-fluid.row.span-12.eq {
    margin-left: 0;
    /*border-bottom: 1px solid #ddd;*/
    padding-bottom: 25px;
    margin-bottom: 0;
    margin-right: 0;
}

.NewsContainer .row-fluid.row.postGrid {
    margin-top: 0
}

.SumoSelect .select-all {
    margin: 12px 0;
    height: 20px;
    padding-top: 0 !important;
    border: 0 !important
}

    .SumoSelect .select-all label {
        font-size: 1.4rem;
        padding-top: 0 !important;
        padding-left: 0
    }

.SumoSelect.open > .optWrapper {
    top: 50px !important;
    display: block;
}

.SumoSelect > .optWrapper {
    border-radius: 0 !important;
}

.SumoSelect.open > .optWrapper {
    top: 54px;
    display: block;
    border-color: #000;
}

.SumoSelect .select-all.partial > span i {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #AEAEAE !important;
    border-radius: 2px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15) !important;
    background-image: none !important;
    background-color: #fff !important;
}

@media(max-width:767px) {
    .postDescription, .postTagURL, .postDescription, .postLink, .postCategory, .postTitle {
        width: 100%;
        clear: both !important
    }

    footer {
        padding: 1rem 0
    }

        footer .socialBar {
            margin-bottom: 20px
        }

        footer .pull-right.litRight {
            position: relative !important;
            right: 0 !important;
            float: left !important;
            padding: 10px 0 !important;
            clear: both;
        }

        .footerbadge > .span-4, footer .span-12 .span-4.col-sm-4 {
            margin-bottom: 20px;
            width: 100%;
            padding-left: 0;
        }

    .footerbadge img {
        padding-bottom: 10px
    }
}

.loginVerticalSpacer {
    height: 20px;
    clear: both
}

/*mass */
.postLink a {
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

.postLink:after {
    content: "\2192";
    font-family: arial;
    font-weight: bold;
    font-size: 22px;
    margin-left: 5px;
    top: -3px;
    position: absolute;
}

.postDate h2 {
    color: #a7a9ac;
    margin-bottom: 0
}

.grayText {
    color: #58595B;
}

.postCategory a, .link-in-list-with-underline {
    color: #58595B;
    text-decoration-color: #58595B;
    float: left
}

h2.postDate {
    color: #a7a9ac;
    text-decoration-color: #a7a9ac;
    float: left
}

.postTitle h2, .activity-box h2 {
    margin-bottom: 0
}

h2.postDate, .postDate h2 {
    text-transform: uppercase
}

h1.postDate, small.postDate {
    text-transform: uppercase;
    color: #a7a9ac;
    color: #58595B
}


.postDescription, .pull-left.span-12.postTagURL {
    margin-bottom: 0;
}

.postGrid .span-8.col-sm-8 {
    /*padding-left: 15px*/
}

.pull-left.span-12.postTagURL, .postTagURL {
    margin-bottom: 30px
}

.autSpacer {
    padding: 0 15px;
    color: #a7a9ac;
}

.content-filter .span-3 .RadPicker.lbCategory {
    width: 50% !important
}

.row-fluid.row.postGrid .span-4.col-sm-4 {
    margin-bottom: 25px
}

.structuredCal table[title*="Calendar"], .structuredCal .button.floatLeft {
    width: 100% !important;
    margin-left: -10px
}

    .structuredCal table[title*="Calendar"] tr td {
        background-color: transparent;
        padding: 10px 5px;
    }

.NewsContainer.Events .row-fluid.row.postGrid, .NewsContainer.Events .row-fluid.row.span-12.eq {
    margin-left: 0;
    /* border-bottom: 1px solid #ddd; */
    padding-bottom: 25px;
    margin-bottom: 20px;
    padding-top: 50px;
    margin-right: 0;
    border-top: 1px solid #ddd;
}

    .NewsContainer.Events .row-fluid.row.postGrid:first-child {
        border: 0
    }

.NewsContainer.Events .pagination.clearfix {
    text-align: center
}

.pull-left.span-12.postLink {
    margin-top: 0;
    margin-bottom: 60px
}

.w100 {
    width: 100% !important
}

picture, img {
    margin-bottom: 10px
}

.AccordionBottom h2 a {
    font-size: 1.8rem !important;
}


.ui-accordion .ui-accordion-header:after {
    content: "+";
    right: 10px;
    position: absolute;
    font-size: 20px;
    color: black !important;
    top: 7px;
}

.ui-accordion .ui-accordion-header-active:after {
    content: "-";
}

.ui-accordion .ui-accordion-header {
    padding: 0 .5em 0 1.8em !important;
}

.tabbed .tabbed-nav li a {
    padding: 0 !important
}

.tabbed .tabbed-nav li {
    font-size: 1.5em;
    padding: 10px;
}

.divider {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.row-fluid.row > .span-12.col-sm-12 {
    margin-bottom: 15px
}

.row-fluid.row > div[class*="span-"] {
    margin-bottom: 15px
}

.swiper-button-next, .swiper-button-prev {
    top: 40% !important
}

.display-meta p:first-child, .shortDescription {
    margin-top: 20px
}

.clearBoth {
    clear: both
}

.tableClass table {
    border-collapse: collapse;
}

    .tableClass table tr td {
        padding: 10px 0 !important
    }

    .tableClass table tr:first-child td {
        border-bottom: 2px solid #333
    }

    .tableClass table tr td {
        border-bottom: 1px solid #333
    }

.litCaption, .container.img-credit, .container.img-credit a, .image-banner .span-8 a, .image-banner .span-8 {
    font-size: 14px !important;
    /* padding-left: 0; */
}

.litCaption {
    font-size: 14px !important;
}

.tooltip {
    pointer-events: none;
}

.inlineCaption {
    display: inline-block;
    float: none;
    margin-bottom: 25px
}

.swiper-slide .inlineCaption a {
    float: left
}

.g-recaptcha {
    margin-bottom: 25px;
    margin-top: 15px
}

.sitemap h2 a {
    font-size: 0.5em
}

.sitemap ul {
    padding-left: 0 !important
}

.postCategory {
    margin-top: 7px;
    margin-top: 0;
    line-height: 23px;
    margin-bottom: 55px
}

.listing .span-12.col-sm-12.divider {
    margin-top: 20px !important
}

.mt0 {
    margin-top: 0 !important
}

.advantageFilter {
    /*text-align: right;*/
    position: relative;
    z-index: 999;
    /*float: right;
    width: 25%;*/
}

    .advantageFilter .row {
        float: left;
        width: auto;
    }

@media(max-width:767px) {
    .advantageFilter {
        text-align: left;
        float: left
    }

    .sitemap h2 a {
        font-size: 0.8em
    }

    .sitemap ul li {
        clear: both
    }

    footer .span-12.socialBar {
        display: inline-block;
        margin: 30px 0 0 0;
    }
}

.sitemap .row-fluid {
    margin-left: 0
}

.MemberSiteHeading {
    margin-bottom: 25px;
    border-bottom: 1px solid #a7a9ac;
    padding-bottom: 33px;
}

div[id*="pnlLeftSide"] {
    padding-left: 0 !important
}

.postLink a:hover, .postLink:hover:after {
    color: #999 !important
}

input[for*="agree"] {
    display: none
}

ul.search-tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    border-bottom: 1px solid #dcdcdc;
    width: 100%;
}

    ul.search-tabs li {
        text-transform: uppercase;
        font-family: 'Josefin Sans', sans-serif;
        float: left;
        margin: 0;
        cursor: pointer;
        padding: 20px 25px;
        line-height: 31px;
        color: #000;
        overflow: hidden;
        position: relative;
        width:100%;
    }


.flow .form-row input[type=text] {
    margin-top: -15px
}

.flow .form-row.form-group.span-12.col-sm-12 {
    overflow: visible
}


.form-row input[type=checkbox] + label {
    margin: 0 !important;
    padding: 4px 5px;
}

@media (min-width:768px) {
    .news .span-4 {
        /*  width: 32.9%;
        margin-right: 2%;
        padding-right: 0*/
    }

        .news .span-4:nth-child(3n) {
            /* margin-right: 0 !important;
            padding-right: 0*/
        }
}

.form-row .control {
    width: 50%;
    float: left
}

.RadUpload .ruInputs li {
    list-style: none
}

.form-row.radDatePicker1 tr td:last-child {
    display: block;
    position: absolute;
    right: 1px;
}

.control .ruFileWrap.ruStyled {
    padding-left: 0;
    overflow: visible !important;
    display: block;
}

.control .ruFakeInput.radPreventDecorate {
    width: 96% !important;
    padding: 10px 5px !important;
    border: 1px solid #999;
    border-radius: 0.35rem;
    -moz-box-shadow: inset 0 0 0px #DDDDDD;
    -webkit-box-shadow: inset 0 0 0px #DDDDDD;
    box-shadow: inset 0 0 0px #DDDDDD;
    color: rgb(68, 68, 68);
}

.control .ruFileWrap.ruStyled .ruButton.ruBrowse {
    position: absolute;
    right: 5px;
    top: 1px;
    z-index: 9999;
    pointer-events: none;
    border-top-right-radius: 0.35rem;
}

.form-row.datepicker1 .RadPicker.RadPicker_Default {
    display: block !important;
    width: 50% !important;
    float: left;
}

.riSingle.RadInput.RadInput_Default .riTextBox.riEnabled {
    display: block;
    width: 100% !important;
    max-width: 377.5px !important;
}

.form-row.radDatePicker1 tr td:last-child {
    display: block;
    position: absolute;
    right: 1px;
}

/*.RadPicker table.rcTable td:last-child {
    display: block;
    position: absolute;
    right: 18px;
    margin-top: 3px;
}*/

.RadPicker table.rcTable td:last-child {
    display: block;
    right: 18px;
    /* top: 5px; */
    margin-top: 20px;
}

a[id*="hplCancel"], input[id*="btnCancel"], input[id*="btnReset"] {
    display: block;
    clear: both;
    width: auto;
    margin-top: 10px;
    background-color: transparent;
    padding: 0 !important;
    color: #000;
    font-size: inherit;
    text-transform: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    border: none;
    background-image: none;
    text-align: left;
    font-weight: normal;
    text-decoration: underline
}

a[id*="hplCancel"] {
    padding-top: 10px !important;
    width: 100px
}

a.returnIcon {
    padding-bottom: 20px
}

    a.returnIcon:before {
        content: "\2190";
        font-family: arial;
        padding: 10px;
        text-decoration: none;
    }

.accessible-megamenu :focus {
    outline: 2px solid #000;
}

.cta {
    clear: both;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    float: none;
}

.span-12.col-sm-12 .span-12 .cta, .span-12 .cta, p.cta {
    padding-right: 0;
    padding-left: 0;
}


.span-12.col-sm-12 .container .cta.span-12 {
    padding-right: 30px;
    padding-left: 30px;
}

    .span-12.col-sm-12 .container .cta.span-12.pull-left {
        padding-right: 15px;
        padding-left: 15px;
    }

.span-full .container .cta.span-12 {
    padding-right: 30px;
    padding-left: 30px;
}

.span-12.pull-left.postDate h3 {
    color: #a7a9ac
}

.span-3.pull-left.bold p {
    font-weight: bold
}

.singleContent > div, .span-8.singleContent .span-12, .span-8.singleContent {
    padding-left: 0;
    margin-left: 0 !important
}

#megamenu {
    /* width: 100%; */
    margin-bottom: 3px;
    margin-top: 20px;
}

.NewsContainer {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.RadPicker_Bootstrap .rcCalPopup, .RadPicker_Bootstrap .rcTimePopup {
}

.af1 ~ select, .af2 ~ select {
    margin-bottom: 25px
}

.single .cta-button-in-detailpage {
    margin: 50px 0;
}

.pagination-wrap {
    clear: both
}

.postCategory a.grayText {
    pointer-events: none
}

.pagination a {
    font-size: 14px
}

.slidepagination.swiper-pagination {
    padding: 15px
}

.display-document-card {
    padding-bottom: 1em;
    padding-top: 1em;
}



@media (max-width:767px) {
    .breadcrumb {
        display: none !important
    }

    .span-12.btnRest {
        margin-top: 30px !important
    }

    /*.listing div {
        padding-right: 0;
        padding-left: 0;
    }*/

    .accessible-megamenu .accessible-megamenu-top-nav-item h2 a, .accessible-megamenu .accessible-megamenu-panel a {
        font-weight: normal !important
    }

        .accessible-megamenu .accessible-megamenu-top-nav-item h2 a:after {
            content: "\f067";
            font-family: FontAwesome;
            float: right
        }


    .accessible-megamenu .accessible-megamenu-top-nav-item.open h2 a:after {
        Content: "\f068";
        font-family: FontAwesome;
        float: right
    }

    footer .container div[class*='span'] {
        /*margin-left;*/
        margin-right: 0;
        padding: 0
    }

    .control .ruFileWrap.ruStyled .ruButton.ruBrowse {
        position: absolute;
        width: auto !important;
        right: -2px;
        top: 1px;
        z-index: 9999;
        pointer-events: none;
        border-top-right-radius: 0.35rem;
    }

    .RadAsyncUpload.RadUpload {
        width: 98% !important
    }

    .span-8.col-sm-8 .span-12, .listing .pull-left.span-9, .listing .pull-left.span-3, .pull-left.span-6 {
        width: 100%;
        clear: both;
        float: none
    }

    .pull-left.span-6 {
        position: relative;
        z-index: 999
    }

    #megamenu {
        width: 100%
    }
}

#disqus_thread iframe {
    margin-top: 20px
}

.accessible-megamenu .accessible-megamenu-top-nav-item h2 {
    clear: both;
    width: 100%;
    height: auto !important;
    float: left
}
/*update*/

.content-filter-search .search-field input[type='text'] {
    text-align: left !important;
}

.span-8 .singleContent imng {
    width: 100% !important;
    height: auto !important
}

@media (min-width:768px) {
    .span-6.pull-left.bottom.leftCaption {
        padding-left: 0
    }
    /*
    .bottom.leftCaption {
        font-size: 7.5rem;
        line-height: normal
    }
        */
    .bottom.rightCaptionButton {
        position: relative;
        top: 15px;
        left: 0
    }

    .divider div hr {
        margin-top: 1px;
    }

    .logoContainer {
        margin-top: 27px
    }

    .pull-right.textResize a, .pull-right.textResize span {
        font-size: inherit;
        color: #ccc
    }

    .pull-right.memberNav a {
        font-size: inherit;
    }

    .pull-right.textResize a.text-size-current {
        color: #000
    }

    .pull-right.memberNav {
        margin-top: 40px;
    }

    .search-field input[type='text'] {
        text-align: right !important
    }

    .accessible-megamenu.js-accessible-megamenu h2 a {
        font-size: 17px
    }

    .accessible-megamenu > .accessible-megamenu-top-nav-item a[aria-expanded] {
        height: 40px
    }

    header.container {
        padding-bottom: 5px
    }

    .pull-right.memberNav a {
        text-transform: uppercase;
    }

    .span-full > .divider {
        margin-top: 90px
    }

    .divider-with-heading {
        background-position: right 3px center;
        background-size: 2.5em;
        font-size: 1.15em;
        letter-spacing: 0.3rem;
    }

    .tile-button {
        font-family: 'Raleway', sans-serif;
        font-weight:bold;
    }

    .image-banner .bottom.title {
        margin-top: -20px;
    }
    /* .left-content.span-3.span-sm-3,.display-news-card.span-4 {margin-left:0 !important; padding-left:0 !important; padding-bottom:50px} */
    .left-content.span-3.span-sm-3, .display-news-card.span-4 {
        padding-bottom: 50px
    }

    .content-tile.no-stack .left-content.span-3.span-sm-3 {
        padding-bottom: 0
    }

    .span-3.span-sm-3 {
        height: auto !important;
    }

    .display-news-card .activity-box {
        padding: 0 15px
    }
    /*.display-career-card.span-3, .display-people-card.span-3 {
        padding-left: 0;
    }*/
    /* section .span-4:nth-child(4n) .activity-box,section .span-4:first-child .activity-box,.span-12.socialBar {padding-left:0 !important} */
    section .span-4:nth-child(3n) {
        padding-right: 0 !important
    }

    .display-news-card, .content-card .content-tile {
        padding-top: 55px;
    }
    /* .span-12.col-sm-12 .image-banner .span-6:first-child, .content-tile.no-stack .right-content.span-9.span-sm-9,.span-12 .span-12, .pull-left.span-9  {padding-left:0 !important} */
    .cta-button-in-detailpage, .button, input[type=submit], .ruFileInput { /*min-width:322px*/
    }

    .socialBar .socialLabel {
        margin-right: 13px
    }

    .footerbadge {
        margin-top: 50px !important
    }

    .accessible-megamenu .accessible-megamenu-panel a {
        font-size: 1.8rem;
        line-height: normal;
    }

    .subnavContainer {
        margin-top: 50px
    }

        .subnavContainer ol {
            margin-top: 25px
        }

        .subnavContainer > div a {
            font-size: 30px !important;
            text-transform: none;
        }

    .accessible-megamenu .accessible-megamenu-panel a {
        margin-bottom: 1.3em;
        font-weight: 300;
    }

    .megaLine {
        border-top: 1px solid #ccc;
        height: 10px;
        margin-top: -56px;
    }

    .accessible-megamenu > .accessible-megamenu-top-nav-item a[aria-expanded] {
        /* height: 64px; */
    }

    .navHR {
        margin-top: 9px
    }

    .span-12.divider {
        padding-left: 15px !important;
        padding-right: 15px !important
    }
    /* .span-full .span-12.divider {padding-left:0 !important; padding-right:0 !important} */
    /*.span-12 .span-12.divider {padding-left:0 !important; }*/
    .m15 {
        margin-left: 15px !important;
        margin-right: 15px !important
    }
    /* .unBootStrap {    margin-left: -15px !important;margin-right:-15px !important; padding: 0 !important;} */

    /* .NewsContainer  .span-8.col-sm-8 {margin-left:0 !important; padding-left:0 !important} */
    .NewsContainer .span-8.col-sm-8.margin {
        padding-left: 15px !important
    }

    .NewsContainer .postGrid:nth-child(2) .adjustTopM {
        margin-top: -98px !important;
    }

    /*.adjustTopM {margin-top: -98px;}*/
    /* .adjustTopM  .pull-left.span-9.postTitle {padding-left:0 !important} */

    /* .quarto-activities > .container {padding-left:0 !important} */
    /* .equal-height-js .display-document-card.span-3:first-child {padding-left:0 !important}
    .equal-height-js .display-document-card.span-3:nth-child(5) {padding-right:0 !important} */
    /* span[id*="_imgHero"], .litCaption  {display:block; margin-bottom:90px} */
    p.litCaption {
        display: block;
        margin-bottom: 90px
    }
}

fieldset .row-fluid {
    margin: 0
}

.ui-accordion .ui-accordion-content {
    padding-left: 30px !important;
}

@media (min-width: 768px) {
    .ui-accordion .ui-accordion-content {
        padding-left: 4.8em !important;
    }


    .flow .form-row label, .flow .form-row .label-area {
       /* width: 13%;*/
        text-align: left;
        margin: .4rem 1rem 0 0;
    }

    /*.oaa .form-row textarea {max-width:50%}*/
    .left-content.span-3.span-sm-3 .oaa .form-row textarea {
        min-height: 100px
    }

    .span-6.oaa {
        padding-left: 15px !important
    }

        .span-6.oaa .form-row table {
            width: 50%;
            margin-bottom: 25px
        }

    .form-row.form-group.span-12.col-sm-12 > .validation {
        /*margin-left: 26%;*/
        clear: both;
    }

    .form-row.form-group.span-12.col-sm-12 .list-control .validation {
        margin-left: 0;
    }

    .form-row.form-group.span-12 p .validation {
        margin-left: 0;
        border: 1px solid #ac222a;
        padding: 10px;
    }
    .form-row .validation{color:#ac222a}
    .form-row.form-group.span-12.col-sm-12 .list-control ~ .validation {
        margin-left: 25px;
    }

    .form-row.error span {
        /*margin-left: 50%;
        clear: both;
        padding-top: 5px;
        display: block !important;*/
        color:#ac222a
    }

    .ruFakeInput.radPreventDecorate {
        height: 30px !important
    }

    .RadUpload .ruFileWrap {
        height: 100% !important
    }

    li[id*="upDocumentSelector"], li[id*="upCardImagero"] {
        height: 58px;
        overflow: hidden;
    }

    .riSingle.RadInput.RadInput_Default .riTextBox.riEnabled {
        max-width: 358.5px !important;
        max-width: 384.5px !important;
        height: 58px !important;
    }

    .form-row.radDatePicker1 > div {
        margin-top: 0 !important
    }
}

.textbox-has-error {
    background-image: none
}

.addthis_toolbox a {
    margin-bottom: 5px;
    line-height: initial;
    margin: 10px 10px 10px 0;
}

#SocialMediaLink .addthis_toolbox a div {
    background-size: contain;
}

.activity-box .display-meta {
    text-transform: uppercase;
}

span.validation ~ .form-control {
    background-color: red !important
}

a.reset, a[id*="lkbReset"] {
    text-decoration: underline
}


.form-row.datepicker1 .riSingle.RadInput.RadInput_Default .riTextBox.riEnabled {
    max-width: 100% !important
}

.postGrid.row-fluid.row .span-8.col-sm-8 {
    padding-left: 0
}

.pagination-adv li a {
    padding: 0 5px;
    text-decoration: underline;
}

.badge .content-tile.no-stack {
    padding-left: 10px;
    padding-right: 10px
}

.advantageFilter select {
    border-radius: 0;
    -moz-box-shadow: inset 0 0 0px #DDDDDD;
    -webkit-box-shadow: inset 0 0 0px #DDDDDD;
    box-shadow: inset 0 0 0px #DDDDDD;
    color: rgb(68, 68, 68);
    height: 58px !important;
    background: #fff
}

.table table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

    .table table tbody tr td {
        padding: 10px
    }

    .table table tbody tr:first-child td {
        font-family: 'Raleway', sans-serif;
        font-weight:bold;
        border-bottom: 1px solid #000
    }

.divider-with-heading {
    text-transform: uppercase;
}

.form-row.radDatePicker1.error {
    height: 100px !important;
}

    .form-row.radDatePicker1.error tr td span {
        margin-left: 0 !important
    }

    .form-row.radDatePicker1.error .RadPicker.RadPicker_Default ~ .form-row.radDatePicker1.error > span {
        margin-left: 50% !important;
        margin-top: 39px;
    }

.upcomingreminders {
    border: 1px solid #333;
    padding: 20px
}

.MemberSiteSubHeading {
    margin-bottom: 50px
}

.detail.span-12 .span-3.pull-left {
    font-family: 'Raleway', sans-serif;
        font-weight:bold;
}


.form-row.radDatePicker1.error > span {
    margin-top: 35px
}


/* global de margin */
/* div > .container .span-12.col-sm-12 { padding-left:0 !important
 } */
.display-award-list.col-md-3 {
    margin-top: 25px;
    margin-bottom: 25px
}

.quarto-activities {
    padding: 15px
}

.go-to-top {
    position: relative;
    right: 0;
    margin-top: 50px;
}

.instagram .instagram-inner {
    margin: 0;
}

@media (min-width:1200px) {
    .memberNav, .memberNav div.pipe {
        padding-top: 66px !important
    }

    .textResize {
        top: 70px;
        z-index: 999
    }
}


@media (max-width:991px) {
    html {
        font-size: 46%;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    html {
        font-size: 56%;
    }
}

.footerbadge .title, .footerbadge a {
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
        font-weight:bold;
}

.footerbadge a {
    /*text-decoration: none !important;*/
}

    .footerbadge a:hover {
        text-decoration: underline !important;
    }

footer .span-12.noMargin, footer .span-12.noMargin .span-6.col-sm-6 {
    padding-left: 5px
}

    footer .span-12.noMargin, footer .span-12.noMargin .span-6.col-sm-6:last-child {
        margin-top: 35px
    }

footer .span-12.socialBar {
    padding-top: 60px !important
}

    footer .span-12.socialBar a {
        padding: 5px 0;
        width: 100%;
        text-align: left !important
    }

.badge.white .content-tile {
    background: #fff
}

.pull-left.span-12.postTagURL img {
    width: 100%;
    max-width: 400px
}

.container ul li {
    font-size: 1.6rem;
    line-height: 2rem;
}

@media (max-width:1199px) {
    .flow .form-row input[type=text] {
        margin-top: 0
    }
}

@media (max-width:767px) {
    .span-12.socialBar .pull-left.litLeft.span-2:first-child {
        margin-right: 40px !important
    }

    .container ul li {
        font-size: 14px;
        line-height: 2rem;
    }


    .pull-left.span-12.postTagURL img {
        max-width: 100%
    }

    .unBootStrap [class*="col-"], .row, [class*="span-"] {
        margin: 0;
        padding: 0
    }

    .go-to-top {
        padding-right: 8rem;
    }

    .pull-left.span-12 {
        clear: both
    }

    .display-award-list:after, .display-bloaag-list:after {
        content: ' ';
        clear: both;
        height: 40px;
        width: 100%;
        display: block
    }

    .NewsContainer .row-fluid.row.postGrid {
        height: auto !important
    }

    .go-to-top {
        position: relative;
        margin-top: 20px
    }

    footer {
        text-align: center
    }

        footer img {
            margin: auto;
        }

    .span-9.content-filter-search.removePadding {
        padding-bottom: 25px !important
    }

    .span-12.col-sm-12.divider > div {
        padding: 0 !important;
    }

        .span-12.col-sm-12.divider > div span {
            display: block;
            line-height: normal
        }

    .bottom.title, .bottom.caption {
        padding: 25px
    }

    .mobileMargin {
        margin-bottom: 30px
    }

    .footerbadge img {
        max-width: 100% !important
    }

    .cta {
        padding-left: 0;
        margin-top: 25px
    }

    .listing .pull-left.span-9 {
        margin-top: 20px
    }

        .listing .pull-left.span-9 p {
            margin-top: 30px
        }

    .pull-left.span-9.postCategory a.grayText {
        margin-top: 15px
    }

    .quarto-activities .cta, .cta.span-12 {
        padding: 0 !important
    }

    .display-event-card.span-12 {
        margin-top: 30px
    }
}

.detail .pull-left.span-12.postTitle {
    margin-bottom: 0px
}

.detail .pull-left.span-12.postCategory {
    margin-bottom: 100px
}


.swiper-slide .inlineCaption div, .swiper-slide a {
    font-size: 14px
}

.row-fluid.row.postGrid {
    clear: both
}
/*.postGrid .span-4.col-sm-4.overHidden {height:auto !important}*/
.display-news-card .activity-box {
    padding: 0
}

.quarto-activities {
    padding: 15px 0 !important
}

.swiper-button-black {
    color: #fff !important
}

a.buttonNotInBanner {
    font-weight: bold
}


.bottom.title {
    position: relative;
    color: black;
    padding-bottom: 25px;
    line-height: normal;
    margin-top: 0 !important
}

.swiper-button-next, .swiper-button-prev {
    background-color: rgba(255,255,255,0.4);
    padding: 10px;
    background-size: 60% !important;
    background-position: center;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
    background-color: #000 !important;
    color: #fff;
}



.memberNav div.pipe {
    padding-top: 0px !important;
}

.side-nav-bar-li a {
    font-size: 16px;
    text-decoration: underline !important;
}

.inactiveLink a {
    color: #fff !important
}

.display-event-card a {
    text-decoration: none
}

    .display-event-card a:hover h1 {
        color: #000
    }

.display-people-card.span-3 .image {
    margin-bottom: 15px
}


.cta-button-in-detailpage {
    background-size: 35px;
    font-weight: normal
}

.button, input[type=submit], .ruFileInput {
    background-size: 35px;
    font-weight: normal
}

.SumoSelect > .CaptionCont > span.placeholder {
    color: #aaa !important;
}
/*y*/
.advantageFilter select, .button, input[type=submit], .ruFileInput, .content-filter-search .search-field input[type='text'], .fancy-dropdown {
    margin-top: 15px;
}

.button, input[type=submit], .ruFileInput {
    background-position-x: 95%;
}

.content-tile {
    cursor: pointer
}

ul.search-tabs {
    position: relative;
    z-index: 9999;
}

.search-box.in-line {
    margin-bottom: 40px
}

header .search-field input[type=text] {
    padding-right: 10px !important;
}


ol > li {
    list-style: decimal;
    list-style-position: outside;
}

ol {
    margin-left: 15px;
}

.row-fluid.row.search {
    position: relative;
    z-index: 9
}
/*
.section-header h2::before {
    white-space: pre;
    content: "    ";
    background-image: url("/CAHSS/Assets/Images/hbefore.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    right: -0.75em;
    top: -0.2em;
}
.section-header h2::after {
    white-space: pre;
    content: "    ";
    background-image: url("/CAHSS/Assets/Images/hafter.png");
    background-repeat: no-repeat;    
    background-size:cover;
    position: relative;
    left: -0.75em;
    top: 0.2em;
    z-index: 1;
    
}*/
.section-header h2 {
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index:2;
}
    .form-row:not(.span-6) {
    margin-bottom: 25px;
    width: 100%;
}

.row-fluid.row.flow .form-row.span-12.col-sm-12 {overflow:visible}

.banner-video.posRel.l .span-12.container.contentH {
    left:0 !important; right:0 !important
}