
/* the large image. we use a gray border around it */
#img {
	border:4px solid #000;
        margin:50px 40px 50px 46px;
}

/* "next image" and "prev image" links */
.next, .prev {
	/* absolute positioning relative to the overlay */
	position:absolute;
	top:40%;	
	border:0;
	cursor:pointer;
	display:block;
	padding:5px 10px;
	color:#fff;
	font-size:11px;
}

.prev {
    background-image: url( '/graph/left.gif' );
    background-repeat: no-repeat;
	left:2px;
	border-left:0;
	-moz-border-radius-topleft:0;
	-moz-border-radius-bottomleft:0;
	-webkit-border-bottom-left-radius:0;
	-webkit-border-top-left-radius:0;
}

.next {
    background-image: url( '/graph/right.gif' );
    background-repeat: no-repeat;
	right:0;
	border-right:0;
	-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 {
}

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

/* the "information box" */
.info {
	position:absolute;
	bottom:0px;
	left:35px;
	color:#5a5b5d;
	font-size:11px;
        margin-bottom: 10px;
}
.info span {color:#686868}

.info strong {
	display:block;	
}

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

.next, .prev {
    background-position:  center;
    width:19px;
    height:30px;
}
