/*
 * 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.
 */
/* outermost element which holds the full puzzle interface */
*{
	margin: 0px;
	padding: 0px;
}
body{
	background-image: url(../images/fondo.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #464646;
    font-size: 2px !important;
}
.content-loading{
	background: rgba(0,0,0,0.6);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}
.content-loading .img-loading{
	margin: 0 auto;
	display: block;
	position: relative;
	top: 50%;
	margin-top: -32px;
	width: 70px;
	height: 70px;
}
img.logo-head {
    width: 13%;
}
.content-head{
	background: #92b003;
}
.jqPuzzle {
	position: relative;
	margin: 5% auto;
	padding: 10px;
	border: 1px solid #222222;
	background-color: rgba(0,0,0,0.8);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width: 265px;
    height: 265px;
    text-align: left;
    overflow: hidden;
    display: block;
}

/* only needed if external css rules set defaults for divs,
   this rule only resets the most common properties */
.jqPuzzle div {
	background-color: transparent;
	margin: 0px;
	padding: 0px;
	border-style: none;
}

/* div wrapper which holds the puzzle pieces and the solution image */
.jqPuzzle .jqp-wrapper {
	padding: 2px;
	border: 1px solid #FFFFFF;
	background-color: #444455;
}

/* a single puzzle piece */
.jqPuzzle .jqp-piece {
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-size: 36px;
}

.jqPuzzle .jqp-piece:hover {
	border-style: dashed;
}

.jqPuzzle.jqp-solved .jqp-piece:hover {
	border-style: solid;
}

/* the controls area which holds the buttons and the display */
.jqPuzzle .jqp-controls {
	float: left;
}

/* a button */
.jqPuzzle .jqp-controls a {
	font-family: century gothic;
    padding: 5px;
    background-color: #92b003;
    color: #FFFFFF;
    font-size: 14px;
    line-height: normal;
    float: left;
    display: inherit;
    margin: auto;
    width: 29%;
    text-align: center;
    position: relative;
    margin-left: 30px;
    margin-top: 10px;
    border-radius: 5px;
}

.jqPuzzle .jqp-controls a:hover {
	background-color: #BDC92C;
}

/* toggle/down state for buttons */
/*.jqPuzzle .jqp-controls a.jqp-toggle, 
.jqPuzzle .jqp-controls a.jqp-down {
	padding-left: 4px;
	padding-right: 6px;
	border-style: inset;
	background-color: #333333;
}
*/
/* disabled state for buttons */
.jqPuzzle .jqp-controls a.jqp-disabled {
	background-color: rgba(224, 224, 224, 0.3);
	color: #FFFFFF;
}

/* the area which holds the moves/seconds display */
.jqPuzzle .jqp-controls span {
	font-family: century gothic;
	margin-top: 8px;
	padding: 2px 4px;
	padding-left: 10px;
	border: none;
	background-color: transparent;
	color: #ffffff;
	font-size: 14px;
	float: left;
}

/* disabled state for the display (non-shuffled puzzle) */
.jqPuzzle .jqp-controls span.jqp-disabled {
	color: #ffffff;
}

/* solved state for the display (non-shuffled puzzle) */
.jqPuzzle.jqp-solved .jqp-controls span {
	padding: 1px 3px;
    border: 1px dotted #92b003;
    background-color: #676767;
    color: #ffffff;
}

/* a text field for the moves/seconds display */
.jqPuzzle .jqp-controls span input {
	margin: 0px 3px;
	padding: 3px;
	padding-bottom: 2px;
	border-style: none;
	background-color: #FFFFFF;
	color: #666666;
	font-weight: bold;
	text-align: center;
}

/* disabled state for the text fields */
.jqPuzzle .jqp-controls span.jqp-disabled input {
	background-color: #EEEEFF;
	color: #AAAAAA;
}

/* solved state for the text fields */
.jqPuzzle.jqp-solved .jqp-controls span input {
	background-color: #92b003;
    color: #444444;
}
