div.chalet {
position: absolute;
link="black";

}
.chalet a {
text-decoration: none;
}
div.detail
{display:none;
position: relative;
z-index: 2000;
transform-origin: 0% -50%;
animation: 0.5s slidein;
link="red";


}
.chalet a:hover {
*background-color: #008B00;
}

div.chalet:hover .detail {
display: block;
link="red";

}

@keyframes slidein {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
