html
{
	font-size: 100.01%;
	height: 100%;
}
body
{
	background: #393939;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#393939), color-stop(40%, #000000));
	background: -webkit-linear-gradient(top,  #393939 0%,#000000 40%);
	background: linear-gradient(to bottom,  #393939 0%,#000000 40%);
	font-size: 62.5%;
	font-family: Roboto, Arial,Helvetica,sans-serif;
	padding: 0;
	margin: 0;
	height: 100%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: white;
}

#coloring-canvas
{
	display:block;
	margin: 0 auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width:100%;
	max-height:100%;
	padding: 8px;
	/*border: 2px solid #ffffff;*/
	/*-webkit-box-shadow: 1px 1px 1px 0px #000;*/
	/*box-shadow: 1px 1px 1px 0px #000;*/
}
.canvas-wrapper {
	position: absolute;
	/*margin: 0 auto;*/
	left: 0;
	right: 0;
	bottom: 15%;
	top: 0;
}

.tools {
	width: 100%;
	height: 15%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}

.tools-palette, tools-actions {
	height: 50%;
}

.tools-palette {
	border-bottom: 1px solid #fff;
}


.color, .save, .gallery, .open-palette, .remove {
	width: 30px;
	height: 30px;
	margin: 5px 2px;
	display: inline-block;
}

.color {
	border: 2px solid black;
	-webkit-box-shadow: 1px 1px 1px 0 #000;
	box-shadow: 1px 1px 1px 0 #000;
	border-radius: 20%;
}

.selected {
	border-color: #ffffff !important;
	-webkit-box-shadow: 2px 2px 2px 0 #000;
	box-shadow: 2px 2px 2px 0 #000;
}

.save {
	float: right;
	margin-right: 20px;
	background: url(save.png) no-repeat;
	background-size: 100%;
}

.gallery {
	background: url("gallery.png") no-repeat;
	background-size: 100%;
	width: 35px;
}

.remove {
	float: left;
	margin-left: 20px;
	background: url("remove.png") no-repeat;
	background-size: 100%;
}

.gallery-page {
	display: none;
	vertical-align: top;
	background: #393939;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#393939), color-stop(40%, #000000));
	background: -webkit-linear-gradient(top,  #393939 0%,#000000 40%);
	background: linear-gradient(to bottom,  #393939 0%,#000000 40%);
}

.palette {
	display: none;
}

.gallery-image {
	line-height: 0;
	vertical-align: top;
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 2px solid #000000;
	border-radius: 7px;
}

.open-palette {
	background: url("palette.png") no-repeat;
	background-size: 100%;
}

.palette{
	position: fixed;
	top:20px;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: #393939;
	border-radius: 10px;
	border: 3px solid #aaa;
	padding: 10px;
	overflow: auto;
}

.loading {
	display: none;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	/*background: rgba(0,0,0,0.4);*/
}

.loading-image {
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 50%;
	width: 252px;
	height: 252px;
	margin-left: -126px;
	margin-top: -126px;
	background: url("loading.png");
}