/*
	 Auto Generating Photo Gallery
	 by Chris Coyier
	 http://css-tricks.com
*/

*					{ margin: 0; padding: 0; }

a img, img 			{ border: none; }

.photo-link2			{
	padding: 5px;
	display: block;
	width: 200px;
	height: 100px;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}
.photo-link2:hover	{ border-color: black; }


.photo-link			{
	padding: 5px;
	margin: 5px;
	display: block;
	width: 100px;
	height: 100px;
	float: left;
	background-color: #FFFFFF;
	border:thin;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
.photo-link:hover	{ border-color: black; }

