* {
    margin: auto;
    padding: 0;
  }
  body {
    width:1280px;
    height:720px;
    background-image: url('../img.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
	position: center;
  }
  body.dark {
  	background-color: black;
  }
  div.fullBrowserWindow {
    position: absolute; 
	margin : auto;
  }
  div.fullBrowserWindow canvas {
	position: absolute; 
  margin : auto;
  }

  div#loadingBox {
    /*background-color: red;*/
    width: 100%;
    height: 30px;
    position: absolute;
	right:0%;
    top: 82%;
    margin-top: -10px;
    text-align: center;
  }
  p#loadingInfo {
    color: #666;
    /*color: #fff;*/
    letter-spacing: 1px;
    position: absolute;
    width: 100%;
    font-family: "Monaco", sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
  }
  div#bgBar {
  border-radius: 5px;
  }
  div#progressBar {
    left: 50%;
    position: absolute;
    margin-left: -100px;
    width: 0px;
    height: 5px;
    background-color: white;
    border-radius: 5px;
  }


  body.dark h1 {
    float: left;
    display: inline;
    margin: 10px 0px 0px 10px;
    padding: 0;
    width: auto;
  }

  /**
   * Static pie charts
   */

  .pie {
  	display: inline-block;
  	position: relative;
  	width: 100px;
  	line-height: 100px;
  	border-radius: 50%;
  	background: white;
  	background-image: linear-gradient(to right, transparent 50%, #655 0);
  	color: transparent;
  	text-align: center;
  }

  @keyframes spin {
  	to { transform: rotate(.5turn); }
  }
  @keyframes bg {
  	50% { background: #655; }
  }

  .pie::before {
  	content: '';
  	position: absolute;
  	top: 0; left: 50%;
  	width: 50%; height: 100%;
  	border-radius: 0 100% 100% 0 / 50%;
  	background-color: inherit;
  	transform-origin: left;
  	animation: spin 50s linear infinite, bg 100s step-end infinite;
  	animation-play-state: paused;
  	animation-delay: inherit;
  }