@import url(http://fonts.googleapis.com/css?family=Annie+Use+Your+Telescope);

body{
    background-color:#555555;
}

/*Main Container*/
div#div1{
    background-color:#222222;
    width:700px;
    height:100px;
    
    border-radius:5px;
}

/*Paragraphs*/
p{
    font-family: 'Annie Use Your Telescope', cursive;
    font-size:1.5em;
    color:#aaaaaa;
    text-align:center;
    margin:0px;
}

p.lalign{
    text-align:left;
}

p.ralign{
    text-align:right;
}

/*Text Containers*/
div#textcontainer {
	background-color: rgb(0, 0, 0, 0);
    width:600px;
    height:70px;
    background-color:none;
    margin-left:auto;
    margin-right:auto;
    margin-top:10px;
    border-radius:5px;
    padding:5px;
}

div#textcontainer.hover {
	background-color: #111111;
}

div.text{
    display:none;
}

/*Progress Bar*/
div#div2{
    background-color:#111111;
    margin-right: auto;
    margin-left:auto;
    margin-top: 5px;
    width: 605px;
    height: 30px;
    
    border-radius:10px;
}

div.status{
    float:left;
    margin-left: 5px;
    width: 51px;
    height: 16px;
    margin-top:5px;
    
    border-color:#111111;
    border-radius:7px;
    border-width:2px;
    border-style:solid;
}

div.off{
    background-color:#660000;
}

div.off:hover{
    background-color:#881111;
    border-color:#aa3333;
}

div.on{
    background-color:#009900;
}

div.on:hover{
    background-color:#33cc33;
    border-color:#33ff33;
}

div.working{
    background-color:#006699;
}

div.working:hover{
    background-color:#3399cc;
    border-color:#33ccff;
}