div.dialog {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1200;
    left: 100px;
    top: 100px;
    display: none;
}

div.dialog div.titleBar {
    height: 22px;
    border: 1px solid #d5d5d5;
    background: url('images/bar-background.png') left top repeat-x;
}

div.dialog div.titleBar a {
    display: block;
    float: right;
    width: 22px;
    height: 22px;
    background: url('images/close-default.png') left top repeat-x;
}

div.dialog div.titleBar h1 {
    display: block;
    float: left;
    padding-left: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 12px;
    vertical-align: middle;
    float: left;
    margin: 0;
}

div.dialog div.titleBar a:hover {
    display: block;
    float: right;
    width: 22px;
    height: 22px;
    background: url('images/close-over.png') left top repeat-x;
}


div.dialog div.contentPane {
    clear: both;
    height: 100%;
    border-left: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
    background-color: white;
    padding: 10px;
}

div.dialog div.contentPane iframe {
    width: 100%;
    height: 100%;
}

