/* для popup.js */
#backgroundPopup{
	display:none;
	position:fixed;
	_position:absolute; /* hack for internet explorer 6*/
	height:100%;
	width:100%;
	top:0;
	left:0;
	background:#212121;
	border:1px solid #cecece;
	z-index:9000;
	opacity: 0.7;
}
#popup {
	display: none;
	position: absolute;
	_position:absolute; /* hack for internet explorer 6*/
	top: 17%;
	left: 50%;
	background-color: #FFF;
	color: #333;
	padding: 50px 60px;
	z-index:9999;
	font-size: 90%;
	line-height: 120%;
  box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}
#popup h2 {
	color: #2E3300;
	height: 50px;
	font-weight: bold;
	font-size: 1.6rem;
	margin: 0;
}

/* this is for well known bug of IE6-7 */
#wrapper #container #center #squeeze  {
	z-index:8000;
}
#wrapper {
	z-index:8000;
}
#popup .unsubscribe {
	display: none;
}
#popup .no_more_alert {
	padding: 6px 12px;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	background-color: #feffe5;
	float: right;
	margin-left: 10px;
}
#popup .popup_close {
	position: relative;
}
#popup .popup_close a {
	position: absolute;
	font-family: IcoFont !important;
	color: #898989;
	font-size: 30px;
	top: -15px;
	right: -35px;
}
#popup .popup_close a:hover {
	color: #9dc6d9;
	top: -16px;
	right: -36px;
}
