#breadcrumbs{
    position: relative;
    display: block;
    padding: 15px 0px 0px 10px;
    margin-left: 10px;
    margin-right: 10px;
    border-bottom: 1px solid #555555;
}
.crumb{
    text-decoration: none;
}

#image_container{
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 10px;
    position: relative;
    display: block;
}

/*
    CSS for Bildgalerie
*/
.gallery_category_button{
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
    overflow: hidden;
    margin: 10px 10px 10px 10px;
    background-color: #2e2e2e;
    text-decoration: none;
}
.gallery_category_button:hover{
    box-shadow: 8px 8px 8px #000000;
}
.gallery_category_button:hover .gallery_category_preview_image{
    opacity: 1.0;
}
.gallery_category_button:active{
    box-shadow: 4px 4px 8px #000000;
}
.gallery_category_name{
    position: relative;
    display: block;
    width: 180px;
    margin: 0px 0px 0px 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #eeeeee;
    background-color: #1e1e1e;
    text-align: center;
}
.gallery_category_preview_container{
    position: relative;
    display: block;
    text-align: center;
}
.gallery_category_preview_image{
    opacity: 0.5;
}

/*
    CSS for single category of Bildgalerie
*/
.gallery_image_container{
    position: relative;
    display: inline-block;
    width: 225px;
    height: 150px;
    overflow: hidden;
    margin: 10px 10px 10px 10px;
    background-color: #2e2e2e;
    text-decoration: none;
    cursor: pointer;
}
.gallery_thumb{
    width: 225px;
    height: 150px;
}
.gallery_thumb:hover{
    opacity: 0.8;
}

/* CSS for gallery */
#gallery_container{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
#gallery_container #gallery_container_background{
    position: absolute;
    left: 0px; 
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-color: #777777;
    z-index: -1;
}
#gallery_element_container{
    display: table;
    width: 100%;
    height: 100%;
    z-index: 99;
}
#gallery_preview_container{
    display: table-row;
    width: 100%;
    height: 10vh;
}
#gallery_preview_container div{
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
#gallery_preview_image_curr{
    width: auto;
    height: 10vh;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 0px 8px 8px #000000;
}
#gallery_preview_image_prev1{
    width: auto;
    height: 8vh;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: -4px 8px 8px #000000;
}
#gallery_preview_image_prev2{
    width: auto;
    height: 5vh;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: -8px 8px 8px #000000;
}
#gallery_preview_image_next1{
    width: auto;
    height: 8vh;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 4px 8px 8px #000000;
}
#gallery_preview_image_next2{
    width: auto;
    height: 5vh;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 8px 8px 8px #000000;
}
#gallery_image_container{
    display: table-row;
    width: 100%;
    height: 70vh;
}
#gallery_image_container #gallery_image{
    height: 70vh;
    width: auto;
    max-width: 80%;
}
#gallery_image_container #close_gallery_container{
    display: inline-block;
    position: relative;
    width: 0px;
    height: 70vh;
    overflow: visible;
    background-color: red;
}
#gallery_image_container #close_gallery_container #close_gallery{
    position: absolute;
    width: 40px;
    height: 40px;
    left: -20px;
    top: -25px;
    -webkit-filter: grayscale(50%);
    filter: grayscale(50%);
}
#gallery_image_container #close_gallery_container #close_gallery:hover{
    -webkit-filter: grayscale(30%);
    filter: grayscale(30%);
    cursor: pointer;
}
#gallery_image_previous_container{
    display: table-cell;
    width: 10vw;
    text-align: center;
    vertical-align: middle;
}
#gallery_image_previous_container span{
    cursor: pointer;
    display: inline-block;
    width: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-border-top-left-radius: 50%; 
    -webkit-border-bottom-left-radius: 50%; 
    -moz-border-radius-topleft: 50%;
    -moz-border-radius-bottomleft: 50%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-style: solid;
    border-color: #222222;
    border-width: 1px;
    color: #dedede;
    background-color: #222222;
    box-shadow: 0px 0px 3px #000000;
}
#gallery_image_previous_container span:hover{
    opacity: 0.9;
}
#gallery_image_previous_container span:active{
    border-color: #000000;
}
#gallery_image_container{
    display: table-cell;
    width: 80vw;
    text-align: center;
    vertical-align: middle;
}
#gallery_image_next_container{
    display: table-cell;
    width: 10vw;
    text-align: center;
    vertical-align: middle;
}
#gallery_image_next_container span{
    cursor: pointer;
    display: inline-block;
    width: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-border-top-right-radius: 50%; 
    -webkit-border-bottom-right-radius: 50%; 
    -moz-border-radius-topright: 50%;
    -moz-border-radius-bottomright: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-style: solid;
    border-color: #222222;
    border-width: 1px;
    color: #dedede;
    background-color: #222222;
    box-shadow: 0px 0px 3px #000000;
}
#gallery_image_next_container span:hover{
    opacity: 0.9;
}
#gallery_image_next_container span:active{
    border-color: #000000;
}
#gallery_information_container{
    display: table-row;
    width: 100%;
    height: 10vh;
}
#gallery_information_container div{
    display: table-cell;
    text-align: center;
    vertical-align: top;
}
#gallery_information_container div span{
    display: inline-block;
    width: 70%;
    background-color: #acacac;
    box-shadow: 0px 2px 4px #000000;    
}