.SpryHiddenRegion {
	visibility: hidden;
}
body {
	background-color: black;
}

.even { background-color: #151515; }

#scoreTableContainer {
	border-top: solid 1px #202020;
	border-left: solid 1px #202020;
	border-bottom: solid 1px #404040;
	border-right: solid 1px #404040;
}

#scoreTable .name {
	padding-left: 20px;
	padding-right: 20px;
}

#scoreTable .amount {
	padding-left: 20px;
	padding-right: 20px;
	text-align: right;
}

#buttonContainer {
	padding: 10px;
	background-color: #151515;
	border-top: solid 1px #202020;
	border-left: solid 1px #202020;
	border-bottom: solid 1px #404040;
	border-right: solid 1px #404040;
	color: fc0;
	font-size: 32px;
}

#dealBtn {
	font-size: 32px;
	float: right;
}

#buttonContainer br {
	clear: both;
}

#result div {
	color: red;
	font-size: 120px;
	position: absolute;
	top: 300px;
	padding: auto;
	width: 100%;
	text-align: center;
	background-color: #000000;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

#scoreTable {
	width: 100%;
	font-size: 32px;
	color: fc0;
}

#scoreTable td {
}

#cardContainer {
	position: relative;
	background-color: #151515;
	height: 220px;
	border-top: solid 1px #202020;
	border-left: solid 1px #202020;
	border-bottom: solid 1px #404040;
	border-right: solid 1px #404040;
}

.card {
	position: relative;
	background-color: white;
	border: solid 1px black;
	float: left;
	margin: 20px;
	width: 128px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.leftCorner {
	width: 32px;
	height: 32px;
	margin: 10px;
	float: left;
}
.rightCorner {
	width: 32px;
	height: 32px;
	margin: 10px;
	float: right;
}
.number {
	font-size: 64px;
	clear: both;
	text-align: center;
	margin: auto;
	}

.spade, .club {
	color: black;
}

.diamond, .heart {
	color: red;
}

.spade .leftCorner, .spade .rightCorner {
	background-image: url(images/spade_small.gif);
	background-repeat: no-repeat;
}

.club .leftCorner, .club .rightCorner {
	background-image: url(images/club_small.gif);
	background-repeat: no-repeat;
}

.heart .leftCorner, .heart .rightCorner {
	background-image: url(images/heart_small.gif);
	background-repeat: no-repeat;
}

.diamond .leftCorner, .diamond .rightCorner {
	background-image: url(images/diamond_small.gif);
	background-repeat: no-repeat;
}
.hold {
	background-color: #CCCCCC;
}

.holdStr {
	text-align: center;
	position: absolute;
	display: none;
	background-color: black;
	color: white;
}

.hold .holdStr {
	display: block;
	width: 108px;
	top: 75px;
	left: 10px;
	opacity: 0.5;
	filter: opacity(alpha=50);
}

.cardback .leftCorner {
	background-image: url(images/adobe_small.gif);
	background-repeat: repeat;
	width: 108px;
	height: 160px;
}

.cardback .number, .cardback .rightCorner {
	display: none;
}