html{
   height: 100%;
   padding: 0;
   margin: 0;
}
 body {
   margin: 0;
   padding: 0;
   height: 300px;
   font-size: 12px;
   line-height: 1.5em; 
   font-family: "Lucida Grande", Verdana, Arial;
   background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#555), to(#777));
   background-image: -moz-linear-gradient(0% 100% 90deg,#555555, #777777);
   min-height: 100%;
 }
 h2{
    text-align: center;
    color: #eee;
    text-shadow:     1px 1px 3px rgba(0,0,0,0.6);
    text-transform: uppercase;
    padding-top: 30px;
    margin-top: 0;
 }
 #wrapper{
    margin: 0 auto;
    width: 610px;
    height: 500px;
 }
 h3#status{
   text-align: center;
   color: #4791f3;
   text-shadow:     1px 1px 3px rgba(0,0,0,0.6);
   padding-top: 20px;
 }
 h3#error{
    position: absolute;
    width: 100%;
    bottom: 10px;
    text-align: center;
    color: red;
    display: none;
 }
 h3#error.failed{
    display: block;
 }
   
