@charset "UTF-8";
/* GAME TABLE */

.game_table {
		margin:0px;padding:0px;
		width:100%;
		/**box-shadow: 5px 5px 5px #ccc;**/
		border:1px solid #000000;
		background-color:#fff;
		
		-moz-border-radius-bottomleft:0px;
		-webkit-border-bottom-left-radius:0px;
		border-bottom-left-radius:0px;
		
		-moz-border-radius-bottomright:0px;
		-webkit-border-bottom-right-radius:0px;
		border-bottom-right-radius:0px;
		
		-moz-border-radius-topright:0px;
		-webkit-border-top-right-radius:0px;
		border-top-right-radius:0px;
		
		-moz-border-radius-topleft:0px;
		-webkit-border-top-left-radius:0px;
		border-top-left-radius:0px;
	}.game_table table{
		width:100%;
		height:100%;
		margin:0px;padding:0px;
	}.game_table tr:last-child td:last-child {
		-moz-border-radius-bottomright:0px;
		-webkit-border-bottom-right-radius:0px;
		border-bottom-right-radius:0px;
	}
	.game_table table tr:first-child td:first-child {
		-moz-border-radius-topleft:0px;
		-webkit-border-top-left-radius:0px;
		border-top-left-radius:0px;
	}
	.game_table table tr:first-child td:last-child {
		-moz-border-radius-topright:0px;
		-webkit-border-top-right-radius:0px;
		border-top-right-radius:0px;
	}.game_table tr:last-child td:first-child{
		-moz-border-radius-bottomleft:0px;
		-webkit-border-bottom-left-radius:0px;
		border-bottom-left-radius:0px;
	}.game_table tr: td{
		
	}
	.game_table tr:nth-child(odd){ background-color:#cccccc; }
	.game_table tr:nth-child(even){ background-color:#ffffff; }
	.game_table td{
		vertical-align:middle;
		border:1px solid #000000;
		border-width:0px 0px 1px 0px;
		text-align:left;
		padding:3px;
		font-size:10px;
		font-family:Arial;
		font-weight:normal;
		color:#000000;
	}.game_table tr:last-child td{
		border-width:0px 0px 0px 0px;
	}.game_table tr td:last-child{
		border-width:0px 0px 1px 0px;
	}.game_table tr:last-child td:last-child{
		border-width:0px 0px 0px 0px;
	}
	.game_table thead:first-child th{
		background-color:#a00;
		background-image:url('/css/images/redfade_24.jpg');
		border:0px solid #000000;
		text-align:center;
		border-width:1px 1px 1px 1px;
		font-size:14px;
		font-family:Arial;
		font-weight:bold;
		color:#ffffff;
		padding:2px;
		cursor:pointer;
	}
	.game_table thead:first-child th:hover{		
		background-color:#ff0000;
		background-image:url('/css/images/redfade_24_invert.jpg');
	}
	
	.game_table tr:hover td{
		color:#a11;
		cursor:pointer;
		text-decoration:underline;
	}