#base_layout {
    width: 100%;
    height: 100%;
}

#base_layout > div {
    margin: 0;
    padding: 0;
}

#base_submenu {
    background-color: white;
    width: 0px;
    display: none;
    height: 100%;
    position: absolute;
    overflow-y: scroll;
}

#base_submenu.submenu_open {
    width: 299px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    display: block;
}

.subNavigationCloser {
    height: 40px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: left;
    top: 0;
    left: 0;
    width: 300px;
    padding-left: 1em;
}

.subNavigationClosingSpacer {
    height: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    background-color: rgba(0, 0, 0, .07);
}

#base_page {
    height: 100%;
    left: 0;
    right: 0px;
    position: absolute;
    overflow-y: scroll;
    min-width: 320px;
    /*SPECIAL!! to support scrolling acceleration on mobile*/
    -webkit-overflow-scrolling: touch;
}

#base_page.submenu_open {
    left: 300px;
}

.base.topNavigation {
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding-left: 5px;
    padding-right: 5px;
    width: calc(100% - 10px);
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: left;
    position: fixed;
    background-color: white;
    z-index: 100;
}
.base.topNavigation > * {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.base.topNavigationSpacer {
    height: 45px;
}

.base.topNavigation a {
    color: #A0A0A0;
    font-size: 0.95em;
    font-weight: 400;
    padding: 6px;
    letter-spacing: .1em;
}



.topNavigation .title_open {
    font-weight: bold;
}

.topNavigation .title_close {
    font-weight: bold;
}

.subNavigation {
}

.subNavigation .icon {
    height: 1em; margin-bottom: -2px; margin-right: 2px;
}
.subNavigation ul {
    padding: 5px 0px 5px 0px;
    margin: 0;
}

.subNavigation ul ul {
    padding: 5px 0px 5px 15px;
    margin: 0;
}

.subNavigation li {
    display: block;
    padding: 0;
    margin: 0;
}

.subNavigation li:hover{
    background-color: #d7ebf0;
}


.subNavigation li.group{
    background-color: #F5F5F5;
}


.subNavigation li > * {
    color: black;
    padding: 8px 20px;
    font-size: 0.95em;
    display: block;
    width: 100%;
    height: 100%;
}

.subNavigation li.group > * {
    color: grey;
}

.subNavigation a {
    font-weight: 400;
    letter-spacing: .1em;
    text-decoration: none;
}

section.grey {
    background-color: #F1F1F1;
}

section.white {
    background-color: white;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

section.mini {
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-description.additional {
    font-size: 0.8em;
    color: grey;
}

section .section-thumbnail {
    width: 100%;
    max-width: 33%;
    display: block;
}

section .section-thumbnail.left {
    float: left;
    margin-right: 5%;
}

section .section-thumbnail.right {
    float: right;
    margin-left: 5%;
}

@media only screen and (max-width: 479px) {
    section {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}

.separatorHorizontal {
    background-color: rgba(0, 0, 0, .07);
    display: block;
    height: 1px;
}

.separatorHorizontalStrong {
    background-color: #58696a;
    display: block;
    height: 1px;
}

.labelingTxt{
    display: inline-block;
    background-color: #F1F1F1;
    padding: 3px 9px;
    margin: 3px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.9em;
}



.shadow{
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}


li {
    margin-bottom: 0px;
}