/* CSS Document */
/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
   /* right: 138px;
   */
    width: 200px;
    margin-top: -4px;
    border: 1px solid #D4E2EF;
    padding: 10px 12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
 	background:#F4F6FA url(../images/pointer.gif) no-repeat -10px 5px;
}
/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
    left: -10px;
    top: 5px;
    width: 10px;
    height: 19px;
    background: url(../images/pointer.gif) left top no-repeat;
}

