@charset "UTF-8";
/* CSS Document */
.box {
		cursor: pointer;
		height: 100%;
		position: relative;
		overflow: hidden;
		width: 250px;   
}
.box 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;  
}  
.box .fade-caption {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	z-index: 99;
	-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;
	opacity: 0;
	width: 220px;
	height: 100%;
	text-align: left;
	padding: 15px;
	text-decoration: none;
} 
.box .fade-caption h3   {
	color: #EDEDED;
	font-weight: bold;
	font-size: 0.85em;
}  
.box .fade-caption p   {
	color: #ededed;
	font-size: 0.8em;
	margin-top: 0.5em;
}   
.box:hover .fade-caption {
	opacity: 1;
	text-align: left;
	text-decoration: none;
}
.box:hover .fade-caption h3 {
	color: #EDEDED;
	font-weight: bold;
	font-size: 0.85em;
}  
  
.box:hover .fade-caption p {
	color: #ededed;
	font-size: 0.8em;
	margin-top: 0.5em;
}   
