@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Maven+Pro:400,500,700,900);

/* CSS Document */
#alertMessage-cover {
	position: fixed;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background-color: #000;
	z-index: 10000000;
	display: none;
}	
#alertMessage-wrap {
	position: absolute;
	width: 50%;
	left: 25%;
	z-index: 100000001;
	display: none;
	min-width: 750px;
}
#alertMessage{
	font-family: 'Maven Pro', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #333333;
	position: relative;
	margin: 0 auto;
	margin-top: 100px;
	width: auto;
	opacity: 1.0;
	background-color: #ffffff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 50px;
	z-index: 100000002;
}
#alertMessage a{
	/*text-decoration: none;*/
	color: #333333;
	text-decoration: none;
}
#alertMessage a:hover{
	/*text-decoration: none;*/
	color: #710000;
	text-decoration: none;
}
#alertMessageTitle{
	color: #c14238;
	font-family: 'Maven Pro', sans-serif;
	font-weight: 400;
	font-size: 35px;
	width: 500px;
	position: absolute;
	top: 40px;
}
#alertMessageLink {
	font-size: 12px;
	width: 150px;
	position: absolute;
	right: 5px;
	bottom: 0px;
	text-align: right;
	padding-right: 23px;
	padding-top: 2px;
	height: 22px;
}
#alertMessageText {
	padding-top: 50px;
	margin-right: 10px;
	text-align: left;
	min-height: 150px;
	line-height: 25px;
}
#alertMessageClose a {
	position: absolute;
	right: 0px;
	top: 0px;
	background-color: #fff;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
	padding: 15px;
}
#alertMessageClose a:hover {
	background-color: #f6f6f6;
}