/* All form elements are within the definition list for this example */

.tooltipform {
	font-size:13px;	
}

.tooltipform .errors {
	color:red;
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin-left:130px;
	width:230px;
}

.tooltipform dt {
	clear: left;
	display: block;    
    float: left;
    width: 130px;	
}

.tooltipform dt label {
	display:block;
	float:none;
	text-align:right;
	width:90%;
}

.tooltipform dd{
	margin-bottom:10px;	
}

.tooltipform dd input{
	width:227px;	
}



#captcha-input{
	margin-left:130px;
}



/* The hint to Hide and Show */
.tooltipform .hint {
   	display: none;
    position: absolute;    
    width: 200px;
   	margin-left:20px;
	margin-top:-5px;   
    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(../images/pointer.gif) no-repeat -10px 5px;
}

/* The pointer image is hadded by using another span */
.tooltipform .hint .hint-pointer {
    position: absolute;
    left: -10px;
    top: 5px;
    width: 10px;
    height: 19px;
    background: url(../images/pointer.gif) left top no-repeat;
}


