/* ************************************************************************
   Galerie
*/

.dialog_container {
    position:			fixed;
    display:			none;
    top:				0;
    bottom:				0;
    right:				0;
    left:				0;
    z-index:			200;
    background:			rgba(0,0,0,0.5);
}

.dialog_columns {
    border:				1px solid black;
    box-shadow:			3px 3px 4px #000000;
    background:			#ffffff;
    position:			absolute;
    top:				0;
    bottom:				0;
    left:				0;
    right:				0;
    margin:				auto;
    width:				250px;
    height:				250px;
}

.dialog {
    position:			absolute;
    top:				0;
    bottom:             0;
    left:				0;
    right:              0;
    padding:			20px;
    overflow:			auto;
}

.dialog_container .dialog img {
    position:           absolute;
}

.dialog_loading {
    position:			absolute;
    display:            none;
    top:				0;
    bottom:             0;
    left:				0;
    right:              0;
    background:         rgba(0,0,0,0.5) url(../img/loading.gif) center center no-repeat;
}

.dialog_container .close_dialog {
    display:            inline-block;
    position:           absolute;
    top:                -30px;
    right:              0;
    height:             24px;
    width:              24px;
    background:         url(../img/close.png) center center no-repeat;
    cursor:             pointer;
}

.dialog_container #prev,
.dialog_container #next {
    display:            inline-block;
    position:           relative;
    top:                -30px;
    height:             24px;
    width:              24px;
    cursor:             pointer;
}

.dialog_container #prev{
    background:         url(../img/vorher.png) center center no-repeat;
}
.dialog_container #next {
    background:         url(../img/nachher.png) center center no-repeat;
}
