#msg_bg {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	z-index: 16385;
	position:fixed;
	top: 0px;
	left: 0px;
	
	-webkit-animation: fadein 0.2s;
}

#msg {
	border-top: 2px solid gray;
	border-bottom: 2px solid gray;
	
	background: #000000 url(../../images/back_blurred.jpg) repeat scroll top left;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	width: 100%;
	color: white;
	text-shadow: 0px 0px 5px black, 0px 0px 15px black;
	line-height: 20px;
	
	position: fixed;
	z-index: 16386;
	bottom: calc(50% + 12px);
	
	padding-top: 8px;
	padding-bottom: 8px;
	
	text-align: center;
	box-shadow: 0px 0px 15px black;
	-webkit-animation: fadein 1s;
}

@-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

#msg:active {
	opacity: 1;
}

#msg_button {
	width: 264px;
	height: 38px;
	display: table;
	position: fixed;
	top: calc(50% + 12px);
	left: calc(50% - (264px / 2));
	padding: 6px;
	z-index: 16386;
	
	margin-top: 4px;
	margin-bottom: 4px;
	text-align: center;
}

#msg_button_vertical_fix {
	border-radius: 12px;
	//background: rgba(255, 255, 255, 1);
	background: #000000 url(../../images/back_blurred.jpg) repeat scroll top left;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	
	border: 2px solid #666666;
	
	box-shadow: 0px 0px 25px black;
	
	display: table-cell;
	vertical-align: middle;
	color: white;
	text-shadow: 0px 0px 5px black, 0px 0px 15px black;
	z-index: 16386;
	-webkit-animation: fadein 2.5s;
	
	-webkit-transition: background 0.125s ease-in-out;
	-webkit-transition: box-shadow 0.125s ease-in-out;
}

#msg_button_vertical_fix:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 15px white;
	text-shadow: 0px 0px 10px white;
	color: black;
	
	border: 2px solid #000000;
}