@font-face {
    font-family: 'ForteRegular';
    src: url('forte.eot');
    src: url('forte.eot') format('embedded-opentype'),
         url('forte.woff') format('woff'),
         url('forte.ttf') format('truetype'),
         url('forte.svg#ForteRegular') format('svg');
}

@font-face {
    font-family: 'FuturTMedMedium';
    src: url('futuratm.eot');
    src: url('futuratm.eot') format('embedded-opentype'),
         url('futuratm.woff') format('woff'),
         url('futuratm.ttf') format('truetype'),
         url('futuratm.svg#FuturTMedMedium') format('svg');
}

/*****************************************\
   CSS
   *  Reset
\*****************************************/

/*****************************************\
   Reset

   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)

\*****************************************/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: arial;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*****************************************\
   Style
\*****************************************/

body {
  background: black;
  font-family: "ForteRegular", serif;
  font-size: 10px;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#global {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 703px;
  /* margin-left: -500px; */
  background: #610000;
  overflow: hidden;
}

#GameArea, #common {
  position: absolute;
  background-image:url(../images/loading_background.png);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scene {
  width: 100%;
  height: 100%;
  position: relative;
}

.button {
  cursor: pointer;
}

.loading {
  color: #FF9900;
  text-align: center;
  position: relative;
  top: 48%;
  font-size: 3em;
}

.button span {
  font-size: 1.5em;
}

.scoreContainer {
  position: absolute;
  top: 0;
  right: 0;
  width: 67px;
  height: 55px;
  background: url('../images/compteur_point_background.png') top left no-repeat;
}

.scoreValue {
  font-size: 2em;
  padding: 0.4em 0 0;
  text-align: center;
  position: relative;
  top: -4px;
}

.scoreTitle {
  color: #F5D42F;
  font-size: 1.5em;
  text-align: center;
  position: relative;
  top: -6px;
}

.footer {
  position: absolute;
  bottom: 0;
  height: 91px;
  width: 1000px;
  background: url('../images/footer_background.png') top left no-repeat;
  /* width: 107%; */
}

.logo {
  position: absolute;
  right: 2px;
  top: 5px;
}

.logo2 {
  position: absolute;
  right: 90px;
  top: 70px;
}

.help-link {
  background: url("../images/bt_aide_background.png") no-repeat left top;
  bottom: 0px;
  height: 117px;
  position: absolute;
  right: 0;
  width: 78px;
}

.help-link:hover {
  background: url("../images/bt_aide_over.png") no-repeat left top;
}

.buttonCredit {
    position: absolute;
    background-repeat: no-repeat;
    width: 60px;
    height: 57px;
    left: 10px;
    bottom: 0;
    background-image: url('../images/bt_credits_background.png');
}

.buttonCredit:hover {
    background-image: url('../images/bt_credits_over.png');
}

.loadBar {
	position:absolute;
	top: 200px;
	left: 297px;
    text-align: left;
    display: inline-block;
    width: 400px;
    height: 50px;
    border: 3px solid black;
}
.loadBarInner {
    display: inline-block;
    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -ms-transition: width 1s;
    -o-transition: width 1s;
    transition: width 1s;
    background: #99cc5c;
    height: 50px;
    width:0;
}
.loadingText {
	position:absolute;
	top: 200px;
	left: 297px;
	color:#FFF;
}

