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

/*------------------POPUPS------------------------*/
#fade {
	display: none;
	background: #000; 
	position: fixed; left: 0; top: 0; 
	z-index: 10;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
	cursor:pointer;
}
.popup_block{
	display: none;
	background: #fff;
	padding: 20px;
	border: 10px solid transparent;
	-webkit-border-image: url(../images/border.png) 30% round;
    -moz-border-image: url(../images/border.png) 30% round;
    border-image: url(../images/border.png) 30% round;
	float: left;
	position: fixed;
	top: 40%; left: 50%;
	z-index: 99999;
	line-height: 30px;
}
img.btn_close {
	float: right; 
	right:-35px;
	top:-35px;
	position:absolute;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}
.forgotfrm {
	width:100%;
	text-align:left;
}
.forgotfrm input[type=text] {
	border:1px solid #666;
	padding:5px;
	width:98%;
	margin-bottom:5px;
}
.forgotfrm select {
	border:1px solid #666;
	padding:5px;
	width:98%;
	margin-bottom:5px;
}
.forgotfrm textarea {
	border:1px solid #666;
	padding:5px;
	width:98%;
	height:100px;
}
.forgotfrm input[type=submit] {
	border:0px;
	padding:5px 10px;
	background:#DE3D06;
	color:#FFF;
	font-weight:bold;
	cursor:pointer;
}
.errInfo {
	color:#F00;
	font-weight:bold;
	font-size:12px;
	line-height: 12px;
	text-align:center;	
}