/* 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
{
  margin: 0;
  padding: 0;
}
 
#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;
}

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

#loader {
    position: relative;
    display: none;
    border: 2px solid blue;
    overflow: hidden;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 1px 1px 10px #888888;
    width: 60%;
    padding: 2% 0;
    margin: 0 auto;
}

#loader #progress{
    position: absolute;
    background-color: white;
    width:  20%;
    height: 100%;
    border-radius: 5px 5px 5px 5px;
    top: 0;
    left: 0;
}

#loader #text{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: bold;
    position: absolute;
    color: blue;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    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;
}

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