body {
    _background-attachment: fixed;
    _background-image: url(about:blank);
}

.sun-window-container {
    position: fixed;
    top: 0;
    left: 0;
    _position: absolute;
    _top: expression(eval(document.documentElement.scrollTop));
    _left: expression(eval(document.documentElement.scrollLeft));
    background-color: #F0F0F0;
    border: 1px solid #C00000;
    overflow: visible;
}

.sun-window-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    _position: absolute;
    _top: expression(eval(document.documentElement.scrollTop));
    _left: expression(eval(document.documentElement.scrollLeft));
    background: #000;
    opacity: 0.3;
    filter: Alpha(opacity = 30);
}

.sun-window-container .sun-window-title {
    position: absolute;
    width: 100%;
    height: 28px;
    top: 0;
    left: 0;
    border-bottom: 1px solid #A0A0A0;
    background-color: #C00000;
    cursor: move;
}

.sun-window-container  .title-absolute {
    position: absolute;
    top: 0;
    left: 6px;
    width: 100%;
    height: 28px;
    overflow: hidden;
    line-height: 28px;
    font-size: 14px;
    color: #F0F0F0;
    font-weight: bold;
}

.sun-window-container  .sun-window-title img {
    position: absolute;
    top: 6px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.sun-window-container  .sun-window-content {
    position: relative;
    top: 29px;
    left: 0;
    width: 100%;
    height: 1px;
    overflow: auto;
    margin: 0;
    padding: 0;
}

.sun-window-container .north {
    position: absolute;
    width: 100%;
    height: 4px;
    top: -2px;
    left: 0;
    cursor: n-resize;
}
.sun-window-container .east {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    right: -2px;
    cursor: e-resize;
}
.sun-window-container .south {
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -2px;
    left: 0;
    cursor: s-resize;
}
.sun-window-container .west {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: -2px;
    cursor: w-resize;
}
.sun-window-container .nw {
    position: absolute;
    width: 6px;
    height: 6px;
    top: -2px;
    left: -2px;
    cursor: nw-resize;
}
.sun-window-container .ne {
    position: absolute;
    width: 6px;
    height: 6px;
    top: -2px;
    right: -2px;
    cursor: ne-resize;
}
.sun-window-container .se {
    position: absolute;
    width: 6px;
    height: 6px;
    bottom: -2px;
    right: -2px;
    cursor: se-resize;
}
.sun-window-container .sw {
    position: absolute;
    width: 6px;
    height: 6px;
    bottom: -2px;
    left: -2px;
    cursor: sw-resize;
}