.ZebraDialog *,
.ZebraDialog *:after,
.ZebraDialog *:before  { -moz-box-sizing: content-box !important; -webkit-box-sizing: content-box !important; box-sizing: content-box !important }

.ZebraDialog {
    width: 350px;
    font-size:14px;
    line-height:1.8;
    z-index: 1001;
}

.ZebraDialog,
.ZebraDialog .ZebraDialog_Title,
.ZebraDialog .ZebraDialog_Body,
.ZebraDialog .ZebraDialog_Buttons a {
    margin: 0;
    padding: 0;
}

.ZebraDialog .ZebraDialog_Title,
.ZebraDialog .ZebraDialog_BodyOuter,
.ZebraDialog .ZebraDialog_ButtonsOuter {
    border-color: #666;
    border-width: 7px;
}

.ZebraDialog .ZebraDialog_Title {
    position:relative;
    font-size: 16px;
    color: #333;
    background: #f7f7f7;
    padding: 12px 15px;
    line-height: 1;
    vertical-align: middle;
}

/*  set background color here and not on ZebraDialog_Body, or you'll eventually run into problems with rounded corners
    when using smaller widths for border! */
.ZebraDialog .ZebraDialog_BodyOuter {
    background: #fff;
}

.ZebraDialog .ZebraDialog_Body {
    color: #666;
    padding: 20px;
    border-top-color: #ddd;
    border-bottom-color: #FFF;
}

.ZebraDialog .ZebraDialog_ButtonsOuter {
    background: #fff;
    padding: 15px 10px;
}

.ZebraDialog .ZebraDialog_Buttons:before,
.ZebraDialog .ZebraDialog_Buttons:after     { content: "\0020"; display: block; height: 0; visibility: hidden; font-size: 0 }
.ZebraDialog .ZebraDialog_Buttons:after     { clear: both }
.ZebraDialog .ZebraDialog_Buttons           { *zoom: 1 } /* for IE only */

.ZebraDialog .ZebraDialog_Buttons a {
    display: inline-block;
    float: right;
    min-width: 40px;
    _width: 40px;
    margin-left:15px;
    border: 1px solid #0c9410;
    color: #FFF;
    padding: 4px 15px;
    border-radius: 5px;
    outline:none;
    font:14px/20px "Microsoft YaHei";
    white-space: nowrap;
    text-align: center;
    color: #fff; 
    background-color: #10a814; 
    -moz-transition: all 0.3s ease; 
    -webkit-transition: all 0.3s ease; 
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease; 
    transition: all 0.3s ease;
}

.ZebraDialog .ZebraDialog_Buttons a:hover {
    color: #FFF;
    background-color: #16bf1c; 
    border-color: #128e16;
}

.ZebraDialog .ZebraDialog_Buttons .ZebraDialog_Button_0 { 
    color: #0fa213; 
    background-color: #eee; 
    border-color: #d9d9d9;
}

.ZebraDialog .ZebraDialog_Buttons .ZebraDialog_Button_0:hover { 
    color: #0fa213; 
    background-color: #e0e0e0; 
    border-color: #ccc;
}

.ZebraDialog a.ZebraDialog_Close {
    position: absolute;
    right: 6px;
    top: 0px;
    text-decoration: none;
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 21px;
    color: #999
}

.ZebraDialog a.ZebraDialog_Close:hover {
    color:#666;
}


.ZebraDialogOverlay {
    background: #666;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

/* = YOU SHOULD NOT CHANGE ANYTHING FROM THIS POINT ON
---------------------------------------------------------------------------------------------------------------------*/
.ZebraDialog {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.ZebraDialog .ZebraDialog_Title {
    border-left-style: solid;
    border-top-style: solid;
    border-right-style: solid;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
}

.ZebraDialog .ZebraDialog_BodyOuter {
    border-left-style: solid;
    border-right-style: solid;
}

.ZebraDialog .ZebraDialog_NoTitle {
    border-top-style: solid;
    -webkit-border-top-left-radius: 10px;
    -moz-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
}

.ZebraDialog .ZebraDialog_NoButtons {
    border-bottom-style: solid;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ZebraDialog .ZebraDialog_Body {
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom:1px solid #e4e4e4;
    overflow: auto;
}

.ZebraDialog .ZebraDialog_Body h3 { 
    margin-bottom:5px;
    color:#333;
}

.ZebraDialog .ZebraDialog_NoTitle .ZebraDialog_Body {
    border-top: none;
}

.ZebraDialog .ZebraDialog_NoButtons .ZebraDialog_Body {
    border-bottom: none;
}

.ZebraDialog .ZebraDialog_Icon {
    background-repeat: no-repeat;
    background-position: 20px 20px;
    padding-left: 88px;
    min-height: 48px;
    _height: 85px;
}

.ZebraDialog .ZebraDialog_Confirmation  { background-image: url('../images/zebra_dialog/confirmation.png') }
.ZebraDialog .ZebraDialog_Error         { background-image: url('../images/zebra_dialog/error.png') }
.ZebraDialog .ZebraDialog_Information   { background-image: url('../images/zebra_dialog/information.png') }
.ZebraDialog .ZebraDialog_Question      { background-image: url('../images/zebra_dialog/question.png') }
.ZebraDialog .ZebraDialog_Warning       { background-image: url('../images/zebra_dialog/warning.png') }

.ZebraDialog .ZebraDialog_ButtonsOuter {
    border-left-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

.ZebraDialog .ZebraDialog_Buttons_Centered .ZebraDialog_Buttons {
    display: table;
    margin: 0 auto;
    text-align: center;
}

.ZebraDialog .ZebraDialog_Buttons_Centered a {
    zoom: 1;
    *display: inline;
}

.ZebraDialog .ZebraDialog_Preloader {
    height: 32px;
    background: url('../images/zebra_dialog/preloader.gif') no-repeat center center;
}