body {
	margin: 0;
	padding: 0;
	color: white;
	background-color: black;
	font-family: Helvetica, sans-serif;
}

/* Loading Scene */
#loading-text {
	width: 320px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 0px 1px 1px black;
}

/* Main Menu */
#play-button {
	left: 44px !important;
	top: 203px !important;
	cursor: pointer;
}
#help-button {
	left: 76px !important;
	top: 261px !important;
	cursor: pointer;
}
#about-button {
	left: 76px !important;
	top: 307px !important;
	cursor: pointer;
}
#about-text {
	top: 185px !important;
	width: 320px;
	text-align: center;
	font-size: 13px;
	white-space: pre;
}
#about-ok-button {
	left: 76px !important;
	top: 315px !important;
	cursor: pointer;
}

/* How-to-play*/
.example-board {
	margin-left: 52px !important;
	margin-top: 52px !important;
}

/* Game */
#close-button {
	left: 0px !important;
	top: 0px !important;
	cursor: pointer;
}


/* Floating points (appears during a match) */
.points {
	width: 36px;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 0px 2px 2px black;
	color: white;
	text-align: center;
}

/* Location of the hint button */
#hint-button {
	left: 252px;
	top: 317px;
	width: 60px;
	height: 30px;
	cursor: pointer;
}

/* Location and style of the score */
#score {
	left: 15px;
	top: 326px;
	
	font-size: 16px;
	font-weight: bold;
	text-shadow: 0px 1px 1px black;
}

/* Location of the progress bar */
#progress {
	left: 140px;
	top: 321px;
	width: 109px;
	height: 22px;
	background: url(img/progress.png);
}

/* Messages */
#no-moves-message {
	left: 32px;
	top: 100px;
	width: 250px;
}
#bonus-message {
	left: 82px;
	top: 100px;
	width: 150px;
}
#game-over-message {
	left: 44px;
	top: 60px;
	width: 232px;
}
#confirm-quit-message {
	left: 76px;
	top: 90px;
	width: 168px;
}

/* Statistics box shown on game over */
#statistics {
	left: 57px;
	top: 200px;
	width: 200px;
	text-align: center;
}
#statistics table {
	border: 0;
	border-spacing: 0px;
	font-size: 14px;
	margin: auto;
}
#statistics table tr td:first-child {
	text-align: right;
	padding-right: .5em;
}

/* Boxes for messages and statistics */
.box {
	background-color: #4f0001;
	border: 3px solid #a82020;
	font-size: 14px;
	z-index: 100;
	
	padding-top: 6px;
	padding-bottom: 6px;
	-webkit-border-radius: 7px;
}

.box .title {
	font-weight: bold;
	font-size: 20px;
	text-shadow: 0px 2px 2px black;
	text-align: center;
}

.box div {
	width: 100%;
	text-align: center;
}

#ieMain
{
	margin-left: auto; 
	margin-right: auto;
}

