/* All form elements are within the definition list for this example */

h3 {margin-top: 0; margin-bottom: 0; text-align: center; color: green; }
h2 {margin-top: 0; margin-bottom: 0; text-align: center; color: red; }
h6 {margin-top: 0; margin-bottom: 0; text-align: center; color: blue;}
h4 {margin-top: 0; margin-bottom: 0; text-align: center; color: #CC00FF;}
/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
    right: 100px;
    width: 150px;
    margin-top: -4px;
    border: 1px solid #c93;
    /* 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('../images/pointer.gif') no-repeat -10px 5px;; padding-left:12px; padding-right:12px; padding-top:10px; padding-bottom:10px
}

/* 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') no-repeat left top;
}
