/* CSS Document */
ul.gallery {
	/*width: 708px; /*--Adjust width according to your scenario--*/
	list-style: none;
	margin: 0; padding: 0;
}
ul.gallery li {
	float: left;
	/*margin: 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: 190px; /*--Width of image--*/
	height: 248px; /*--Height of image--*/
	/*padding: 5px;*/
	/*border-bottom: 1px solid #ccc;*/
	cursor: pointer;
}
ul.gallery li span.image-span { /*--Used to crop image--*/
	width: 190px;
	height: 248px;
	overflow: hidden;
	display: block;
}
ul.gallery li a.thumb:hover {
	background: #333; /*--Hover effect for browser with js turned off--*/
}

ul.gallery li h2 {
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0; padding: 10px;
	background: #f0f0f0;
	border-top: 1px solid #fff;
}

ul.gallery li a {text-decoration: none; color: #777; display: block;}