@charset "utf-8";

/*---------------------------------------------------------------

 validation.css
 
 font-size defined in fonts.css - YUI fonts.css
 93% - 12px
 
 ----------------------------------------------------------------*/

div.validationTip { padding-left: 6px; background: url(img/tip_left.png) no-repeat left center; font-size: 93%; }
div.tipInner { border: solid #BBB 1px; border-top: none; border-left: none; padding:5px 5px 5px 10px;
color:#fff; background: #C0A754; font-weight: bold;
/*Progressive Enhancement */ border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
	
div#dlgmat {
	width: 101.55%; /* for ie6 bug */
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 550;
	background: #000;
}

* html div#dlgmat { /* ie6 */
  position: absolute;
  height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight +'px');
}
	
div#dlg {
	padding: 0 0 0 5px;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1000;
	background: url(img/dialog_left.gif) no-repeat left top;
	font-size: 93%;
}

* html div#dlg {	/* ie6 */
	position: absolute;
	margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (dlgMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

div#dlg span#close {
	display: block;
	width: 21px;
	height: 19px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: url(img/dialog_close.gif) no-repeat left top;
	cursor: pointer;
}

div#dlg span#close.hover {
	background: url(img/dialog_close.gif) no-repeat left -19px;
}

div#dlg div#dlgtop {
	height: 5px;
	background: url(img/dialog_top.gif) no-repeat right top;
	overflow: hidden;
}

div#dlg div#dlgcont {
	padding: 1.5em 0;
	background: #282828 url(img/dialog_right.gif) no-repeat right top;
}

	div#dlg div#dlgcont div {
		padding: 0 3.5em;
		color: #FFF;
		font-weight: bold;
	}
	
		div#dlg div#dlgcont div span {
			line-height: 1.7;
		}
		
			div#dlg div#dlgcont div span strong {
				border-bottom: dotted #F60 1px;
				padding: 0 .1em;
				color: #F60;
			}

div#dlg div#dlgbtm {
	height: 5px;
	background: url(img/dialog_bottom.gif) no-repeat right top;
	overflow: hidden;
}
	
	
.jquery-notify-bar { width:100%; position:fixed; top:0; left:0; z-index:32768;
 background-color:#451966; font-size:18px; color:#fff;
 text-align:center; padding:20px 0px; border-bottom:1px solid #bbb; }
.jquery-notify-bar.error { color:#fff; background-color:#B94026; }
.jquery-notify-bar.success { color:#060; background-color:#BBFFB6; }