ul.gallery {
	height:308px;
	width:640px;
	list-style: none;
	margin-left:auto;
	margin-right:auto;
}
ul.gallery li {
	float: left;
	margin: 4px; padding: 0px;
	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: 150px; /*--Width of image--*/
	height: 300px; /*--Height of image--*/
	padding: 0px;
	cursor: pointer;
}
ul.gallery li span { /*--Used to crop image--*/
	width: 150px;
	height: 300px;
	overflow: hidden;
	display: block;
}
ul.gallery li a.thumb:hover {
	background: #ccc; /*--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; /*--Subtle bevel effect--*/
}
ul.gallery li a {text-decoration: none; color: #777; display: block;}

/* Home Page */

ul.galleryh {
	height:260px;
	width:1000px;
	list-style: none;
	margin-left:auto;
	margin-right:auto;
}
ul.galleryh li {
	float: left;
	margin: 0px; padding: 0px;
	display: inline; /*--Gimp Fix aka IE6 Fix - Fixes double margin bug--*/
}
ul.galleryh li a.thumb {
	width: 1000px; /*--Width of image--*/
	height: 260px; /*--Height of image--*/
	padding: 0px;
	cursor: pointer;
}
ul.galleryh li span { /*--Used to crop image--*/
	width: 1000px;
	height: 260px;
	overflow: hidden;
	display: block;
}
ul.galleryh li a.thumb:hover {
	background: #ccc; /*--Hover effect for browser with js turned off--*/
}
ul.galleryh li h2 {
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0; padding: 0px;
	background: #f0f0f0;
}
ul.galleryh li a {text-decoration: none; color: #777; display: block;}