/* the large image. we use a gray border around it */
#img {
	border:0;
}

/* "next image" and "prev image" links */
.next, .prev {
	
	/* absolute positioning relative to the overlay */
	position:absolute;
	bottom:-50px;
	cursor:pointer;
	display:block;
	color:#4f4f51;
	font-size:11px;
	width:24px;
	height:43px;
	overflow:hidden;
}

.prev {
	left:0;
}
.prev span{
	background:url(../imgs/btn-overlay-horiz.gif) no-repeat;
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

.next {
	right:0;
}
.next span{
	background:url(../imgs/btn-overlay-horiz.gif) no-repeat 0 -43px;
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}

.next:hover, .prev:hover {
	text-decoration:underline;
}

/* when there is no next or previous link available this class is added */
.disabled {
	visibility:hidden;		
}

/* the "information box" */
.info {
	color:#4f4f51;
	font-size:11px;
	text-align:center;
	padding:0 30px;
}

/* progress indicator (animated gif). should be initially hidden */
.progress {
	position:absolute;
	top:45%;
	left:50%;
	display:none;
}

/* everybody should know about RGBA colors. */
.next, .prev, .info {
	background:#ffff !important;
}
