
.ZebraDialog {
    width: 450px;
    z-index: 1001;
}

.ZebraDialog,
.ZebraDialog .ZebraDialog_Body {
    margin: 0;
    padding: 0;
    min-height: 100px;
}
.ZebraDialog .ZebraDialog_Title {
	font-size: 2.2em;
	line-height: 1.25em;
	color: #1a3f69;
	margin: 0;
	padding: 0;
}
.ZebraDialog .ZebraDialog_Body div {
    padding-top: 0 !important;
}

.ZebraDialog .ZebraDialog_Title,
.ZebraDialog .ZebraDialog_BodyOuter,
.ZebraDialog .ZebraDialog_ButtonsOuter {
}

.ZebraDialog .ZebraDialog_Title {
    font-size: 16px;
    background: #FFF;
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #F0F0F0;
}

/*  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;
	padding: 30px 10px 10px;
}

.ZebraDialog .ZebraDialog_Body {
    padding: 20px;
}

.ZebraDialog .ZebraDialog_ButtonsOuter {
    background: #FFF;
    padding: 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;
    font-size: 14px;
    line-height: 20px;
    padding: 6px 12px;
    margin-bottom: 0;
	margin-left:10px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    background: #fff;
	border: solid 1px #D4D4D4;
    cursor: pointer;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: border-color .20s;
	-moz-transition: border-color .20s;
	-o-transition: border-color .20s;
	transition: border-color .20s;
}

.ZebraDialog .ZebraDialog_Buttons a:hover {
   color: #333333;
    border: 1px solid #ccc;
    background-color: #ebebeb;
    text-decoration: none;
    -webkit-transition: border-color .1s;
	-moz-transition: border-color .1s;
	-o-transition: border-color .1;
	transition: background-color .1s;
}

.ZebraDialog a.ZebraDialog_Close {
    position: absolute;
    right: 12px !important;
    top: 12px !important;
    text-decoration: none;
    font-family: arial, sans-serif;
    font-weight: bold;
    font-size: 21px;
    color: #444
}

.ZebraDialog .ZebraDialog_Title a.ZebraDialog_Close {
    color: #888;
}

.ZebraDialog .ZebraDialog_Title a.ZebraDialog_Close:hover {
    color: #000;
}

.ZebraDialogOverlay {
    background: #000;
    z-index: 1000;
    width: 100%;
    height: 100%;
}