@CHARSET "UTF-8";

/* Игровое поле */

body {
	background-image: none;
}

#page {
	padding: 20px;
}

#page-top, #content {
	box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none;
	border: 0;
	background-color: transparent;
}
#page-top {
	border: #ccc 1px solid;
	background-color: white;
	margin-bottom: 20px;
}
#page-top .container {
	margin: 20px auto;
}

#content .box {
	background-color: transparent;
}

#elementsArea {
	position: relative;
	width: 100%;
	overflow-x: scroll;
}
#elementsArea-outer {
	border: #ccc 1px solid;
	margin-bottom: 20px;
}

#puzzleArea {
	position: relative;
	width: 100%;
	height: 800px;
    border: #ccc 1px solid;
}
#puzzleArea-outer {
	margin: 0 auto;
}

#timer {
	font-size: 120%;
	font-weight: bold;
	line-height: 100%;
	cursor: pointer;
}
.pause {
	color: #999;
}

#timer-link {
	float: left;
	font-family: Tahoma;
	font-size: 110%;
	cursor: pointer;
}

#help-link,
#arrangeElements-link,
#moveToField-link,
#clearField-link,
#image-link,
#color-link,
#save-link {
	float: right;
	margin-left: 5px;
	font-family: Tahoma;
	font-size: 90%;
	line-height: 130%;
	cursor: pointer;
	color: #3a4a8f;
}

#help-content {
	border: #ccc 1px solid;
	margin-bottom: 20px;
	padding: 20px;
	background-color: white;
}
#help-content .closer {
	cursor: pointer;
}

/* Выбор фона */

.bgr-0 { background-color: #ffffff; }
.bgr-1 { background-color: #eeeeee; }
.bgr-2 { background-color: #dddddd; }
.bgr-3 { background-color: #cccccc; }
.bgr-4 { background-color: #aaaaaa; }
.bgr-5 { background-color: #888888; }
.bgr-6 { background-color: #666666; }
.bgr-7 { background-color: #333333; }
.bgr-8 { background-color: #000000; }

.color-picker {
	position: relative;
	float: left;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border: #999 1px solid;
	font-size: 0;
	line-height: 0;
	text-indent: -1000px;
	cursor: pointer;
}

.puzzle-item,
.puzzle-pic {
	position: absolute;
	cursor: move;
}
.puzzle-shadow {
	position: absolute;
	opacity: 0.4;
}
.puzzle-handle {
	position: absolute;
}
.puzzle-item { z-index: 1; }
.puzzle-handle { z-index: 2; }


#saving-progress {
	position: absolute;
	margin-top: 2px;
	margin-left: -15px;
}
.status-saved {
	background: url('/img/icons/icons-save-status.gif') 0 0 no-repeat;
}
.status-saving {
	background: url('/img/icons/icons-save-status.gif') -12px 0 no-repeat;
}
.status-modified {
	display: none;
}

#preview-image {
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}
#preview-image .img {
	cursor: move;
}
#preview-image .closer {
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	font-size: 20px;
  color: #fff;
}
