#outer-box {
	width: 450px;
	height: 400px;
	display: block;
	position:relative;
}
#outer-box img {
  width: 240px;
  height: auto;
}
/*on image return*/
#outer-box #inner-box {
	background: #fff;
	height: 100%;
	width: 100%;
    opacity: 0;
	top: 0px;
	left: 0px;
	position: absolute;
	padding: 0;
	transition: opacity 2s;
}
#outer-box #inner-box p {
	color: #0066A4;
	line-height: 150px;
	font-family: 'cubano';
	text-align: center;
}
/* on image fade */
#outer-box:hover #inner-box {
  opacity: 1;
  transition: opacity 2s;
}
