﻿/* Всплывающее окно */
#xWindow {
	width: 570px;
	background: #fff;
	border: 1px solid #999;
	-moz-border-radius-topleft: 8px;  
	-moz-border-radius-topright: 8px;  
	-moz-border-radius-bottomright: 8px;  
	-moz-border-radius-bottomleft: 8px;  
	-webkit-border-top-left-radius: 8px;  
	-webkit-border-top-right-radius: 8px;  
	-webkit-border-bottom-left-radius: 8px;  
	-webkit-border-bottom-right-radius: 8px;  
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	z-index: 99999;
	position: fixed;
	overflow: hidden;
	top: 10%;
	left: 30%;
	font-size: 12px;
	font-family: Arial, Tahoma, FreeSans;
	text-align: left;
	opacity: 0.97;
}
#hover a {
	font-size: 14px;
	color: #000;
}
.close {
	background: url('images/close.png') no-repeat top right;
	width: 18px;
	height: 18px;
	float:right;
	margin:3px 6px;
	cursor: pointer;
	position: absolute;
	left: 93%;
	vertical-align: top;
}
.text {
	padding:6px 6px;
	float: left;
}
.descrip {
	display: none;
}
.column {
	float: left;
	width: 150px;
	padding: 5px;
	min-height: 268px;
	margin:5px;
	text-align: center;
}
.column a {
	color: red;
	font-size: 14pt;
	text-decoration: underline;
}
.column a:hover {
	color: #000;
}
.column .img {
	margin-top: 5px;
	border: 1px solid #444;
}
.column span {
	color: #777;
}
.column b {
	color: red;
	font-size: 14px;
}
.column .download {
	background: url('images/download.png') no-repeat;
	margin-top: 8px;
	width: 95px;
	height: 31px;
	cursor: pointer;
}
#xWindowAlert {
	overflow: hidden;
	width: 570px;
	height: 320px;
}
#xWindowAlert b {
	color: red;
}
.button {
	cursor: pointer;
}
.back {
	color: green;
	font-size: 12pt;
	padding: 18px 0 0 28px;
}
.back a {
	color: green;
	font-size: 12pt;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
}
#xWindowAlert .text {
	font-size: 17px;
	padding: 30px;
}
#message {
	color: red;
	font-size: 14pt;
	margin-top: 12px;
	text-align: center;
}
#message a {
	color: red;
	text-decoration: underline;
}
.link {
	font-size: 12px;
	color: #333;
}