.alert {
        color:#DD0000; 
	font-size: larger; font-weight: bold; text-align: center; position:absolute; 
	top:20%; line-height: 250%;
	z-index:199; top: 270px; left: 210px; height:150px; width:450px; background: #EEEEEE;
	position: fixed; 
        border: 1px solid #0c4b88;
        border-radius: 10px; 
	-webkit-border-radius:15px; -moz-border-radius:15px; -khtml-border-radius:15px; -o-border-radius:15px;
        box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5); -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5); -moz-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.5);
}

.alert-box {
           color:#555;
           border-radius:10px;
           font-family:Tahoma,Geneva,Arial,sans-serif;font-size:11px;
           padding:10px 36px;
           margin:10px;
           z-index:199;  position: fixed;
           max-width:100%;
        }

.alert-box span {
	font-weight:bold;
	text-transform:uppercase;
        max-width:100%;
}
.error {
	background:#ffecec url('/images/error.png') no-repeat 10px 50%;
	border:1px solid #f5aca6;
        max-width:100%;
}
.success {
	background:#e9ffd9 url('/images/success.png') no-repeat 10px 50%;
	border:1px solid #a6ca8a;
        max-width:100%;
}
.warning {
	background:#fff8c4 url('/images/warning.png') no-repeat 10px 50%;
	border:1px solid #f2c779;
	top: 570px;
        max-width:100%;
}
.notice {
	background:#e3f7fc url('/images/notice.png') no-repeat 10px 50%;
	border:1px solid #8ed9f6;
        max-width:100%;
}
.veraltet {
	background:#fff8c4 url('/images/warning.png') no-repeat 10px 50%;
	border:1px solid #f2c779;
	top: 105px; left: 300px;
        max-width:100%;
}

/* http://www.stellatest.de/anleitungen/css/lightboxmitcss/index.html# */
.lightbox1 {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.75);
  -moz-transition: opacity 1.5s;
  -o-transition: opacity 1.5s;
  -webkit-transition: opacity 1.5s;
}

.lightbox1:target {
    /** Show lightbox when it is target */
    display: block;
    outline: none;
}


/* http://codepen.io/gschier/pen/HCoqh */
.lightbox {
        /** Default lightbox to hidden */
        display: none;

        /** Position and style */
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100%;
        text-align: center;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.8);
}

.lightbox img {
        /** Pad the lightbox image */
        max-width: 90%;
        max-height: 80%;
        margin-top: 2%;
}

.lightbox:target {
        /** Remove default browser outline */
        outline: none;

        /** Unhide lightbox **/
        display: block;
}


/* cool:
// http://tympanus.net/codrops/2011/12/26/css3-lightbox */

.transp {
  background:#7f7f7f;
  background:rgba(0,0,0,0.5);
}


.opacityOverlay {
    background-color: #000;
    background-position: 50% 50%;
    background-repeat: repeat-x;
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 90;
}

