#gallery {
	position: relative;
}

#image {
	width: 100%;
	min-height: 334px;
	_height: 334px; /* for ie6 */
	margin: 0 auto;
	text-align: center;
}

#image img {
	cursor: pointer;
	margin: 0 auto;
}

.loading {
	background: url(loading.gif) no-repeat center center;
}

#caption {
	margin: 10px 0;
	text-align: center;
	color: #999;
	font-size: 11px;
	font: italic 12px Georgia, "Times New Roman", Times, serif;
}

#control_prev, #control_next {
	width: 32px;
	height: 32px;
	margin-top: -16px;
	position: absolute;
	top: 50%;
	background: url(gallery_controls.png) no-repeat;
	text-indent: -9999px;
	cursor: pointer;
}

#control_next {
	right: 0;
	background-position: -32px 0;
}

#control_prev:hover {
	background-position: 0 -32px;	
}

#control_next:hover {
	background-position: -32px -32px;
}

a#control_prev:active {
	background-position: 0 -64px;	
}

a#control_next:active {
	background-position: -32px -64px;
}

a.disabled#control_prev {
	background-position: 0 -96px;
	cursor: default;
}

a.disabled#control_next {
	background-position: -32px -96px;
	cursor: default;
}

#control_close {
	position: absolute;
	right: 0;
	color: #fff;
	background: #ccc;
	text-decoration: none;
	padding: 5px;
	border-radius: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#control_close:hover {
	background: #999;
}

#control_close:active {
	top: 1px;
}
