header.header, #header
{
    background: #404040;
    width: auto;
    height: 50px;
    color: #BBBBBB;
/*    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;*/
}

#header.fixed
{
    position: fixed;
    z-index: 999;
/*    -webkit-box-shadow: 0px 2px 5px 0px rgba(20, 20, 20, 0.5);
    -moz-box-shadow: 0px 2px 5px 0px rgba(20, 20, 20, 0.5);
    box-shadow: 0px 2px 5px 0px rgba(20, 20, 20, 0.5);*/
    border-bottom: 1px solid #666666;
    //width: 100%;
/*    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;*/
}

#header .mainblock
{
    height: 100%;
}

#header .block
{
    float: left;
    width: 60px;
    height: 50px;
}

#header .big-block
{
    float: left;
    height: 50px;
}

#header .block
{
    border-left: 1px solid #666666;
    border-right: 1px solid #666666;
}

#header .big-block,
#header .block ~ .block
{
    border-left: 0;
    border-right: 1px solid #666666;
}


    #header .big-block a
    {
        display: table;
        color: #BBBBBB;
    }

        #header .big-block .icon
        {
            float: left;
            height: 50px;
            width: 50px;
            background: aqua;
        }

        #header .big-block .name
        {
            display: table-cell;
            vertical-align: middle;
            float: left;
            padding: 0 10px;
            height: 50px;
        }


#header .user
{
}

    #header .user .user-profile a
    {
        display: table;
        color: #888888;
        text-decoration: none;
    }

        #header .user-profile .user-image
        {
            float: left;
            padding-left: 20px;
            height: 50px;
            text-align: center;
        }

            #header .user-profile .user-image img
            {
                width: 40px;
                height: 40px;
                margin-top: 5px;
                border-radius: 50%;
            }

        #header .user-profile .user-name
        {
            height: 50px;
            display: table-cell;
            vertical-align: middle;
            padding:0 20px;
            padding-left: 10px;
            text-transform: uppercase;
            font-size: 14px;
        }

    #header .user .logout
    {
        width: 40px;
        height: 50px;
        float:right;
        display: table;
        text-align: center;
    }

        #header .user .logout a
        {
            background-color: #BBBBBB;
            display: table-cell;
            vertical-align: middle;
            height: 100%;
            color: #888888;
            font-size: 30px;
            -webkit-transition: all 200ms linear;
            -moz-transition: all 200ms linear;
            -ms-transition: all 200ms linear;
            -o-transition: all 200ms linear;
            transition: all 200ms linear;
        }

        #header .user .logout a:hover
        {
            background: #D60012;
            color: #FFFFFF;
            -webkit-transition: all 200ms linear;
            -moz-transition: all 200ms linear;
            -ms-transition: all 200ms linear;
            -o-transition: all 200ms linear;
            transition: all 200ms linear;
        }