/*
Form Hint Styles
*/

/* The hint to Hide and Show */
.hint {
   	display: none;
    float:right;
    width: 150px;
    margin: 0px 10px 0px 10px;
    border: 1px solid #5e3d1e;
    padding: 5px 10px;
    /* 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: #e7d298 url(../images/pointer.gif) no-repeat -10px 5px;
}

/* The pointer image is hadded by using another span */
.hint .hint_pointer {
    float:left;
		margin:0px 0px 0px -20px;
    width: 10px;
    height: 19px;
		background:url(../images/pointer.gif) no-repeat;
}