/**
 * Popup styles
 * used for Login popup
 */

.popup{
	position: fixed;
	top: 0px; bottom: 0px; left: 0px; right: 0px;
	z-index: 600;
	display:none;
}
.popup .popupContent{
	position: absolute;
	background-color: #F8F8F8;
	left: 50%;
	top: 45%;
	width: 700px;
	min-height: 250px;
	margin-left: -350px;
	margin-top: -150px;
	
	
	/* rounded corners */
	   -moz-border-radius: 5px 5px 0px 0px; 
	-webkit-border-radius: 5px 5px 0px 0px; 
	        border-radius: 5px 5px 0px 0px;
	
	/* shadow */			
	   -moz-box-shadow: 0px 0px 5px #555; 
	-webkit-box-shadow: 0px 0px 5px #555; 
	        box-shadow: 0px 0px 5px #555; 
}
.popup h3{
	font-weight: normal;
	font-size: 25px;
	line-height: 32px;
	display: inline;
}
.popup h4{
	font-size: 18px;
	margin-bottom: 20px;
	display: block;
}
.popup .lform_top{
	border-bottom:solid 1px #ccc;
	padding: 20px 20px 20px 20px;
}
.popup .lform_main{
	padding: 20px;
	color: #666;
	font-size: 12px;
	max-height: 200px;
	overflow: auto;
}
.popup .lform_main_left{
	border-right:solid 1px #ccc;
	padding-right: 20px;
	width: 360px;
	float: left;
}
.popup .lform_main_right{
	width: 250px;
	float: left;
	padding-left: 20px;
}
.popup .gradientBtn{
	font-size: 14px;
	text-transform: none;
	letter-spacing: normal;
	font-weight: bold;
	margin-top: 10px;
}
.popup .secureInfo{
	position: absolute;
	top:15px;
	right:0;
	height: 40px;
	padding: 12px 20px 0 45px;
	background: url(http://www.neueshop.com/themes/01/images/secure.png) no-repeat;
	font-size: 12px;
	color: #999;
	line-height: 12px;
}
.popup .blocklabel{
	height: 32px;
}
.popup .blocklabel label{
	width: 130px;
	display: block;
	float: left;
	font-weight: bold;
}
.popup .inputTf{
	width: 200px;;
	height: 20px;
	border:solid 1px #ccc;
	
	/* rounded corners */
	   -moz-border-radius: 4px; 
	-webkit-border-radius: 4px; 
	        border-radius: 4px; 
}
.popup .lform_submit{
	margin-left: 130px;
}
.popup .newpw{
	font-size: 10px;
	color: #336699;
}
	
.popup .modalBg{
	position: absolute;
	background-color: #555;
	opacity: .3;
	top: 0px; bottom: 0px; left: 0px; right: 0px;
}
.popup .error{
	color: #cc0000;
}
.popup .closeBtn{
	position: absolute;
	display: block;
	top: -15px;
	right: -15px;
	z-index: 601;
	width: 30px;
	height: 30px;
	opacity: 0.5;
	background: url(../images/popup_close.png) no-repeat;
}

.popup .closeBtn:hover{
	opacity: 1;
}



/**** special popups ****/


/* addToCart popup */
.popup.addToCartPopup{
	bottom:auto;
	left:50%;
}
.popup .popupContent_addToCart{
	position: absolute;
	top: 30px;
	margin-left: 120px;
	width: 320px;
	height: 110px;
	background: url(../images/popupBgUp.png) no-repeat;
}
.popup .popupContent_addToCart .lform_main{
	padding: 30px 25px 25px 25px;
}
.popup .popupContent_addToCart .lform_main h4{
	margin-bottom: 10px;
}
.popup .popupContent_addToCart .closeBtn{
	position: absolute;
	right: 5px;
	top: 20px;
	background: url(../images/popup_closeX.png) no-repeat;
}



/* login popup */
.popup.loginPopup{
	bottom:auto;
	left:50%;
	position: relative;
	height: 0;
	width: 0;
	border:solid 1px #ff0000;
}
.popup .popupContent_login{
	position: absolute;
	top: auto;
	bottom: 60px;
	margin-left: -430px;
	width: 520px;
	height: 160px;
	background: url(../images/popupBgDown.png) no-repeat;
}
.popup .popupContent_login .lform_main{
	padding: 20px 25px 25px 25px;
}
.popup .popupContent_login .lform_main_left{
	width: 165px;
	height: 100px;
	padding-top: 5px;
}
.popup .popupContent_login .lform_main_right{
	width: 250px;
}
.popup .popupContent_login .lform_main h4{
	margin-bottom: 5px;
}
.popup .popupContent_login .closeBtn{
	position: absolute;
	right: 5px;
	top: 5px;
	background: url(../images/popup_closeX.png) no-repeat;
}
.popup .popupContent_login .inputTf{
	width: 150px;
	margin-bottom: 10px;
	
}
.popup .popupContent_login #loginsubmit{
	float: right;
	margin-right: 5px;
}