@charset "utf-8";
/* CSS Document */
#hintergrund {
    display:none;
    z-index:1;
    position: fixed;
    height:100%;
    width:100%;
    top:0px;
    left:0px;
    background:#000000;
}
 
#popup {
    display: none;
    z-index: 2;
    position: fixed;
    width:700px;
    top: 20%;
    left: 50%;
    margin-left: -350px;
	margin-top: -150px;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 8px solid #ccc;
    border-radius: 5px 5px 5px 5px;
    color: #000;
}
 
div.schliessen {
    position: relative;
    height: 34px;
    width: 34px;
    left: 24px;
    bottom: 24px;
    background: url("../images/close.png") no-repeat scroll 0 0 transparent;
    float: right;
    cursor: pointer;
}
 
#popup_inhalt {
    margin: 8px 14px;
}

