﻿div.background-light-gray {
    padding-bottom: 25px;
    overflow: auto;
}

.sitemap-container {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin: auto;
    max-width: 95%;
    max-height: 96%;
    border-collapse: collapse;
    width: 800px;
    padding-bottom: 50px;
    border-top: 5px solid #500000;
}

ul#sitemap.sitemap, ul#sitemap-sec.sitemap-sec, ul.sitemap-sub {
    counter-reset: li;
    list-style: none;
    padding: 0;
    margin-top: 0;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

li.sitemap-menu, li.sitemap-subitem {
    margin: 0;
    padding: 0;
}

.sitemap-menu a.CMSMenuLink {
    position: relative;
    display: block;
    padding: .5em .5em .5em 0;
    margin: .5em;
    background: #ddd;
    color: #444;
    text-decoration: none;
    transition: all .3s ease-out;
    border-radius: .3em;
    padding-left: 20px;
}

    .sitemap-menu a.CMSMenuLink::before {
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -1em;
        background: #500000;
        height: 2em;
        width: 2em;
        line-height: 1.5em;
        color: #fff;
        border-radius: 50%;
        left: -15px;
        border: .3em solid white;
    }

    .sitemap-menu a.CMSMenuLink::after {
        position: absolute;
        content: "";
        border: .5em solid transparent;
        left: -1em;
        top: 50%;
        margin-top: -.5em;
        transition: all .3s ease-out;
    }

    .sitemap-menu a.CMSMenuLink:hover::before {
        transform: scale(1.2);
        transition: all .5s ease-in-out;
        background-color: white;
        border: .3em solid #500000;
    }