<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Accordion Menu by www.menucool.com/vertical/accordion-menu*/

#accordion {
    visibility: hidden;
    padding-bottom: 20px;
}

/* root UL */
#accordion ul {
    padding:0;
    margin:0;
    list-style:none;
}

/* sub UL */
#accordion ul ul {
    /*background:#f5f5f5;*/
    padding:0px 0;
}

/*---------- Indents ------*/

/*top-level*/
#accordion .top &gt; a, #accordion .top &gt; div { 
    padding-left:20px;
    padding-top:0px;padding-bottom:10px;
}

/*2nd-level*/
    #accordion li li &gt; a, #accordion li li &gt; div {
        padding-left: 30px;
        padding-top: 8px;
        padding-bottom: 8px;
        background: none;
    }

/*3rd-level*/
    #accordion li li li &gt; a, #accordion li li li &gt; div {
        padding-left: 50px;
        background: none;
    }


/*---------- Other styles ------*/

/* headings */
    #accordion li &gt; div {
        /*font-family: 'Lucida Grande', Geneva, Candara, Tahoma, sans-serif;*/
        font-weight: bold;
        font-size: 14px;
        color: black;
    }
#accordion .active &gt; div{
    color:#333;
}

#accordion li {
    font-family:Arial, sans-serif;
    font-size:13px;
	padding: 0;
    margin:0;
    overflow:hidden;
	cursor: pointer;
}

/* Add borders to the top LIs */
#accordion .top {
	border:0px solid #000;
}

/* No double borders between LIs*/
#accordion li.top + li.top {
    border-top:0;
}

/* links */
#accordion a {
    color:black;
    font-weight:normal;
    font-size:13px;
    text-decoration:none;
    display:block;
    line-height:1;
    transition:all 0.3s;
}
    #accordion a:hover, #accordion a.active {
        background-color: transparent; /*#ffda3f;*/
        color: #ef5b34;
    }


/* carets */
#accordion div.caret {
    color:inherit;
    display:inline-block; 
    margin-top:3px;
    /*To place the caret on the right, set: float:right;margin-top:0;*/
    width: 0;
    height: 0;
}


#accordion div.caret:after {
    content: '\002B';
    color: black;
    font-weight: bold;
    width:20px;
    height:20px;
    margin-left:-12px;
}

#accordion div.caret.active:after {
    content: "\2212";
}

#accordion li {
    -ms-user-select:none;
    -mos-user-select:none;
    -webkit-user-select:none;
    -o-user-select:none;
    user-select:none;
}
</pre></body></html>