/* LAYER STYLESHEET */
/* dat schwarze Overlay was sich über alle Elemente legt */
#dbnOverlay {
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100%;
 overflow: hidden;
 background: #000000;
 z-index: 1000;
 filter: alpha(opacity=75);
 -moz-opacity: 0.75;
 opacity: 0.75;
 }
 
/* Layerbox, die für die Positionierung zuständig ist und den Inhalt trägt */
#dbnLayer {
 position: absolute;
 top: 100px;
 left: 50%;
 z-index: 1500;
 }
 
/* Layerbox, in die der eigentliche Seiteninhalt geladen wird */ 
#dbnLayerContent {
 width: 100%;
 height: 100%;
 position: relative;
 }
 
/* Schließen-Button */ 
#dbnLayer a#closeButton {
 position: absolute;
 top: 15px;
 right: 20px;
 color: #3c505a;
 font-size: 1.1em;
 line-height: 13px;
 background: url(/res/img/closeButton.gif) right 4px no-repeat;
 padding: 0 12px 0 0;
 z-index: 100;
 text-decoration: none;
 }
 
#dbnLayer a#closeButton:hover {
 text-decoration: none;
 }