/* Copyright (C) 2012-2014 Carlos Pais
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

body, html
{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: blue;
  background-color: black;
}

#belle
{
  /*margin: 0 auto;*/
  position: relative;
  background-color: #000000;
  color: #FFFFFF;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

#belle #game,
#belle #pauseScreen,
#belle canvas
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#belle #pauseScreen {
  display: none;
  z-index: 1;
}

#belle .active {
    display: block !important;
}

#belle canvas {
  z-index: 10;
}

#belle canvas.background {
  z-index: 0;
}

#fps
{
    position: absolute;
    font: 10pt calibre;
    z-index: 2;
    display: none;
}

.view {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}

#load.view .loader {
    position: relative;
    width: 60%;
    margin: 0 auto;
}

#load.view .progress-bar {
    border: 2px solid blue;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 1px 1px 10px #888888;
    width: 99%;
}

#load.view .progress {
    background-color: white;
    width:  20%;
    border-radius: 5px 5px 5px 5px;
    padding: 3% 0;
}

#load.view .text{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 90%;
    font-weight: bold;
    color: #FFF;
    width: 100%;
    padding-top: 1%;
    text-align: right;
    margin: 0;
    text-shadow: 1px 1px 10px #FFFFFF;
}

#dummy
{
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    visibility: hidden;
    height: auto;
    width: auto;
    border: none;
    padding: 0 0;
    margin: 0 0;
    white-space: nowrap;
    line-height: normal;
}

#noscript {
    color: #FFFFFF;
    border: 3px solid #FF0000;
    width: auto;
    text-align: center;
}
