/*Styles*/
* { margin: 0; padding: 0;}


#gallery a {
	display: block;
	float: left;
	margin-bottom: 0px;
	position: relative;
	
}

/*Left and Right margins to images in the middle column*/
/*This selects the 2nd, 5th and 8th elements*/
#gallery a:nth-child(3n+2) {
	margin: 0 25px 25px 25px;
}

#gallery a img {
	display: block;
	-webkit-transition: all 0.5s;
}

/*Hover effects*/
#gallery a img:hover {
	-webkit-filter: none; /*Returns to default state*/
}
/*Default state for brightness has to be specified specifically*/
#gallery a img.brightness:hover {
	-webkit-filter: brightness(0);
}

/*Title styles*/
.title {
	color: #fff;
	font-size: 22px;
	font-family: verdana, helvetica, sans-serif;
	font-weight: bold;
	position: absolute;
	left: 0;
	bottom: 15px;
	z-index: 1;
	padding: 5px 7px;
	background: rgba(0, 0, 0, 0.8);
}

/*Title styles*/
.titlePetit {
	color: #fff;
	font-size: 11px;
	font-family: verdana, helvetica, sans-serif;
	font-weight: bold;
	position: absolute;
	left: 0;
	bottom: 15px;
	z-index: 1;
	padding: 5px 7px;
	background: rgba(0, 0, 0, 0.8);
}

/*Title styles*/
.titleREPLAY {
	color: #fff;
	font-size: 13px;
	font-family: verdana, helvetica, sans-serif;
	font-weight: bold;
	position: absolute;
	right: 0;
	bottom: 15px;
	z-index: 1;
	padding: 5px 7px;
	background: rgba(0, 0, 0, 0.8);
}