body
{
	padding: 0px;
	margin: 0px;
}
#container
{
	margin: 0px;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #1e5799; /* Old browsers */
	background: -moz-linear-gradient(top,  #1e5799 0%, #7db9e8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1e5799), color-stop(100%,#7db9e8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #1e5799 0%,#7db9e8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #1e5799 0%,#7db9e8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #1e5799 0%,#7db9e8 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #1e5799 0%,#7db9e8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
	cursor:alias;

}
.circle
{
	position: absolute;
	width:80px;
	height: 65px;
	border: 1px solid silver;
	border-radius: 40px;
	margin-top:-100px;
	text-align: center;
	box-shadow:0 10px 20px rgba(0, 0, 0, 0.2), inset 0px 5px 20px 5px rgba(255, 255, 255, 1);
	 /* CSS3 Border Radius */
	 border-radius:50%;
	 -webkit-border-radius:50%;
	 -moz-border-radius:50%;
	 overflow: hidden;
}
#score_panel
{
	position: fixed;
	top: 0px;
	left: 0px;
	width:120px;
	height: 30px;
	/*background-color: blue;*/
	color: white;
	z-index: 10;
	font-weight: bold;
	padding: 5px;
}
#gameover
{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,.9);
	z-index: 99999999;
}
#replay
{
	width:300px;
	height: 200px;
	margin:0 auto;
	background-color: white;
	border-radius: 5px;
	text-align: center;
	padding: 20px;
	margin-top: 100px;
	color: black;
	font-size: 2em;
}
#bubbles
{
	border-radius: 5px;
}