﻿/* css document */

ul#gallery {
	width: 900px; /* 50px smaller than the container for a centering fix */
	padding: 0;
	margin: 0 auto;
	border-bottom: 2px solid #282c2f;
	text-align: center;
}

ul#gallery li {
	list-style: none;
 	width: 160px; /* was 200px */
	color: #fff;
	border: 1px solid gray;
	margin: 0 5px 15px 10px; /* large margins assist with centering */
	float: left;
}

ul#gallery li a img {
	float: left;
	border: 1px solid gray;
	padding: 2px;
	margin: 2px;
	width: 150px;  /* 150px five wide */
	height: 150px; /* 150px high */
}

.clearfix:after { 
	clear: both;
	height: 0;
	display: block;
	content: ".";
	visibility: hidden;	
}

/* breaks IE as element:pseudo/links do not properly work for ie */

ul#gallery li a:link, ul#gallery li a:active, ul#gallery li a:visited {
	text-decoration:none;
	color: #858681;
}

ul#gallery li:hover {
	text-decoration:underline;
	background-color: #fff;
	border-color: #000;
}



