/********************************************************
CSS Normalise
********************************************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    margin: 5px 0px 5px 0px;
    border-width: 1px;
    border-style: solid;
}

tbody, tr {
  border-color: inherit;
}

td, th {
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
}

/********************************************************
Typography
********************************************************/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    line-height: normal;
    font-weight: 100;
}

main, footer {
    font-weight: 400;
}

ul.side-buttons li a {
    font-weight: 100;
}

h1 {
    font-size: 2.3em;
    margin: 0 0 0.5em 0;
    font-weight: 300;
}

h2 {
    font-size: 1.7em;
    margin: 0.5em 0;
    font-weight: 300;
}

h3 {
    font-size: 1.4em;
    margin: 0.5em 0;
    font-weight: 300;
}

p {
    margin: 1em 0;
}

ul, ol {
    list-style: disc;
    padding-left: 2em;
    margin: 2em 0 2em 2em;
}

ol {
    list-style: decimal;
}

    ul li, ol li {
        margin-bottom: 1em;
    }

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

.image-left {
    padding: 1em 1em 1em 0;
    float: left;
}

.image-right {
    padding: 1em 0 1em 1em;
    float: right;
}

a {
    color: inherit;
    text-decoration: none
} 

/********************************************************
Pagination 
********************************************************/

ul.pagination {
    text-align: center;
    margin-bottom: 20px;
    clear: both;
}

    ul.pagination li {
        list-style-image: none;
        margin: 0;
        display: inline-block;
    }

    ul.pagination li a,
    .more {
        padding: 4px 8px;
        border: 1px solid #cccccc;
        font-size: 90%;
        color: inherit;
        text-decoration: none;
        background: #efefef;
    }

    ul.pagination li a {
        margin-right: 6px;
    }

    ul.pagination li.active a {
        background: white;
    }

    ul.pagination li a:hover,
    .more:hover {
        color: white;
        background: #888;
    }
/********************************************************
    featured boxes
********************************************************/

li.list-item-industry:hover {
    background: #efdafb;
}

li.list-item-consumer:hover {
    background: #cde9f5;
}

.main-panel {
    display: flex;
    flex-direction: column;
    
   
}

.featured-boxes {
    display: flex;
    flex-direction: column;
    /*width: 68%;*/
    float: left;
}
.featured-box {
    margin-bottom: 2em;
    box-shadow: 0px 0px 8px 2px #e6e6e6;
    text-align: center;
}
.featured-box h3 {
    padding: 1em;
    margin: 0;
    text-transform:uppercase;
    font-weight: 700
}
.featured-box span {
    display: block;
    padding: 0em 1em 1em 1em;
}

    .featured-box i {
        padding-top: 0.3em;
        color: #1C9DD4;
        font-size: 5rem
    }

.featured-boxes .featured-box:hover {
    background: #bfe4f2;
    text-decoration: none
}

#industry .featured-boxes .featured-box:hover {
    background: #e0d7e6;
    text-decoration: none
}


#industry .featured-box i {
    color: #8A659F !important
}

a.banner-link-industry {
    background: rgb(141,106,161, 0.5);
    text-shadow: 1px 1px 1px #000000;
}

a.banner-link-consumer {
    background: rgb(28, 157, 212, 0.5);
    text-shadow: 1px 1px 1px #000000;
}

a.banner-link-industry:hover {
    text-shadow: none;
}

a.banner-link-consumer:hover {
    text-shadow: none;
}

.banner-content.wrapper h1, .banner-content.wrapper p {
    color: #ffffff;
    text-shadow: 1px 1px 1px #000000;
}


@media (min-width: 690px) {
    /********************************************************
    featured boxes
********************************************************/
   .main-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .news-section {
        flex-basis: 30%;
    }

    .featured-boxes {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        width:68%;
    }

    .featured-box {
        flex-basis: 45%;
    }

 }
@media (min-width: 1080px) {
    /********************************************************
    featured boxes
********************************************************/
    .featured-box {
        flex-basis: 45%
    }
}


/********************************************************
    News section homepage
********************************************************/
.panel h3 {
    color: #4d4d4d;
    font-weight: bold;
    margin-bottom:0
}
.category-consumer {
    background-color: #1C9DD4;
    color: #fff;
    padding: 0.1em 1em;
    border-radius: 20px;
    font-weight: bold;
    width: fit-content;
}
.category-industry {
    background-color: #8A659F;
    color: #fff;
    padding: 0.1em 1em;
    border-radius: 20px;
    font-weight: bold;
    width: fit-content;
}
.categories {
    margin-bottom: 0.5em;
}
.panel a {
    color: #4d4d4d;
    text-decoration: none;
    font-size: 1em;
    word-break: break-word;
}
.panel a:hover {
    color: #000000;
}
.panel {
    border-bottom: 2px solid #d2d2d2;
    padding-bottom: 1em;
}
.panel p {
    color: #000
}

.panel-link {
    display: block;
    padding-top: 1em;
}
.news-section {
    float:left;
    /*width:50%;*/
}
.news-section h2 {
    font-weight: bold;
    text-align: center;
}


    /********************************************************
achieve form
********************************************************/

    .achieveform {
        width: 100%;
        overflow: hidden;
    }

    /********************************************************
standard page side sub-menu hover
********************************************************/

    .accordion > li a span,
    .accordion li li {
        -o-transition: 0.5s;
        -ms-transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    .accordion > li span i {
        /*border-bottom: 1px solid #3d6ca4;*/
    }

    .accordion > li > div > span {
        /*display: inline-block;*/
        width: 20%;
        background: #239bcc;
        text-align: center;
        display: flex;
        justify-content: center; /* align horizontal */
        align-items: center;
    }

    .accordion > li a span {
        display: block;
        padding: 1em;
        width: 100%;
        font-weight:bold;
    }

        .accordion > li a span:hover {
            background-color: #239bcc;
        }

        #industry .accordion > li a span:hover {
            background-color: #5b5a84;
        }

.accordion li li:hover {
    background-color: #1C9DD4;
}

.industryspanmenu {
    background: #8A659F !important;
}

ul.sub-menu.industryspanmenu li:hover {
    background-color: #5b5a84;
}

    .accordion li a {
        /*border-bottom: 1px solid #239bcc;*/
    }


    /********************************************************
Elements
********************************************************/

    .cf:before,
    .cf:after {
        content: " "; /* 1 */
        display: table; /* 2 */
    }

    .cf:after {
        clear: both;
    }

    *, *::after, *::before {
        box-sizing: border-box;
    }

    .wrapper {
        max-width: 75em;
        margin: 0 auto;
        padding: 1.8em;
    }

    img {
        max-width: 100%;
    }

    /********************************************************
Header
********************************************************/
    .sub-wrapper {
        display: flex;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
    }

    .sub-header {
        background-color: #eceff1
    }

    .sub-items {
        list-style: none;
        display: flex;
        padding: 1em;
        margin: 0;
    }

        .sub-items li {
            margin: 0;
            margin-left: 1.5em;
        }

        .sub-items a {
            color: #000;
            text-decoration: none;
            font-size: 1rem;
            text-shadow: -.25px -.25px 0 transparent, .25px .25px transparent;
        }

            .sub-items a:hover {
                text-shadow: -.25px -.25px 0 black, .25px .25px black;
            }


/**** Tabs ****/

.tabs .tab-consumer {
    background-color: #1C9DD4;
    color: #fff;
    padding: 1em;
    font-weight: 600;
}

#industry .tabs .tab-industry {
    background-color: #8A659F;
    color: #fff;
    padding: 1em;
    font-weight: 600;
}

#industry .tabs .tab-consumer {
    background-color: transparent;
    color: #000;
    font-weight: 200;
}
    .tabs a {
        margin-left: 0.5em
    }

    .tabs i {
        vertical-align: middle;
        font-size: 1.5rem;
        margin-right: 0.5em
    }

    .tabs span {
        vertical-align: middle;
        font-size: 1.1rem;
    }

    header {
        background-color: #fff;
        position: relative;
        z-index: 999;
        /*box-shadow: 0 8px 6px -6px #9b9b9b;*/
    }

    .logo {
        max-width: 18em;
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    /** Home Page Banner **/

    .homepage-banner {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .homepage-banner h1 {
            color: #fff;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            font-size: 1.7rem;
        }

        .homepage-banner p {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
        }

    .banner-content {
        padding-bottom: 0;
        padding-top: 2em;
    }

    .banner-cta-buttons a {
        display: block;
        border: 2px solid #fff;
        padding: 1em;
        text-align: center;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1em;
    }

    .banner-cta-buttons {
        padding-bottom: 2em;
    }

    .blue-banner {
        background-color: #1C9DD4;
        padding: 2em
    }
#industry .blue-banner {
    background-color: #8A659F;
}

.standardpage-banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2em ;
    
}

element.style{    width: 100%;
    height: auto;
}


.standardpage-banner img {
    width: 100%;
    height: auto;
}
    .banner-no-image-heading {
        color: #fff;
        font-weight: 700;
        margin: 0;
    }
    
    /**** Search Box ****/

    #top-search {
        margin-top: 1.5em;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
    }

    .form-search-field,
    .form-search-submit {
        display: block;
        background-color: white;
        color: #666;
        font: inherit;
        line-height: normal;
        border: 1px solid #ccc;
        border-top-color: #aaa;
        padding: 10px;
        outline: none;
        box-sizing: border-box;
        text-align: left;
    }

    .form-search-field {
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }

    .form-search-submit {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .form-search-wrapper {
        position: relative;
        margin-right: 75px;
    }

    .form-search-field {
        width: 100%;
    }

.form-search-submit {
    width: 75px;
    border: 1px solid #1C9DD4;
    text-align: center;
    background-color: #1C9DD4;
    color: #fff;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 0;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.form-search-submit:focus  {
    border: 2px solid black;
}


#industry .form-search-submit {
    border: 1px solid #8A659F;
    background-color: #8A659F;
}

    #industry .form-search-submit:hover {
        border: 1px solid #5b5a84;
        background-color: #5b5a84;
    }

.form-search-submit:hover {
    border: 1px solid #239bcc;
    background-color: #239bcc;
}

.contourPage input[type="submit"] {
    width: 75px;
    border: 1px solid #1C9DD4;
    background-color: #1C9DD4;
    color: #fff;
    cursor: pointer;
    font: inherit;
    padding: 10px;
}

#industry .contourPage input[type="submit"] {
    width: 75px;
    border: 1px solid #5b5a84;
    background-color: #5b5a84;
    color: #fff;
    cursor: pointer;
    font: inherit;
    padding: 10px;
}

#industry .form-search-submit:focus {
    border: 2px solid black;
}

    /**** PDF filter form ****/

    #pdf-search {
        margin-bottom: 1em;
    }


    @media (min-width: 48em) {

        #top-search {
            float: right;
            margin-top: 2em;
        }
    }

    @media (min-width: 960px) {

        .banner-cta-buttons a {
            width: 49%;
            display: inline-block
        }
    }

    @media (min-width: 1092px) {

        .banner-cta-buttons a {
            width: 33%;
        }
    }
/********************************************************
Filter Document Types
********************************************************/
.documentfilter-selection {
    display: flex;
    flex-direction: column;
}
    .documentfilter-selection label {
        margin-bottom: 1em;
    }
    .documentfilter-selection select {
        margin-bottom: 1em;
        display: block;
        background-color: white;
        color: #666;
        font: inherit;
        line-height: normal;
        border: 1px solid #ccc;
        border-top-color: #aaa;
        padding: 10px;
        outline: none;
        box-sizing: border-box;
        text-align: left;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    /********************************************************
Nav
********************************************************/
    nav {
        background-color: #f6f6f6;
    }

    #primary {
        display: none;
    }

    .menu-toggle {
        text-decoration: none;
        text-align: center;
        padding: 1em;
        background: #e6e6e6;
        color: #383838;
        cursor: pointer;
    }

    .wrapper.nav {
        padding: 0 1.8rem;
    }

    nav {
        display: block;
    }

        nav li, nav a {
            text-decoration: none;
            color: #383838;
            display: block;
        }

        nav ul {
            list-style: none;
            position: relative;
            text-align: left;
            padding: 0;
            margin: 0;
        }

            nav ul li {
                margin: 0;
                padding: 0;
                border-bottom: 1px solid #383838
            }

                nav ul li:last-of-type {
                    border: none
                }

                nav .has-children, nav ul li a, nav ul li button {
                    padding: 1em 0.4em;
                    cursor: pointer;
                    font-size: 1rem;
                    font-weight: 600;
                    color: #4d4d4d
                }

                    nav .has-children:before {
                        content: '\f078';
                        font-family: fontawesome;
                        font-size: 1.5em;
                        position: absolute;
                        right: 1em;
                        cursor: pointer;
                    }

                nav ul li a  {
                    display: block;
                }

                nav ul li button {
                    border-block: none;
                    background-color: transparent;
                    margin: 0em;
                    padding: 1px 6px;
                    border-style: none;
                }

            nav ul.sub {
                display: none;
                width: 100%;
                padding: 1em;
            }

    .no-js ul.sub {
        display: block;
    }

    .no-js nav .has-children:before {
        display: none;
    }

    nav ul.sub li a {
        padding: 0.5em 1.5em;
    }

    @media (min-width: 60em) {
        /********************************************************
    News section homepage
********************************************************/
                    .news-panels {
            display: flex;
            flex-direction: row;
            margin-top: 1em;
            flex-wrap: wrap;
            justify-content: space-evenly;
            
        }
        .panel {
            display: flex;
           /* flex-basis: 46%;*/
            margin-left: 1em;
            margin-right: 1em;
            flex-direction: column;
        }

        .news-section {
            float: left;
            width: 100%;
        }
        /********************************************************
Banner
********************************************************/
        .banner-cta-buttons a:hover {
            color: #383838;
            background-color: #ffffffb8
        }

        .homepage-banner h1 {
            font-size: 3rem;
        }

        .homepage-banner p {
            font-size: 1.4rem
        }


        /********************************************************
Nav 
********************************************************/

        nav ul li {
            border: none
        }

        #primary {
            display: block !important;
            position: relative;
            z-index: 998;
            background-color: #e6e6e6
        }

        nav .has-children:before {
            display: none;
        }

        .nav-toggle {
            display: none;
        }

        nav {
            display: block;
            z-index: 1000;
            position: relative;
            background-color: #fff;
        }

            nav li {
                display: inline-block;
            }

            nav ul.sub {
                position: absolute;
                display: none;
                width: auto;
                max-width: 18em;
                top: 54px;
                background-color: #e6e6e6;
                padding: 0;
                margin-left: -1em;
            }

        .has-children.li-highlight {
            background-color: #1C9DD4;
            color: #fff
        }

        #industry .has-children.li-highlight {
            background-color: #8A659F;
            color: #fff
        }

        .has-children:hover {
            background-color: #1C9DD4;
            color: #fff
        }

        .has-children:hover button{
            color: #fff
        }

  
        #industry .has-children:hover {
            background-color: #8A659F;
            color: #fff
        }

        nav ul.sub li a {
            border-bottom: 1px solid #fff;
            padding: 0.7em 1em;
        }

        nav ul.sub li:last-child a {
            border-bottom: 0;
        }

        nav ul.sub li a:hover {
            background-color: #888;
            color: #fff
        }

        #primary li.has-children:after {
            content: '\f078';
            font-family: fontawesome;
            margin-left: 0.3em;
        }

        #primary li {
            -o-transition: 0.5s;
            -ms-transition: 0.5s;
            -moz-transition: 0.5s;
            -webkit-transition: 0.5s;
            transition: 0.5s;
        }


            #primary li a:hover {
                background-color: #1C9DD4;
                color: #fff
            }

        #industry #primary li a:hover {
            background-color: #8A659F;
            color: #fff
        }

        nav ul.sub li {
            display: block;
        }

        .no-js ul.sub {
            display: none;
        }

        .no-js nav ul li:hover ul.sub {
            display: block;
        }
    }


    /********************************************************
Nav Bottom - When JS is disabled
********************************************************/

    .menu-bottom, .no-js .nav-toggle {
        display: none;
    }

    #nav-bottom { /* Hides whe JS is enabled - Mobile Menu Only */
        display: none;
    }

    .no-js nav#primary { /* Hides when JS is disabled - Mobile Menu Only */
        display: none;
    }

    .no-js .menu-bottom, .no-js #nav-bottom { /* shows when JS is disabled */
        display: block;
    }

    @media (min-width: 57.5em) {

        .no-js #nav-bottom, .no-js .menu-bottom {
            display: none;
        }

        .no-js nav#primary { /* show */
            display: block;
        }
    }

    /********************************************************
Content
********************************************************/

    /**** Hompage Boxes ****/

    .front-boxes {
        margin-top: 1.25em;
        clear: both;
    }

        .front-boxes a p:nth-child(1),
        .front-boxes .readMore {
            font-weight: 700;
            margin: 0;
        }

        .front-boxes a p:nth-child(n+2) {
            margin: 0.5em 0 0 0;
        }


        .front-boxes .box {
            border: 5px solid;
            border-radius: 5px;
        }

            .front-boxes .box.one {
                border-color: #1C9DD4;
                /*background-color: #1C9DD4;*/
            }

                .front-boxes .box.one h2 {
                    background-color: #1C9DD4;
                }

            .front-boxes .box.two {
                border-color: #454545;
                margin-top: 1.5em;
            }

                .front-boxes .box.two h2 {
                    background-color: #454545;
                }

        .front-boxes h2 {
            margin: 0;
            text-align: center;
            padding: 0.625em;
            font-size: 1.4em;
            color: #fff;
        }

        .front-boxes ul {
            list-style: none;
            padding: 0;
            margin: 0;
            background-color: white;
        }

            .front-boxes ul li {
                margin-bottom: 0;
            }

            .front-boxes ul a {
                padding: 1em 3em 1em 1em;
                display: block;
                background-image: url(../images/arrow-right.png);
                background-repeat: no-repeat;
                background-size: 0.875em;
                background-position: right 0.875em center;
                color: #000;
                text-decoration: none;
                -o-transition: 0.5s;
                -ms-transition: 0.5s;
                -moz-transition: 0.5s;
                -webkit-transition: 0.5s;
                transition: 0.5s;
            }

                .front-boxes ul a:hover {
                    background-color: #efefef;
                }

    /**** Homepage Latest News Box ****/

.latest-news {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 21.1em;
    position: relative;
    background-color: #1C9DD4;
}

        .latest-news h2, .latest-news p {
            background-color: rgba(77, 77, 77, 0.9);
            margin: 0;
            color: #fff;
        }

        .latest-news a {
            color: #fff;
            text-decoration: none;
        }

        .latest-news h2 {
            float: left;
            padding: 0.8em 1.2em;
        }

        .latest-news p {
            position: absolute;
            bottom: 0;
            padding: 1.25em;
            width: 100%;
        }

    /**** News Page ****/

    .date {
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 1.5em;
    }

        .date span {
            margin-left: 0.4em;
        }

    /**** Documents area Standard Page ****/

.page-documents {
    border: 3px solid #1C9DD4;
    overflow: hidden;
    margin-top: 2em;
    border-radius: 5px;
    clear: both;
}
#industry .page-documents {
    border: 3px solid #8A659F;
}

    .page-documents h2 {
        background-color: #1C9DD4;
        color: #fff;
        padding: 0.2em 0.5em;
        margin: 0;
    }
#industry .page-documents h2 {
    background-color: #8A659F;
}
        .page-documents ul {
            padding: 1em;
            margin: 0;
        }

            .page-documents ul li {
                background-image: url(https://image.freepik.com/free-icon/pdf-file-symbol_318-62286.png);
                background-repeat: no-repeat;
                background-size: 1.4em;
                background-position: top 5px left;
                padding-left: 2em;
                width: 100%;
                margin-bottom: 1em;
                display: block;
            }

            .page-documents ul a {
                font-weight: 700;
                color: #000;
                text-decoration: none;
            }

                .page-documents ul a:hover {
                    color: #239bcc;
                }
#industry .page-documents ul a:hover {
    color: #8A659F;
}

            .page-documents ul .size {
                font-weight: 100;
            }


    /********************************************************
Sidebar
********************************************************/

    #sidebar {
        margin-top: 1em;
    }

    /********************************************************
Breadcrumb
********************************************************/

    #bread-crumb {
        list-style: none;
        margin: 0;
        padding: 0;
        font-weight: 400;
    }

        #bread-crumb i {
            padding-right: 0.5em;
            color: #335598;
        }

        #bread-crumb li {
            margin: 0;
            padding: 1em;
            border-bottom: 2px solid white;
            color: #3d3d3d;
        }

            #bread-crumb li a {
                text-decoration: none;
                color: #335598;
            }

        #bread-crumb li {
            background-color: #d9d9d9;
        }

            #bread-crumb li:nth-child(1) {
                background-color: #f2f2f2;
                font-weight:600;
            }

            #bread-crumb li:nth-child(2) {
                background-color: #e6e6e6;
            }

    /**** Sidebar Buttons ****/

    ul.side-buttons {
        list-style: none;
        margin: 0;
        padding: 0;
        margin-top: 1.25em;
    }

        ul.side-buttons li {
            margin-bottom: 1.1em;
        }

            ul.side-buttons li:last-child {
                margin-bottom: 0;
            }

            ul.side-buttons li a {
                display: block;
                padding: 1.325em 3.5em 1.325em 1.25em;
                background-image: url(../images/arrow.png);
                background-repeat: no-repeat;
                background-size: 2em;
                background-position: right 1em center;
                border-radius: 5px;
                color: #fff;
                text-decoration: none;
                font-size: 1.1em;
                -o-transition: 0.5s;
                -ms-transition: 0.5s;
                -moz-transition: 0.5s;
                -webkit-transition: 0.5s;
                transition: 0.5s;
            }

            ul.side-buttons li:nth-child(1) a {
                background-color: #1C9DD4;
            }

            ul.side-buttons li:nth-child(2) a {
                background-color: #8A659F;
            }

            ul.side-buttons li:nth-child(3) a {
                background-color: #c22c22;
            }

            ul.side-buttons li:nth-child(4) a {
                background-color: #454545;
            }

            ul.side-buttons li a:hover {
                opacity: 0.9;
            }

    /**** Sidebar Accordian Navigation ****/

    .accordion a {
        color: #fff;
        text-decoration: none;
        display: block;
    }
#industry .accordion {
    background: #8A659F;
}

.accordion {
    background: #1C9DD4;
    margin: 0;
    padding: 0;
    list-style: none;
}

        .accordion .top-level {
            width: 85%;
            display: block;
            float: left;
            color: #fff;
            /*padding: 1em;*/
            text-decoration: none;
        }

        .accordion span .fa {
            color: #fff;
            font-size: 1.7em;
            cursor: pointer;
            padding: 0.5em 1%;
            text-align: center;
            /*background: #3d6ca4;*/
            width: 20%;
        }

        .accordion .sub-menu {
            display: none;
            /*padding: 0.5em 1em;*/
            margin: 0;
            list-style: none;
            background-color: #239bcc;
        }

.accordion ul.sub-menu {
    padding-left: 0;
}

    .no-js .accordion .sub-menu {
        display: block;
    }

    .no-js .accordion span .fa {
        display: none;
    }

.no-js .accordion .top-level {
    width: 100%;
    background-color: #1C9DD4;
    float: none;
}

    .accordion .sub-menu a {
        padding: 0.5em 1em;
    }

    .accordion .sub-menu li:first-child a {
        padding-top: 1em;
    }

    .accordion .sub-menu li:last-child a {
        padding-bottom: 1em;
    }

    .accordion li, .accordion ul li {
        margin-bottom: 0;
    }

        .accordion li div {
            overflow: hidden;
            height: 100%;
            display: flex;
        }

   
    .accordion > li > span.no-sub-nav-icon {
        display: none;
    }

    .accordion .top-level.no-sub-nav {
        width: 100%;
    }

    /*@media (min-width: 48em) {

    .accordion span .fa {
        width: 20%;
    }
}*/


.accordion__panel {
    margin: 2em 0;
}

    .accordion__panel .accordion__item {
        border-top: 1px solid #4d4d4d;
    }

    .accordion__panel .accordion__item h4 {
        font-size: 1.1rem;
        font-weight: bold;
        color: #4d4d4d
    }
    .accordion__panel .accordion__item h2 {
        font-size: 1.1rem;
        font-weight: bold;
        color: #4d4d4d
    }

    .accordion__panel .accordion__item:last-of-type {
        border-bottom: 1px solid #4d4d4d;
    }
.accordion__item .accordion__item-toggle {
    margin: 0;
    padding: 0.9em 0;
    background: none;
    border: 0;
    width: 100%;
    text-align: left;
    position: relative;
    color: #4d4d4d;
    padding-right: 2em;
}
.accordion__item .accordion__item-toggle .accordion__item-toggle-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.accordion__item .accordion__item-toggle .fa-minus {
    display: none;
}

.accordion__item .accordion__item-toggle[aria-expanded="true"] .fa-plus {
    display:none;
}
.accordion__item .accordion__item-toggle[aria-expanded="true"] .fa-minus {
    display: block
}

.accordion__panel .accordion__item-content {
    display: none;
    padding-bottom: 2em;
    padding-top: .25em;
}

.accordion__panel .accordion__item-content.show {
    display: block;
}
.accordion__panel .accordion__item-content:first-child {
    margin-top: 0;
}

.accordion__panel .accordion__item-content:first-child {
    margin-bottom: 0;
}

    /**** Archive on News Item Page ****/
    #archive {
    border: 4px solid #1C9DD4;
    border-radius: 5px;
}

    #archive h2 {
        background-color: #1C9DD4;
        color: #fff;
        padding: 0.8em 1em;
        margin: 0;
        font-size: 1.2em;
        font-weight: 700;
    }

        #archive ul {
            padding: 0;
            margin: 0;
            list-style: none;
            margin-top: 1em;
        }

            #archive ul li a {
                padding: 0.2em 1.5em;
                display: block;
                font-weight: 700;
                text-decoration: none;
                color: #000;
            }

                #archive ul li a:hover {
                    color: #1C9DD4;
                }


#archive-industry {
    border: 4px solid #8A659F;
    border-radius: 5px;
}

    #archive-industry h2 {
        background-color: #8A659F;
        color: #fff;
        padding: 0.8em 1em;
        margin: 0;
        font-size: 1.2em;
        font-weight: 700;
    }

    #archive-industry ul {
        padding: 0;
        margin: 0;
        list-style: none;
        margin-top: 1em;
    }

        #archive-industry ul li a {
            padding: 0.2em 1.5em;
            display: block;
            font-weight: 700;
            text-decoration: none;
            color: #000;
        }

            #archive-industry ul li a:hover {
                color: #8A659F;
            }


    /********************************************************
Document Portal
********************************************************/

    .document-portal {
        margin-bottom: 1.5em;
    }

        .document-portal .portal-titles {
            border: 1px solid #1C9DD4;
        }

        .document-portal th {
            width: 5%;
            padding: 0.8em 1em;
            text-align: left;
        }

        .document-portal .document-details {
            border: 1px solid #1C9DD4;
        }

/*        .document-portal th.tb-title:nth-child(2) {
            border-color: #fff;
            border-left: 1px solid;
            border-right: 1px solid;
        }*/

        .document-portal .tb-title {
            background-color: #1C9DD4;
            color: #fff;
        }

tr.portal-titles.industry-document .tb-title {
    background: #8A659F;
}

    .document-details .doc-name {
        width: 20%;
    }

        .document-details .doc-name a {
            color: #000;
            text-decoration: none;
        }

            .document-details .doc-name a:hover {
                color: #239bcc;
            }

    /********************************************************
News
********************************************************/

    .news > ul {
        padding: 0;
        margin: 0;
        list-style: none;
        margin-top: 2em;
    }

        .news > ul > li {
            margin-bottom: 1.5em;
            border-bottom: 1px solid #bfbfbf;
            padding-bottom: 1em;
        }

    .news a {
        color: #000;
        text-decoration: none;
    }

#content .news .details a {
    color: #000;
    text-decoration: none;
    }

#content .news ul li a {
    color: #000;
    text-decoration: none;
}

    .news h2 {
        margin: 0;
        font-size: 1.7em;
        font-weight: 300;
        color: #4d4d4d;
        padding-bottom: 1em;
    }

    .news .listDate {
        margin: 0.5em 0;
        font-weight: 700;
    }

    .news .summary {
        margin: 0;
        font-size: 0.9em;
    }



        .news .summary a:link,
        .news .searchsummary a:link {
            text-decoration: underline;
        }

    .news .searchsummary {
        margin-top: 10px;
    }

    .news .news-image {
        display: none;
    }

    /********************************************************
Footer
********************************************************/

    footer {
        background-color: #fff;
        text-align: center;
    }

        footer .footer-bar {
            height: 1.2em;
            background-color: #454545;
        }

        footer p {
            font-size: 0.8em;
        }

        footer #footer-nav {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            footer #footer-nav li {
                margin-bottom: 0;
            }

                footer #footer-nav li a {
                    color: #000;
                    text-decoration: none;
                }

                    footer #footer-nav li a img {
                        height: 2em;
                        margin-top: 2.5px;
                    }

                    footer #footer-nav li a:hover {
                        text-decoration: underline;
                    }

    .nopadding {
        padding: 0;
    }

    footer .gradient {
        height: 1.2em;
        background-color: #454545;
    }





    /*a.facebook {
    /*background-image: url("../images/arrow.png"); 
    background-repeat: no-repeat;
    border: dashed;
}*/

    /********************************************************
Sitemap
********************************************************/

    #sitemap {
        margin-left: 0;
    }

        #sitemap a {
            text-decoration: none;
        }

            #sitemap a:visited,
            #sitemap a:link {
                color: #000;
            }

        #sitemap ul > li {
            margin-bottom: 5px;
            margin-top: 5px;
            font-weight: 700;
        }

        #sitemap ul {
            margin-bottom: 5px;
            margin-top: 5px;
            margin-left: 1em;
            padding-left: 0;
        }

            #sitemap ul ul li {
                margin-left: 10px;
                font-weight: 100;
                background-image: none;
                list-style-type: circle;
            }


    /********************************************************
Resposive
********************************************************/

    @media (min-width: 37.5em) {

        .page-documents ul li {
            float: left;
            width: 40%;
            margin-right: 1em;
        }

        .news .details {
            margin-left: 0em;
            min-height: 6.7em;
        }

        .news .news-image {
            float: left;
            display: block;
            max-width: 10em;
        }
    }

    @media (min-width: 48em) {

        .accordion .top-level {
            width: 80%;
        }

        #content {
            width: 65%;
            float: left;
            margin-bottom: 2em
        }

        #content a {
            color: blue;
            text-decoration:underline;
        }

        #sidebar {
            float: right;
            width: 30%;
            margin-top: 0;
        }

        .wrapper.header {
            overflow: auto;
        }

        .logo {
            margin: 0;
            float: left;
        }

        ul.side-buttons {
            float: right;
            width: 35%;
            margin-top: 0;
        }

            ul.side-buttons.nofloat {
                float: none;
                width: 100%;
            }

        .latest-news {
            float: left;
            width: 62%;
        }

        .front-boxes {
            margin-top: 2em;
            display: flex;
            display: inline-flex;
            width: 100%;
        }

            .front-boxes .box {
                width: 49%;
                float: left;
            }

                .front-boxes .box.one {
                    margin-right: 2%;
                }

                .front-boxes .box.two {
                    margin-top: 0;
                }

        footer {
            text-align: left;
            display:inline-block;
            width:100%
        }

            footer #footer-nav li {
                display: inline-block;
                margin-right: 20px;
            }
    }

    sub, sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    sup {
        top: -0.5em;
    }

    sub {
        bottom: -0.25em;
    }

    h3.sitemap-title {
        text-decoration: underline;
        font-weight: bold;
    }

    main.sitemap ul {
        margin-top: 0.25em;
    }

    main.sitemap li {
        margin-bottom: 0.25em;
    }

    main.sitemap li ul {
        margin-top: 0.25em;
        margin-left: 0.5em;
        margin-bottom: 0.75em;
    }

    main.sitemap a {
        text-decoration: underline;
    }

    /* Cookie Consent */
    .cc-banner {
        a.cc_learnmore {
        text-decoration: underline;
        }
    }

a.cc_learnmore {
    text-decoration: underline;
}

@media (max-width: 690px) {

    .sub-header .wrapper.sub-wrapper {
        display: block;
        text-align: center;
    }

    .sub-items li {
        margin: 0;
        margin-left: 0em;
        padding: 0.7em;
    }

    .tabs {
        padding: 0.5em 0em;
    }

    a.tab-industry {
        margin-left: 1em;
    }
}

@media (max-width: 290px) {
    a.tab-industry {
        margin-left: 0em;
    }

    .tabs a {
        margin-left: 0em;
    }
}
