	#thePanelSet { 
		height:383px;
		width:604px; 
		margin:50px auto;
		border:1px solid #cccccc; 
	}
	
	.card-container { 
		display:block;
		width:150px;
		height:127px;
		position:relative;
		margin-bottom:1px;
		margin-right:1px;
		float:left;
		z-index: 1;
		perspective: 200px; 
	} 
	.card {  
		position: absolute;
		width:100%; 
		height:100%; 		
		transform-style: preserve-3d;
		transition: all 500ms ease 0.0s;
	 }		
	.cardFlip { 
		transform: rotateY(180deg);	
	}
	.cardFlip360 { 
		transform: rotateY(360deg);	
	}

	.heads, 
	.tails,
	.third { 
		position:absolute;
		width:100%;
		height:100%;
		overflow:hidden;
		backface-visibility: hidden;
	}
	.third { display: none;}
	.tails{ 
		display: block;
		transform: rotateY(180deg); 
	}
