.popupMessage
{
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
.popupMessage .popupMessageWrapper
{
	display: table;
	margin: 30px auto;

	background-color: #ffffff;
	border-radius: 2px;
	border: 1px solid transparent;
	clear: both;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 5 rgba(0,0,0,0.3);
	min-width: 320px;
	position: relative;

	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: fadeInDown10;
	max-width: 800px;/*Аварийное ограничение. В обычном случае ширина должна ограничиваться правилами вложенных элементов*/
}
.popupMessage .header {
	padding-left: 15px;
	padding-right: 15px;
	line-height: 50px;
	color: #777777;
	cursor: default;
	font-size: 2.1rem;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
}

.popupMessage .text {
	margin: 0px;
	padding: 30px 15px;
	min-height: 40px;
	max-height: 600px;
	max-width: 600px;
	color: #777777;
	overflow: auto;
	font-size: 1.5rem;
	line-height: 1.42857143;
}
.popupMessage .text * {
	color: #777777;
}
.popupMessage .text a {
	color: #3C8DBC;
}
.popupMessage .text a:hover {
	text-decoration: underline;
}
.popupMessage .buttons {
	border-top: 1px solid #DDDDDD;
	margin: 0px;
	padding: 15px;
	text-align: right;
}

.popupMessage .icon
{
	display: none;
	position: absolute;
	bottom: -30px;
	margin-bottom: -10px;
	left: 15px;
	font-size: 2.1rem;
	color: #777777;
}
