/* CSS Document */
/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
    width: 230px;
    margin-top: -1px;
    border: 1px solid #c93;
    padding: 4px 8px;    
    background: #ffc url(../images/pointer.gif) no-repeat -10px 5px;
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
    left: -8px;
    top: 3px;
    width: 8px;
    height: 15px;
    background: url(../images/pointer.gif) left top no-repeat;
}

