/*!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;
	background: #FFF;
	padding: 25px;
	border-radius: 10px;
	z-index: 11000;
	display: none;
}
#dialog_st_cont
{
	position: relative;
	z-index: 0;
	overflow: auto;
	overflow-x: hidden;
	padding-right: 0;
}
.dialog_st_close
{
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 1;
	line-height: 10px;
	font-weight: 700;
	font-size: 14px;
	color: #000;
}
.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 ======================================================================================================*/
