@charset "UTF-8";

body {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-left: 2px;
  padding: 0;
}

.tooltip{
    position: relative;
    cursor: pointer;
    display:  block;
    max-width: 901px;
}
.description {
    display: none;
    position: absolute;
    width: 95%;
    margin-top: 2px;
    margin-bottom: 0;
    margin-right: 0px;
    margin-left: 1%;
    padding: 1%;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.0em;
    border-style: solid;
    border-color: gray;

    color: #fff;
    background: #000;
}
 
.tooltip:hover .description{
    display: block;
}

.resizeimage img {
    width: auto;
    height: 80%;
    /*
    max-width: 901px;
    max-height: 600px;
    */
}

