.dockmodal,
.dockmodal *,
.dockmodal *:before,
.dockmodal *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.modal-placeholder {
    display: none;
    visibility: hidden;
    height: 0;
    width: 0;
}

.dockmodal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: #000;
    opacity: 0.7;
    display: none;
}

.dockmodal {
    position: fixed;
    right: 20px;
    bottom: 0;
    top: auto;
    z-index: 100;
    height: 0;
    background: transparent;
    border: 0;
    border-bottom: 0;
    box-shadow: 0 0 5px #000;
    overflow: hidden;
    border: 1px solid #000;
    border: 0 solid rgba(0,0,0,0);
}

.dockmodal-header {
    height: 36px;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #333;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.dockmodal-body {
    background: #FFF;
    position: absolute;
    top: 36px;
    bottom: 40px;
    left: 0;
    right: 0;
    overflow: auto;
    padding: 10px 15px;
}

.dockmodal-footer {
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #CCC;
    overflow: hidden;
    text-align: right;
}
.dockmodal-footer-buttonset {
    height: 30px;
    line-height: 30px;
}
.dockmodal.no-footer .dockmodal-body {
    bottom: 0;
}

.dockmodal-header .title-text {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    vertical-align: top;
    white-space: nowrap;
    max-width: 100%;
    margin-right: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dockmodal-header .header-action {
    padding: 5px;
    float: right;
    margin-right: 1px;
    line-height: 16px;
}

.dockmodal-header .header-action:hover {
    background: #555;
}

.dockmodal-header .header-action i {
    background: url(img/dockmodal-icon.png) no-repeat top left;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.dockmodal-header .header-action .icon-dockmodal-close {
    background-position: 0 0;
    width: 16px;
    height: 16px;
}

.dockmodal-header .header-action .icon-dockmodal-popin {
    background-position: 0 -40px;
    width: 16px;
    height: 16px;
}

.dockmodal-header .header-action .icon-dockmodal-popout {
    background-position: 0 -60px;
    width: 16px;
    height: 16px;
}

.dockmodal.popped-out .header-action .icon-dockmodal-popout {
    background-position: 0 -40px;
    width: 16px;
    height: 16px;
}

.dockmodal-header .header-action .icon-dockmodal-minimize {
    background-position: 0 -20px;
    width: 16px;
    height: 16px;
}

.dockmodal-header .header-action .icon-dockmodal-restore {
    background-position: 0 -80px;
    width: 16px;
    height: 16px;
}

.dockmodal.minimized .header-action .icon-dockmodal-minimize {
    background-position: 0 -80px;
    width: 16px;
    height: 16px;
}

.dockmodal.popped-out {
    width: auto;
    height: auto;
    border: 0;
    z-index: 1000;
}

.dockmodal.minimized {
    height: 36px;
    top: auto;
    left: auto;
    right: 20px;
    bottom: 0;
    z-index: 100;
}

.dockmodal.minimized .dockmodal-header {
    /*position: relative;*/
}

.dockmodal.minimized .dockmodal-body {
    /*display: none;*/
}

.dockmodal.minimized .dockmodal-footer {
    /*display: none;*/
}

.dockmodal .dockmodal-footer-buttonset > a {
    min-width: 60px;
}

.dockmodal .dockmodal-footer-buttonset > a + a {
    margin-left: 5px;
}
