
#stacks_in_17 {
	font-size: 106%;
}
/*
 * jqPuzzle - Sliding Puzzles with jQuery
 * Default CSS theme
 * 
 * Copyright (c) 2008 Ralf Stoltze, http://www.2meter3.de/jqPuzzle/
 * Dual-licensed under the MIT and GPL licenses.
 *
 * Note that some CSS properties are set by the jqPuzzle script itself to make 
 * sure that the puzzle works properly. These properties will overwrite 
 * user-defined properties.
 * 
 * The class 'jqp-solved' is added to the outermost element when a puzzle is 
 * solved by the user. Use '.jqPuzzle.jqp-solved' to define different styles
 * for solved puzzles.
 */

/* only needed if external css rules set defaults for divs,
	 this rule only resets the most common properties */
	 
#puzzle_stack_stacks_in_8 .jqPuzzle div {
	background-color: transparent;
	margin: 0px;
	padding: 0px;
	border-style: none;
}

/* div wrapper which holds the puzzle pieces and the solution image */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-wrapper {
	padding: 2px;
	border: 1px solid #FFFFFF;
	background-color: #444455;
}

/* a single puzzle piece */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-piece {
	border: 1px solid rgba(255, 255, 255, 1.00);
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-piece:hover {
	border-style: dashed;
}

#puzzle_stack_stacks_in_8 .jqPuzzle.jqp-solved .jqp-piece:hover {
	border-style: solid;
}

/* the controls area which holds the buttons and the display */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

/* a button */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls a {
	margin: 5px;
	padding: 8px 16px;
	border-radius: 4px;
	background-color: rgba(51, 51, 51, 1.00);
	color: rgba(255, 255, 255, 1.00);
	line-height: 1.25;
	text-decoration: none;
	display: inline-block;
}

#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls a:hover {
	background-color: rgba(121, 121, 121, 1.00);
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
}

/* toggle/down state for buttons */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls a.jqp-toggle, 
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls a.jqp-down {
	margin: 5px;
	padding: 8px 16px;
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(121, 121, 121, 1.00);
}

/* disabled state for buttons */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls a.jqp-disabled {
	background-color: rgba(255, 255, 255, 1.00);
	color: rgba(255, 255, 255, 1.00);
	opacity: 0.5;
}

/* the area which holds the moves/seconds display */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls span {
	margin-left: 20px;
	border: none;
	background-color: transparent;
}

/* disabled state for the display (non-shuffled puzzle) */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls span.jqp-disabled {
	color: rgba(255, 255, 255, 1.00);
}

/* solved state for the display (non-shuffled puzzle) */
#puzzle_stack_stacks_in_8 .jqPuzzle.jqp-solved .jqp-controls span {
	padding: 1px 3px;
	border: 1px dotted rgba(15, 143, 8, 1.00);
	background-color: rgba(159, 239, 134, 1.00);
	color: rgba(15, 143, 8, 1.00);
}

/* a text field for the moves/seconds display */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls span input {
	margin: 5px;
	padding: 6px 3px;
	border-radius: 4px;
	border: 1px solid #ccc;
	color: #666666;
	text-align: right;
	display: inline-block;
	min-width: 50px;
}

/* disabled state for the text fields */
#puzzle_stack_stacks_in_8 .jqPuzzle .jqp-controls span.jqp-disabled {
	display: none;
}

/* solved state for the text fields */
#puzzle_stack_stacks_in_8 .jqPuzzle.jqp-solved .jqp-controls span input {
	color: inherit;
}

#puzzle_stack_finished_stacks_in_8 {
	display: none;
}

.puzzle_finished #puzzle_stack_finished_stacks_in_8 {
	display: block;
}

#jqPuzzle_credit_stacks_in_8 {
	display: inline !important;
}

