/********************
Functional Formatting
********************/

html, body, canvas { 
  overflow:hidden; 
  margin: 0; 
  padding: 0; 
  border: 0; 
  width: 100%; 
  height: 100%; 
}

#progressBox {
  width: 100%; 
  height: 100%; 
  position: absolute;
  top: 0;
  left: 0;
  display: table;
}

#progressContents {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#progressBarBox {
  width: 300px;
  height: 5px;
  margin: 0 auto;
}

#progressBar {
  width: 0%;
  height: 100%;
  float: left;
}


/*****************
Custom Formatting
*****************/

html { font-family: Helvetica, Verdana, Arial, sans-serif; }

#progressBox {
  background-color: #000;
}

#progressBarBox {
  margin-top: 60px;
  margin-bottom: 10px;
  background-color: #fff;
}

#progressMessage {
  margin-bottom: 60px;
}

#progressBar {
  background-color: #858a97;
}

p,h4,h3,h2 {
  color: #fff;
  margin: 5px;
}

a {
  color: #858a97;
  margin: 5px;
}

