/* Rudimentary mega menu CSS for demonstration */    
/* http://adobe-accessibility.github.io/Accessible-Mega-Menu/ */
/* mega menu list */
.topNav {
    padding: 0 20px;
    height: 80px;
}
#main-nav {
    border-radius: 0;
}
.nav-menu {
    display: block;
    position: relative;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    z-index: 15;
    text-align: center;
}
.main-nav-wrap li { float: none; }
/* a top level navigation item in the mega menu */
.nav-item {
    list-style: none;
    display: inline-block;
    float: none;
    padding: 0;
    margin: 0;
}
.nav-item > a:hover {
    background-color: rgba(245, 245, 245, 0.97);
}
.sub-nav-group li a:hover {
    background-color: transparent;
}

/* tweaks so chevron shows in edge/IE */
li.nav-item {
    background-image: none;
    background-position: right;
    background-repeat: no-repeat;
    padding-right: 10px !important;
}

li.nav-item:after {
    content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    padding-left: 2px;
/*--adjust as necessary--*/
}    
li.nav-item.no:after {
    content: none;
}
li.nav-item a {
    display: inline-block;
}
/* end tweaks */

li.nav-item {
    /*background-image:url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"><path fill="%23888888" d="M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z"/></svg>');
	background-position: right;
	background-repeat: no-repeat;
	padding-right: 20px !important;*/
}
li.nav-item.no {
    background: none;
    padding-right: 1% !important;
}
a.expand_more:after {
    /*font-family: 'Material Icons';
    content: "\e5cf";
    color: #888888;
    vertical-align: top;*/
    
}
a.expand_more:hover::after {
    color: #b00c1d;
    /*outline: 2px solid #F5F5F5;*/
}


/* first descendant link within a top level navigation item
.nav-item > a {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0 0 -1px 0;
    border: 1px solid transparent;
} */

/* focus/open states of first descendant link within a top level 
   navigation item
.nav-item > a:focus,
.nav-item > a.open {
    border: 1px solid #dedede;
} */

/* open state of first descendant link within a top level 
   navigation item
.nav-item > a.open {
    background-color: #fff;
    border-bottom: none;
    z-index: 1;
} */

/* sub-navigation panel */
.no-sub-nav { display: none; }
.sub-nav {
    text-align: left;
    position: absolute;
    display: none;
    top: 2.2em;
    margin-top: -1px;
    background-color: rgba(245, 245, 245, 0.99);
    left: 0 !important;
    width: 100%;
    border-bottom: 4px solid #b00c1d;
    box-shadow: 0 10px 8px rgba(0,0,0,0.32);
    background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(248,248,248,0.97) 34%, rgba(255,255,255,0.96) 100%);
    background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(248,248,248,0.97) 34%,rgba(255,255,255,0.96) 100%);
    background: linear-gradient(to bottom, rgba(245,245,245,1) 0%,rgba(248,248,248,0.97) 34%,rgba(255,255,255,0.96) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f2ffffff',GradientType=0 );
}

/* sub-navigation panel open state */
.sub-nav.open {
    display: block;
}

/* list of items within sub-navigation panel */
.sub-nav ul {
    /*display: inline-block;
    vertical-align: top;
    margin: 0 1em 0 0;
    padding: 0;
    -webkit-columns: 3;
    -moz-columns: 3;
    column-count: 3;*/
}

/* list item within sub-navigation panel */
.sub-nav li {
    text-align: left;
    float: none;
    display: block !important;
    list-style-type: none;
    margin: 0;
    padding: 0;
    white-space: normal;
    word-wrap: break-word;
    border-bottom: 1px solid #e3e3e3;
}
.right-panel h3 {
    margin-top: 0;
}