#mainContent{
	width:600px;
	margin:0 auto;
	margin-top:10px;
}
#mainTitle{
	text-align:center;
}
#mainImg{
	width:400px;
	height:240px;
}
#mainImg img{
	width:400px;
	height:240px;

	-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

#subImg{
	margin-top:15px;
	
}
#subImg img{
	border:5px solid rgba(0,0,0,0);
	transition-property:all;
	transition-duration:1s;
	cursor:pointer;	
	opacity:0.5;
}
#subImg img:hover{
	border:5px solid rgba(0,0,0,1);
	opacity:0.7;
}
#subImg img.selected{
	border:5px solid rgba(0,0,0,1);
	opacity:1;
}
#gameContent{
	-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	border:5px solid #555;
	padding:10px;
	color:#000;
	margin-bottom:15px;
	font-size:16px;
}
#downloadDiv{
	position:absolute;
	margin-left:420px;	
	font-size:12px;
}
.round{
	border-radius:10px;	
}
.iconTitle{
	font-family: 'Conv_Fixedsys500c';
	font-size:20px;	
}

#imageContainer{
	width:400px;
	height:240px;
	position:relative;
	perspective:900px;		
}
#imageBox{
	width:100%;
	height:100%;
	position:absolute;
	transform-style:preserve-3d;

	transition:transform 1s;
}
#imageBox img{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;	
}
.front{
	z-index: 2;
	background-color:white;
}
.back {	
	background-color:white;
  	transform: rotateY( 180deg );
}
#imageBox.flipped{
	transform: rotateY( 180deg );
}
#appleClick{
	border:0;
}
#appleClick:hover{
	opacity:0.5;	
}
.clickEffect:hover{
	opacity:0.5;
}