@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: #FF0;
	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-width: thin;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FC0;
	border-right-color: #FC0;
	border-bottom-color: #FC0;
	border-left-color: #FC0;
}
.abs:hover {
	top: 0px;
	background-color: rgba(255,255,0,0.8);
	color: #003C77;
	border-radius: 10px;
}
