.dialog-mask
{
	position: absolute;
	background: #fff;
	opacity: .5;
	filter: alpha(opacity=50);
	z-index: 4;
}
.dialog-layout
{
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 500ms cubic-bezier(0.39,1.42,0.48,1) 250ms;
	-moz-transition: all 500ms cubic-bezier(0.39,1.42,0.48,1) 250ms;
	-ms-transition: all 500ms cubic-bezier(0.39,1.42,0.48,1) 250ms;
	-o-transition: all 500ms cubic-bezier(0.39,1.42,0.48,1) 250ms;
	transition: all 500ms cubic-bezier(0.39,1.42,0.48,1) 250ms;
	position: absolute;
	border: 1px solid #eee;
	background: #fff;
	box-shadow: 1px 2px 4px rgba(100,100,100,0.1);
	display: none;
	z-index: 5;
}
.dialog-layout-animate
{
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.dialog-layout-close
{
	-webkit-transition: all 900ms cubic-bezier(.37,-0.99,.24,.24) 100ms;
	-moz-transition: all 900ms cubic-bezier(.37,-0.99,.24,.24) 100ms;
	-ms-transition: all 900ms cubic-bezier(.37,-0.99,.24,.24) 100ms;
	-o-transition: all 900ms cubic-bezier(.37,-0.99,.24,.24) 100ms;
	transition: all 900ms cubic-bezier(.37,-0.99,.24,.24) 100ms;
	top: -300px !important;
}
.dialog-content
{
	position: relative;
	color: #555;
	overflow: hidden;
	background: #CCEBE8;
}
.dialog-title
{
	position: absolute;
	left: 0;
	top: 0;
	height: 45px;
	width: 100%;
	overflow: hidden;
	background: #08c;
	font: normal 13px Microsoft Yahei;
	color: #fff;
}
.dialog-title span
{
	display: block;
	float: left;
	padding: 5px 20px;
	background: #08c;
}
.dialog-close
{
	position: absolute;
	right: 0;
	top: 0;
	background: #e04343;
	display: block;
	text-decoration: none;
	font-family: Tahoma;
	font-size: 20px;
	line-height: 37px;
	height: 40px;
	width: 40px;
	text-align: center;
	color: #fff;
}
.dialog-close:hover
{
	opacity: .8;
	filter: alpha(opacity=80);
}
.dialog-html
{
	padding: 50px 20px 20px 20px;
	font: normal 13px Microsoft Yahei;
	line-height: 150%;
}
