/*======================================================
  NAVIGATION.CSS
  ======================================================

    1.  TOPNAV
    2.  MAINNAV 
            - lvlOne
            - lvlTwo
    3.  I'D LIKE TO
    4.  HOMEPAGE QUICKLINKS
    5.  ADVANCED QUICKLINKS
    6.  BREADCRUMBS
    7.  ACTIONS
    8.  SUBNAV
    9.  LANDING NAV
    10. INTERIOR QUICKLINKS
    11. FOOTER NAV

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

/*======================================================
  1. TOPNAV
  ===================================================== */

/* ====== SKIP TO CONTENT */

#skipContentWrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}

a#skipContentLink, a#skipContentLink:hover, a#skipContentLink:visited {
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    a#skipContentLink:active, a#skipContentLink:focus {
        position: static;
        width: auto;
        height: auto;
        font-size: 15px;
        z-index: 10000;
        text-decoration: underline;
        padding: 20px;
        background: #FFF;
    }

#printArea {
    overflow: hidden;
}


/*======================================================
  2. MAIN NAV
  ===================================================== */


/*==================
  lvlOne
====================*/

#nav, #nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#nav {
    display: table;
	table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    vertical-align: top;
}

    #nav > li {
        display: table-cell;
        width: 25%;
        height: 40px;
        padding-left: 9px;
        vertical-align: top;
    }


        #nav > li:first-child {
            padding-left: 0;
        }

        #nav > li > a.mainNavItem {
            display: table;
			table-layout: fixed;
            width: 100%;
            height: 40px;
            text-align: left;
            position: relative;
            font-size: 1.188em;
            color: #fff;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
			z-index: 0;
			margin-bottom: 10px;
        }
		
		.navTab01 #nav > li > a.mainNavItem,
		.navTab02 #nav > li > a.mainNavItem,
		.navTab03 #nav > li > a.mainNavItem,
		.navTab04 #nav > li > a.mainNavItem { margin-bottom: 0; }

        #nav > li#navTab01 > a.mainNavItem {
            background-color: #008449;
        }

        #nav > li#navTab02 > a.mainNavItem {
            background-color: #007169;
        }

        #nav > li#navTab03 > a.mainNavItem {
            background-color: #006184;
        }

        #nav > li#navTab04 > a.mainNavItem {
            background-color: #005696;
        }

        #nav > li > a.mainNavItem > span {
            display: table-cell;
            width: 100%;
            vertical-align: middle;
            overflow: hidden;
            padding: 0 20px;
            background: url(../images/structure/chevron-down-white.png) 95% 16px no-repeat;
        }

.fixedHeader #nav > li > a.mainNavItem > span { background-position: 95% 9px; }

#nav > li.sfHover,
.navTab01 #nav > li#navTab01,
.navTab02 #nav > li#navTab02,
.navTab03 #nav > li#navTab03,
.navTab04 #nav > li#navTab04 {
    height: 50px;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

#nav > li > a.mainNavItem:hover,
#nav > li > a.mainNavItem:focus {
    background: #fff !important;
    color: #005696;
    text-decoration: none;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

    #nav > li > a.mainNavItem:hover span,
    #nav > li > a.mainNavItem:focus span {
        background: #fff url(../images/structure/chevron-down-03.png) 95% 15px no-repeat !important;
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }
	
	.fixedHeader #nav > li > a.mainNavItem:hover span,
    .fixedHeader #nav > li > a.mainNavItem:focus span {
		background-position: 95% 9px !important;
	}

#nav > li > a.currentHover,
#nav > li > a.current,
.navTab01 #nav > li#navTab01 > a,
.navTab02 #nav > li#navTab02 > a,
.navTab03 #nav > li#navTab03 > a,
.navTab04 #nav > li#navTab04 > a,
#nav > li.sfHover > a.mainNavItem {
    color: #005696;
    background: #fff !important;
    height: 50px;
    border-right: solid 1px #fff;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    border: solid 1px #ccc;
    border-bottom: none;
	margin-bottom: 0;
}

#nav > li > a{ z-index: 0; }
#nav > li.sfHover > a.mainNavItem { z-index: 2; }

    #nav > li > a.currentHover span,
    .navTab01 #nav > li#navTab01 > a span,
    .navTab02 #nav > li#navTab02 > a span,
    .navTab03 #nav > li#navTab03 > a span,
    .navTab04 #nav > li#navTab04 > a span,
    #nav > li.sfHover > a.mainNavItem span {
        position: relative;
        background: transparent url(../images/structure/chevron-down-03.png) 95% 15px no-repeat !important;
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
		padding-bottom: 10px;
    }
	
	.fixedHeader #nav > li > a.currentHover span,
    .navTab01 .fixedHeader #nav > li#navTab01 > a span,
    .navTab02 .fixedHeader #nav > li#navTab02 > a span,
    .navTab03 .fixedHeader #nav > li#navTab03 > a span,
    .navTab04 .fixedHeader #nav > li#navTab04 > a span,
    .fixedHeader #nav > li.sfHover > a.mainNavItem span { padding-bottom: 0px; background-position: 95% 9px !important; }





/*==================
  lvltWO
====================*/

#mainNav .dropDownContainer {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    margin-top: -1px;
    list-style: none;
    z-index: 1000;
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    border: solid 1px #ccc;
	z-index: 1;
}

.headroomTop .fixedHeader #mainNav .dropDownContainer, .unpinned .fixedHeader #mainNav .dropDownContainer {
    display: none !important;
}

.dropDownContainerInner {
    padding: 22px;
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0.9)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.9) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.9) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.9) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0.9) 100%);
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.no-cssgradients .dropDownContainerInner {
    background: #fff;
}


#mainNav ul.dropdown {
    float: left;
    width: 25%;
    padding: 0 0 0 20px;
    list-style: none;
    overflow: hidden;
    /* max-height: 18.8em; */
}

    #mainNav ul.dropdown:first-child {
        padding: 0;
    }

    #mainNav ul.dropdown li, #mainNav ul.dropdown li:hover {
        float: left;
        width: 100%;
        border-top: 1px solid #ccc;
        background: none;
        overflow: hidden;
        padding: 8px 0;
    }

        #mainNav ul.dropdown li:first-child {
            border: none;
        }

        #mainNav ul.dropdown li a {
            display: block;
            color: #005696;
            width: 100%;
            text-decoration: none;
            font-size: 1em;
            line-height: 1.2em;
            max-height: 2.4em;
            overflow: hidden;
        }

            #mainNav ul.dropdown li a:hover, #mainNav ul.dropdown li a:active, #mainNav ul.dropdown li a:focus {
                text-decoration: underline;
                background: none;
            }

    #mainNav ul.dropdown:first-child {
        margin: 0;
    }

#mainNav .dropDownRight {
    width: 25%;
    float: left;
    padding: 0;
    padding-left: 20px;
    overflow: hidden;
}

.dropDownRightInner {
    display:block;
    max-width: 380px;
    width: 100%;
    float: right;
	color: #FFF !important;
    position: relative;
}

#mainNav .dropDownRight img {
    display: block;
    width: 100%;
    height: auto;
    float: right;
}

.dropDownCaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    overflow: hidden;
}

#navTab01 .dropDownCaption {
    background: url(../images/structure/bg-transparent-01.png) repeat;
}

#navTab02 .dropDownCaption {
    background: url(../images/structure/bg-transparent-02.png) repeat;
}

#navTab03 .dropDownCaption {
    background: url(../images/structure/bg-transparent-03.png) repeat;
}

#navTab04 .dropDownCaption {
    background: url(../images/structure/bg-transparent-04.png) repeat;
}

.dropDownCaption h2 {
    color: #fff;
    margin: 0;
    margin-bottom: 4px;
    padding: 0;
    font-size: 2em;
    line-height: 1.2;
    width: 100%;
    overflow: hidden;
}

.dropDownCaption p {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1.2em;
    overflow: hidden;
    max-height: 2.4em;
}

@media only screen and (max-width : 991px) {

    #nav > li > a.mainNavItem {
        font-size: 1em;
    }

        #nav > li > a.mainNavItem span {
            padding-left: 10px;
        }

    #mainNav .dropDownRight {
        display: none;
    }

    #mainNav ul.dropdown {
        float: left;
        width: 33.333%;
        padding: 0 0 0 20px;
        list-style: none;
        overflow: hidden;
        max-height: 18.8em;
    }
}




/*======================================================
  3. I NEED TO
  ===================================================== */

.needToCol {
    width: 20%;
    float: left;
    padding: 30px 0 0 20px;
    position: relative;
    background-size: 24px auto !important;
}

    .needToCol:first-child {
        padding-left: 0;
    }

    .needToCol.learnAndFind {
        background: url(../images/structure/needto/find.svg) 20px top no-repeat;
    }

    .needToCol.applyAndRegister {
        background: url(../images/structure/needto/apply.svg) 20px top no-repeat;
    }

    .needToCol.requestAndReport {
        background: url(../images/structure/needto/request.svg) 20px top no-repeat;
    }

    .needToCol.thingsToDo {
        background: url(../images/structure/needto/todo.svg) 20px top no-repeat;
    }

    .needToCol.pay {
        background: url(../images/structure/needto/pay.svg) 20px top no-repeat;
    }

    .needToCol:first-child {
        background-position: top left;
    }

    .needToCol .colHeading {
        font-size: 1.2em;
        display: block;
        color: #000;
        margin: 0 0 0 0;
        line-height: 1.2em;
        height: 2.4em;
        overflow: hidden;
    }

    .needToCol ul.dropdown {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .needToCol .viewAll {
        display: block;
        clear: both;
        font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;
        color: #005696 !important;
        border-top: solid 1px #ccc;
        padding-top: .8em;
    }

@media only screen and (max-width : 991px) {
    .needToCol {
        width: 33.33%;
        float: left;
        padding: 0 0 10px 20px;
        background: none !important;
        margin-bottom: 10px;
        position: relative;
    }

        .needToCol .dropdown {
            max-height: 6.6em !important;
        }

        .needToCol h3 {
            font-size: 1em;
            margin-bottom: 10px;
            line-height: 1.2em;
            height: 1.2em;
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .needToCol .viewAll {
            border: none;
            padding-bottom: 10px;
        }

        .needToCol:nth-child(3n + 1) {
            padding-left: 0;
        }
}

/*======================================================
  5. ADVANCED QUICKLINKS
  ===================================================== */


#quickLinksContainer {
    width: 100%;
    position: relative;
    background: #fff url(../images/structure/bgQuickLinksAdvanced.png) top center repeat-x;
    z-index: 403;
    margin: 0;
}

    #quickLinksContainer.hover {
        z-index: 4000;
    }

.mobileQuickLinks {
    display: none;
}

#quickLinksAdvanced {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 402;
    padding: 0 1px 5px 1px;
}

    #quickLinksAdvanced ul, #quickLinksAdvanced ul li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
        vertical-align: middle;
        overflow: hidden;
    }

    #quickLinksAdvanced > ul {
        display: table;
        width: 100%;
    }

        #quickLinksAdvanced > ul > li {
            display: table-cell;
            vertical-align: middle;
            height: 72px;
            border-radius: 0 0 4px 4px;
            -webkit-border-radius: 0 0 4px 4px;
            -moz-border-radius: 0 0 4px 4px;
        }

            #quickLinksAdvanced > ul > li:hover, #quickLinksAdvanced > ul > li:active, #quickLinksAdvanced > ul > li:focus {
                background: #fff;
                background: rgb(255,255,255);
                background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(225,225,225,1) 100%);
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(225,225,225,1)));
                background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(225,225,225,1) 100%);
                background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(225,225,225,1) 100%);
                background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(225,225,225,1) 100%);
                background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(225,225,225,1) 100%);
            }


            #quickLinksAdvanced > ul > li.active {
                position: relative;
                background: #fff;
            }


a.mainQuickLink, a.mainQuickLink:link, a.mainQuickLink:visited {
    display: block;
    color: #005696;
    font-size: 1.125em;
    width: 100%;
    font-family: "verbbold", "Helvetica Neue", Helvetica, Arial;
    display: inline-block;
    padding: 5px 10px 5px 43px;
    overflow: hidden;
    text-decoration: none;
    background-size: 18px 18px !important;
}

.navTab01 a.mainQuickLink, .navTab01 a.mainQuickLink:link, .navTab01 a.mainQuickLink:visited {
    color: #008449;
}

.navTab02 a.mainQuickLink, .navTab02 a.mainQuickLink:link, .navTab02 a.mainQuickLink:visited {
    color: #007169;
}

.navTab03 a.mainQuickLink, .navTab03 a.mainQuickLink:link, .navTab03 a.mainQuickLink:visited {
    color: #006184;
}

.navTab04 a.mainQuickLink, .navTab04 a.mainQuickLink:link, .navTab04 a.mainQuickLink:visited {
    color: #005696;
}

a.mainQuickLink:focus {
    text-decoration: underline;
}


#quickLink01 > a {
    background: url(../images/structure/quicklinks/icon-involved-04.svg) 15px center no-repeat;
}

.navTab01 #quickLink01 > a {
    background: url(../images/structure/quicklinks/icon-involved-01.svg) 15px center no-repeat;
}

.navTab02 #quickLink01 > a {
    background: url(../images/structure/quicklinks/icon-involved-02.svg) 15px center no-repeat;
}

.navTab03 #quickLink01 > a {
    background: url(../images/structure/quicklinks/icon-involved-03.svg) 15px center no-repeat;
}

.navTab04 #quickLink01 > a {
    background: url(../images/structure/quicklinks/icon-involved-04.svg) 15px center no-repeat;
}


#quickLink02 > a {
    background: url(../images/structure/quicklinks/icon-informed-04.svg) 15px center no-repeat;
}

.navTab01 #quickLink02 > a {
    background: url(../images/structure/quicklinks/icon-informed-01.svg) 15px center no-repeat;
}

.navTab02 #quickLink02 > a {
    background: url(../images/structure/quicklinks/icon-informed-02.svg) 15px center no-repeat;
}

.navTab03 #quickLink02 > a {
    background: url(../images/structure/quicklinks/icon-informed-03.svg) 15px center no-repeat;
}

.navTab04 #quickLink02 > a {
    background: url(../images/structure/quicklinks/icon-informed-04.svg) 15px center no-repeat;
}


#quickLink03 > a {
    background: url(../images/structure/quicklinks/icon-news-04.svg) 15px center no-repeat;
}

.navTab01 #quickLink03 > a {
    background: url(../images/structure/quicklinks/icon-news-01.svg) 15px center no-repeat;
}

.navTab02 #quickLink03 > a {
    background: url(../images/structure/quicklinks/icon-news-02.svg) 15px center no-repeat;
}

.navTab03 #quickLink03 > a {
    background: url(../images/structure/quicklinks/icon-news-03.svg) 15px center no-repeat;
}

.navTab04 #quickLink03 > a {
    background: url(../images/structure/quicklinks/icon-news-04.svg) 15px center no-repeat;
}


#quickLink04 > a {
    background: url(../images/structure/quicklinks/icon-calendar-04.svg) 15px center no-repeat;
}

.navTab01 #quickLink04 > a {
    background: url(../images/structure/quicklinks/icon-calendar-01.svg) 15px center no-repeat;
}

.navTab02 #quickLink04 > a {
    background: url(../images/structure/quicklinks/icon-calendar-02.svg) 15px center no-repeat;
}

.navTab03 #quickLink04 > a {
    background: url(../images/structure/quicklinks/icon-calendar-03.svg) 15px center no-repeat;
}

.navTab04 #quickLink04 > a {
    background: url(../images/structure/quicklinks/icon-calendar-04.svg) 15px center no-repeat;
}


#quickLink05 > a {
    background: url(../images/structure/quicklinks/icon-locate-04.svg) 15px center no-repeat;
}

.navTab01 #quickLink05 > a {
    background: url(../images/structure/quicklinks/icon-locate-01.svg) 15px center no-repeat;
}

.navTab02 #quickLink05 > a {
    background: url(../images/structure/quicklinks/icon-locate-02.svg) 15px center no-repeat;
}

.navTab03 #quickLink05 > a {
    background: url(../images/structure/quicklinks/icon-locate-03.svg) 15px center no-repeat;
}

.navTab04 #quickLink05 > a {
    background: url(../images/structure/quicklinks/icon-locate-04.svg) 15px center no-repeat;
}

#quickLink06 > a {
    background: url(../images/structure/quicklinks/icon-contact-04.svg) 15px center no-repeat;
}

.navTab01 #quickLink06 > a {
    background: url(../images/structure/quicklinks/icon-contact-01.svg) 15px center no-repeat;
}

.navTab02 #quickLink06 > a {
    background: url(../images/structure/quicklinks/icon-contact-02.svg) 15px center no-repeat;
}

.navTab03 #quickLink06 > a {
    background: url(../images/structure/quicklinks/icon-contact-03.svg) 15px center no-repeat;
}

.navTab04 #quickLink06 > a {
    background: url(../images/structure/quicklinks/icon-contact-04.svg) 15px center no-repeat;
}


/* ========== 2nd Level (Drop-down) Quick Links ========== */


#quickLinksContainer .quickDropDown {
    display: none;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 400;
    padding: 30px;
    padding-top: 26px;
    overflow: hidden;
    background-color: #FFF;
    font-size: 0.938em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	border: 1px solid #ccc;
	border-bottom: none;
}

#quickLinksContainer #quickLink01 .quickDropDown { -webkit-border-bottom-left-radius: 0px; -moz-border-radius-bottomleft: 0px; border-bottom-left-radius: 0px; }
#quickLinksContainer #quickLink06 .quickDropDown { -webkit-border-bottom-right-radius: 0px; -moz-border-radius-bottomright: 0px; border-bottom-right-radius: 0px; }

#quickLinksContainer.hover {
    z-index: 4000;
}

#quickLinksAdvanced .quickDropDown ul {
    list-style-type: none;
    list-style-image: none;
    padding: 0 !important;
}

.myZone {
    min-height: 100px;
    padding: 10px;
    padding-top: 0;
    overflow: hidden;
    position: relative;
}

    .myZone h2 {
        font-size: 1.176em;
        font-family: "verbbold", "helvetica neue", helvetica, Arial, sans-serif;
        color: #000;
        padding: 0;
        margin: 0 0 20px 0;
    }

        .myZone h2 + h3 {
            margin: 0;
            padding: 0;
        }

    .myZone a, .myZone a:link, .myZone a:visited {
        text-decoration: none;
    }

        .myZone a:hover, .myZone a:active, .myZone a:focus {
            text-decoration: underline;
        }

        .myZone a .title, .myZone a:link .title, .myZone a:visited .title {
            color: #000;
        }

        .myZone a.viewMore, .myZone a.viewMore:link, .myZone a.viewMore:visited {
            display: block;
            font-family: "verbbold", "helvetica neue", helvetica, Arial, sans-serif;
        }

    .myZone .imgLink {
        display: block;
        margin-bottom: 10px;
    }

        .myZone .imgLink img {
            display: block;
            width: 100%;
            height: auto;
        }

/* GET INVOLVED */

#quickLinksAdvanced .quickDropDown01 .ic-col-sm-3, #quickLinksAdvanced .quickDropDown01 .ic-col-sm-9 {
    padding-left: 10px;
    padding-right: 10px;
}

.getInvolvedMain {
    padding: 20px;
    height: 216px;
    padding-right: 300px;
    background: #d3f2ff url(../en/resourcesGeneral/bg-involved.jpg) bottom right no-repeat;
    overflow: hidden;
}

    .getInvolvedMain h2 {
        margin-top: 0;
        color: #005696;
        font-size: 2.188em;
        line-height: 1.2;
        height: 1.2em;
        overflow: hidden;
        width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-family: "verbbold", "helvetica neue", helvetica, Arial, sans-serif;
    }

    .getInvolvedMain p {
        font-size: 0.938em;
        line-height: 1.2;
        overflow: hidden;
    }

.getInvolvedLinks a {
    display: block;
    margin-bottom: 8px;
    max-width: 100%;
    overflow: hidden;
}

    .getInvolvedLinks a img {
        display: block;
        width: 100%;
    }

.involvedInfoBox {
    padding: 15px 15px 5px 75px;
    background: #ededed;
    position: relative;
    min-height: 135px;
	overflow: hidden;
}

    .involvedInfoBox p {
        margin: 0 0 15px 0;
        font-size: 0.938em;
        line-height: 1.2;
    }

    .involvedInfoBox img.icon {
        position: absolute;
        top: 10px;
        left: 10px;
    }


/* Stay Informed */

#quickLinksAdvanced .quickDropDown02 .ic-col-sm-3, #quickLinksAdvanced .quickDropDown02 .ic-col-sm-6 {
    padding-left: 10px;
    padding-right: 10px;
}

#quickLinksAdvanced .quickDropDown02 .ic-row.first{
	padding-bottom: 20px;
}

.stayInformedMain {
    padding: 20px 20px 5px 20px;
    background: #d3f2ff;
    overflow: hidden;
}

    .stayInformedMain h2 {
        margin-top: 0;
        color: #005696;
        font-size: 1.313em;
        line-height: 1.2;
        width: 100%;
        font-family: "verbbold", "helvetica neue", helvetica, Arial, sans-serif;
    }
	
	.stayInformedMain h3 {
		margin-top: 0;
        color: #000;
        font-size: 1.313em;
        line-height: 1.2;
		font-weight: normal;
        width: 100%;
        font-family: "verbbold", "helvetica neue", helvetica, Arial, sans-serif;
	}

    .stayInformedMain p {
        font-size: 0.938em;
        line-height: 1.2;
        overflow: hidden;
    }

.stayInformedInfoBox {
    padding: 15px 15px 5px 75px;
    background: #ededed;
    position: relative;
	overflow: hidden;
}

.stayInformedSocialMedia{
	padding-left: 15px !important;
}

.stayInformedSocialMedia img{
	padding: 3px;
}

	.stayInformedInfoBox h2 {
		margin: 0 0 10px 0;
        color: #000;
        font-size: 1.313em;
        line-height: 1.2;
        width: 100%;
        font-family: "verbbold", "helvetica neue", helvetica, Arial, sans-serif;
	}

    .stayInformedInfoBox p {
        margin: 0 0 15px 0;
        font-size: 0.938em;
        line-height: 1.2;
    }
	
	.stayInformedInfoBox p.button a,
	.stayInformedInfoBox p a.button{
		display: inline-block;
		background: #005696;
		color: #fff;
		padding: 15px;
		font-family: "verbbold", "helvetica neue", helvetica, Arial, sans-serif;
		color: #fff !important;
		text-align: center;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	
	.stayInformedInfoBox p.button{
		padding: 0;
		margin: 0;
	}

    .stayInformedInfoBox img.icon {
        position: absolute;
        top: 10px;
        left: 10px;
    }



/* NEWS AND NOTICES */


.myZone .newsFeature h2 {
    margin-bottom: 0px;
}

.newsFeature img {
    width: 100%;
    height: auto;
    display: block;
    float: left;
    margin-bottom: 10px;
    border: solid 1px #005696;
}

.quickNewsItem {
    margin-bottom: 20px;
}

    .quickNewsItem .date {
        color: #000;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .quickNewsItem .description {
        overflow: hidden;
        width: 100%;
        float: left;
        line-height: 1.2em;
        max-height: 3.6em;
        margin: 0;
    }

.noticeContainer {
    background: #e6eff6;
    padding: 15px;
}

.navTab01 .noticeContainer {
    background: #e5f2ec;
}

.navTab02 .noticeContainer {
    background: #e5f1f0;
}

.navTab03 .noticeContainer {
    background: #e5eff2;
}

.navTab04 .noticeContainer {
    background: #e6eff6;
}

.noticeContainer .quickNewsItem .description {
    max-height: 2.4em;
    overflow: hidden;
}

/* ATTEND AN EVENT */

.myZone .arrowButton.calendarSubscribe {
    color: #005696 !important;
    background: #e6eff6 url(../images/structure/chevron-right-04.png) 95% center no-repeat;
}

.navTab01 .myZone .arrowButton.calendarSubscribe {
    color: #007169 !important;
    background: #e5f2ec url(../images/structure/chevron-right-01.png) 95% center no-repeat;
}

.navTab02 .myZone .arrowButton.calendarSubscribe {
    color: #007169 !important;
    background: #e5f1f0 url(../images/structure/chevron-right-02.png) 95% center no-repeat;
}

.navTab03 .myZone .arrowButton.calendarSubscribe {
    color: #006184 !important;
    background: #e5eff2 url(../images/structure/chevron-right-03.png) 95% center no-repeat;
}

.navTab04 .myZone .arrowButton.calendarSubscribe {
    color: #005696 !important;
    background: #e6eff6 url(../images/structure/chevron-right-04.png) 95% center no-repeat;
}

/* LOCATE FACILITIES */

.locateItem {
    margin-top: 30px;
}

    .locateItem:first-child {
        margin-top: 0;
    }

.locateHeading {
    font-size: 1em;
    position: relative;
    padding: 0;
    margin: 0;
    padding: 10px 0;
    padding-left: 40px;
    color: #000;
    font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .locateHeading .icon {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
    }

#quickLinksAdvanced .locateList {
    max-height: 10.2em;
    overflow: hidden;
}

.locateList li {
    border-top: solid 1px #ccc;
}

    .locateList li a {
        display: block;
        padding: .25em 0;
        line-height: 1.2em;
        max-height: 2.4em;
        overflow: hidden;
    }

.locateItem .viewAll {
    display: block;
    margin-top: 20px;
    font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;
}

/* CONTACT US */

.quickContactImageContainer img {
    max-width: 100%;
    max-height: 344px;
    height: auto;
    width: auto;
    display: block;
    border: solid 1px #005696;
}


/* ========== MOBILE QUICKLINKS ========== */

.mobileQuickLinks {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 402;
}

    .mobileQuickLinks ul, .mobileQuickLinks ul li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
        vertical-align: middle;
        overflow: hidden;
    }

    .mobileQuickLinks > ul {
        display: table;
        width: 100%;
    }

        .mobileQuickLinks > ul > li {
            width: 33.33333%;
            display: table-cell;
            border-left: solid 1px #c5c5c5;
            vertical-align: middle;
            height: 44px;
        }

            .mobileQuickLinks > ul > li:hover, .mobileQuickLinks > ul > li:active, .mobileQuickLinks > ul > li:focus {
                background: #fff;
            }


            .mobileQuickLinks > ul > li.active {
                position: relative;
                background: #fff;
            }


            .mobileQuickLinks > ul > li > a, .mobileQuickLinks > ul > li > a:link, .mobileQuickLinks > ul > li > a:visited {
                color: #000;
                font-size: 1em;
                line-height: 1.2;
                text-transform: uppercase;
                width: 100%;
                font-size: .85em;
                display: inline-block;
                padding: 5px 10px 5px 10px;
                overflow: hidden;
                text-decoration: none;
                background: none;
                text-align: center;
            }

a.mainQuickLink:focus {
    text-decoration: underline;
}

/*======================================================
  6. BREADCRUMBS
  ===================================================== */

.horizNavSeparator {
    padding: 0px 7px 0px 7px;
}

#breadcrumbs {
    font-size: .9em;
    padding-top: 7px;
    color: #666;
    margin-bottom: 30px;
}


    #breadcrumbs a, #breadcrumbs a:link, #breadcrumbs a:visited {
        text-decoration: none;
    }

        #breadcrumbs a:hover, #breadcrumbs a:active, #breadcrumbs a:focus {
            text-decoration: underline;
        }

/* MOBILE SUBNAV */

.mobileSubNavContainer {
    opacity: 0;
    display: none;
    height: 1px;
    overflow: hidden;
    margin-bottom: 20px;
    -webkit-transition: opacity .1s ease-in;
    -moz-transition: opacity .1s ease-in;
    -ms-transition: opacity .1s ease-in;
    -o-transition: opacity .1s ease-in;
    transition: opacity .1s ease-in;
}

.subNavOpen .mobileSubNavContainer {
    height: auto !important;
    opacity: 1;
    display: block;
}


/* WHEN MOBILE SUBNAV IS VISIBLE */

.subNavOpen #breadcrumbs * {
    display: none !important;
}


/*======================================================
  7. ACTIONS
  ===================================================== */

#actions {
    width: 200px;
    position: absolute;
    bottom: 8px;
    right: 0;
    text-align: right;
}


    #actions div {
        display: inline-block;
    }

    #actions .horizNavSeparator {
        float: left;
        padding: 0;
        color: #b1b3b4;
        line-height: 16px;
    }

    #actions .feedbackSeparator {
        display: none;
    }

    #actions .share {
        margin-left: 6px;
        width: 72px;
        float: none;
    }

    #actions div a {
        position: relative;
        display: block;
        float: left;
        height: 15px;
        padding: 0 7px;
        cursor: pointer;
    }

    #actions .share a {
        width: 78px;
        padding: 0;
    }

    #actions div a:focus {
        border: dotted 1px #000;
    }

    #actions div a img {
        position: relative;
        top: 0;
        height: 15px;
        width: auto;
        float: left;
    }

    /* Font Resizer */

    #actions .resizeText {
        margin-right: 3px;
        border-left: none;
    }

        #actions .resizeText a {
            float: left;
            padding: 0 5px;
        }


            #actions .resizeText a:focus {
                border: dotted 1px #000;
            }


/* LANGUAGE LINK */

.languageLink {
    display: none !important;
}

.courts .languageLink {
    display: inline-block !important;
    position: relative;
    top: 5px;
}

#actions .languageLink a {
    text-align: center;
    font-size: .85em;
    display: block;
    width: 86px;
    height: 24px;
    line-height: 24px;
    padding: 0;
    color: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #ce3527;
}

/* Translate */

#languageContainer {
    margin-right: 1%;
    margin-top: 48px;
    float: left;
    width: 33%;
    height: 40px;
}
.fixedHeader #languageContainer {
    margin-top: 0;
    width: 39%;
}
#languageContainer img.goog-te-gadget-icon{ display: none; }
#languageContainer a.goog-te-menu-value{
    display: block;
    font-size: 17px;
    overflow: hidden;
    text-decoration: none;
    width: 100%;
    margin: 0;
}
#languageContainer a.goog-te-menu-value img { display: none !important; }
#languageContainer a.goog-te-menu-value span{ color: transparent !important; border:none !important;}
#languageContainer a.goog-te-menu-value span:first-child{ line-height: 40px; color: #000 !important; }
#languageContainer .goog-te-gadget-simple {
    float: left;
    padding: 0 0 0 5px !important;
    width: 100%;
    height: 40px;
    background: white url(../images/structure/chevron-down-04.png) 95% center no-repeat !important;
    border: 1px solid #ccc !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
.goog-te-gadget-simple {
    border: none !important;
    background: transparent !important;
}
.fixedHeader #languageContainer .goog-te-gadget-simple {
    height: 30px;
}

.fixedHeader #languageContainer a.goog-te-menu-value span:first-child {
    line-height: 30px;
}

.fixedHeader #languageContainer a.goog-te-menu-value {
    font-size: 14px;
}
@media only screen and (max-width: 991px) {
    #languageContainer { margin-top: 20px; }
}
@media only screen and (max-width: 767px) {
    #languageContainer { display: none; }
}

/*======================================================
  8. SUBNAV
  ===================================================== */

.subNav {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    float: left;
    width: 100%;
}

    .subNav > li {
        float: left; /* This corrects the */
        width: 100%; /* IE whitespace bug */
        margin: 0 !important;
        padding: 0;
        list-style: none;
        border-top: solid 1px #dbdcdd;
    }

        .subNav > li:first-child {
            border: none;
        }


    /*==================
  links
====================*/

    .subNav a,
    .subNav a:link,
    .subNav a:visited {
        display: block;
        padding: 11px 30px 11px 18px;
        width: 100%;
        font-size: 1em;
        line-height: 1.2em;
        text-decoration: none;
        color: #000;
        overflow: hidden;
    }

    .subNav .withChildren a,
    .subNav .withChildren a:link,
    .subNav .withChildren a:visited {
        background: url(../images/structure/chevron-right-black.png) 96% 14px no-repeat;
        background: url(../images/structure/chevron-right-black.png) 96% 14px no-repeat;
    }

    .subNav a:hover, .subNav a:focus {
        background-color: #eaeaea;
        color: #000;
    }

    .subNav .withChildren a:hover, .subNav .withChildren a:focus, .subNav .withChildren a:active {
        background: #eaeaea url(../images/structure/chevron-right-black.png) 96% 14px no-repeat;
    }

    .subNav a.current {
        background-color: #005696 !important;
        color: #fff !important;
        font-size: 1.118em;
        line-height: 1.263em;
        padding-top: 15px;
        padding-bottom: 15px;
        font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;
    }

.navTab01 .subNav a.current {
    background-color: #008449 !important;
}

.navTab02 .subNav a.current {
    background-color: #007169 !important;
}

.navTab03 .subNav a.current {
    background-color: #006184 !important;
}

.navTab04 .subNav a.current {
    background-color: #005696 !important;
}

.subNav .withChildren a.current {
    background: #005696 url(../images/structure/chevron-down-white.png) 96% 22px no-repeat !important;
}

.navTab01 .subNav .withChildren a.current {
    background-color: #008449 !important;
}

.navTab02 .subNav .withChildren a.current {
    background-color: #007169 !important;
}

.navTab03 .subNav .withChildren a.current {
    background-color: #006184 !important;
}

.navTab04 .subNav .withChildren a.current {
    background-color: #005696 !important;
}

.subNav .withChildren a.open {
    background: #005696 url(../images/structure/chevron-down-white.png) 96% 22px no-repeat !important;
    font-size: 1.118em;
    line-height: 1.263em;
    padding-top: 15px;
    color: #fff;
    padding-bottom: 15px;
    font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;
}

.navTab01 .subNav .withChildren a.open {
    background-color: #008449 !important;
}

.navTab02 .subNav .withChildren a.open {
    background-color: #007169 !important;
}

.navTab03 .subNav .withChildren a.open {
    background-color: #006184 !important;
}

.navTab04 .subNav .withChildren a.open {
    background-color: #005696 !important;
}

.subNav .withChildren a.open:hover,
.subNav .withChildren a.open:focus {
    background: #00487e url(../images/structure/chevron-down-white.png) 96% 22px no-repeat !important;
}

.navTab01 .subNav .withChildren a.open:hover, .navTab01 .subNav .withChildren a.open:focus {
    background-color: #006a3a !important;
}

.navTab02 .subNav .withChildren a.open:hover, .navTab02 .subNav .withChildren a.open:focus {
    background-color: #015d56 !important;
}

.navTab03 .subNav .withChildren a.open:hover, .navTab03 .subNav .withChildren a.open:focus {
    background-color: #014d68 !important;
}

.navTab04 .subNav .withChildren a.open:hover, .navTab04 .subNav .withChildren a.open:focus {
    background-color: #00487e !important;
}
/*==================
  lvlTwo
====================*/

.subNav ul, .subNav ul li {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

    .subNav ul li {
        border-top: solid 1px #ccc;
    }

    .subNav ul a,
    .subNav ul a:link,
    .subNav ul a:visited {
        background-image: none !important;
        background-color: #e6eff6 !important;
        color: #005696;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1em;
        line-height: 1.294em;
    }

.navTab01 .subNav ul a, .navTab01 .subNav ul a:link, .navTab01 .subNav ul a:visited {
    background-color: #e5f2ec !important;
    color: #008449;
}

.navTab02 .subNav ul a, .navTab02 .subNav ul a:link, .navTab02 .subNav ul a:visited {
    background-color: #e5f1f0 !important;
    color: #007169;
}

.navTab03 .subNav ul a, .navTab03 .subNav ul a:link, .navTab03 .subNav ul a:visited {
    background-color: #e5eff2 !important;
    color: #006184;
}

.navTab04 .subNav ul a, .navTab04 .subNav ul a:link, .navTab04 .subNav ul a:visited {
    background-color: #e6eff6 !important;
    color: #005696;
}


.subNav ul .withChildren a,
.subNav ul .withChildren a:link,
.subNav ul .withChildren a:visited {
    background: #e6eff6 url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}

.navTab01 .subNav ul .withChildren a, .navTab01 .subNav ul .withChildren a:link, .navTab01 .subNav ul .withChildren a:visited {
    background: #e5f2ec url(../images/structure/chevron-right-01.png) 96% 14px no-repeat !important;
}

.navTab02 .subNav ul .withChildren a, .navTab02 .subNav ul .withChildren a:link, .navTab02 .subNav ul .withChildren a:visited {
    background: #e5f1f0 url(../images/structure/chevron-right-02.png) 96% 14px no-repeat !important;
}

.navTab03 .subNav ul .withChildren a, .navTab03 .subNav ul .withChildren a:link, .navTab03 .subNav ul .withChildren a:visited {
    background: #e5eff2 url(../images/structure/chevron-right-03.png) 96% 14px no-repeat !important;
}

.navTab04 .subNav ul .withChildren a, .navTab04 .subNav ul .withChildren a:link, .navTab04 .subNav ul .withChildren a:visited {
    background: #e6eff6 url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}


.subNav ul a:hover, .subNav ul a:focus {
    background-image: none !important;
    background-color: #d0e1ef !important;
}

.navTab01 .subNav ul a:hover, .navTab01 .subNav ul a:focus {
    background-color: #cce6db !important;
}

.navTab02 .subNav ul a:hover, .navTab02 .subNav ul a:focus {
    background-color: #cce3e1 !important;
}

.navTab03 .subNav ul a:hover, .navTab03 .subNav ul a:focus {
    background-color: #ccdfe6 !important;
}

.navTab04 .subNav ul a:hover, .navTab04 .subNav ul a:focus {
    background-color: #d0e1ef !important;
}

.subNav ul .withChildren a:hover, .subNav ul .withChildren a:focus, .subNav ul .withChildren a:active {
    background: #d0e1ef url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}

.navTab01 .subNav ul .withChildren a:hover, .navTab01 .subNav ul .withChildren a:focus, .navTab01 .subNav ul .withChildren a:active {
    background: #cce6db url(../images/structure/chevron-right-01.png) 96% 14px no-repeat !important;
}

.navTab02 .subNav ul .withChildren a:hover, .navTab02 .subNav ul .withChildren a:focus, .navTab02 .subNav ul .withChildren a:active {
    background: #cce3e1 url(../images/structure/chevron-right-02.png) 96% 14px no-repeat !important;
}

.navTab03 .subNav ul .withChildren a:hover, .navTab03 .subNav ul .withChildren a:focus, .navTab03 .subNav ul .withChildren a:active {
    background: #ccdfe6 url(../images/structure/chevron-right-03.png) 96% 14px no-repeat !important;
}

.navTab04 .subNav ul .withChildren a:hover, .navTab04 .subNav ul .withChildren a:focus, .navTab04 .subNav ul .withChildren a:active {
    background: #d0e1ef url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}

.subNav .withChildren ul a.current {
    background-image: none !important;
    background: #e6eff6 !important;
    color: #005696 !important;
    font-size: 1em;
    line-height: 1.294em;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;
}

.navTab01 .subNav .withChildren ul a.current {
    background-color: #e5f2ec !important;
    color: #008449 !important;
}

.navTab02 .subNav .withChildren ul a.current {
    background-color: #e5f1f0 !important;
    color: #007169 !important;
}

.navTab03 .subNav .withChildren ul a.current {
    background-color: #e5eff2 !important;
    color: #006184 !important;
}

.navTab04 .subNav .withChildren ul a.current {
    background-color: #e6eff6 !important;
    color: #005696 !important;
}

.subNav .withChildren ul .withChildren a.current {
    background: #e6eff6 url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
}

.navTab01 .subNav .withChildren ul .withChildren a.current {
    background: #e5f2ec url(../images/structure/chevron-down-01.png) 96% 16px no-repeat !important;
}

.navTab02 .subNav .withChildren ul .withChildren a.current {
    background: #e5f1f0 url(../images/structure/chevron-down-02.png) 96% 16px no-repeat !important;
}

.navTab03 .subNav .withChildren ul .withChildren a.current {
    background: #e5eff2 url(../images/structure/chevron-down-03.png) 96% 16px no-repeat !important;
}

.navTab04 .subNav .withChildren ul .withChildren a.current {
    background: #e6eff6 url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
}

.subNav .withChildren ul .withChildren a.open {
    background: #e6eff6 url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
    font-size: 1em;
    line-height: 1.294em;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'verbRegular', "helvetica neue", Helvetica, Arial, sans-serif !important;
    color: #005696 !important;
}

.navTab01 .subNav .withChildren ul .withChildren a.open {
    background: #e5f2ec url(../images/structure/chevron-down-01.png) 96% 16px no-repeat !important;
    color: #008449 !important;
}

.navTab02 .subNav .withChildren ul .withChildren a.open {
    background: #e5f1f0 url(../images/structure/chevron-down-02.png) 96% 16px no-repeat !important;
    color: #007169 !important;
}

.navTab03 .subNav .withChildren ul .withChildren a.open {
    background: #e5eff2 url(../images/structure/chevron-down-03.png) 96% 16px no-repeat !important;
    color: #006184 !important;
}

.navTab04 .subNav .withChildren ul .withChildren a.open {
    background: #e6eff6 url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
    color: #005696 !important;
}


.subNav .withChildren ul .withChildren a.open:hover,
.subNav .withChildren ul .withChildren a.open:focus {
    background: #d0e1ef url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
    font-family: 'verbRegular', "helvetica neue", Helvetica, Arial, sans-serif !important;
    color: #005696 !important;
}

.navTab01 .subNav .withChildren ul .withChildren a.open:hover, .navTab01 .subNav .withChildren ul .withChildren a.open:focus {
    background: #cce6db url(../images/structure/chevron-down-01.png) 96% 16px no-repeat !important;
    color: #008449 !important;
}

.navTab02 .subNav .withChildren ul .withChildren a.open:hover, .navTab02 .subNav .withChildren ul .withChildren a.open:focus {
    background: #cce3e1 url(../images/structure/chevron-down-02.png) 96% 16px no-repeat !important;
    color: #007169 !important;
}

.navTab03 .subNav .withChildren ul .withChildren a.open:hover, .navTab03 .subNav .withChildren ul .withChildren a.open:focus {
    background: #ccdfe6 url(../images/structure/chevron-down-03.png) 96% 16px no-repeat !important;
    color: #006184 !important;
}

.navTab04 .subNav .withChildren ul .withChildren a.open:hover, .navTab04 .subNav .withChildren ul .withChildren a.open:focus {
    background: #d0e1ef url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
    color: #005696 !important;
}


/*==================
  lvlThree
====================*/

.subNav ul .withChildren ul a span {
    padding-left: 18px;
    background: url(../images/structure/bullet-subnav.png) 5px 7px no-repeat;
    background-size: 4px 4px;
    display: block;
    width: 100%;
}

.subNav ul .withChildren ul li {
}

.subNav ul .withChildren ul a,
.subNav ul .withChildren ul a:link,
.subNav ul .withChildren ul a:visited {
    background-image: none !important;
    background: #d0e1ef !important;
    color: #005696 !important;
}

.navTab01 .subNav ul .withChildren ul a, .navTab01 .subNav ul .withChildren ul a:link, .navTab01 .subNav ul .withChildren ul a:visited {
    background: #cce6db !important;
	color: #006437 !important;
}

.navTab02 .subNav ul .withChildren ul a, .navTab02 .subNav ul .withChildren ul a:link, .navTab02 .subNav ul .withChildren ul a:visited {
    background: #cce3e1 !important;
	color: #00645d !important;
}

.navTab03 .subNav ul .withChildren ul a, .navTab03 .subNav ul .withChildren ul a:link, .navTab03 .subNav ul .withChildren ul a:visited {
    background: #ccdfe6 !important;
	color: #005c7d !important;
}

.navTab04 .subNav ul .withChildren ul a, .navTab04 .subNav ul .withChildren ul a:link, .navTab04 .subNav ul .withChildren ul a:visited {
    background: #d0e1ef !important;
	color: #005696 !important;
}


.subNav ul .withChildren ul .withChildren a,
.subNav ul .withChildren ul .withChildren a:link,
.subNav ul .withChildren ul .withChildren a:visited {
    background: #d0e1ef url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}

.navTab01 .subNav ul .withChildren ul .withChildren a,
.navTab01 .subNav ul .withChildren ul .withChildren a:link,
.navTab01 .subNav ul .withChildren ul .withChildren a:visited {
    background: #cce6db url(../images/structure/chevron-right-01.png) 96% 14px no-repeat !important;
}

.navTab02 .subNav ul .withChildren ul .withChildren a,
.navTab02 .subNav ul .withChildren ul .withChildren a:link,
.navTab02 .subNav ul .withChildren ul .withChildren a:visited {
    background: #cce3e1 url(../images/structure/chevron-right-02.png) 96% 14px no-repeat !important;
}

.navTab03 .subNav ul .withChildren ul .withChildren a,
.navTab03 .subNav ul .withChildren ul .withChildren a:link,
.navTab03 .subNav ul .withChildren ul .withChildren a:visited {
    background: #ccdfe6 url(../images/structure/chevron-right-03.png) 96% 14px no-repeat !important;
}

.navTab04 .subNav ul .withChildren ul .withChildren a,
.navTab04 .subNav ul .withChildren ul .withChildren a:link,
.navTab04 .subNav ul .withChildren ul .withChildren a:visited {
    background: #d0e1ef url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}


.subNav ul .withChildren ul a:hover, .subNav ul .withChildren ul a:focus, .subNav ul .withChildren ul a:active {
    background: #c4d3e0 !important;
}

.navTab01 .subNav ul .withChildren ul a:hover, .navTab01 .subNav ul .withChildren ul a:focus, .navTab01 .subNav ul .withChildren ul a:active {
    background: #b7dccc !important;
}

.navTab02 .subNav ul .withChildren ul a:hover, .navTab02 .subNav ul .withChildren ul a:focus, .navTab02 .subNav ul .withChildren ul a:active {
    background: #c7dcda !important;
}

.navTab03 .subNav ul .withChildren ul a:hover, .navTab03 .subNav ul .withChildren ul a:focus, .navTab03 .subNav ul .withChildren ul a:active {
    background: #bdced4 !important;
}

.navTab04 .subNav ul .withChildren ul a:hover, .navTab04 .subNav ul .withChildren ul a:focus, .navTab04 .subNav ul .withChildren ul a:active {
    background: #c4d3e0 !important;
}


.subNav ul .withChildren ul .withChildren a:hover, .subNav ul .withChildren ul .withChildren a:focus, .subNav ul .withChildren ul .withChildren a:active {
    background: #c4d3e0 url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}

.navTab01 .subNav ul .withChildren ul .withChildren a:hover, .navTab01 .subNav ul .withChildren ul .withChildren a:focus, .navTab01 .subNav ul .withChildren ul .withChildren a:active {
    background: #b7dccc url(../images/structure/chevron-right-01.png) 96% 14px no-repeat !important;
}

.navTab02 .subNav ul .withChildren ul .withChildren a:hover, .navTab02 .subNav ul .withChildren ul .withChildren a:focus, .navTab02 .subNav ul .withChildren ul .withChildren a:active {
    background: #c7dcda url(../images/structure/chevron-right-02.png) 96% 14px no-repeat !important;
}

.navTab03 .subNav ul .withChildren ul .withChildren a:hover, .navTab03 .subNav ul .withChildren ul .withChildren a:focus, .navTab03 .subNav ul .withChildren ul .withChildren a:active {
    background: #bdced4 url(../images/structure/chevron-right-03.png) 96% 14px no-repeat !important;
}

.navTab04 .subNav ul .withChildren ul .withChildren a:hover, .navTab04 .subNav ul .withChildren ul .withChildren a:focus, .navTab04 .subNav ul .withChildren ul .withChildren a:active {
    background: #c4d3e0 url(../images/structure/chevron-right-04.png) 96% 14px no-repeat !important;
}


.subNav .withChildren ul .withChildren ul a.current {
    background: #d0e1ef !important;
    color: #005696 !important;
    font-family: 'verbBold', "helvetica neue", Helvetica, Arial, sans-serif !important;
}

.navTab01 .subNav .withChildren ul .withChildren ul a.current {
    background: #cce6db !important;
    color: #006437 !important;
}

.navTab02 .subNav .withChildren ul .withChildren ul a.current {
    background: #cce3e1 !important;
    color: #00645d !important;
}

.navTab03 .subNav .withChildren ul .withChildren ul a.current {
    background: #ccdfe6 !important;
    color: #005c7d !important;
}

.navTab04 .subNav .withChildren ul .withChildren ul a.current {
    background: #d0e1ef !important;
    color: #005696 !important;
}

.subNav .withChildren ul .withChildren ul .withChildren a.current {
    background: #d0e1ef url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
}

.navTab01 .subNav .withChildren ul .withChildren ul .withChildren a.current {
    background: #cce6db url(../images/structure/chevron-down-01.png) 96% 16px no-repeat !important;
}

.navTab02 .subNav .withChildren ul .withChildren ul .withChildren a.current {
    background: #cce3e1 url(../images/structure/chevron-down-02.png) 96% 16px no-repeat !important;
}

.navTab03 .subNav .withChildren ul .withChildren ul .withChildren a.current {
    background: #ccdfe6 url(../images/structure/chevron-down-03.png) 96% 16px no-repeat !important;
}

.navTab04 .subNav .withChildren ul .withChildren ul .withChildren a.current {
    background: #d0e1ef url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
}

.subNav .withChildren ul .withChildren ul .withChildren a.open {
    background: #d0e1ef url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
    font-family: 'verbRegular', "helvetica neue", Helvetica, Arial, sans-serif !important;
    color: #005696 !important;
}

.navTab01 .subNav .withChildren ul .withChildren ul .withChildren a.open {
    background: #cce6db url(../images/structure/chevron-down-01.png) 96% 16px no-repeat !important;
    color: #006437 !important;
}

.navTab02 .subNav .withChildren ul .withChildren ul .withChildren a.open {
    background: #cce3e1 url(../images/structure/chevron-down-02.png) 96% 16px no-repeat !important;
    color: #00645d !important;
}

.navTab03 .subNav .withChildren ul .withChildren ul .withChildren a.open {
    background: #ccdfe6 url(../images/structure/chevron-down-03.png) 96% 16px no-repeat !important;
    color: #005c7d !important;
}

.navTab04 .subNav .withChildren ul .withChildren ul .withChildren a.open {
    background: #d0e1ef url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
    color: #005696 !important;
}

.subNav .withChildren ul .withChildren ul .withChildren a.open:hover,
.subNav .withChildren ul .withChildren ul .withChildren a.open:focus {
    background: #c4d3e0 url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
}

.navTab01 .subNav .withChildren ul .withChildren ul .withChildren a.open:hover,
.navTab01 .subNav .withChildren ul .withChildren ul .withChildren a.open:focus {
    background: #b7dccc url(../images/structure/chevron-down-01.png) 96% 16px no-repeat !important;
}

.navTab02 .subNav .withChildren ul .withChildren ul .withChildren a.open:hover,
.navTab02 .subNav .withChildren ul .withChildren ul .withChildren a.open:focus {
    background: #c7dcda url(../images/structure/chevron-down-02.png) 96% 16px no-repeat !important;
}

.navTab03 .subNav .withChildren ul .withChildren ul .withChildren a.open:hover,
.navTab03 .subNav .withChildren ul .withChildren ul .withChildren a.open:focus {
    background: #bdced4 url(../images/structure/chevron-down-03.png) 96% 16px no-repeat !important;
}

.navTab04 .subNav .withChildren ul .withChildren ul .withChildren a.open:hover,
.navTab04 .subNav .withChildren ul .withChildren ul .withChildren a.open:focus {
    background: #c4d3e0 url(../images/structure/chevron-down-04.png) 96% 16px no-repeat !important;
}


/*==================
  lvlFour
====================*/

.subNav ul .withChildren ul .withChildren ul a span {
    padding-left: 36px;
    background-position: 18px 9px;
}

.subNav ul .withChildren ul .withChildren ul a,
.subNav ul .withChildren ul .withChildren ul a:link,
.subNav ul .withChildren ul .withChildren ul a:visited {
    background-image: none !important;
}

.navTab01 .subNav ul .withChildren ul .withChildren ul a,
.navTab01 .subNav ul .withChildren ul .withChildren ul a:link,
.navTab01 .subNav ul .withChildren ul .withChildren ul a:visited {
    background-image: none !important;
}

.navTab02 .subNav ul .withChildren ul .withChildren ul a,
.navTab02 .subNav ul .withChildren ul .withChildren ul a:link,
.navTab02 .subNav ul .withChildren ul .withChildren ul a:visited {
    background-image: none !important;
}

.navTab03 .subNav ul .withChildren ul .withChildren ul a,
.navTab03 .subNav ul .withChildren ul .withChildren ul a:link,
.navTab03 .subNav ul .withChildren ul .withChildren ul a:visited {
    background-image: none !important;
}

.navTab04 .subNav ul .withChildren ul .withChildren ul a,
.navTab04 .subNav ul .withChildren ul .withChildren ul a:link,
.navTab04 .subNav ul .withChildren ul .withChildren ul a:visited {
    background-image: none !important;
}

.subNav ul .withChildren ul .withChildren ul a:hover, .subNav ul .withChildren ul .withChildren ul a:focus, .subNav ul .withChildren ul .withChildren ul a:active {
    background-image: none !important;
}

.navTab01 .subNav ul .withChildren ul .withChildren ul a:hover, .navTab01 .subNav ul .withChildren ul .withChildren ul a:focus, .navTab01 .subNav ul .withChildren ul .withChildren ul a:active {
    background-image: none !important;
    background-color: #b7dccc !important;
}

.navTab02 .subNav ul .withChildren ul .withChildren ul a:hover, .navTab02 .subNav ul .withChildren ul .withChildren ul a:focus, .navTab02 .subNav ul .withChildren ul .withChildren ul a:active {
    background-image: none !important;
    background-color: #c7dcda !important;
}

.navTab03 .subNav ul .withChildren ul .withChildren ul a:hover, .navTab03 .subNav ul .withChildren ul .withChildren ul a:focus, .navTab03 .subNav ul .withChildren ul .withChildren ul a:active {
    background-image: none !important;
    background-color: #bdced4 !important;
}

.navTab04 .subNav ul .withChildren ul .withChildren ul a:hover, .navTab04 .subNav ul .withChildren ul .withChildren ul a:focus, .navTab04 .subNav ul .withChildren ul .withChildren ul a:active {
    background-image: none !important;
    background-color: #c4d3e0 !important;
}

.subNav .withChildren ul .withChildren ul .withChildren ul a.current {
    background-image: none !important;
}

.navTab01 .subNav .withChildren ul .withChildren ul .withChildren ul a.current {
    background-image: none !important;
}

.navTab02 .subNav .withChildren ul .withChildren ul .withChildren ul a.current {
    background-image: none !important;
}

.navTab03 .subNav .withChildren ul .withChildren ul .withChildren ul a.current {
    background-image: none !important;
}

.navTab04 .subNav .withChildren ul .withChildren ul .withChildren ul a.current {
    background-image: none !important;
}

.subNav .withChildren ul .withChildren ul .withChildren ul .withChildren ul {
    display: none;
}

/*======================================================
  9. INTERIOR QUICKLINKS
  ===================================================== */


#intQuicklinks {
    background: #e6eff6;
}

.navTab01 #intQuicklinks {
    background: #e5f2ec;
}

.navTab02 #intQuicklinks {
    background: #e6eff6;
}

.navTab03 #intQuicklinks {
    background: #e5eff2;
}

.navTab04 #intQuicklinks {
    background: #e6eff6;
}

.intQuicklinksHeader {
    color: #fff;
    display: block;
    font-size: 1.125em;
    line-height: 1.2em;
    padding: 10px 32px 10px 18px;
    background: #005696 url(../images/structure/chevron-down-white.png) 93% center no-repeat;
    overflow: hidden;
    font-family: 'verbbold', "helvetica neue", Helvetica, Arial, sans-serif;
}

    .intQuicklinksHeader p {
        margin: 0 !important;
    }

.navTab01 .intQuicklinksHeader {
    background-color: #008449 !important;
}

.navTab02 .intQuicklinksHeader {
    background-color: #007169 !important;
}

.navTab03 .intQuicklinksHeader {
    background-color: #006184 !important;
}

.navTab04 .intQuicklinksHeader {
    background-color: #005696 !important;
}

.intQuicklinksBody {
    padding: 0;
}

#intQuicklinks ul, #intQuicklinks ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#intQuicklinks li {
    padding: 0;
    border-top: solid 1px #fff;
	background: url(../images/structure/bullet-subnav2x.png) 18px 16px no-repeat;
	background-size: 4px auto;
}

#intQuicklinks li { background: url(../images/structure/bullet-subnav.png) 18px 16px no-repeat; }

    #intQuicklinks li:first-child {
        border-top: none;
    }

    #intQuicklinks li a {
        color: #000;
        overflow: hidden;
        position: relative;
        display: block;
        width: 100%;
        padding: 8px 28px 8px 38px;
    }

        /*#intQuicklinks li a:before {
            content: '\2022';
            display: block;
            position: absolute;
            top: 8px;
            left: 18px;
            font-size: 1.2em;
			text-decoration: none !important;
        }*/


/*======================================================
  10. MOBILE DROPDOWN
  ===================================================== */

.mobileDropDown {
    overflow: hidden;
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    z-index: 5000;
    margin-bottom: 20px;
    display: none;
    padding: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    box-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.navOpen .mobileDropDown {
    display: block;
    top: 0;
    background: #fff;
    background: rgba(255,255,255,.95);
}

.mobileDropDown .closeNav {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 11px;
    right: 14px;
}

    .mobileDropDown .closeNav img {
        width: 30px;
        height: auto;
        height: auto;
        display: block;
    }

.mobileDropDown a.mainNavItem {
    display: block;
    width: 100%;
    margin: 0 auto;
    font-size: 1em;
    color: #000;
    text-align: left;
    height: auto;
    padding: 10px 20px;
    background: none;
    border-top: solid 1px #ccc;
}

    .mobileDropDown a.mainNavItem:first-of-type {
        border: none;
    }

    .mobileDropDown a.mainNavItem:hover,
    .mobileDropDown a.mainNavItem:active,
    .mobileDropDown a.mainNavItem:focus {
        background: #f7f7f7;
    }

.mobileDropDownHeader {
    height: 60px;
    position: relative;
    background: #000 url(../en/images/structure/logoText.png) 20px center no-repeat;
    background: rgba(0,0,0,0.95) url(../en/images/structure/logoText.png) 20px center no-repeat;
    background-size: auto 14px;
}

@media only screen and (max-width : 1200px) {
    .getInvolvedMain {
        padding-right: 20px;
        background-image: none;
    }
}


@media only screen and (max-width : 1100px) {

    a.mainQuickLink, a.mainQuickLink:link, a.mainQuickLink:visited {
        font-size: 1em;
        line-height: 1.2;
    }

        a.mainQuickLink, a.mainQuickLink:link, a.mainQuickLink:visited {
            font-size: 1em;
            line-height: 1.2;
        }
		
	.involvedInfoBox {
        padding-left: 45px;
    }

        .involvedInfoBox img.icon {
            top: 15px;
            width: 30px;
            height: auto;
        }
		
		.stayInformedMain p {
			margin: 0 0 10px 0;
		}
	
	.stayInformedInfoBox {
        padding-left: 45px;
    }
	
		.stayInformedInfoBox p, .stayInformedInfoBox h2 {
			margin: 0 0 10px 0;
		}

        .stayInformedInfoBox p.button a, 
		.stayInformedInfoBox p a.button{
			padding: 10px;
		}
		
		.stayInformedInfoBox img.icon {
            top: 15px;
            width: 30px;
            height: auto;
        }
}

@media only screen and (max-width : 991px) {

    #topNav a,
    #topNav a:link,
    #topNav a:visited,
    #translateContainer a,
    #translateContainer a:link,
    #translateContainer a:visited,
    #servicesContainer a,
    #servicesContainer a:link,
    #servicesContainer a:visited {
        color: #000;
        padding-left: 15px;
        font-size: .9em;
    }

    #breadcrumbs {
        clear: both;
        border: none;
    }

    #actions {
        float: none;
        width: 100% !important;
        padding: 10px 0 10px 0;
        text-align: left;
        margin: 0;
        border-bottom: solid 1px #ccc;
        border-top: solid 1px #ccc;
        position: relative;
        bottom: auto;
    }

        #actions div a {
            padding: 0 15px;
        }

        #actions .share {
            margin: 0 13px;
        }


    #actions .resizeText a {
        width: 33px;
    }

    #actions .feedbackSeparator {
        display: inline-block;
    }

    .quickNewsItem .description {
        height: 3.6em;
    }

    #quickLinksAdvanced {
        padding-bottom: 0;
    }

        #quickLinksAdvanced > ul > li {
            border-left: solid 1px #ccc;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0;
        }

            #quickLinksAdvanced > ul > li:last-child {
                border-right: solid 1px #ccc;
            }

    a.mainQuickLink, a.mainQuickLink:link, a.mainQuickLink:visited {
        font-size: .9em;
        line-height: 1.2;
    }

    #quickLinksAdvanced > ul > li > div {
        display: none !important;
    }

    #footerNav {
        font-size: .9em;
    }
	
	/*footer #languageContainer a.goog-te-menu-value span{ color: #eaeaea !important;}
	footer #languageContainer a.goog-te-menu-value span:first-child{ color: #005696 !important; }*/
}

@media only screen and (max-width : 767px) {

    #nav > #navTab01 {
    }

    #nav > li {
        width: 25%;
        padding-left: 2px;
    }

        #nav > li#navTab01 {
            padding-left: 0;
        }

        #nav > li > a {
            padding: 0;
			margin-bottom: 0 !important;
            background-image: none;
            height: 44px;
			border: none !important;
        }

            #uber #nav > li > a.mainNavItem > span {
                background-image: none !important;
                padding: 5px;
                text-align: center;
                font-size: .8em;
                line-height: 1.2em;
                height: 44px;
            }

        #nav > li.sfHover,
        .navTab01 #nav > li#navTab01,
        .navTab02 #nav > li#navTab02,
        .navTab03 #nav > li#navTab03,
        .navTab04 #nav > li#navTab04 
        {
            height: 44px;
            border-radius: 3px;
        }


            #nav > li.sfHover,
            .navTab01 #nav > li#navTab01 a,
            .navTab02 #nav > li#navTab02 a,
            .navTab03 #nav > li#navTab03 a,
            .navTab04 #nav > li#navTab04 a {
                height: 44px;
                border-radius: 3px;
				border: none;
            }

            #nav > li a.current {
                /*border: solid 1px #ccc;*/
            }

            #nav > li.sfHover,
            .navTab01 #nav > li#navTab01 a span,
            .navTab02 #nav > li#navTab02 a span,
            .navTab03 #nav > li#navTab03 a span,
            .navTab04 #nav > li#navTab04 a span 
            {
                top: 0;
            }


        #nav > li.sfHover {
            height: auto;
        }

        #nav > li > a.mainNavItem:hover,
        #nav > li > a.mainNavItem:focus,
        #nav > li > a.mainNavItem:active {
            background-color: #fff !important;
            color: #005696;
            text-decoration: none;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            border: none !important;
        }

            #nav > li > a.mainNavItem:hover span,
            #nav > li > a.mainNavItem:focus span {
                background: none !important;
                border: none !important;
            }



        #nav > li > a.currentHover,
        #nav > li.sfHover > a.mainNavItem {
            height: 44px;
            background: #fff;
        }

            #nav > li > a.currentHover span,
            #nav > li.sfHover > a.mainNavItem span {
                position: relative;
                top: auto;
                background: none !important;
            }

    .dropDownContainer {
        display: none !important;
    }

    #actions {
        text-align: center;
        padding: 10px 0;
    }

        #actions div {
            display: none;
        }

        #actions .resizeText {
            display: inline-block;
        }

        #actions .horizNavSeparator {
            display: none;
        }

    #quickLinksContainer .ic-container-fluid {
        width: 100%;
    }

    #quickLinksAdvanced > ul > li {
        display: block;
        width: 50%;
        float: left;
        border: none;
        border-left: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
        height: 50px;
    }

    #quickLink01, #quickLink03, #quickLink05 {
        border-left: none !important;
    }

    #quickLink06 {
        border-right: none !important;
    }

    #quickLinksAdvanced > ul > li > a {
        height: 50px;
        font-size: .85em;
        padding-top: 18px;
    }

    #footerNav {
        display: block;
        float: none;
        text-align: center;
        margin: 5px 0;
        padding: 5px 0 0 0;
        border-top: solid 1px #c1c1c1;
    }

        #footerNav #esol {
            display: block;
            width: 100%;
            padding-top: 5px;
            margin-top: 5px;
            border-top: solid 1px #c1c1c1;
        }

        #footerNav .browseAloud {
            display: none;
        }
        
        #languageContainer {display:none;}
}


@media only screen and (max-width : 400px) {
    #mainNav #nav > li {
        padding: 0;
        border-radius: 0;
    }
        #mainNav #nav > li a {
            border-radius: 0;
        }
}


@media only screen and (max-width : 360px) {
    #quickLinksAdvanced > ul > li > a {
        height: 44px;
        font-size: .8em;
        padding-left: 34px;
        padding-top: 16px;
		background-size: 14px 14px !important;
    }

    .subNav {
        font-size: .9em;
    }
}
