#juego {width:900px;float:left;margin:70px 0 0 70px;}
  #form {
    width: 800px;
    margin: auto;
    padding: 10px;
    position: relative;
  }

  #contenidoJuego {
    width: 900px;
    padding: 10px;
    display: block;
    position: relative;
  }

  .gamebox {
    width: 300px;
    padding: 15px 20px;
    line-height: 22px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    position: absolute;
    background-color: #3995f1;
    color: #FFF;
    display: none;
    right: 0;
    z-index: 999;
    margin: 15px 0;
  }

  .gamebox.error {
    background: url(../img/seta_box_erro.png) no-repeat 0 0 #c23052;
  }

  .gamebox.end {
    background: no-repeat 0 0 #00ae91;
  }

  .gamebox.correct {
    background: no-repeat 0 0 #00ae91;
  }

  .gamebox p {
    font-family: 'Arial';
    font-size: 15px;
  }

  .gamebox input {
    font-family: 'Arial';
    font-size: 22px;
    border: 0;
    outline: none;
    width: 210px !important;
    padding: 10px !important;
  }

  .gamebox button {
    font-family: 'Arial';
    font-size: 16px;
    font-weight: bold;
    border: 0;
    background: #225183;
    color: #fff;
    padding: 10px;
    width:100%;
    margin-top:10px;
    display:block;
    text-transform: uppercase;
  }

  .gamebox.error button {
    width:100%;
    margin-top:20px;
  }
  .gamebox .form-text {
    width: 218px !important;
    padding: 10px 20px !important;
    margin: 15px 0 10px 0 ;
    display: block;
    text-align: center;
    float: left
  }

  #thankyou {
    display: none;
  }

  #jogo {
    width: 575px;
    overflow: hidden;
  }

  #jogo ul {
    padding: 0;
    margin: 0;
    
    list-style: none;
  }

  #jogo li {
    font-family: 'Arial';
    padding: 2px;
    margin: 2px;
    text-align: center;
    text-transform: uppercase;
    line-height: 30px;
    width: 30px;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
  }

  #jogo li.regular {
    color: #f3f3f3;
    background-color: #f3f3f3;
    outline: 1px #ddd solid;
    /*text-indent: -9999px;*/
    cursor: pointer;
    
  }

  #jogo li.empty {
    color: #f3f3f3;
    cursor: normal;
  }

  #jogo li.highlight {
    background-color: #3498db;
    color: #ecf0f1;
    outline: 1px #95a5a6 solid;
  }

  #jogo ul.win li.regular {
    background-color: #2ecc71;
    color: #2c3e50;
    /*text-indent: -9999px;*/
  }

  #jogo ul.current li.regular {
    color: #f3f3f3;
    background-color: #f3f3f3;
    outline: 1px #0dcfaf solid;
  }

  #contenidoJuego, #ganaste {
    display: none;
  }