div.contenedor {
	width: 124px;
	height: 140px;
	float: left;
	-webkit-transition: height .4s;
	transition: height .4s;
	-ms-transition: height .4s;
	-moz-transition: height .4s;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
div#uno {
	background-color: rgb(15,28,38);
}
div#dos {
	background-color: rgb(15,28,38);
}
div#tres {
	background-color: rgb(15,28,38);
}
div#cuatro {
	background-color: rgb(15,28,38);
}
div#cinco {
	background-color: rgb(15,28,38);
}
div#seis {
	background-color: rgb(15,28,38);
}
div#siete {
	background-color: rgb(15,28,38);
}
div#ocho {
	background-color: rgb(15,28,38);
}
img.icono {
	height: 100px;
	width: 100px;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	display: block;
	background-color: rgba(255,255,255,0.15);
	padding: 10px;
	-webkit-box-shadow: 0px 0px 0px 30px rgba(255,255,255,0);
	-webkit-transition: box-shadow .4s;
	-moz-box-shadow: 0px 0px 0px 30px rgba(255,255,255,0);
	-moz-transition: box-shadow .4s;
	box-shadow: 0px 0px 0px 30px rgba(255,255,255,0);
	transition: box-shadow .4s;
}
p.texto {
	font-size: 14px;
	color: rgb(255,255,255);
	text-align: center;
	padding-top: 5px;
	opacity: .8;
	-webkit-transition: padding-top .4s;
	-moz-transition: padding-top .4s;
	-ms-transition: padding-top .4s;
	transition: padding-top .4s;
	text-decoration: none;
	cursor: pointer;
}
div.contenedor:hover {
	height: 160px;
}
div.contenedor:hover p.texto {
	padding-top: 8px;
	opacity: 1;
	filter: alpha(opacity=100);
	color: #FFCC66;
}
div.contenedor:hover img.icono {
	-webkit-box-shadow: 0px 0px 0px 0px rgba(255,255,255,.6);
	background-color: #FFFFFF;
	-ms-box-shadow: 0px 0px 0px 0px rgba(255,255,255,.6);
	-moz-box-shadow: 0px 0px 0px 0px rgba(255,255,255,.6);
	box-shadow: 0px 0px 0px 0px rgba(255,255,255,.6);
}
