

body {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    font-family: sans-serif;
    font-size: 18px;
}

.vgui_main {
    position: relative;
    left: calc(50% - 555px);
    top: calc(50% - 355px);
    width: 1100px;
    height: 700px;
    border: 5px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.vgui_top {
    float: left;
    width: 100%;
    height: 45px;
    background-color: rgb(47, 137, 221);
    border-bottom: 3px solid rgb(18, 87, 151);
}

.vgui_top_text {
    float: left;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: white;
    font-weight: 900;
}

.vgui_top_back {
    float: left;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    padding: 12px 20px;
    margin-top: -45px;
    cursor:pointer;
}

.vgui_top_back:hover {
    background-color: rgba(2555,255,255,0.1);
    color: rgba(255,255,255,1.0);
}

.vgui_top_close {
    float: right;
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    padding: 12px 20px;
    margin-top: -45px;
    cursor:pointer;
}

.vgui_top_close:hover {
    background-color: rgba(2555,255,255,0.1);
    color: rgba(255,255,255,1.0);
}

.vgui_body {
    float: left;
    width: 100%;
    height: calc(100% - 48px);
}

.vgui_left {
    float: left;
    width: 299px;
    height: 100%;
    background-color: rgba(255, 255, 255, 1.0);
    border-right: 1px solid rgba(170, 170, 170, 1.0);
}

.vgui_right {
    float: left;
    width: calc(100% - 300px);
    height: 100%;
    background-color: rgb(247, 248, 253);
}

.vgui_use_area {
    float: left;
    width: 100%;
    height: calc(100% - 60px);
}

.vgui_button_area {
    float: left;
    margin: 0 20px;
    padding: 10px 0;
    width: calc(100% - 40px);
    height: 60px;
    border-top: 1px solid rgba(170, 170, 170, 1.0);
}

.vgui_button {
    float: right;
    margin-left: 20px;
    padding: 10px 25px;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    cursor: pointer;
    border-radius: 5px;
    background-color: rgb(47, 137, 221);
    border-bottom: 3px solid rgb(18, 87, 151);
    font-size: 16px;
}

.vgui_button:hover {
    background-color: rgb(32, 104, 172);
    border-bottom: 3px solid rgb(12, 71, 128);
}

.vgui_button_not_used {
    float: right;
    margin-left: 20px;
    padding: 10px 20px;
    color: rgba(100,100,100,1.0);
    background-color: rgb(220,220,220);
    border-bottom: 3px solid rgb(175,175,175);
    font-weight: bold;
    font-family: sans-serif;
    border-radius: 5px;
    font-size: 16px;
}


.vgui_nav_left_top {
    width: calc(100% - 20px);
    padding: 10px 10px;
    font-size: 14px;
    margin-top: 30px;
    color: rgba(0,0,0,0.5);
}

.vgui_button_nav_left {
    float: left;
    border-left: 3px solid rgb(47, 137, 221);
    width: calc(100% - 3px - 50px);
    font-size: 16px;
    background-color: rgba(47, 137, 221, 0.2);
    padding: 15px 25px;
    color: rgba(0,0,0,0.75);
    cursor: pointer;
}

.vgui_button_nav_left:hover {
    background-color: rgba(47, 137, 221, 0.25);
    color: rgba(0,0,0,0.85);
}

.vgui_button_nav_left_inactive {
    float: left;
    border-left: 3px solid rgba(255, 255, 255, 1.0);
    width: calc(100% - 3px - 50px);
    font-size: 16px;
    padding: 15px 25px;
    color: rgba(0,0,0,0.75);
    cursor: pointer;
}

.vgui_button_nav_left_inactive:hover {
    background-color: rgba(47, 137, 221, 0.03);
    border-left: 3px solid rgba(47, 137, 221, 0.4);
    color: rgba(0,0,0,0.85);
}

.vgui_content_box {
    background-color: white;
    border-bottom: 3px solid rgb(175,175,175);
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
}

.vgui_content_box_head {
    float: left;
    width: 100%;
    height: 25px;
    font-size: 14px;
    color: rgba(0,0,0,0.5);
}

.vgui_content_box_body {
    float: left;
    width: 100%;
    font-size: 14px;
    height: calc(100% - 20px);
}

.vgui_theme_switch_box_disabled {
    float: left;
    width: 125px;
    height: 122px;
    margin-right: 10px;
    border-radius: 5px;
    border-bottom: 3px solid rgb(175,175,175);
    background-color: rgb(220,220,220);
    color: rgba(100,100,100,1.0);
    overflow: hidden;
    font-weight: 900;
}

.vgui_theme_switch_box {
    float: left;
    width: 125px;
    height: 122px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
    background-color: rgb(47, 137, 221);
    border-bottom: 3px solid rgb(18, 87, 151);
    overflow: hidden;
    font-weight: 900;
}

.vgui_theme_switch_box:hover {
    background-color: rgb(32, 104, 172);
    border-bottom: 3px solid rgb(12, 71, 128);
}

.vgui_theme_checked {
    width: 18px;
    height: 22px;
    border-radius: 5px;
    padding: 3px 5px;
    font-size: 20px;
    color: white;
    margin: 5px 0 0 92px;
    background-color: rgb(47, 137, 221);
    border-bottom: 3px solid rgb(18, 87, 151);
    z-index: 99;
    position: fixed;
}

.vgui_theme_box_img {
    float: left;
    width: 100%;
    height: calc(100% - 28px);
    z-index: -10;
    overflow: hidden;
}

.vgui_theme_box_text_disabled {
    float: left;
    width: 100%;
    height: 20px;
    padding: 5px 0 3px 0;
    text-align: center;
}

.vgui_theme_box_text {
    float: left;
    width: 100%;
    height: 20px;
    padding: 5px 0 3px 0;
    text-align: center;
    color: white;
}