/* 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
*/
.fc-tbx {z-index: 1003;}
.fc-tbx table {background: none; border: none;}
.fc-tbx table td {padding: 0; border: none;}
.fc-tbx table tr {background: none !important;}

.fc-tbx .tl{
	background: url('img/tl.png') no-repeat;
}
.fc-tbx .t{
	background: url('img/t.png') repeat-x;
	height: 16px;
}
.fc-tbx .tr{
	background: url('img/tr.png') no-repeat;
}
.fc-tbx .l{
	background: url('img/l.png') repeat-y;
	width : 16px;
}
.fc-tbx .r{
	background: url('img/r.png') repeat-y;
	width: 16px;
}
.fc-tbx .bl{
	background: url('img/bl.png') no-repeat;
}
.fc-tbx .b{
	background: url('img/b.png') no-repeat;
	height: 25px;
}
.fc-tbx .br{
	background: url('img/br.png') no-repeat;
}
.fc-tbx .c{
	background: url('img/c.png') repeat;
}
.fc-tbx a.close {
	float: right;
	background: url('img/close.png') no-repeat;
	position: relative;
	margin-left: 5px;
	display: block;
	width: 10px;
	height: 10px;
	cursor: pointer;
}
.fc-tbx .err {
	float: left;
}
.fc-tbx p {
	width : auto;
	display: block;
	font-size: 10px;
	font-family: tahoma, verdana, sans-serif;
	margin : 0;
	padding : 0;
	border : 0;
	color : #FFF;
}

.ajax_loader {
	background : url('img/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 {
	position: relative;
}
.fc-error p {
	margin : 0 16px;
	padding: 0;
	color : #fff;
	overflow: hidden;
}
.fc-error p span.blad {
	display: block;
	padding : 0;
	margin: 16px 0 25px 0;
	color : #fff;
	background: url(img/c.png);
}
.fc-error span.gora, .fc-error span.gora2, .fc-error span.dol, .fc-error span.dol2, .fc-error span.lewy, .fc-error span.prawy, .fc-error span.gorny, .fc-error span.dolny {
	display: block;
	position: absolute;
	margin: 0;
	padding: 0;
}
.fc-error span.gora {
	background: url(img/tl.png) 0 0 no-repeat;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
}
.fc-error span.gora2 {
	background: url(img/tr.png) 0 0 no-repeat;
	top: 0;
	right: 0;
	width: 16px;
	height: 16px;
}
.fc-error span.dol {
	background: url(img/bl.png) 0 0 no-repeat;
	bottom: 0;
	left: 0;
	margin: 0 0 9px 0;
	width: 16px;
	height: 16px;
}
.fc-error span.dol2 {
	background: url(img/br.png) 0 0 no-repeat;
	bottom: 0;
	right: 0;
	margin: 0 0 9px 0;
	width: 16px;
	height: 16px;
}
.fc-error span.lewy {
	background: url(img/l.png) 0 0 repeat-y;
	top: 0;
	bottom: 0;
	left: 0;
	width: 16px;
	margin: 16px 0 25px 0;
}
.fc-error span.prawy {
	background: url(img/r.png) 0 0 repeat-y;
	top: 0;
	bottom: 0;
	right: 0;
	width: 16px;
	margin: 16px 0 25px 0;
}
.fc-error span.gorny {
	background: url(img/t.png) 0 0 repeat-x;
	top: 0;
	left: 0;
	right: 0;
	height: 16px;
	margin: 0 16px;
}
.fc-error span.dolny {
	background: url(img/b.png) 0 0 no-repeat;
	bottom: 0;
	left: 0;
	right: 0;
	height: 25px;
	margin: 0 16px;
}
