/*
        Easybox v1.2 - Lightweight easy to use lightbox clone for jQuery
        Based on Slimbox2 by Christophe Beyls <http://www.digitalia.be>
*/
#easyOverlay {
	position:fixed;
	z-index:9997;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	cursor:pointer;
}
#easyCenter, #easyBottomContainer {
	position:fixed;
	left:50%;
	top:47%;
	z-index:9998;
	overflow:hidden;
	background:#000;
    /*background: green;*/
}
#easyCenter.easyLoading {
	background:#000 url(../images/loading.gif) no-repeat center
}
#easyCenter.easyError {
	background:#000 url(../images/error.png) no-repeat center
}
#easyContainer, #easyBottom {
	border:10px solid transparent;
}
#easyContainer img, #easyContainer iframe {
	border:0;
}
#easyBottom {
	/*font-family:Arial, Geneva, Helvetica, sans-serif;*/
	color:#ccc; /* alle Schriften */
	text-align:left;
	border-top:0;
    /*background: red;*/
}

#easyBottomContainer { /* ff */
    top:47vh!important;
    max-width: 100%;
}

#easyCloseLink {
	display:block;
	margin:4px 0 0 10px;
	float:right;
	width:28px;
	height:28px;
	background:transparent url(../images/close.png) no-repeat center;
	outline:0
}

#easyNavigation {
	float:left;
	width:38px;
	height:20px;
	margin:0 10px 0 0
}
#easyPrevLink {
	display:block;
	margin:3px 0 0 0;
	float:left;
	width:30px;
	height:30px;
	background:transparent url(../images/prevbtn.png) no-repeat center;
	outline:0;
}
#easyNextLink {
	display:block;
	margin:3px 0 0 15px;
	width:30px;
	height:30px;
	background:transparent url(../images/nextbtn.png) no-repeat center;
	outline:0;
}
#easySlideLink {
	display:block;
	float:right;
	width:20px;
	height:20px;
	background:transparent url(../images/slidebtn.png) no-repeat center;
	margin:0 0 0 10px;
	outline:0
}
#easySlideLink.disabled {
	background:transparent url(../images/noslidebtn.png) no-repeat center
}
#easyCaption, #easyNumber {
	display:block;
	margin-right:60px
}
#easyCaption.nav, #easyNumber.nav {
	margin-left:48px
}
/* Schriften */
#easyCaption { /* Bildlegende */
	font-size:16px;
	font-weight:bold;
	line-height:16px;
	height:16px;
	padding:9px 0 0 10px;
    text-align: center;
}
#easyNumber { /* Seitenzahlen */
	font-size:16px;
	line-height:10px;
	height:10px;
	padding:4px 0 6px 10px;
}
