/* 
    Document   : screen.css
    Created on : Dec 1, 2010, 11:55:29 AM
    Author     : jbk
    Description:
        Look more cool than standard HTML css
*/

root { 
    display: block;
}

body {
    background: #f2f3ff;
}

a {
    color: #3377ff;
    text-decoration: none;
}

.allofit {
    border: 1px solid #000000;
    background: #ffffff url(../img/default_installation_image.jpg) top left no-repeat;
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 1.5em;
    color: #000000;
    font-family: sans-serif;
}

.header {
    background: transparent url(../img/top_bar.png) top left repeat-x;
    height: 45px;
}
.header a {
    text-decoration: none;
    color: #111155;
}
.header h1 {
    font-size: 2em !important;
    text-shadow: #FFFFCC 1px 1px 10px;
    color: #444499;
    margin-top: 0px;
    float: left;
    margin-left: 0.5em;
}
.header ul {
    margin-top: 0px;
    margin-left: 268px;
    padding-left: 1em;
    list-style: none;
}
.header ul li {
    display: inline-block;
    margin-left: 0em;
    margin-right: 0em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    line-height: 40px;
    font-family: sans-serif;
    border-right: 1px solid #ddddff;
    cursor: pointer;
    text-shadow: #FFFFCC 1px 1px 10px;
}
.header ul li:hover {
    background: #f2f3ff;
    border-bottom: 3px solid #444499;
}
.header ul li:hover a {
    color: #5555aa;
}

.thecontent {
    padding-left: 286px;
    margin-top: 1em;
    margin-bottom: 0px;
    background: transparent url(../img/side_bar.png) 0px 100px no-repeat;
    min-height: 300px;
    padding-bottom: 1em;
    padding-right: 1em;
}

form {
    margin-bottom: 0px;
}

.footer {
    background: #99afff;
    border-top: 1px solid #aabbff;
    padding: 0.5em;
    font-size: 0.6em;
}
.footer .adminlink {
    display: inline-block;
    float: right;
}


/* ---------- Week Planner ---------- */
.week {
    background: #eeeeff url(../img/day_background.png) top left repeat-x;
    display: flex;
    border: 1px solid #ccccdd;
    width: 100%;
    overflow-x: auto;
}
.day {
    display: inline-block;
    text-align: center;
    padding: 0.9em;
    padding-top: 28px;
    border-left: 1px dotted black;
    margin-right: 0px;
    margin-left: 0px;
}
.day:last-child {
    border-right: none;
}
div.day#day0 {
    background: #ddddff url(../img/day_sign_sun.png) top center no-repeat;
}
div.day#day1 {
    background: url(../img/day_sign_mon.png) top center no-repeat;
}
div.day#day2 {
    background: url(../img/day_sign_tue.png) top center no-repeat;
}
div.day#day3 {
    background: url(../img/day_sign_wed.png) top center no-repeat;
}
div.day#day4 {
    background: url(../img/day_sign_thu.png) top center no-repeat;
}
div.day#day5 {
    background: url(../img/day_sign_fri.png) top center no-repeat;
}
div.day#day6 {
    background: #ddddff url(../img/day_sign_sat.png) top center no-repeat;
}

.remove-day {
    display:none;
}
.extra-day {
    background-image: none !important;
}
.extra-day .add-more {
    display: none;
}
.extra-day .remove-day {
    display:initial;
}
.day+.extra-day,.day:first-of-type {
    border-left: none;
}

 

.day .slider {
    height: 10em;
    width: 0.6em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}
.day .timer {
    max-width: 8em;
    text-align: center;
}




form.access {
    background: #eeeeff url(../img/day_background.png) top left repeat-x;
    padding: 0.7em;
}
.username label, .password label {
    float:left;
    width: 8em;
}

div.deviceStatus {
    border-bottom: 1px dotted #bbbbff;
    display: block;
    margin-bottom: 0.5em;
    line-height: 2em;
    clear: both;
}

div.deviceName {
    font-size: 1.2em;
    float: left;
    min-width: 7.5em;
    margin-right: 1em;
    overflow: none;
}
div.deviceMessage span {
    display: inline-block;
    vertical-align: text-bottom;
}
div.deviceMessage {
    margin-left: 7em;
    font-size: 0.9em;
}
div.status .error {
    background-color: red;
}
div.status .running {
    background-color: green;
}