/* All form elements are within the definition list for this example */
label{
display:inline;
}
dl {
	font:normal 12px/15px Arial;
    position: relative;
    width: 500px;
}
dt {
    clear: both;
	float:left;
	width:120px;
    padding: 4px 0px 2px 5px;
    text-align: right;
}
dd {
	float:left;
	width:300px;
    margin: 0 0 8px 0;
    padding-left: 6px;
}
fieldset {
  clear: both;
  font-size: 100%;
  border-color: #E0E0E0;
  border-width: 1px 0 0 0;
  border-style: solid none none none;
  padding: 10px;
  margin: 0 0 0 0;
}

fieldset legend {
  font-size: 150%;
  font-weight: normal;
  color: #999999;
  margin: 0 0 0 0;
  padding: 0 5px;
}

/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
    right: -40px;
    width: 170px;
    margin-top: -4px;
    border: 1px solid #c93;
    padding: 10px 12px;
    z-index: 100;
    /* 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;
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
    z-index: 100;
    left: -10px;
    top: 5px;
    width: 10px;
    height: 19px;
    background: url(/images/pointer.gif) left top no-repeat;
}