.simple-notice-shadow {
	opacity : 0.5;
	position : fixed;
	z-index : 9998;
	top : 0;
	left : 0;
	background-color: #000;
	width: 100%;
}

.simple-notice {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 50%;
	margin-left: -250px;
	width: 500px;
	height: auto;
}

.simple-notice-box {
	width: 500px;
	-webkit-border-radius: 6px 6px 0 0;
	border-radius: 6px 6px 0 0;
	background-color: #fff;
	position: relative;
	z-index: 8;
	height: auto;
	padding: 22px 38px 18px 38px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.simple-notice-close {
	width: 25px;
	height: 25px;
	background-image: url(../data/notice-close-mask.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-color: #cfcfcf;
	transition: background-color 0.3s ease;
	cursor: pointer;
	position: absolute;
	top: 7px;
	right: 7px;
	z-index: 9;
}

.simple-notice-close:hover {
	background-color: #666;
}

.simple-notice-bottom {
	width: 500px;
	height: 11px;
	position: relative;
	background-image: url(../data/notice-bottom-decor.png);
}

.simple-notice-caption {
	color: #666;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 17px;
}

.simple-notice-text, .simple-notice-text * {
	color: #666;
}

.simple-notice-text p:last-child {
	margin-bottom: 0 !important;
}

.simple-notice-type-red .simple-notice-caption {
	color: #dc5353 !important;
}


