@charset "utf-8";
/* CSS Document */
ul.gallery {
	width: 810px; /*--Adjust width according to your scenario--*/
	list-style: none;
	margin: 0; padding: 0;
}
ul.gallery li {
	float: left;
	margin-left:10px;
	margin-top:10px;
	padding: 0;
	text-align: center;
	border: 1px solid #ccc;
	-moz-border-radius: 3px; /*--CSS3 Rounded Corners--*/
	-khtml-border-radius: 3px; /*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 3px; /*--CSS3 Rounded Corners--*/
	display: inline; /*--Gimp Fix aka IE6 Fix - Fixes double margin bug--*/
	
}
ul.gallery li a.thumb {
	width: 180px; /*--Width of image--*/
	height: 140px; /*--Height of image--*/
	padding: 5px;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
}
ul.gallery li span { /*--Used to crop image--*/
width: 180px;
	height: 140px;
	overflow: hidden;
	display: block;
}
ul.gallery li a.thumb:hover {
	background: #e1e1e1; /*--Hover effect for browser with js turned off--*/
}
ul.gallery li h2 {
	
	font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
	font-size:12px;
	text-decoration:none;
	font-weight:normal;
	color:#565656;
	margin: 0; padding: 10px;
	background-image:url(../images/galleryeachonebg.jpg);
}
ul.gallery li a {
	text-decoration: none; 
	color: #777; 
	display: block;
	}