#lightbox-bg {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 599;
	height: 100%;
	background: rgba(0,0,0, 0.5);
	overflow: hidden;
}

#lightbox-image-container {
	position: relative;
	width: auto;
	height: auto;
	margin: 0 auto;
	display: block;
}
#lightbox-image-container img {
	width: auto;
	height: auto;
	padding: 10px;
	background: #eee;
	top: -10px;
	left: -10px;
	position: absolute;
	z-index: 1;
}
#lightbox-prev {
	float: left;
	position: relative;
	z-index: 2;
	width: 50%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	filter: alpha("opacity=0");
}

#lightbox-prev div {
	width: 70px;
	height: 40px;
	position: relative;
	float: left;
	top: 70%;
	background: #eee url("http://www.tricorp-events.ro/css/img/lightbox_prev.png") center center no-repeat;
	font-weight: bold;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

#lightbox-next {
	float: right;
	position: relative;
	z-index: 2;
	width: 50%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	filter: alpha("opacity=0");
}

#lightbox-next div {
	width: 70px;
	height: 40px;
	position: relative;
	float: right;
	top: 70%;
	background: #eee url("http://www.tricorp-events.ro/css/img/lightbox_next.png") center center no-repeat;
	font-weight: bold;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

#lightbox-next:hover, #lightbox-prev:hover {
	opacity: 1;
	filter: alpha("opacity=100");
}
