.dialog {
    overflow: hidden
}

.dialog .overlay {
    position: absolute;
    z-index: 9001;
    top: 0;
    left: 0;
    display: block;
    background-color: #000;
    opacity: .5;
    filter: alpha(opacity=50);
    -moz-opacity: .5
}

.dialog .modalBox {
    position: fixed;
    z-index: 9002;
    display: block;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    min-width: 260px;
    border: 1px solid #696969;
    font-size: 14px
}

.dialog .modalBox .title {
    height: 33px;
    line-height: 33px;
    background: #d9dada;
    color: #2b2d32;
    padding-left: 10px;
    font-weight: 700;
    text-shadow: 0 1px 0 #f1f1f1
}

.dialog .modalBox .iframe-title {
    height: 39px;
    line-height: 39px;
    background: #2b2d32;
    color: #f1f1f1;
    padding-left: 10px;
    font-weight: 700;
    font-size: 16px
}

.dialog .modalBox .close {
    color: #000;
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    opacity: .3;
    filter: alpha(opacity=30);
    -moz-opacity: .3;
    text-shadow: 0 1px 0 #fff;
    display: block;
    cursor: pointer;
    margin: 7px 10px 0 0
}

.dialog .modalBox .close:hover {
    color: red;
    opacity: .8;
    filter: alpha(opacity=80);
    -moz-opacity: .8
}

.dialog .modalBox .minimize {
    color: #000;
    float: right;
    font-size: 22px;
    font-weight: 700;
    font-family: Arial;
    line-height: 1;
    opacity: .3;
    filter: alpha(opacity=30);
    -moz-opacity: .3;
    text-shadow: 0 1px 0 #fff;
    display: block;
    cursor: pointer;
    margin: 7px 10px 0 0
}

.dialog .modalBox .minimize:hover {
    color: red;
    opacity: .8;
    filter: alpha(opacity=80);
    -moz-opacity: .8
}

.dialog .modalBox .iframe-close {
    color: #fff;
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    opacity: .8;
    filter: alpha(opacity=80);
    -moz-opacity: .8;
    text-shadow: 0 1px 0 #333;
    display: block;
    cursor: pointer;
    margin: 7px 10px 0 0
}

.dialog .modalBox .iframe-close:hover {
    color: red;
    opacity: .8;
    filter: alpha(opacity=80);
    -moz-opacity: .8
}

.dialog .modalBox .content {
    line-height: 150%;
    padding: 20px
}

.dialog .modalBox .center {
    text-align: center
}

.dialog .modalBox .content input {
    height: 20px;
    font-size: 14px;
    border: 1px solid #979797;
    border-radius: 3px;
    color: #464646;
    outline: medium none;
    padding: 4px 5px;
    box-shadow: 2px 2px 3px #EDEDED inset;
    width: 80px
}

.dialog .modalBox .content input.normal {
    width: 160px
}

.dialog .modalBox .content input.large {
    width: 588px;
    margin: 8px 0
}

.dialog .modalBox .content textarea.space {
    margin: 8px 0
}

.dialog .modalBox .content textarea.last-space {
    margin-top: 8px
}

.dialog .modalBox .content textarea {
    height: 90px;
    font-size: 14px;
    border: 1px solid #979797;
    border-radius: 3px;
    color: #464646;
    outline: medium none;
    padding: 4px 5px;
    box-shadow: 2px 2px 3px #EDEDED inset;
    width: 588px;
    max-height: 90px;
    min-height: 90px;
    max-width: 588px;
    min-width: 588px
}

.dialog .modalBox .footer {
    border-top: 1px solid #d9dada;
    text-align: right;
    padding: 2px 0 10px
}

.dialog .modalBox .space {
    padding: 7px 0 15px
}

.dialog .modalBox .footer span {
    display: inline-block;
    width: 60px;
    height: 28px;
    border: 1px solid #919191;
    color: #3d4045;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    line-height: 28px;
    cursor: pointer;
    background: #f1f1f1;
    margin: 8px 10px 0 0;
}

.dialog .modalBox .footer span {
    transition: background-color .3s ease-in-out 0s
}

.dialog .modalBox .footer span:hover {
    background: #c7c7c7
}

.dialog .modalBox .footer span:active {
    background: #b5b5b5
}

.dialog .modalBox .footer span.darkgreen {
    background: #006f00;
    color: #fff
}

.dialog .modalBox .footer span.darkgreen {
    background: #006f00;
    color: #fff;
    border: 1px solid #004a00
}

.dialog .modalBox .footer span.darkgreen:hover {
    background: #00ad00;
    border: 1px solid #006f00
}

.dialog .modalBox .footer span.darkgreen:active {
    background: #b5b5b5;
    border: 1px solid #919191
}