/*-----------------IMAGE GALLERY ----- 

.image-gallery: defines the entire image gallery area
	#set: each image is a 'set'
		#showing: the 'Showing 1 to 3 of 4 images' text
		#link: each image is nested in a <a href=.. tag. this styles that tag
		#image: the <img tag for each image
		#title: image title (if being shown)
		#description: description (if being shown)
	
	#pagination: the pagination at the bottom of the page
		#paging_select: the selected page number
*/
.image-gallery .set{
	float:left;
	
	border:none;
	text-align:center;
}
.image-gallery #showing{
	margin-bottom:5px;
	font-size:9px;
	font-weight:bold;
}

.image-gallery #link{

}
.image-gallery td{
	padding:3px 3px 0px 3px;
	text-align:center;
}
.image-gallery #image{
	border: 1px solid #2D2D2D;
}

.image-gallery #title{
	margin-top:0px;
	font-size:11px;
	color:#8C7F3B;
}

.image-gallery #description{
	font-size:11px;
}

.image-gallery #pagination{
	clear:left;
	color:#444;;
}
.image-gallery #pagination #paging_select{
	padding:5px;
	font-size:14px;
	background: none; 
	color:#808080;
	font-weight:bold;
	
}
.image-gallery #pagination a{
	text-decoration:none;
	color: #808080;;
}
.image-gallery #pagination a:hover{
	color:#cdcdcd;
	text-decoration: underline;
}
.image-gallery #more_link{
	clear:both; 
	float:right;
	margin:0px 4px;
	font-weight:normal;
	font-size:11px;
}