@charset "utf-8";
.rel {
	float: left;
	height: 200px;
	width: 200px;
	border: thin solid #06C;
	position: relative;
	margin: 10px;
	overflow: hidden;
	background-color: #BBCFDD;
	border-radius: 10px;
}
.abs {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #000000;
	background-color: rgba(0,102,204,0.7);
	position: absolute;
	top: 172px;
	height: 190px;
	width: 190px;
	padding: 5px;
	-webkit-transition: all 0.75s ease-in-out 0s;
	-moz-transition: all 0.75s ease-in-out 0s;
	-ms-transition: all 0.75s ease-in-out 0s;
	-o-transition: all 0.75s ease-in-out 0s;
	transition: all 0.75s ease-in-out 0s;
	text-indent: 10px;
	border-top: thin solid rgba(16,71,168,1.00);
	border-bottom: 0px solid rgba(16,71,168,1.00);
	border-right: 0px solid rgba(16,71,168,1.00);
	border-left: 0px solid rgba(16,71,168,1.00);
}
.abs:hover {
	top: 0px;
	background-color: rgba(0,0,0,0.54);
	color: #FFFFFF;
	border-radius: 10px;
}
