* { margin: 0; padding: 0; }

body {
    margin: 0;
    font-family: Helvetica;
    background: #00A746;
    color: #000000;
    background-color: #00A746;
		-webkit-user-select: none;
}

.container {
    position: absolute;
    width: 100%;
}

body[orient="profile"] .container {
    height: 416px;
}

body[orient="landscape"] .container {
    height: 268px;
}

body[orient="landscape"] .toolbar {
    font-size: 18px;
}

#center {
    position: absolute;
    top: 50px;
    bottom: 0px;
    background: #00A746;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-perspective: 600;
}

body[orient="landscape"] #center {
    top: 50px;
    bottom: 0px;
    width: 100%;
}
div#toolbar {
	position: absolute;
	top: 0;
	width: 100%;
	height: 50px;
	z-index: 2;
	background: url(/images/bg-toolbar.png) repeat-x left bottom;
}
div#toolbar h1 {
	text-align: center;
	color: #FFFFFF;
	margin-top: 14px;
	font-size: 16px;
}
div#toolbar li {
	float: left;
	list-style: none;
}
div#toolbar li:first-child {
	padding-left: 5px;
}

div#toolbar li a {
	display: block;
	width: 58px;
	height: 43px;
	overflow: hidden;
	text-indent: -3000px;
	background-image: url('/images/btn-menu-bottom.png');
	margin-top: 4px;
	margin-right: 5px;
	position: relative;
	background-position: 0 0;
	font-weight: bold;
}

div#toolbar li#home-tab a { background-position: 0 0; }
div#toolbar li#home-tab.active a,
div#toolbar li#home-tab a:hover { background-position: right 0; }

div#toolbar li#regels-tab a { background-position: 0 -43px; }
div#toolbar li#regels-tab.active a,
div#toolbar li#regels-tab a:hover { background-position: right -43px; }

div#toolbar li#rooms-tab a { background-position: 0 -86px; }
div#toolbar li#rooms-tab.active a,
div#toolbar li#rooms-tab a:hover { background-position: right -86px; }

div#toolbar li#info-tab a { background-position: 0 -129px; }
div#toolbar li#info-tab.active a,
div#toolbar li#info-tab a:hover { background-position: right -129px; }

div#toolbar li#help-tab a { background-position: 0 -172px; }
div#toolbar li#help-tab.active a,
div#toolbar li#help-tab a:hover { background-position: 57px -172px; }


div#center h1 {
	margin:0;
	padding:10px;
	font-size:17px;
	font-weight:bold;
	color:#03602C;
}

div#center ul {	   
	padding:0;
	margin-top:0;
	margin-left:10px;
	margin-right:10px;
	margin-bottom:15px;
	font-size:17px;
	font-weight:bold;
	color:#000000;
	background-color: white;
	border-width:1px;
	border-style:solid;
	border-color:#03602C;
	-webkit-border-radius:8px; 
	width: 298px;
}
body[orient="landscape"] div#center ul {
	width: 456px;
}

div#center li {	
	list-style-type: none;
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:rgb(217,217,217);
	padding:10px 10px 14px 10px;
}

div#center li:first-child {
	border-top:0;
}

div#center li a {
	display:block;
	padding-top:8px;
	padding-right:8px;
	padding-bottom:12px;
	padding-left:8px;
	margin-top:-8px;
	margin-right:-8px;
	margin-bottom:-12px;
	margin-left:-8px;
	text-decoration:none;
	color:black;
}
.comment {
	font-weight: normal;
	font-size: 14px;
}
#player1 {
	position: absolute;
	left: 10px;
	top: 4px;
	width: 110px;
	height: 77px;
}
#player2 {
	position: absolute;
	left: 200px;
	top: 4px;
	width: 110px;
	height: 77px;
}
#player3 {
	position: absolute;
	left: 10px;
	top: 190px;
	width: 110px;
	height: 77px;
}
#player4 {
	position: absolute;
	left: 200px;
	top: 190px;
	width: 110px;
	height: 77px;
}
#dealer {
	position: absolute;
	left: 20px;
	top: 97px;
	width: 280px;
	height: 77px;
}

.card  {
	position: relative;
	height: 76px;
	width: 55px;
	-webkit-transform-style: preserve-3d;
	-webkit-transition-property: -webkit-transform;
	-webkit-transition-duration: 1.5s;
	float: left;
}


/* Applies the flip animation to the card */
.card.flipped
{
	-webkit-transform: rotateY(180deg);
}


/* Styles the card and hides its "back side" when the card is flipped */
.face 
{
	position: absolute;
	height: 76px;
	width: 55px;
	/* Give a round layout to the card */
	-webkit-border-radius: 10px;
	/* Drop shadow around the card */
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
	-webkit-backface-visibility: hidden;
}

/* Styles the suit characters 
.face > p 
{
	margin-top: 36px;
	margin-bottom: 0;
	text-align: center;
	font-size: 92px;
}
*/

/* Styles the front of the card */
.front 
{
	/* Set the color of the suit characters on the card */
	color: rgb(78,150,249);
	/* Background color of this side of the card */
	background-color: rgb(34,65,108);
}


/* Styles the back of the card */
.back  {
	-webkit-transform: rotateY(180deg);
}
