﻿* {
    margin: 0;
    padding: 0;
}

#accordian {
    /*background: #004050;*/
  /*  background: #fafafa;*/
    width: 95%;
    margin: 0px auto 0 auto;
    color: white;
/*    box-shadow: 0 5px 15px 1px rgba(0, 0, 0, 0.6), 0 0 200px 1px rgba(255, 255, 255, 0.5);*/
}

    #accordian h3 {
        height:18px;
        /* background: #003040;*/
        /* background: #0d9fdc;*/
        background: #ffffff;
        /*   background: linear-gradient(#003040, #002535);*/
        /*   background: linear-gradient(#0d9fdc, #026faf);*/
    }

        #accordian h3 a {
            padding: 0 10px;
            font-size: 14px;
            line-height: 34px;
            display: block;
            color: #565454;
         /*   color: white;*/
            text-decoration: none;
        }

        #accordian h3:hover {
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }

i {
    margin-right: 10px;
}

#accordian li {
    list-style-type: none;
}

#accordian ul ul li a,
#accordian h4 {
    /*    color: White;*/
    /* color: #0ea0dc;*/
    color: #777e81;
    text-decoration: none;
    font-size: 13px;
    line-height: 27px;
    display: block;
    padding: 0 15px;
    transition: all 0.15s;
    position: relative;
}

    #accordian ul ul li a:hover {
        background: #003545;
        border-left: 5px solid #009ada;
        /* border-left: 5px solid lightgreen;*/
        color: white;
    }

#accordian ul ul {
    display: none;
}

#accordian li.active > ul {
    display: block;
}

#accordian ul ul ul {
    margin-left: 15px;
    border-left: 1px dotted rgba(0, 0, 0, 0.5);
}

#accordian a:not(:only-child):after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 13px;
 /*   transform: rotate(-90deg);*/
    font-size: 16px;
    font-weight: 500;
}

#accordian .active > a:not(:only-child):after {
    content: '--';
/*    transform: rotate(-90deg);*/
    font-size: 16px;
    font-weight: 500;
}

.current {
    background: #d5dde1;
    border-left: 5px solid #009ada;

    /*     border-left: 5px solid lightgreen; */
}

