/*
Alex Dukal PHP Automatic Gallery Style
Updated: 24 feb 2013
*/

/* ---( The Gallery )------------------------------- */

.gallery {
	width: 700px;
	margin: 0px auto 0px;
}
.gallery p {
	padding-left: 50px;
	margin-bottom: 30px;
}
.gallery ul {
  list-style-type: none;
}

.gallery li {

	margin-left: 0px;

}

.gallery li img {
	float: left;
	margin: 10px;
	padding:4px;
	border:1px solid #999;
	background-color: #fff;
	
	-webkit-transition: box-shadow 0.5s ease;
	-moz-transition: box-shadow 0.5s ease;
	-o-transition: box-shadow 0.5s ease;
	-ms-transition: box-shadow 0.5s ease;
	transition: box-shadow 0.5s ease;
}


 
.gallery li img:hover {
	border-color:#333;
	margin-top: 8px;
	-webkit-box-shadow: 0px 0px 7px rgba(0,0,0,0.9);
	box-shadow: 0px 0px 7px rgba(0,0,0,0.9);
}

.credits {
	font-size: 11px;
	text-align: center;
}

