/* "next image" and "prev image" links */
.prev {
	
	/* absolute positioning relative to the overlay */
	position: absolute;
	bottom: 0px;	
	cursor: pointer;
	display: block;
	padding: 10px 15px 10px 15px;
	color: #ffffff;
	font-size: 11px;
	z-index: 10002;
	
	/* upcoming CSS3 features */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;	
}

.next {
	
	/* absolute positioning relative to the overlay */
	position: absolute;
	bottom: 0px;	
	cursor: pointer;
	display: block;
	padding: 10px 15px 10px 15px;
	color: #ffffff;
	font-size: 11px;
	z-index: 10002;
	
	/* upcoming CSS3 features */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;	
}

.prev {
	left: 0px;
	border-left: 0px;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-bottomleft: 0;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
}

.next {
	right: 0px;
	border-right: 0px;
	-moz-border-radius-topright: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-right-radius: 0;
	-webkit-border-top-right-radius: 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 {
	position: absolute;
	bottom: 0%;
	left: -1px;
	height: 50px;	
	padding: 10px 15px 10px 15px;
	color: #ffffff;
	font-size: 11px;
	border: 1px solid #a4a4a4;
	z-index: 10001;
}

.info strong {
	display: block;	
}

/* progress indicator (animated gif). should be initially hidden */
.progress {
	position: absolute;
	top: 45%;
	left: 50%;
	display: none;
}

/* everybody should know about RGBA colors. */
.info {
	background: #333333 !important;
	background: rgba(0, 0, 0, 0.6) url(images/h80.png) repeat-x;		
}

