﻿@charset "utf-8";
/* CSS Document */

/*------------------header-------------------*/
.header {
    width: 100%;
    height: 30px;
    float: left;
    background-size: cover;
    background: rgb(70,70,70);
    cursor: default;
    border-bottom: 1px solid rgb(60,60,60);
    position: fixed;
    z-index: 999999;
}

    .header .logo {
        float: left;
        height: 30px;
        background-color: #111;
    }

    .header .welcome {
        float: left;
        color: rgba(255,255,255,0.7);
        margin-top: 9px;
        margin-left: 20px;
    }

        .header .welcome a {
            font-weight: 500;
            color: rgba(255,255,255,0.8);
        }

            .header .welcome a:hover {
                text-decoration: underline;
                color: rgba(255,255,255,1.0);
            }

    .header .icons {
        background-color: rgb(70,70,70);
        height: 26px;
        float: right;
        padding: 4px 10px 0 2px;
        border-left: solid 1px rgba(255,255,255,0.3);
    }

        .header .icons a {
            margin-left: 20px;
            opacity: 0.65;
            margin-top: 10px;
        }

            .header .icons a:hover {
                opacity: 1.0;
            }

    .header .clock {
        float: right;
        color: rgba(255,255,255,0.9);
        margin-top: 4px;
        margin-right: 10px;
        font-weight: 700;
    }

    .header .version {
        float: right;
        color: rgba(255,255,255,0.9);
        margin-top: 8px;
        margin-right: 10px;
        font-weight: 700;
        padding: 0px 10px 0px 10px;
        border-right: solid 1px rgba(255,255,255,0.3);
    }
