
/* Image Box Style */
.box {
	cursor: pointer;
	height: 291px;
	position: relative;
	overflow: hidden;
	width: 393px;
	margin: 0 auto;
	text-align: center;
	display: block
}
.box img {
	position: absolute;
	-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;
	-moz-box-shadow: 0 0 5px #999;
	-webkit-box-shadow: 0 0 5px #999;
	box-shadow: 0px 0px 5px #999;
	-moz-border-radius: 10px;
	border-radius: 10px;	
}

/* Caption Common Style */
.box .caption {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	left: 0;
	color: #fff;
	-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;
	-moz-box-shadow: 0 0 5px #999;
	-webkit-box-shadow: 0 0 5px #999;
	box-shadow: 0px 0px 5px #999;
	-moz-border-radius: 10px;
	border-radius: 10px;	
	padding: 10px;
}

/** Caption 3: Fade **/
.box .fade-caption, .box .scale-caption  {
	opacity: 0;
	width: 393px;
	height: 291px;
	text-align: left;
	-moz-box-shadow: 0 0 5px #999;
	-webkit-box-shadow: 0 0 5px #999;
	box-shadow: 0px 0px 5px #999;
	-moz-border-radius: 10px;
	border-radius: 10px;	
}

/** Caption 3: Fade **/
.box .fadecaption  {
	text-align: center;
}

/** Fade Caption :hover Behaviour **/
.box:hover .fade-caption, .box:hover .scale-caption  {
	opacity: .9;
}

