.jwindow {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }          

.jwindow {
            position:absolute;
            background-color:white;
            border:1px solid #aaa;
            box-shadow: 5px 5px 10px #999;
            padding:2px;
            overflow:hidden;
            border-radius: 4px
        }

.jwindow_icons {
            width:19px;
            height:19px;
            float:right;
            font-size:18px;
            text-align:center;
            overflow:hidden;
            cursor:pointer
        }
.jwindow_icons:hover {
            color:red
        }

.jwindow_title {
                height:16px;
                float:left;
                padding-top:2px;
                text-indent:10px;
                border-top:1px solid #ddd;
                border-bottom:1px solid #aaa;
                overflow:hidden;
                font-size:0.7em;
                font-style:italic;
                font-weight:bold;
                border-top-left-radius: 4px;
                border-top-right-radius: 4px;
                margin-bottom:3px;
            }
.jwindow_content {
                clear:both;
                padding:10px;
                border-top:1px solid #ccc;
                border-bottom:1px solid #ccc;
                -webkit-user-select:text;
                -moz-user-select: text;
                -ms-user-select: text;
                overflow:auto}

.jwindow_statusbar {
                height:16px;
                margin-top:3px;
                background-color:#ddd;
                font-size:0.8em;
                padding:2px;
                font-style:italic;
                border-bottom-left-radius: 4px;
                border-bottom-right-radius: 4px;
            }
.jwindow_lock {
            display:none;
            position:absolute;
        }