@charset "UTF-8";
/* cosas propias de este doc */

.box {
	display: inline-block;
	position: relative;
	width: 302px;
	margin-bottom:20px;
	border-radius:10px;
	-webkit-box-shadow: 0px 5px 8px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 5px 8px 2px rgba(0,0,0,0.2);
	box-shadow: 0px 5px 8px 2px rgba(0,0,0,0.2);
	cursor:pointer;
	animation-name: moveDown;
	animation-duration: .25s;
	animation-fill-mode: forwards;
}
@keyframes moveDown {
  from {top:-5px;}
  to {top:0px;}
}
.box:hover, .greenButton:hover {
	animation-name: moveUp;
	animation-duration: .25s;
	animation-fill-mode: forwards;
}
@keyframes moveUp {
  from {top:0px;}
  to {top:-5px;}
}
.box img {
	position: relative;
	display: inline-block;
	height: 180px;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
}