.popupBox {
    visibility:hidden;
    opacity:0;        
    transition:visibility 0s linear 0.3s,opacity 0.3s linear;
    transition: all 0.4s ease;
    transition-delay:  0s;
}

.popupHoverElement:hover > .popupBox {
    visibility:visible;
    opacity:1;
    transition: all 0.3s ease;
    transition-delay:  0s;
}

#one {
    /*background:#FFF;
    position:relative;
    width:100px;
    height:30px;
    line-height:27px;
    display:block;
    border:1px solid #dadada;
    margin:15px 0 0 10px;
    text-align:center;*/
}

#two {
    background: none repeat scroll 0 0 rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.0);
    color: #333333;
    left:-125px;
    line-height: 20px;
    position: absolute;
    top:80px;
    padding-left:20px;
    padding-right:20px;
    border-radius:6px;
    width:300px;
    height:100px;
    overflow-y:scroll;
    overflow-x: hidden;
}

/*#three {
    width: 15px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid rgba(255,255,255,0.7);
    position: absolute;
    top: 65px;
    left: 25%;
}*/
/*Configuração da sSrollbar*/
/*Mozilla*/
/*Internet Explorer*/

/*Chrome*/
#two::-webkit-scrollbar {
    width: 8px;
}
 
#two::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}