body
{
    padding: 70px;
    color: #303030;
    /*background: url('../img/marker-off.png') no-repeat 0 70px white;*/
    font-family: "Roboto",Arial,sans-serif !important;
    font-size: 12px;
}

a
{
    color: #3e9cff;
    text-decoration: none;
}
a:hover
{
    opacity: 0.8;
}
a:before
{
    content: "→ ";
}

h2
{
    margin: 0px;
    padding: 10px;
    line-height: 20px;
    cursor: pointer;
    background-color: rgba(255,255,255,0.96);
    border-bottom: 1px solid #c6cac4;
}

label
{
    display: inline-block;
    width: 150px;
    margin-top: 3px;
}

input
{
    margin: 0 7px 3px 0;
}

input[type="radio"] + label
{
    width: auto;
    margin-right: 7px;
}

input[type="text"]:invalid,
input[type="password"]:invalid
{
    color: #3e9cff;
    font-weight: lighter;
}

code
{
    background: none repeat scroll 0 0 #fafafa;
    border-radius: 3px;
    color: gray;
    display: block;
    padding: 7px 20px;
}

code+br
{
    display: none;
}

dd
{
    margin-left: 17px;
}


.hide
{
    display: none;
}

.panel
{
    margin-bottom: 30px;
    border-radius: 5px;

    /*background-color: #f5f5f5;
    background-image: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), 
    linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);
    background-size: 10px 10px;
    background-position:0 0, 5px 5px;*/

    box-shadow: 1px 1px 2px #333;
}

.subpanel
{
    padding: 0 10px 1px;
    display: none;
}

.var
{
    margin-bottom: 50px;
}

.alert
{
    text-align: center;
    background-color: #8db100;
}

.submit
{
    background-color: #3e9cff;
    cursor: pointer;
}

.alert,
.submit
{
    float: right;
    margin-top: -36px;
    margin-right: 6px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    padding: 7px;
}

.alert,
.panel h2,
.submit
{
    position: relative;
    top: 0;
}

.error
{
    background-color: #991100;
    color: white;
}

.overlay
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.overlay span
{
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 20px;
    width: 220px;
    margin-left: -120px;
    margin-top: -60px;
    text-align: center;
    font-weight: bolder;
    background: white;
    background-position: 10px 3px;
    border-radius: 3px;
    box-shadow: 3px 3px 5px #333;
    opacity: 0.9;
}

.overlay span.warning
{
    background-image: url("../img/warning.png");
    background-repeat: no-repeat;
    background-position: 10px 13px;
    margin-left: -200px;
    margin-top: -100px;
    width: 360px;
}

.overlay span.wait:before
{
    position: absolute;
    content: "";
    display: block;
    top: 12px;
    width: 32px;
    height: 32px;

    background-image: url("../img/loading.png");

    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.overlay span.halt
{
    background-image: url("../img/halt.png");
    background-repeat: no-repeat;
    background-position: 10px 3px;
}

#container
{
    position: relative;
    clear: both;
    width: 640px;
    margin: auto;
}

#console > div
{
    clear: both;
    width: 640px;
    margin: auto;
    padding: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 0 0 5px 5px;
    box-shadow: 3px 3px 5px #333;
    text-align: center;
}

#console pre
{
    text-align: left;
    border-bottom: 1px solid #c6cac4;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

pre
{
    width: 620px;
    overflow: auto;
}


