.window-container
{
    -webkit-border-top-left-radius: 50px;
    -webkit-border-top-right-radius: 50px;
    -moz-border-radius-topleft: 50px;
    -moz-border-radius-topright:50px;


    width:150px;
    position:absolute;
    left:350;
    top:200;
    font-size:13px;
    font-family:verdana;
}

.window-titleBar
{
    -webkit-border-top-left-radius: 50px;
    -webkit-border-top-right-radius: 50px;
    -moz-border-radius-topleft: 50px;
    -moz-border-radius-topright:50px;

    border-top:5px solid #E8E8E8;
    border-left:5px solid #E8E8E8;
    border-right:5px solid #A7A7A8;
    width:100%;
    height:55px;
    line-height:55px;
    
    font: bold 13px Arial;
    background-color: #A8A9AC;
    color: #FFFFFF;
    cursor: move;
    overflow: hidden;
}

.window-content
{
    border-left:5px solid #BEBEC0;
    border-right:5px solid #B8B8B8;
    width:100%;
    height:100%;
    background-color: #FFFFFF;
    font-size:13px;
    font-family:verdana;
    overflow:auto;
}

.window-statusBar
{
     -webkit-border-bottom-left-radius: 50px;
    -webkit-border-bottom-right-radius: 50px;
    -moz-border-radius-bottomleft: 50px;
    -moz-border-radius-bottomright:50px;

    border-bottom:5px solid #BABABA;
    border-left:5px solid #BEBEC0;
    border-right:5px solid #BEBEBE;

    width:100%;
    height:25px;
    line-height:25px;
    text-indent: 3px;
    font: bold 13px Arial;
    background-color: #A8A9AC;
    color: #FFFFFF;
    overflow: hidden;
}

.window-minimizeButton
{
    position: absolute;
    right: 80px;
    top: 15px;
    height:35px;
    width:35px;
    display:block;
    background:url('../images/window_min.png');
    cursor: pointer;
}

.window-maximizeButton
{
    position: absolute;
    right: 45px;
    top: 15px;
    height:35px;
    width:35px;
    display:block;
    background:url('../images/window_max.png');
    cursor: pointer;
}

.window-closeButton
{
    position: absolute;
    right: 11px;
    top: 15px;
    height:35px;
    width:35px;
    display:block;
    background:url('../images/window_close.png');
    cursor: pointer;
}

.window-resizeIcon
{
    float: right;
    cursor: nw-resize;
    height:20px;
    width:20px;
    display:block;
}
