/* FormCheck tipbox */

/* tipbox :
	table : 
		tl		: top left
		t		: top
		tr		: top right
		l 		: left
		r		: right
		bl		: bottom left
		b		: bottom (with mark)
		br		: bottom right
		c		: center
	components : 
		a.close	: close button
		err		: errors div
		p		: error line
*/
.tips_box{
}
.tips_box .tl{
	background: url('/img/formcheck/tl.png') no-repeat;
}
.tips_box .t{
	background: url('/img/formcheck/t.png') repeat-x;
	height: 1em;
}
.tips_box .tr{
	background: url('/img/formcheck/tr.png') no-repeat;
}
.tips_box .l{
	background: url('/img/formcheck/l.png') repeat-y;
	width : 16px;
}
.tips_box .r{
	background: url('/img/formcheck/r.png') repeat-y;
	width: 16px;
}
.tips_box .bl{
	background: url('/img/formcheck/bl.png') no-repeat;
}
.tips_box .b{
	background: url('/img/formcheck/b.png') no-repeat;
	height: 23px;
}
.tips_box .br{
	background: url('/img/formcheck/br.png') no-repeat;
}
.tips_box .c{
	background: url('/img/formcheck/c.png') repeat;
}
.tips_box a.close {
	float: right;
	background: url('/img/formcheck/close.png') no-repeat;
	position: relative;
	margin-left: 5px;
	display: block;
	width: 10px;
	height: 10px;
	cursor: pointer;
}
.tips_box .err {
	float: left;
}
input.text.fc-field-error,
textarea.text.fc-field-error{
	font-weight: bold;
	color: #5C2946;
	padding: 5px;
	margin: 7px 0 5px 0;
	width: 255px;
	border: 1px solid #5C2946;
	background: #eddbe1;	
}
.tips_box p {
	width : auto;
	display: block;
	font-size: 10px;
	font-family: tahoma, verdana, "sans-serif";
	margin : 0;
	padding : 0;
	border : 0;
	color: #5C2946;
	
}

.ajax_loader {
	background : url('/img/formcheck/ajax-loader.gif') no-repeat center;
	width : 200px;
	height : 150px;
}

/* FormCheck validation div */

.fc-error {
	border : 1px solid #888;
	margin-top : 5px;
	background-color : #EAEAEA;
}
.fc-error p {
	margin : 5px;
	color : #A00;
}