

#mainwrapper {
	height: auto;
	text-align: center;
	width: 660px;
}

/* Image Box Style */
#mainwrapper .imagebox {
	border: 5px solid #fff;
	cursor: pointer;
	height: 210px;
	float: left;
	margin: 0px;
	position: relative;
	overflow: hidden;
	width: 390px;
	
	-webkit-box-shadow: 1px 1px 1px 1px #ccc;
	-moz-box-shadow: 1px 1px 1px 1px #ccc;
	box-shadow: 1px 1px 1px 1px #ccc;
}
#mainwrapper .imagebox img {
	position: absolute;
	left: 0;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}

/* Caption Common Style */
#mainwrapper .imagebox .caption {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	color: #fff;
	z-index: 100;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;	
		transition: all 300ms ease-out;
	left: 0;
	
}





/** Caption Fade **/
#mainwrapper .imagebox .fade-caption {
	opacity: 0;
	width: 368px;
	height: 220px;
	text-align: left;
	padding: 15px;
}




/** Fade Caption :hover Behaviour **/
#mainwrapper .imagebox:hover .fade-caption  {
	opacity: 1;
}

