body{
	margin: 0;
	background-color: black;
	font-family: Arial, Helvetica, sans-serif;
	overflow: hidden;
}
#page{
	position: absolute;
	left: auto;
	top: 0;
	width: 1000px;
	height: 660px;
}
#top_bar{
	position: absolute;
	left: 0;
	top: 0;
	width: 1000px;
	height: 60px;
	background-color: #333;
	color: #fff;
}
.top_bar_box{
	font-size: 24px;
	line-height: 60px;
	float: left;
	margin-left:20px;
	width: 250px;
}
.top_bar_box div{
	float: left;
	margin-right: 20px;
}
#game{
	position: absolute;
	left: 0px;
	top: 60px;
	width: 1000px;
	height: 550px;
	background-image: url(../_img/bubbleBG.png);
	clip: auto;
	overflow: hidden;
}
#board{
	position: absolute;
	left: 120px;
	top: 0;
	width: 760px;
	height: 620px;
}
#footer_bar{
	position: absolute;
	left: 0;
	top: 610px;
	width: 1000px;
	height: 50px;
	background-color: #333;
	color: white;
	text-align: center;
}
.myName {
	color: #0095ff;
}
.dialog{
	position: absolute;
	left: 300px;
	top: 110px;
	height: 275px;
	width: 320px;
	background-color: #333;
	border-radius: 5px;
	border: 2px solid #99f;
	padding: 20px 50px;
	color: #fff;
	text-align: center;
	display: none;
}
.dialog h2{
	font-size: 28px;
	color: #fff;
	margin: 20px 0 20px;
}
.but_start_game{
	position: absolute;
	left: 10%;
	top: 220px;
	height: 60px;
	width: 80%;
	background-color: #444;
	cursor: pointer;
	border-radius: 5px;	
	font-size: 28px;
	line-height: 60px;
	font-weight: bold;
	text-shadow: 0px 1px 1px #f99;
}
.but_start_game:hover{
	background-color: #f33;
}
#start_game{
	display: block;
}
#bubbles_remaining{
	position: absolute;
	left: 479px;
	top: 520px;
	width: 50px;
	font-size: 26px;
	font-weight: bold;
	color: #000;
	text-align: center;
}
.button{
	transition: background-color .3s ease-in-out, transform .2s ease-in-out;
	-moz-transition: background-color .3s ease-in-out, -moz-transform .2s ease-in-out;
	-webkit-transition: background-color .3s ease-in-out, -webkit-transform .2s ease-in-out;
	-ms-transition: background-color .3s ease-in-out, -ms-transform .2s ease-in-out;
}
.button:hover{
	background-color: #888;
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
}
.game_canvas{
	width: 1000px;
	height: 620px;
}
#final_score{
	margin: 26px 0;
}
#end_game_message span{
	margin-right: 20px;
	font-size: 24px;
}
#level_complete,#level_failed,#new_high_score{
	font-size: 36px;
	color: #fff;
}