@charset "utf-8";
.background {
    position: fixed;
    _position: absolute;
    z-index: 1998;
    top: 0px;
    left: 0px;
    width: 100%;
    _width: expression(document.documentElement.clientWidth);
    height: 100%;
    _height: expression(document.documentElement.clientHeight);
    background: rgb(50, 50, 50);
    background: rgba(0, 0, 0, 0.5);
    background-size: 30px 30px;
    background-color: #CCC;
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
    background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
    background-image: -mslinear-gradient(0deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
    background-image: -olinear-gradient(0deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
    background-image: linear-gradient(0deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
    background: linear-gradient(#333, #FFF);
}

.webox {
    position: fixed;
    _position: absolute;
    z-index: 1999;
    border: solid 0px #000;
    border-radius: 5px;
}

.webox #inside {
    background-color: #FFFFFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.webox #inside h1 {
    -moz-user-select: none;
    -webkit-user-select: none;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #CCC;
    font-size: 12px;
    line-height: 30px !important;
    height: 30px;
    padding-left: 5px;
    background: #c40e58;
    cursor: move;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.webox #inside h1 a {
    position: absolute;
    display: block;
    right: 6px;
    margin: 0px;
    top: 0px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 24px;
    width: 50px;
    height: 30px;
    cursor: pointer;
    display: inline-block;
}

.webox #inside h1 a:hover {
    color: #6CF;
}