/*!diaolog_st default style =============================================================================*/
#dialog_st_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background: #000;
	opacity: 0.7;
	display: none;
}
#dialog_st_cont_wrap {
	position: fixed;
	z-index: 11000;
	display: none;
	top: 200px;
	left: 50%;
	margin-left: -258px;
}
#dialog_st_cont {
	position: relative;
	z-index: 0;
	overflow: auto;
	overflow-x: hidden;
	padding-right: 15px;
}
.dialog_st_close {
	cursor: pointer;
	position: absolute;
	top: -10px;
	right: 0;
	z-index: 1;
	line-height: 10px;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
}
.dialog_st_close:hover {
	opacity: 0.5;
}
#dialog_st_header {
	background: #E85800;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding: 9px 10px 7px;
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	border-radius: 10px 10px 0 0;
	display: none;
}
.dialog_st_has_header #dialog_st_cont {
	margin-top: 15px;
}
.dialog_st_has_header .dialog_st_close {
	color: #fff;
}
.dialog_st_has_header #dialog_st_header {
	display: block;
}
/*!e ======================================================================================================*/