/* The hint to Hide and Show */
.hint {
    /*display: none;*/
    display: inline;
    position: absolute;
	right: -220px;
    width: 195px;
    margin-top: -5px;
    margin-left: -10px;
    border: none;
    padding: 10px 15px 12px 30px;
    font-size:13px;
    /* 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: url(../img/generic/hintBottom.png) no-repeat bottom left;
}
.rightHint {
    /*display: none;*/
    display: inline;
    position: absolute;
	left: -250px;
    width: 195px;
    margin-top: -5px;
    margin-right: 0;
    border: none;
    padding: 10px 30px 12px 25px;
    font-size:13px;
    /* 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: url(../img/generic/hintBottom.png) no-repeat bottom left;
}


/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
    left: 0;
    top: -1px;
    width: 240px;
    height: 40px;
    background: url(../img/generic/hintTop.png) left top no-repeat;
}
.rightHint .hint-pointer {
    position: absolute;
    right: 0;
    top: -1px;
    width: 240px;
    height: 40px;
    background: url(../img/generic/hintTopRight.png) left top no-repeat;
}
