/* 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-nbx{
	z-index:99;
}
.jq-nbx table{
	width:auto;
}
.jq-nbx .tl{
	background: url('../images/notebox/tl.png') no-repeat;
}
.jq-nbx .t{
	background: url('../images/notebox/t.png') repeat-x;
	height: 7px;
}
.jq-nbx .tr{
	background: url('../images/notebox/tr.png') no-repeat;
}
.jq-nbx .l{
	background: url('../images/notebox/l.png') repeat-y bottom;
	width : 7px;
}
.jq-nbx .r{
	background: url('../images/notebox/r.png') repeat-y bottom;
	width: 15px;
}
.jq-nbx .bl{
	background: url('../images/notebox/bl.png') no-repeat;
}
.jq-nbx .b{
	background: url('../images/notebox/b.png') repeat-x;
	height: 11px;
}
.jq-nbx .br{
	background: url('../images/notebox/br.png') no-repeat;
}
.jq-nbx .c{
	background:#FFF url('../images/notebox/c.png') repeat-x bottom;
	padding:5px;
}
.jq-nbx a.close {
	float: right;
	background: url('../images/notebox/close.png') no-repeat;
	position: relative;
	margin-left: 5px;
	display: block;
	width: 10px;
	height: 10px;
	cursor: pointer;
}
.jq-nbx .err {
	float: left;
}
.jq-nbx p {
	width : auto;
	display: block;
	margin : 0;
	padding : 4px 8px;
	border : 0;
}
 
.ajax_loader {
	background : url('../images/notebox/ajax-loader.gif') no-repeat center;
	width : 200px;
	height : 150px;
}


