@charset "utf-8";
/* CSS Document */

.sample1{
  color: black;
  text-decoration: none;
  position: relative;
}

.sample1-balloon {
  position: absolute;
  top: -40px;
  left: -15px;
  display: none;
  padding: 5px;
  color: white;
  background-color: blue;
}

.sample1:hover .sample1-balloon {
  display: inline-block;
}