@charset "UTF-8";
/* CSS Document */

/* Advanced Tooltip Box */
 
/* 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
*/
.jq-ibx{
	z-index:101;
}
.jq-tbx table{
	width:auto;
}
.jq-ibx .tl{
	background: url('img/tl.png') no-repeat right;
}
.jq-ibx .t{
	background: url('img/t.png') repeat-x;
	height: 7px;
}
.jq-ibx .tr{
	background: url('img/tr.png') no-repeat;
}
.jq-ibx .l{
	background: url('img/l.png') repeat-y bottom;
	width : 7px;
}
.jq-ibx .r{
	background: url('img/r.png') repeat-y bottom;
	width: 7px;
}
.jq-ibx .bl{
	background: url('img/bl.png') no-repeat right;
}
.jq-ibx .b{
	background: url('img/b.png') repeat-x;
	height: 11px;
}
.jq-ibx .br{
	background: url('img/br.png') no-repeat;
}
.jq-ibx .c{
	background:#FFF url('img/c.png') repeat-x bottom;
	padding:5px;
}
.jq-ibx a.close {
	float: right;
	background: url('img/close.png') no-repeat;
	position: relative;
	margin-left: 5px;
	display: block;
	width: 10px;
	height: 10px;
	cursor: pointer;
}
.jq-ibx .err {
	float: left;
}
.jq-ibx p {
	width : auto;
	display: block;
	font-size: 11px;
	font-family: tahoma, verdana, "sans-serif";
	margin : 0;
	padding : 0;
	border : 0;
	color : #000;
}
 
.ajax_loader {
	background : url('img/ajax-loader.gif') no-repeat center;
	width : 200px;
	height : 150px;
}


