/*================================================================
                 CLICK MENU STYLES
================================================================*/

/*
    THESE STYLES will probably not be needed and are adjusted in your main styles
    - * for example is most efficient when not a child of a class
       -- hopefully you already are using the box sizing globally
    - you may not need text-decoration etc. depending on your global anchors
*/
.cm-menu a, .cm-menu a:visited { color:#414141; text-decoration:none; font-size:18px;}
.cm-menu *, .cm-menu *:after, .cm-menu *:before {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.cm-menu:focus { outline:3px solid blue;  }
.cm-menu, .cm-menu ul { margin:0; padding:0; list-style:none; background:#e8e8eb; }
.cm-menu ul  ul {background:#607eb3;}
.cm-menu ul ul a, .cm-menu ul ul a:visited {color:#fff;}

.toggle-menu + .cm-menu, .cm-menu ul {
    max-height:0;
    opacity:0;
    overflow:hidden;
    -wekbit-transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
            transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.cm-menu { position:relative; font-family: 'Roboto Condensed', sans-serif;}
.cm-menu li a { display:block; padding:13px 15px; position:relative; /*background:#fff;*/ }
.cm-menu li li a {padding:8px 15px;}
.cm-menu li li li a {padding:4px 15px;}
.cm-menu li li li li a {padding:4px 15px 4px 30px;}

.cm-menu li li li:first-child {padding-top:5px;}
.cm-menu li li li li:first-child {padding-top:0;}
.cm-menu li li li:last-child {padding-bottom:13px;}
.cm-menu li li li li:last-child {padding-bottom:5px;}

.cm-menu > li { border-top:1px solid #ececec; }
/*.cm-menu li:first-child { border-top:0; }*/
.cm-menu li { position:relative; }
.cm-menu > li {background:#fff;}
/*.cm-menu > li:first-child { border-bottom:1px solid #ececec; }*/
.cm-menu > li:last-child { border-bottom:1px solid #ececec; }


.cm-menu > li > .has-sub:after,
.cm-menu > li > .expander-wrap .has-sub > span:after {
	font-family: 'icomoon';
	font-size:.75em;
	font-weight:normal;
    content: "\2b";
    display:inline-block;
    position:absolute; top:50%; right:20px;
    margin:2px 0 0 5px;
    vertical-align:middle;
	color:#656565;
   /* border:5px solid transparent;

    border:6px solid rgba(0,0,0,0);
    border-top-color:#656565;*/
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0.98) translateY(-50%);
        -ms-transform: scale(0.98) translateY(-50%);
            transform: scale(0.98) translateY(-50%);
}

.cm-menu > .opened > .has-sub:after,
.cm-menu > .opened > .expander-wrap .has-sub > span:after{
	content: "\2d";
	color:#1f4d9c;
    -webkit-transform: scale(0.98) translateY(-75%) /*rotate(-90deg)*/;
        -ms-transform: scale(0.98) translateY(-75%) /*rotate(-90deg)*/;
            transform: scale(0.98) translateY(-50%) /*rotate(-90deg)*/;
}


.cm-menu > .opened > a,
.cm-menu > li > a:hover,
.cm-menu > li > a:focus,
.cm-menu > li > div > a:hover,
.cm-menu > li > div > a:focus { color:#1f4d9c; background:#fff; }

.cm-menu .expander-wrap .has-sub:hover > span,
.cm-menu .expander-wrap .has-sub:focus > span { color:#333; background:#d4d4d4; }

.cm-menu ul .opened > a,
.cm-menu ul a:hover, .cm-menu ul li a:focus {/* background:#444; */ color:#1f4d9c;}

.cm-menu ul ul .opened > a,
.cm-menu ul ul a:hover, .cm-menu ul ul li a:focus {/* background:#444; */ color:#333;}

.cm-menu ul .opened > .has-sub:after,
.cm-menu ul .opened > .expander-wrap .has-sub > span:after{
    border-top-color:#656565;
}

.cm-js-active .cm-menu { max-height:80em; opacity:1; }
.cm-menu .opened > ul { max-height:80em; opacity:1; }

	
.nav-bar > ul > li > a  {font-size:22px; font-weight:bold; color:#414141;}
.nav-bar > ul > li:last-child > a  {color:#c1131e;}
	
.nav-bar > ul > li:last-child > a > span  {color:#c1131e;}

/* ================= SEPARATE EXPANDERS OPTION IS ENABLED ================= */

.cm-menu .expander-wrap { display:table; width:100%; }
.cm-menu .expander-wrap a { display:table-cell; }
.cm-menu .expander-wrap .has-sub { position:relative; width:30px; }
.cm-menu .expander-wrap .has-sub:after { display:none; }
.cm-menu .expander-wrap .has-sub > span {
    display:block;
    position:absolute; top:0; right:0;
    width:100%; height:100%;
    background:#aaa;
}
.cm-menu .expander-wrap .has-sub > span:after {
    content:" ";
    display:inline-block;
    position:absolute; top:50%; right:50%;
    margin:2px 0 0 5px;
    vertical-align:middle;
    border:5px solid transparent;
    /* Extra is for anti-aliasing issues in firefox and others */
    border:5px solid rgba(0,0,0,0);
    border-top-color:#fff;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0.98) translate(50%, -50%);
        -ms-transform: scale(0.98) translate(50%, -50%);
            transform: scale(0.98) translate(50%, -50%);
}
.cm-menu .opened > .expander-wrap .has-sub > span:after {
    border-top-color:#333;
    -webkit-transform: scale(0.98) translate(50%, -75%) rotate(-180deg);
        -ms-transform: scale(0.98) translate(50%, -75%) rotate(-180deg);
            transform: scale(0.98) translate(50%, -75%) rotate(-180deg);
}

/* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

.no-js .toggle-menu + .cm-menu { opacity:1; max-height:80em; }
.no-js .cm-menu > li:hover > a { background:#333; }
.no-js .cm-menu ul ul li:hover > a { background:#444; }

.no-js .cm-menu li:hover > ul { display:block; max-height:80em; opacity:1; width:100%; }
.no-js .cm-menu ul { display:none; overflow:visible; }


/* ================= MENU OPEN FUNCTIONALITY ADDED ON SETUP ================= */

@media (min-width:48em){
    .toggle-menu + .cm-menu { max-height:80em; opacity:1; overflow:visible; }
    .cm-menu ul { top:100%; overflow:hidden; }
    .cm-menu .opened > ul { max-height:80em; opacity:1; }

    .cm-menu .animated > ul { overflow:visible; z-index:10; 
		-webkit-box-shadow: 2px 2px 6px 0px rgba(50, 50, 50, 0.7);
		-moz-box-shadow:    2px 2px 6px 0px rgba(50, 50, 50, 0.7);
		box-shadow:         2px 2px 6px 0px rgba(50, 50, 50, 0.7);	
	
	}
    .cm-menu .animating > ul { z-index:-1; }
}


/*================================================================
                 CLICK MENU MENU TYPES
================================================================*/

/*  NAV BAR STYLE TYPE
    ================================================================*/

@media (min-width:48em){
    .nav-bar li { border-top:0; }

    .nav-bar > ul { display:table; width:100%; /*table-layout:fixed;*/ }
    .nav-bar > ul > li { display:table-cell; vertical-align:middle; }
    .nav-bar > ul > li > a { display:table; width:100%; padding:0; }
    .nav-bar > ul > li > a > span { display:table-cell; padding:0 10px; height:50px; vertical-align:middle; text-align:center; color:#414141; font-size:22px; font-weight: bold;}
	.nav-bar > ul > li:last-child > a > span  {color:#c1131e;}
	.nav-bar > ul > li > ul { position:absolute; padding:11px 0; background:#fff;}

    .nav-bar .has-sub span:after { position:static; margin-top:10px; }
    .nav-bar ul ul .has-sub:after { right:15px; }

	.cm-menu > li {background:none;}
	.cm-menu li{padding:0 !important;}
	
        .nav-bar ul li li { margin:0; }
    .nav-bar ul li li li { margin-left:0; margin-right:0; }
    .nav-bar ul ul a { padding:7px 15px; background:#fff; font-size:19px;}
    .nav-bar ul ul ul a {background:#dbdde0;}
	.cm-menu ul ul a, .cm-menu ul ul a:visited {color:#656565;}
	
	.nav-bar ul ul a:hover, .nav-bar ul ul a:focus,
    .nav-bar ul ul .opened > a { color:#656565; background:#e6e6e9; }

	.nav-bar ul ul ul a:hover, .nav-bar ul ul ul a:focus,
    .nav-bar ul ul ul .opened > a { color:#fff; background:#6e92cf; }	
	
		.cm-menu > li >.has-sub::after {display:none;}	
		.cm-menu, .cm-menu ul  {background:none;}
		.cm-menu > li > a {background:none; }
		
		.cm-menu a, .cm-menu a:visited { color:#656565;}
		
	.cm-menu > .opened > a,
	.cm-menu > li > a:hover,
	.cm-menu > li > a:focus,
	.cm-menu > li > div > a:hover,
	.cm-menu > li > div > a:focus { color:#1f4d9c; background:#e8e8eb; }


		.cm-menu .has-sub:after,
		.cm-menu .expander-wrap .has-sub > span:after {
			content:" ";
			display:inline-block;
			position:absolute; top:50%; right:10px;
			margin:2px 0 0 5px;
			vertical-align:middle;
			border:5px solid transparent;
			/* Extra is for anti-aliasing issues in firefox and others */
			border:6px solid rgba(0,0,0,0);
			border-top-color:#656565;
			-wekbit-transition: all 0.4s ease-in-out;
					transition: all 0.4s ease-in-out;
			-webkit-transform: scale(0.98) translateY(-50%);
				-ms-transform: scale(0.98) translateY(-50%);
					transform: scale(0.98) translateY(-50%);
		}

		.cm-menu .opened > .has-sub:after,
		.cm-menu .opened > .expander-wrap .has-sub > span:after{
			border-top-color:#333;
			-webkit-transform: scale(0.98) translateY(-75%) rotate(-90deg);
				-ms-transform: scale(0.98) translateY(-75%) rotate(-90deg);
					transform: scale(0.98) translateY(-75%) rotate(-90deg);
		}

		.cm-menu > li:last-child {border-bottom: none;}

		
    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .nav-bar ul ul li:hover > a { color:#656565; background:#e6e6e9; }
    .no-js .nav-bar ul ul ul li:hover > a { color:#fff; background:#6e92cf; }
}

/*  ACCORDION NAVIGATION
    ================================================================*/

/* ------------- CURRENTLY KEEPS SMALL SCREEN STYLES -------------- */


/*  DROP DOWN NAVIGATION
    ================================================================*/

@media (min-width:48em){
    [data-type="dropdown"] ul {
        display:block;
        position:absolute;
        z-index:-1;
        top:100%; left:0;
        background:#333;
        -wekbit-transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, left 0.4s ease-in-out, right 0.4s ease-in-out;
                transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, left 0.4s ease-in-out, right 0.4s ease-in-out;
    }
	
    [data-type="dropdown"] > ul{min-width:300px; width:100%; top:52px;}
    [data-type="dropdown"] ul ul {min-width:190px; padding-bottom:10px; background:#dbdde0;}
	
	[data-type="dropdown"] ul ul { top:5px;}
    [data-type="dropdown"] .opened > ul { left:100%; max-height:80em; opacity:1; }

    li[data-type="dropdown"]:nth-last-child(-n+2) ul { left:auto; right:0; }
    li[data-type="dropdown"]:nth-last-child(-n+2) .opened > ul { left:auto; right:100%; }

    .nav-bar ul li[data-type="dropdown"] li li {}

    [data-type="dropdown"] a + .has-sub { width:0; min-height:0; height:100%; }
    [data-type="dropdown"] a + .has-sub > span { min-height:0; height:100%; }

    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .cm-menu [data-type="dropdown"] li:hover > ul { left:100%; }
    .no-js .cm-menu [data-type="dropdown"]:nth-last-child(-n+2) ul { left:auto; right:0; }
    .no-js .cm-menu [data-type="dropdown"]:nth-last-child(-n+2) li:hover > ul { left:auto; right:100%; }

}

/*  SLIDING MENU NAVIGATION ADJUSTMENTS
    ================================================================*/


[data-type="sliding"].opened .sub-menu,
[data-type="sliding"].opened .sub-menu ul { max-width:100%; }

.cm-menu [data-type="sliding"].opened .sub-menu > ul { max-height:80em; opacity:1; }
.cm-menu [data-type="sliding"].animated .sub-menu > ul { overflow:visible; z-index:10; }
.cm-menu [data-type="sliding"].animating .sub-menu { z-index:-1; }

@media (min-width:48em){

    [data-type="sliding"] .sub-menu {
        position:absolute;
        -wekbit-transition: all 0.4s ease-in-out;
                transition: all 0.4s ease-in-out;
    }
    [data-type="sliding"] .sub-menu > ul {
        display:block;
        position:absolute;
        z-index:-1;
        top:100%; left:0;
        width:180px;
        background:#333;
        -wekbit-transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, left 0.4s ease-in-out, right 0.4s ease-in-out;
                transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, left 0.4s ease-in-out, right 0.4s ease-in-out;
    }

    [data-type="sliding"] .sub-menu > ul li { position:static; }
    [data-type="sliding"] .sub-menu > ul > li > ul { position:absolute; top:0; }

    [data-type="sliding"] .sub-menu > ul ul { position:absolute; top:0; }

    [data-type="sliding"] .sub-menu ul ul ul { position:static; margin:0; padding:0; max-height:80em; width:100%; overflow:hidden; background:transparent; opacity:1; }

    [data-type="sliding"] .sub-menu ul ul .has-sub { color:#fff; cursor:default; }
    [data-type="sliding"] .sub-menu ul ul .has-sub { background: none; border-bottom:1px solid #fff; }
    [data-type="sliding"] .sub-menu ul ul .has-sub:after,
    [data-type="sliding"] .sub-menu ul ul .expander-wrap .has-sub  { display:none; }

    [data-type="sliding"] .sub-menu > ul > li > ul > li { float:left; width:50%; padding:0 5px; }
    [data-type="sliding"] .sub-menu > ul > li > ul > li:nth-child(2n+1) { clear:left; }
    [data-type="sliding"] .sub-menu > ul > li > ul > .link-landing { margin-left:0; margin-right:0; width:100%; }
    [data-type="sliding"] .sub-menu > ul > li > ul > .link-landing ~ li:nth-child(2n+1) { clear:none; }
    [data-type="sliding"] .sub-menu > ul > li > ul > .link-landing ~ li:nth-child(2n+2) { clear:left; }

    /* ================= ESSENTIAL SLIDING FUNCTIONALITY ================= */

    [data-type="sliding"] .sub-menu.cm-js-inactive { position:relative; left:0 !important; width:100% !important; }
    [data-type="sliding"] .sub-menu.cm-js-inactive > ul { min-width:100%; }
    [data-type="sliding"] .sub-menu.cm-js-inactive > ul > li > ul { padding:0; max-width:0; }

    [data-type="sliding"] .sub-menu > ul ul { width:100%; margin-left:-5px; padding-left:180px; padding-right:5px; z-index:-1; opacity:0; }
    [data-type="sliding"] .sub-menu .animated ul { opacity:1; }

    [data-type="sliding"].opened .sub-menu, [data-type="sliding"].opened .sub-menu ul { max-width:none; }

    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .cm-menu [data-type="sliding"] li:hover > ul { left:100%; }
    .no-js .cm-menu [data-type="sliding"]:nth-last-child(-n+2) ul { left:auto; right:0; }
    .no-js .cm-menu [data-type="sliding"]:nth-last-child(-n+2) li:hover > ul { left:auto; right:100%; }

}

/*  MEGA MENU NAVIGATION ADJUSTMENTS
    ================================================================*/

@media (min-width:48em){

    .cm-menu [data-type="mega"] { position:static; }
    [data-type="mega"] > ul {
        position:absolute;
        top:100%; left:0;
        width:100%; max-height:0;
        background:#333;
        overflow:hidden;
        -wekbit-transition: all 0.5s ease-in-out;
                transition: all 0.5s ease-in-out;
    }

    [data-type="mega"] > ul ul { position:static; max-height:80em; width:100%; overflow:hidden; background:transparent; opacity:1; }
    [data-type="mega"] > ul .opened ul { margin-left:0; }
    [data-type="mega"] > ul > li { float:left; width:25%; }
    [data-type="mega"] > ul > li:nth-child(4n+1) { clear:left; }

    [data-type="mega"] > ul > .link-landing { margin:0; width:100%; }
    [data-type="mega"] > ul > .link-landing ~ li:nth-child(4n+1) { clear:none; }
    [data-type="mega"] > ul > .link-landing ~ li:nth-child(4n+2) { clear:left; }

    /* ================= OPENED FUNCTIONALITY ADDED ON SETUP ================= */

    [data-type="mega"] a + .has-sub { width:0; min-height:0; height:100%; }
    [data-type="mega"] a + .has-sub > span { min-height:0; height:100%; }
    [data-type="mega"] ul .has-sub:after { display:none; }
    [data-type="mega"].opened > ul { padding:20px; }

    /* ================= SEPARATE EXPANDERS OPTION IS ENABLED ================= */

    [data-type="mega"] ul a + .has-sub { display:none; }

    /* ================= HOVER FALLBACK IF JAVASCRIPT IS DISABLED ================= */

    .no-js .cm-menu [data-type="mega"] ul ul { display:block; }

}


/*================================================================
                 NAVIGATION TOGGLE STYLES
================================================================*/


.new-toggle { display:block; position:absolute; width:36px; height:36px; background:#000065; top:-50px; right:12px; z-index:9999;}
.new-toggle:before, .new-toggle:after, .new-toggle > span:before {
	content:" ";
	position:absolute;
	left:23%;
	border-radius:0px;
	width:54%; height:3px;
	background:#fff;
}

.new-toggle:before { top:9px; }
.new-toggle:after { top:17px; }
.new-toggle > span:before { top:25px; }

.new-toggle:hover, .new-toggle:focus, .cm-js-menu-active .new-toggle { background:#c1131e; }

.cm-js-menu-active .new-toggle:before  { display:none; }
.cm-js-menu-active .new-toggle:after  { display:none; }		 
.cm-js-menu-active .new-toggle > span:before { display:none; }

.cm-js-menu-active .new-toggle:after {
	font-family: 'icomoon';
	font-size:1.25em;
	font-weight:normal;
	content: "\2b";
	display:inline-block;
	position:absolute; 
	top:10px; 
	left:15px;
	color:#fff;
	background:none;
	-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
			transform: rotate(45deg);			
}

@media (min-width:48em){
	.new-toggle { display:none; }
}



/*================================================================
                 EXTRA OVERWRITE STYLES
================================================================*/

.main-nav { position:relative; z-index:1000; }

[data-type="sliding"] .sub-menu .item-banner { width:100%; }
[data-type="sliding"] .sub-menu .item-banner a { text-align:center; background:none; }

[data-type="mega"] .custom-sub {
    max-height:0; opacity;0;
    overflow:hidden;
    -wekbit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
}
[data-type="mega"] .custom-sub ul { position:static; opacity:1; max-height:80em; }
[data-type="mega"] .custom-sub p { margin:10px; color:#fff; }

[data-type="mega"] .custom-sub .banner-wrap { width:100%; }
[data-type="mega"] .custom-sub .banner-wrap a { text-align:center; background:none; }

.cm-menu .opened > .custom-sub { max-height:80em; opacity:1; padding:20px; }
.cm-menu .animated > .custom-sub { overflow:visible; z-index:10; }
.cm-menu .animating > .custom-sub { z-index:-1; }

@media (min-width:48em) {
    [data-type="mega"] .custom-sub {
        position:absolute;
        top:100%; left:0;
        width:100%;
        background:#333;
    }
}

@media (min-width:48em) {
    .table-row { display:table; width:100%; }
    .table-col { display:table-cell; vertical-align:top; }
}

.section-nav .opened > ul { border-bottom:1px solid #d4d4d4; max-height:80em; opacity:1; }
.section-nav .opened > a,
.section-nav .opened > .expander-wrap a { border-bottom:1px solid #aaa; color:#333; background:#d4d4d4; }
.section-nav .opened .opened > .expander-wrap > a { background:#c4c4c4; }


/* 16px baseline (768px - 959px) */
@media only screen and (min-width:48em) and (max-width:59.938em) {
	.nav-bar > ul > li > a > span {font-size:18px;}
	.nav-bar ul ul a {font-size: 17px;}
	[data-type="dropdown"] > ul { min-width: 260px;}
}

.siteWrap {
	position:relative; z-index:2000;
	right:0;
	width:100%;
	-wekbit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

body > .main-nav {
	position:absolute; 
	z-index:1000;
	top:0; 
	left:-100%;
	width:100%;
	height:100%;
	background:#fff;
	-wekbit-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}
		
.main-nav .toggle-menu {display:none; }
.cm-js-menu-active .main-nav {left:17%; padding-right:17%;}
.cm-js-menu-active .siteWrap {
	right:83%;
	-webkit-box-shadow: 3px 3px 4px 0px rgba(50, 50, 50, 0.2);
	-moz-box-shadow:    3px 3px 4px 0px rgba(50, 50, 50, 0.2);
	box-shadow:         3px 3px 4px 0px rgba(50, 50, 50, 0.2);		
}

.navWrpr .main-nav { display:none; }

@media (min-width:48em) {
	.new-toggle { display:none; }
	body > .main-nav { display:none; }
	.navWrpr .main-nav { display:block; }
	.cms-js-menu-active .siteWrap { right:0; }
}		
				
.cm-js-menu-active .new-toggle {top: -230px; }
.cm-js-menu-active .searchCall {display:none;}		
