<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ######### Shared basic style for mega drop down menu DIV ######### */

.mega{
    width:180px; /*default width of mega menu*/
    padding:10px;
    position:absolute;
    visibility:hidden;
    border:2px solid black;
    border-top-width:1px;
    /*    background:white;*/
    -webkit-box-shadow: 1px 6px 7px 0px rgba(0, 0, 0, 0.15); /*css 3 shadows*/
    -moz-box-shadow: 1px 6px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 1px 6px 7px 0px rgba(0, 0, 0, 0.15);

}

.mega .column{ /*each link column within a mega menu*/
    float:left;
    width:49%;
}

.mega a{
    text-decoration: none;
    color: #fff;
    /* padding-top: 10px; */
    /* padding-bottom: 10px; */
    position: relative;
    display: block;
    width: 100%;
}


.mega a[rel]:after{ /*add "down.png" to anchor links, or those with a rel attribute */
    content:" " url(down.png);
}

.mega .column ul{
    margin:0;
    /*    margin-left:5px;*/
    padding:0;
    list-style:none;
}


.mega .column ul li{
    /*    margin-bottom:3px;*/
    /*    background: none;*/
    font-size: 12px;
    /*font-weight: 600;*/
    /*    text-transform: uppercase;*/
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 0.1em;
}

/*.mega .column ul li:hover,.mega .column ul li:active,.mega .column ul li:focus{
    background: #FFBA9D;
}*/


.mega .column ul li a:hover{
    text-decoration:none;
    color: #fff;
}



.mega .ulmenu{ /*style any UL within mega menu with class="ulmenu"*/
    margin:0;
    padding:0;
    border:1px solid gray;
    border-bottom-width:0;
    list-style:none;
}

.mega .ulmenu a{
    display:block;
    border-bottom:1px solid gray;
    padding:5px;
}

.mega .ulmenu a:hover{
    background:lightyellow;
}

.megawrapper{
    height: 200px;
    min-height: 114px;
}

/* ######### Style for Solid Block Mega Menu ######### */

.solidblocktheme{ /*additional mega drop down menu style for this theme*/
    border: 1px solid #242424;
    padding:0; /*remove default padding inside mega menu*/
}

.solidblocktheme p, .solidblocktheme .column{
    /*    padding:5px;*/ /*add padding inside p and .column elements within mega menu*/
    /*    width:auto;*/
    width: 100%;
}

.solidblockmenu{
    margin: 0;
    padding: 0;
    float: left;
    font: bold 13px Arial;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1em;
    border: 1px solid #625e00;
    border-width: 1px 0;
    background: black url(blockdefault.gif) center center repeat-x;
}

.solidblockmenu li{
    display: inline;
}

.solidblockmenu li a{
    float: left;
    color: white;
    padding: 9px 11px;
    text-decoration: none;
    border-right: 1px solid white;
}

.solidblockmenu li a:visited{
    color: white;
}

.solidblockmenu li a:hover, .solidblockmenu li a.selected{ /*Selected Tab style*/
    color: white;
    background: transparent url(blockactive.gif) center center repeat-x;
}</pre></body></html>