/* All form elements are within the definition list for this example 
http://www.askthecssguy.com/2007/03/form_field_hints_with_css_and.html
*/
hint {
    float: left;
    width: 200px;
    margin: 0px;
    /*padding-left: 6px;*/
}


/* The hint to Hide and Show */
/* MJF: See formfieldhints.js for initialization */
/* --------------------------------------------------------------------- */
.hint_text {
   	/*display: none;*/
	visibility:hidden;
    position: absolute;
    left: 500px;  /* this dictates the left offset of the beginning of the hint */
    width: 200px;
    margin-top: -4px;
    border: 1px solid #c93;
    padding: 10px 12px;
    /* to fix IE6, I can't just declare a background-color,
    I must do a bg image, too!  So I'm duplicating the pointer.gif
    image, and positioning it so that it doesn't show up
    within the box */
    background: #ffc url(../graphics/datafeed/formfieldhints/pointer.gif) no-repeat -10px 5px;
}
.hint_text .hint-pointer {
    position: absolute;
    left: -10px;
    top: 5px;
    width: 10px;
    height: 19px;
    background: url(../graphics/datafeed/formfieldhints/pointer.gif) left top no-repeat;
}

/* --------------------------------------------------------------------- */
