/* CSS for dialog */
div.jqDlgContainer {
    position: fixed;
    z-index: 1000;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
    /* min-height: 160px; */
    /*background-color: #428BCA;*/
    border: none;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

div.jqDlgFlash {
    background-color: #A6A6A6 !important;
}

div.jqDlgTitle {
    color: #000;
    font-size: 16px;
    line-height: 18px;
    padding: 12px 15px;
    position: relative;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

span.jqDlgCloseBtn {
    display: inline-block;
    position: absolute;
    font-size: 24px;
    font-weight: normal;
    right: 15px;
    cursor: pointer;
}

div.jqDlgInner {
    overflow: hidden;
    /*border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;*/
}

div.jqDlgContent {
    background-color: #fff;
    padding: 4px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
}

div.jqDlgContent:after {
    clear: both;
    content: "";
    display: block;
    visibility: hidden;
}

div.jqDlgBottom {
    /*background-color: #fbf9fa;*/
    background-color: #fff;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

div.jqDlgButtons {
    text-align: center;
}

.jqDlgFocusedBtn {
    background: #2aaf67 !important;
    color: #fff !important;
    border: 0px !important;
}

div.jqDlgButtons input {
    cursor: pointer;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
    font-size: 16px;
    padding: 5px 15px;
    margin: 0 5px;
    border: 1px solid #d9d9d9;
    color: #000;
    background: #fff;
    border-radius: 5px;
}

/* div.jqDlgButtons input:hover
{
	background-color: #97bf2c;
}
div.jqDlgButtons input:active
{
	background-color: #a0a0a0;
}
div.jqDlgButtons input.jqDlgFocusedBtn
{
	border: 0px;
    background-color: #86A927;
}
div.jqDlgButtons input.jqDlgFocusedBtn:hover
{
	background-color: #97bf2c;
}
div.jqDlgButtons input.jqDlgFocusedBtn:active
{
	background-color: #7fa025;
} */


/* CSS for msgBox */
div.msgBoxContainer {
    position: fixed;
    z-index: 1000;
    width: 430px;
    min-height: 132px;
    background-color: #EAEAEA;
    border: 1px solid #AAAAAA;
    /*border-radius: 5px;*/
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

div.msgBoxFlash {
    background-color: #FAFAFA !important;
}

div.msgBoxTitle {
    /* border-bottom: 1px solid #CCCCCC; */
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    padding: 5px 15px;
    background-color: #428BCA;
    color: #FFF;
    height: 43px;
    font-size: 20px;
    line-height: 30px;
}

span.msgBoxCloseBtn {
    display: none;
    position: absolute;
    font-size: 24px;
    font-weight: normal;
    right: 15px;
    cursor: pointer;
}

div.msgBoxInner {
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

div.msgBoxContent {
    background-color: #F3F3F3;
    padding: 15px 30px 5px 37px;
}

div.msgBoxText {
    font-size: 14px;
    line-height: 1.9;
    margin-left: 44px;
    padding-top: 8px;
}

div.msgBoxText:after {
    clear: both;
    content: "";
    display: block;
    visibility: hidden;
}

div.msgBoxImage {
    display: inline-block;
    float: left;
    margin: 7px 25px 8px 0;
}

div.msgBoxBottom {
    background-color: #F3F3F3;
    /* border-top: 1px solid #CCCCCC; */
    line-height: 25px;
    padding: 5px 12px;
    text-align: right;
}

div.msgBoxButtons {
    text-align: right;
}

div.msgBoxButtons input {
    background-color: #858484;
    border: none;
    color: #FFF;
    cursor: pointer;
    height: 30px;
    line-height: 30px;
    margin: 2px;
    padding-left: 20px;
    padding-right: 20px;
    /* border-bottom: 1px solid black; */
    margin-left: 10px;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
    border-radius: 4px;
}

div.msgBoxButtons input:hover {
    background-color: #727272;
}

div.msgBoxButtons input:active {
    background-color: #a4a3a3;
}

div.msgBoxButtons input.msgBoxFocusedBtn {
    background-color: #005BF5 !important;
    color: #FFF;
    outline: none;
    position: relative;
    /* border-bottom: 1px solid black; */
}

div.msgBoxButtons input.msgBoxFocusedBtn:hover {
    background-color: #3275B0;
}

div.msgBoxButtons input.msgBoxFocusedBtn:active {
    /*background-color: #109889;*/
    top: 1px;
}

/* icon set */
.icon_finish_b {
    background: url("resource/msgBoxIcon.png") no-repeat scroll 0 0 transparent;
    height: 32px;
    width: 32px;
}

.icon_finish_m {
    background: url("resource/msgBoxIcon.png") no-repeat scroll 0 -32px transparent;
    height: 14px;
    overflow: hidden;
    width: 14px;
}

.icon_finish_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll 0 -48px transparent;
    height: 12px;
    width: 12px;
}

.icon_disable_b {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -32px 0 transparent;
    height: 32px;
    width: 32px;
}

.icon_disable_m {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -32px -32px transparent;
    height: 14px;
    width: 14px;
}

.icon_disable_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -32px -48px transparent;
    height: 12px;
    width: 12px;
}

.icon_caution_b {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -64px 0 transparent;
    height: 32px;
    width: 32px;
}

.icon_caution_m {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -64px -32px transparent;
    height: 14px;
    width: 14px;
}

.icon_caution_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -64px -48px transparent;
    height: 12px;
    width: 12px;
}

.icon_info_b {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -96px 0 transparent;
    height: 32px;
    width: 32px;
}

.icon_info_m {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -96px -32px transparent;
    height: 14px;
    width: 14px;
}

.icon_info_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -96px -48px transparent;
    height: 12px;
    width: 12px;
}

.icon_error_b {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -128px 0 transparent;
    height: 32px;
    width: 32px;
}

.icon_error_m {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -128px -32px transparent;
    height: 14px;
    width: 14px;
}

.icon_error_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -128px -48px transparent;
    height: 12px;
    width: 12px;
}

.icon_successful {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -160px 0 transparent;
    height: 31px;
    width: 31px;
}

.icon_successful_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -160px -31px transparent;
    height: 31px;
    width: 31px;
}

.icon_failed {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -192px 0 transparent;
    height: 31px;
    width: 31px;
}

.icon_failed_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -192px -31px transparent;
    height: 16px;
    width: 16px;
}

.icon_help_b {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -224px 0 transparent;
    height: 32px;
    width: 32px;
}

.icon_help_m {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -224px -32px transparent;
    height: 14px;
    width: 14px;
}

.icon_help_s {
    background: url("resource/msgBoxIcon.png") no-repeat scroll -224px -48px transparent;
    height: 12px;
    width: 12px;
}
