div#darkBackground {	
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	/*background: rgb(10, 10, 10);
	RGBa with 0.6 opacity 
	background: rgba(0, 0, 0, 0.8);
	For IE 5.5 - 7
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#cccecece, endColorstr=#cccecece);
	For IE 8
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cccecece, endColorstr=#cccecece)";*/
	background: rgba(0, 0, 0, 0.3);
	z-index: 10000;
}

div#imageView {
	position: relative;
	width: 960px;
	margin: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	overflow: hidden;
	background-color: #ffffff;
	border: 5px solid #ffffff;
}

#zoomImage {
	position: absolute;
}
#spinnerZoomImg {
	position: absolute;
	width: 32px;
	height: 32px;
	background-color: #ffffff;
	border: 2px solid #ffffff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	top: 50%;
	left: 50%;
}

div#prevArrow, div#nextArrow {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 36px;
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 10001;	
	border: 3px solid #ffffff;
	/*background: rgb(250, 250, 250) transparent;
	background: rgba(250, 250, 250, 0);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffcecece, endColorstr=#ffcecece);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffcecece, endColorstr=#ffcecece)";*/
}

div#nextArrow {
	-moz-border-radius: 8px 0px 0px 8px;
	-webkit-border-radius: 8px 0px 0px 8px;
	border-radius: 8px 0px 0px 8px;
	right: 0px;
	background-image: url('/img/next-arrow.png');
}
div#prevArrow {
	-moz-border-radius: 0px 8px 8px 0px;
	-webkit-border-radius: 0px 8px 8px 0px;
	border-radius: 0px 8px 8px 0px;
	left: 0px;
	background-image: url('/img/prev-arrow.png');
}
div#nextArrow:hover {
	background-image: url('/img/next-arrow-hover.png');
}
div#prevArrow:hover {
	background-image: url('/img/prev-arrow-hover.png');
}

