.flicker_gallery{
	display: table;
	position: relative;
}
.flicker_gallery ul.thumbs li{
	float: left;
    list-style: none outside none;
    margin: 0;
	width: 25%;
	padding: 5px;
	height: 200px;
	display: inline-block;
}
.flicker_gallery ul.thumbs li img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	padding: 4px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.flicker_gallery:hover img{
	opacity: 0.7;
}
.flicker_gallery:hover img:hover{
	opacity: 1;
	padding: 0px;
}