﻿/*V1*/

#inGameMenu {
  position: absolute;
  top: 0px;
  width: 80px;
  height: 40px;
  padding: 3px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

#inGameMenu:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color:rgba(0,0,0, 0.3);
  width: 42px;
  border-radius: 4px;
  border: 1px solid #cccccc;
}

#inGameMenuBtnContainer {
  position: relative;
  width: 44%;
  margin-left: 3px;
  background-repeat: no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  z-index: 5;
}

#inGameMenuBtn {
  position: relative;
  width: 100%;
  height: 25px;
  background-repeat: no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: 0 1px; 
}

#inGameMenuArrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid white;
  margin-left: 10px;
}

.ArrowUp {
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.ArrowDown {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#inGameMenuList {
  position: relative;
  top: -100px;
  z-index: 3;
}

#inGameMenuList img:first-child {
  margin: 3px 0;
}

#inGameMenuList img {
  position: relative;
  width: 50%;
  display: block;
  z-index: 4;
  text-align: center;
  max-width: 50%;
  padding-right: 50%;
}

#inGameMenuListContainer
{
  overflow: hidden;
  margin-top: 3px;
  z-index: 2;
}

#inGameClock {
  position: absolute;
  top: 0px;
  left: 2000px;
  padding: 3px;
  background-color: rgba(0,0,0, 0.7);
  width: 40px;
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid #cccccc;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  color: #fff;
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}