/* imagogallery css*/

#imagoFrame {
	position:relative;  
}


.imagogallery{
    position:relative; 
	top: 0px;
	left: 0px;
}


/*THUMBS*/

.imago_thumbImg {
	width:80px;
	height:80px;
	padding:4px;
	border-spacing: 0px;
	outline: 0px;
	margin:0px;
}

.imago_selectedThumb {
	width:80px;
	height:80px;
	padding:4px;
	border-spacing: 0px;
	outline: 0px;
	margin:0px;
	background:white;
}


#imagoThumbMenu {
	position:relative;
	width: 210px;
	height: 350px;
	margin-left:550px;
	background: url("../images/gallery/controls/thumbs_bg.jpg") no-repeat;	
}

 
#imagoCurrentThumbTable {
	margin-left:auto;
	margin-right:auto;
	width:190px;
	height:290px;
	padding-top:10px;
}


#imagoError {
	position: absolute;
	top: 50px;
	left: 50px;
	display: none;
	color: #FFFFFF;
}






/*REMOVED FROM LAYOUT*/

#imagoCurrentImageTitle {
	display:none;
}

#imagoGalleryTitle {
	display:none;
}

/*REMOVED FROM LAYOUT*/





/*IMAGE LOADER - z-index 10 */

#imagoLoadingDiv {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index:10;
	width: 100%;
	height: 100%;
}


#imagoLoadingDiv, #imagoCurrentImageLoadingDiv {
	background: url("../images/gallery/controls/loading.gif") no-repeat center center;
	background-color: #c1c2c2;
	position: relative;
	top: -350px;
}


#imagoCurrentImageLoadingDiv {
	position: absolute;
	display: none;
	z-index:10;
}



/*CURRENT IMAGE - z-index - 11*/

#imagoCurrentImageDiv em{
width:540px;
height:350px;
background: url("../images/gallery/controls/image_rounder.png") no-repeat;
display: block;
position: absolute;
z-index:11;
}

#imagoCurrentImageDiv {
	position: relative;
	top: -350px;
	z-index:11;
}

#imagoCurrentImg {
	border: 0px solid #000000;
}




/*IMAGE CONTROLS - z-index 12 */

/*image controls*/

a.imago_navNextImage, a.imago_navPreviousImage
{
	position:absolute;
	width:31px;
	height:31px;
	cursor: pointer;
	z-index:12;
	background: url("../images/gallery/controls/empty.gif") no-repeat center center;
}

a.imago_navPreviousImage:focus, a.imago_navNextImage:focus {
  outline-style: none;
}

a.imago_navNextImage {
	background: url("../images/gallery/controls/nextImg.png") no-repeat center center;
	right:10px;
}

a.imago_navNextImage:hover {
	background: url("../images/gallery/controls/nextImg.png") no-repeat center center;
}


a.imago_navPreviousImage {
	background: url("../images/gallery/controls/prevImg.png") no-repeat center center;
	left:10px;
}
a.imago_navPreviousImage:hover {
	background: url("../images/gallery/controls/prevImg.png") no-repeat center center;
}


/*thumbs controls*/

a.imago_navNext, a.imago_navPrev
{
	position:absolute;
	height: 31px;
	width: 31px;
	cursor: pointer;
	z-index:12;
	background: url("../images/gallery/controls/empty.gif") no-repeat center center;
}

a.imago_navPrev {
	left: 30px;
	bottom: 10px;
	background: url("../images/gallery/controls/prevImg.png") no-repeat top left;
}

a.imago_navNext {
	right: 30px;
	bottom: 10px;
	background: url("../images/gallery/controls/nextImg.png") no-repeat top right;
}



