/* PHOTO GALLERY */
#wrapper{
	background:url(../img/content_bg.png) repeat-x #fff;
	margin:0 auto;
	padding:110px 110px 110px;
}
h2{
	background:url(../img/photo_title.png) no-repeat;
	text-indent:-9999px;
	width:480px;
	height:70px;
	margin:0 0 60px;
}

#wrapper span{
	display:block;
	float:left;
	margin:5px 16px 28px 16px;
	width:200px;
	height:200px;
	background:#fff;
}

#wrapper a img{
	box-shadow:none;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	backface-visibility:hidden;
	opacity:1;
	filter:alpha (opacity=100); /* IE */
}
#wrapper a:hover img{
	opacity:0.5;
	filter:alpha (opacity=50); /* IE */
}
