.testbar
{
	width: 750px;
	height: 110px;
	margin-top: 15px;
	margin-bottom: 15px;
	display: block;
}

.disneyGamesStartScreen div
{
	cursor: pointer;
	display: block;
	height: 500px;
	width: 750px;
	position: relative;
	top: 0px;
	left: 0px;
}

.disneyGamesStartScreen div:before
{
	transition: opacity 250ms ease 0s;
	-moz-transition: opacity 250ms ease 0s;
	-webkit-transition: opacity 250ms ease 0s;
	-o-transition: opacity 250ms ease 0s;
	background-color: #000000;
	opacity: 0.5;
	content: "";
	display: block;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	position: absolute;
}

.disneyGamesStartScreen div:hover:before
{
	opacity: 0;
}

.disneyGamesStartScreen div img
{
	transition: all 100ms ease 0s;
	-moz-transition: all 100ms ease 0s;
	-webkit-transition: all 100ms ease 0s;
	-o-transition: all 100ms ease 0s;
	display: block;
	position: relative;
	top: 186px;
	width: 128px;
	height: 128px;
	left: 311px;
}

.disneyGamesStartScreen div:hover img
{
	width: 140px;
	height: 140px;
	top: 180px;
	left: 305px;
}

.disneyGamesIframe
{
	margin: 0px;
	padding: 0px;
	border: 0px;

	/* Make the iframe body transparent by default so that transparency
	   for the iframe works in IE. */
	background-color: transparent;
}

.outer-container {
	background-color: #000000;
	width:750px;
	height:500px;
	display: table;
	#position: relative;
}

.middle-container {
	background-color: #000000;
	#position: absolute; 
	#top: 50%;
	width: 100%;
	height: 100%;
	display: table-cell; 
	vertical-align: middle;
	text-align: center;
}

.inner-container {
	#position: relative;
	#top: -50%;
	text-align: center;
	margin: auto;
}