.infobox{
    position: absolute;
    font-size: 12px;
    font-family: 'Gentona-Bold', sans-serif;
    font-weight: 400;
    color: rgb(68, 68, 68);
    background-color: #ededed;
    border: 1px solid rgb(252, 252, 252);
    border-radius: 5px;
    box-shadow: 0px 0px 7px grey;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
   /* padding: 5px;
   overflow: hidden;*/
}
.infoHeader{
    
    position: relative;
    top: 0px;
    left: 0px;
    height: 18px;
    color:white;
    background: #f44336;
    font-size: 14px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    text-align: center;
    padding-top: 4px;
    
}
.infoHeader span{
    color:white;
    text-shadow: 1px 1px 1px #1b1b1b;
    pointer-events: none;
    text-transform: uppercase;
}
.infocontent{
    position:relative;
    top: 0px;
    left: 0px;
    max-width: 150px;
    font-size: 12px;
    font-family: 'Gentona-Light', sans-serif;
       
}
.infoMinimize {
    position: absolute;
    right: 2px;
    top: 2px;
    background-image: url(../icons/icon_minimize.png);
    /* filter: invert(100%); */
    opacity: 0.5;
    height: 16px;
    width: 16px;
    cursor: pointer;
}
.infoClose {
    position: absolute;
    right: 2px;
    top: 2px;
    background-image: url(../icons/icon_close.png);
    /* filter: invert(100%); */
    opacity: 0.5;
    height: 16px;
    width: 16px;
    cursor: pointer;
}
.minimizedInfo{
    max-height:18px;
}
.infoContentHide{
    visibility: hidden;
}
