a.gallery {
	outline: none;
}

a.gallery img {
	max-width:200px;
	max-height:150px;
	border: 1px solid #BBB;
	padding: 2px;
	margin: 20px 5px 15px 15px;
	vertical-align: top;
	opacity:0.5;
	filter:alpha(opacity=50); /* For IE8 and earlier */
	-moz-box-shadow: 0px 0px 5px 2px #000;
	-webkit-box-shadow: 0px 0px 5px 2px #000;
	box-shadow: 0px 0px 5px 2px #000;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=135, Color='#000000');
}
a.gallery:hover img {
	opacity:1;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}

a.gallery img.last {
	margin-right: 0;	
}