/* All form elements are within the definition list for this example */
dl {
    font-family: Trebuchet MS, Verdana, Arial ;
	font-size:13px;
    position: relative;
    width: 600px;
    height:16px;

}

dt {
    clear: both;
    float:left;
    width: 80px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: right;
}

dd {
    float: left;
    width: 200px;
    margin: 0 0 8px 0;
    padding: 0 0 0 6px;;
}

/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
    width: 150px;
    right:-10px;
    margin: -4px 0 0 0 ;
    border: 1px solid #c93;
    padding: 10px 30px 10px 10px;
    background: #ffc url(../images/pointer.gif) no-repeat -10px 5px;
    text-align:left;
}

/* 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;
}


