
/*	----------[hide and show form hint]----------	*/
.hint {
   	display: none;
    position: absolute;
    right: -185px;
    width: 200px;
    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(../images/pointer.gif) no-repeat -10px 5px;
}

/* 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) left top no-repeat;
}

.successmsg {
	clear: both;
	display: block;
	width: 90%;
	color: #333333;
	font-weight: bold;
	background-color: #9bc19b;
	padding: 9px 10px 6px 40px;
	margin: 10px 0;
	border: 2px solid #039b03;
	border-bottom: 2px solid #039b03;
}

#errormsglist, #successmsglist {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
	color:red;
}

#errormsglist li, #successmsglist li{
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: 0;
}

#errormsglist li { background-image: url(/icon/exclamation.png); }

#successmsglist li { background-image: url(/icon/accept.png); }