@import url("reset.css");

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #00fc00
}

p {
    padding: 10px;
}

#top-left{

}

#top-bar {
    float: left;
    height: 40px;
    width: 100%;
    background: #14005b;
    z-index: 3;
}

#side-bar {
    background: #ececec;
    position: absolute;
    width: 125px;
    height: 100%;
    float: left;
    left:0px;
    top:40px;
    border: 2px solid #6c6c6c;
    border-top: hidden;
    border-left: hidden;
    -webkit-box-shadow: 3px 3px 15px 3px rgba(0,0,0,.3);
    box-shadow: 3px 3px 15px 3px rgba(0,0,0,.3);
    z-index: 4;
}

#canvas {
    position: absolute;
    left:130px;
    top:40px;
    z-index: 1;
}

#login {
    background-color: rgba(255,255,255,.95);
    position: absolute;
    left: 150px;
    top: 100px;
    width: 200px;
    height: 200px;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.2),0 1px 4px 0 rgba(0,0,0,.19);
    color: hsl(0, 0%, 33%);
    border: 1px solid #4d4d4d;
    box-sizing: border-box;
    z-index: 1;
    visibility: hidden;
}

.title_left {
    float: left;
    width: auto;
    height: 30px;
    font-size: 16px;
    color: #ffffff;
    margin: 10px;
    visibility: visible;
}

.header_left {
    background-color: #2c009d;
    float: left;
    width: auto;
    height: 30px;
    line-height: 30px;
    padding: 0 13px;
    font-size: 13px;
    color: #f3ee00;
    text-shadow: 1px 1px 0 rgba(0,0,0,.1);
    border-radius: 5px;
    border-color: #000000;
    margin: 5px;
    visibility: visible;
}

.header_button {
    background-color: #2c009d;
    float: right;
    width: auto;
    height: 30px;
    line-height: 30px;
    padding: 0 13px;
    font-size: 13px;
    color: #f3ee00;
    text-shadow: 1px 1px 0 rgba(0,0,0,.1);
    border-radius: 5px;
    border-color: #000000;
    margin: 5px;
    visibility: visible;
    transition: background-color .1s ease-in;
}
.header_button:hover {
    background-color: #4f4cff !important;
}