.thumb-container{
	position:relative;
	overflow:hidden;
	}
	
.thumb-container .post-thumbnail{ width:100%; height:auto; }

/* Hover Effect */

.hover-effect{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	
	position:absolute;
	width:100%;
	height:100%;
	background-image:url(../images/blank.png);
	background-repeat:no-repeat;
	background-position:center top;
}

.hover-effect:hover{
	width:100%;
	height:100%;
	background-repeat:no-repeat;
	background-position:center center;
	-webkit-box-shadow:inset 0 0 50px 5px #000000;
	box-shadow:inset 0 0 50px 5px #000000;
	}
	
.hover-effect.standard:hover{ background-image:url(../images/hover-plus.png); }
.hover-effect.gallery:hover{ background-image:url(../images/hover-gallery.png); }
.hover-effect.video:hover{ background-image:url(../images/hover-video.png); }