.infoBox{
    height: 13px;
    width: 13px;
    border-radius: 6px;
    display: inline-block;
    background-color: #33F;
    position: relative;
}

.infoBox .infoPlaceHolder{
    height: 13px;
    width: 13px;
    border-radius: 6px;
    position: absolute;
    color: white;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    top: -2px;
    cursor: pointer;
}

.infoBox .infoContent{
    display: none;
    position: absolute;
    top: 12px;
    border: 1px solid blue;
    padding: 7px;
    background-color: white;
    font-size: 15px;
    left: 12px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 99999;
    min-width: 450px;
    font-weight: normal;
    text-align: left;
}

.infoBox .infoContent .infoClose{
    right: -7px;
    position: relative;
    float: right;
    top: -7px;
    padding: 1px 15px;
    font-size: 13px;
    border-left: 1px solid #3d8dfe;
    border-bottom-left-radius: 10px;
    cursor: pointer;
    border-bottom: 1px solid #3d8dfe;
    color: #003784;
    font-weight: bold;
}

.infoBox .infoContent .fullWidth{
    width: 98%;
    padding: 6px 0px;
    position: relative;
}

.infoBox .infoContent .right{
    right: 0px;
    position: absolute;
}

.infoBox .infoContent .cc{
    display: inline-block;
    border: 1px solid #CCC;
    padding: 3px 6px;
    border-radius: 6px;
    top: 2px;
}



.infoBox .infoContent .uniprot{
    background-color: #c1e0ff;
}
.infoBox .infoContent .gene{
    background-color: #96caff;
}
.infoBox .infoContent .go{
    background-color: #72b8ff;
}
.infoBox .infoContent .description{
    background-color: #4ca5ff;
}

.infoBox .infoContent .ipi{
    background-color: #2b95ff;
}

