/*The whole game*/
.jPuzzle-game
{
	border: 2px solid #000;
	background-color: #f5f5f5;
	margin-bottom: 10px;
	overflow: hidden;
	border-radius: 10px;
}

/*Container of the puzzle*/
.jPuzzle-container
{
	border-bottom: 2px solid #000;
}

/*span with the image as background*/
.jPuzzle-image
{
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

/*Style applied when a piece moves over a droppable location*/
.jPuzzle-location-hover
{
	border: 2px dashed #000;
}

/*Footer bar*/
.jPuzzle-infos
{
	text-align: center;
	border-top: 2px solid #000;
	background-color: #e3e3e3;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

/*Buttons*/
.jPuzzle-infos input
{
	margin: auto;
	margin-top: 2px;
	margin-bottom: 2px;
}

/*span containing the elapsed time*/
.jPuzzle-time
{
	background-color: #f9f9f9;
	display: block;
	width: 120px;
	margin: auto;
	margin-bottom: 2px;
	border: 2px solid #000;
	border-top: 0px;
	padding: 3px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}