body.loading
{
	overflow: hidden;
	height: 100%;
}
.common.loading.container
{
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .75);
	background-color: rgb(255, 255, 255) \9;
}
.common.loading.main
{
	font-size: 40px;
	line-height: 50px;
	position: absolute;
	top: 50%;
	width: 100%;
	height: 100px;
	margin-top: -50px;
	text-align: center;
}
.common.loading.text
{
	height: 50px;
}
.common.loading.spin
{
	position: relative;
	height: 50px;
}
.common.loading.item
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	margin-top: -10px;
	opacity: .65;
	border: 1px solid #000;
	border-radius: 10px;
	background-color: #222;
}


.common.message
{
	font-size: 18px;
	line-height: 30px;
	position: fixed;
	left: 50%;
	display: none;
	width: 500px;
	height: 30px;
	margin-top: -25px;
	margin-left: -275px;
	padding: 10px 50px;
	text-align: center;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-position: 10px 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	box-sizing: content-box;
	cursor: pointer;
	z-index: 10000000;
}
.common.message.top,
.common.message:not(.bottom):not(.middle)
{
	top: 25%;
}
.common.message.middle
{
	top: 50%;
}
.common.message.bottom
{
	top: 75%;
}
.common.message.log
{
	color: #666;
	background-color: rgba(230, 230, 230, .9);
	background-color: rgb(230, 230, 230) \9;
}
.common.message.info
{
	color: #38a;
	background-color: rgba(215, 235, 255, .9);
	background-color: rgb(215, 235, 255) \9;
	background-image: url(/common/images/info.png);
}
.common.message.done
{
	color: #3a3;
	background-color: rgba(175, 255, 175, .9);
	background-color: rgb(175, 255, 175) \9;
	background-image: url(/common/images/done.png);
}
.common.message.warn
{
	color: #880;
	background-color: rgba(255, 255, 150, .9);
	background-color: rgb(255, 255, 150) \9;
	background-image: url(/common/images/warn.png);
}
.common.message.error
{
	color: #a00;
	background-color: rgba(255, 175, 175, .9);
	background-color: rgb(255, 175, 175) \9;
	background-image: url(/common/images/error.png);
}


.common.error
{
	color: #f00;
}