/*-----------------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{

}
.image-gallery #set{
	float:left;
	padding:7px;
	border:none;
}
.image-gallery #showing{

}

.image-gallery #link{

}

.image-gallery #image{
	background:#FFF;
	padding: 5px;
	border: solid 1px #E2E2E2;
}

.image-gallery #title{

}

.image-gallery #description{

}

.image-gallery #pagination{
clear:both;
margin-bottom:25px;
}
.image-gallery #pagination a{
padding:2px 4px;
margin: 0px 2px 0px 2px;
border:1px solid #0E6AA9;
}
.image-gallery #pagination #paging_select{
	padding:2px 4px;
	border:1px solid #0E6AA9;
	font-weight:bold;
	background: #14B0E1;
	color:white;
	
}
.image-gallery #pagination a{
	text-decoration:none;
	color: black;
}
.image-gallery #pagination a:hover{
	color:white;
	background: #14B0E1;
}
