html, body {
    margin:0;
    padding:0;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: sans;
}

.title {
    border-bottom:2px solid #6c6c6c;
    padding: 2px 7px;
    margin: 5px 10px;
    font-size:18px;
    border-radius:2px;
}
    .title.dark {
        color:#4d4d4d;
    }
    .title.light {
        color:#fff;
    }

/* - - - - MODULES - - - - */

/* BACKGROUND */

#background {
    position:fixed;
    z-index:1;
    width:100%;
    height:100%;
    background-position: center center;
}

/* PANEL */

#panel {
    position:fixed;
    z-index:100;
    width:100%;
    height:50px;
    background: #222222;
    background: -moz-linear-gradient(top, #222222 0%, #555555 100%);
    background: -webkit-linear-gradient(top, #222222 0%,#555555 100%);
    background: linear-gradient(to bottom, #222222 0%,#555555 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#555555',GradientType=0 );
    box-shadow: 0px 4px 15px rgba(0,0,0,0.6);
    line-height: 0px;
}
    #panel>.separator {
        width:2px;
        height:30px;
        margin: 10px 10px 10px 0px;
        background: #444444;
        background: -moz-linear-gradient(top, #444444 0%, #6c6c6c 50%, #444444 100%);
        background: -webkit-linear-gradient(top, #444444 0%,#6c6c6c 50%,#444444 100%);
        background: linear-gradient(to bottom, #444444 0%,#6c6c6c 50%,#444444 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#444444',GradientType=0 );
        display: inline-block;
        vertical-align: middle;
    }
    #windows {
        font-size: 0px;
        display: inline-block;
        vertical-align: middle;
        color:#fff;
    }
        #windows>.window{
            display: inline-block;
            font-size:14px;
            padding:3px 10px;
            margin-right: 5px;
            border-radius:4px;
            background-color:#4d4d4d;
            white-space: nowrap;
            overflow: hidden;
            -webkit-transition: box-shadow .1s;
            transition: box-shadow .1s;
        }
            #windows>.window.active{
                font-weight: bold;
                background-color:#898989;
                box-shadow: 1px 1px 1px rgba(0,0,0,0.9) inset, -1px -1px 1px rgba(255,255,255,0.2) inset;
            }
                #windows>.window.active:hover{
                    box-shadow: 1px 1px 1px rgba(255,255,255,0.3) inset, -1px -1px 1px rgba(0,0,0,0.3) inset;
                }
            #windows>.window.minimized{
                box-shadow: 1px 1px 1px rgba(255,255,255,0.3) inset, -1px -1px 1px rgba(0,0,0,0.3) inset;
            }
            #windows>.window:hover {
                box-shadow: 1px 1px 1px rgba(0,0,0,0.9) inset, -1px -1px 1px rgba(255,255,255,0.2) inset;
            }
            #windows>.window>.icon{
                background-image: url('/admin/iconset/tux.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: left center;
                height:20px;
                width:20px;
                display: inline-block;
                vertical-align: middle;
            }
            #windows>.window>.name{
                display: inline-block;
                vertical-align: middle;
                width:150px;
                height: 26px;
                overflow: hidden;
                line-height: 26px;
            }
/* LAUNCHER */

#launcher {
    display:inline-block;
    vertical-align: middle;
}
    #launcher>.button {
        display:inline-block;
        height:50px;
        width:50px;
        background-image: url('/admin/iconset/menu_l.svg');
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: center center;
        border-bottom-right-radius: 3px;
        cursor: pointer;
    }
        #launcher>.button:hover {
            background-image: url('/admin/iconset/menu_d.svg');
            background-color: #898989;
        }
    #launcher>.menu {
        line-height: normal;
        position: absolute;
        height: 500px;
        width: 498px;
        background-color: #555;
        box-shadow: 0px 7px 10px rgba(0,0,0,0.3);
        border-bottom-right-radius:5px;
    }
        #launcher>.menu>.applications {
            padding:5px;
            font-size: 0px;
        }
            #launcher>.menu>.applications>.app {
                display: inline-block;
                margin:5px;
                text-align: center;
                width:112px;
                height:100px;
                background-color: rgba(255,255,255,0.3);
                color:#fff;
                font-size:15px;
                text-shadow:0px 1px 1px #000;
                position: relative;
                cursor: pointer;
                border-radius: 2px;
            }
                #launcher>.menu>.applications>.app>.icon {
                    background-image: url('/admin/iconset/tux.png');
                    background-size: contain;
                    background-repeat: no-repeat;
                    background-position: center center;
                    height: 65%;
                    margin-top: 10px;
                }
                #launcher>.menu>.applications>.app>.name {
                    position: absolute;
                    bottom: 0px;
                    width:100%;
                }
            #launcher>.menu>.applications>.app:hover {
                background-color: rgba(255,255,255,0.9);
            }
                #launcher>.menu>.applications>.app:hover>.name {
                    color:#000;
                    text-shadow:none;
                }

/* WINDOW */

#workspace>.window {
    position: fixed;
    z-index:50;
    top:30%;
    left:40%;
    width:700px;
    height:400px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    border-bottom-left-radius:3px;
    border-bottom-right-radius:3px;
    box-shadow: 0px 7px 10px rgba(0,0,0,0.3);
    background-color: #fff;
    overflow: hidden;
}
    #workspace>.window.active {
        z-index:51;
        top:35%;
        left:45%;
        box-shadow: 0px 4px 15px rgba(0,0,0,0.6);
    }
    #workspace>.window>.head {
        height:24px;
        overflow: hidden;
        font-size: 0px;
        background: #666666;
        background: -moz-linear-gradient(top, #888888 0%, #666666 100%);
        background: -webkit-linear-gradient(top, #888888 0%,#666666 100%);
        background: linear-gradient(to bottom, #888888 0%,#666666 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#888888', endColorstr='#666666',GradientType=0 );
    }
        #workspace>.window.active>.head {
            background: #222222;
            background: -moz-linear-gradient(top, #555555 0%, #222222 100%);
            background: -webkit-linear-gradient(top, #555555 0%,#222222 100%);
            background: linear-gradient(to bottom, #555555 0%,#222222 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#555555', endColorstr='#222222',GradientType=0 );
        }
        #workspace>.window>.head>.icon {
            background-image: url('/admin/iconset/tux.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center center;
            width:30px;
            height:20px;
            margin-top:2px;
        }
        #workspace>.window>.head>.name {
            color:#fff;
            font-size: 15px;
            font-weight:normal;
            margin-top:5px;
        }
            #workspace>.window>.head>.controls {
                float: right;
                height:24px;
                padding-right:10px;
            }
                #workspace>.window>.head>.controls>.button {
                    border-radius: 100%;
                    background-color: #fff;
                    height:13px;
                    width:13px;
                    margin-top: 6px;
                    background-size: 55%;
                    background-position: center center;
                    background-repeat: no-repeat;
                    margin-left: 5px;
                }
                    #workspace>.window>.head>.controls>.button:hover {
                        box-shadow: 1px 1px 1px rgba(0,0,0,0.5) inset;
                    }
                    #workspace>.window>.head>.controls>.button.full {
                        background-image: url('/admin/iconset/square_empty_d.svg');
                    }
                    #workspace>.window>.head>.controls>.button.mini {
                        background-image: url('/admin/iconset/line_bottom_d.svg');
                    }
                    #workspace>.window>.head>.controls>.button.close {
                        background-image: url('/admin/iconset/x_d.svg');
                        background-color: #EF8282;
                    }
                        #workspace>.window>.head>.controls>.button.close:hover {
                            background-image: url('/admin/iconset/x_l.svg');
                        }
        .window>.head div {
            display: inline-block;
            vertical-align: middle;
        }
    #workspace>.window>.nav {
        height:20px;
        background-color: #D9D9D9;
        border-bottom:1px solid #C8C8C8;
        font-family: monospace;
        color:#333;
        line-height: 22px;
        overflow: hidden;
        font-size:0px;
    }
        #workspace>.window>.nav>.menu {
            display: inline-block;
            padding: 0px 5px;
            font-size:15px;
        }
            #workspace>.window>.nav>.menu:hover {
                background-color: #898989;
                color:#fff;
            }
    #workspace>.window>.workspace {
        width:100%;
        height:calc(100% - 66px);
    }
    #workspace>.window>.foot {
        height:20px;
        background-color: #D9D9D9;
        border-top:1px solid #C8C8C8;
    }