@charset "utf-8";

/*---------------------------------------------------------------

 validation.css
 
 font-size defined in fonts.css - YUI fonts.css
 93% - 12px
 
 ----------------------------------------------------------------*/

div.validationTip {
	padding-top: 6px;
	background: url(../images/tip_top.gif) no-repeat 40% 0%;
	font-size: 93%;
	display:none;
}

	div.tipInner {
		border: solid #000000 1px;
		-moz-border-radius: 4px;
		padding: .5em 1em .5em .8em;
		color: #FFFFFF;
		background: #000000;
		font-weight: bold;
	}
	
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(../images/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(../images/dialog_close.gif) no-repeat left top;
		cursor: pointer;
	}
	
	div#dlg span#close.hover {
		background: url(../images/dialog_close.gif) no-repeat left -19px;
	}
	
	div#dlg div#dlgtop {
		height: 5px;
		background: url(../images/dialog_top.gif) no-repeat right top;
		overflow: hidden;
	}

	div#dlg div#dlgcont {
		padding: 1.5em 0;
		background: #282828 url(../images/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(../images/dialog_bottom.gif) no-repeat right top;
		overflow: hidden;
	}
