dl.formhoriz {
	position: relative;
	width: 100%;
}
dl.formhoriz dt {
    float:left;
    width: 30%;
	font-weight: normal;
}
dl.formhoriz dd {
    float: left;
    width: 63%;
    margin: 0 0 8px 0;
}
dl.formhoriz dd input {
	width: 100%;
}
dl.formhoriz dd select {
	width: 103%;
}

dl.formvert {
	position: relative;
}
dl.formvert dt {
    clear: both;
    float:left;
    width: 140px;
	font-weight: normal;
}
dl.formvert dd {
    float: left;
    margin: 0 0 8px 0;
	width: 100%;
}
dl.formvert input {
	width: 95%;
}

/* The hint to Hide and Show */
.hint {
   	display: none;
    position: absolute;
    right: -180px;
    width: 150px;
    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(../gfx/pointer.gif) no-repeat -10px 5px;
	filter:alpha(opacity=90);
	opacity: 0.9;
	-moz-opacity:0.9;
}

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