/* CSS Document */
html {
  height: 100%; 
}

body {
  margin: 0;
  padding: 0;
  height: 100%; 
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
}

#board {
  background: #402000;
  position: absolute;
  top: 0px;
  left: 50px;
  right: 0px;
  bottom: 0px;
}

.panel-top {
  display: none;
  background: rgba(0,0,0, 1);
  color: #eee;
  z-index: 101;
  position:absolute;
  top:0;
  left: 0;
  right: 0;
  height: 50px;
}

.panel-left {
  width: 80px;
  background: rgba(0,0,0, 1);
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 101;
}

.panel-right {
  display: none;
  width: 80px;
  background: rgba(0,0,0, 1);
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 101;
}

/* LAYERS */
.layers {
  padding: 10px;
}

.layers .layer {
  border: solid 1px #000;
  height: 60px;
  width: 60px;
  background: #000;
  background-position: center;
	background-size: 200%;
  margin-bottom: 2px;
}

/*
 TOOLS
*/
.panel-left BUTTON {
  width: 50px;
  height: 50px;
  background: url("../images/icons-1.png") no-repeat transparent;
  border: none;
  margin: 10px;
}

.panel-left BUTTON:hover, .panel-left BUTTON:active, .panel-left BUTTON.active {
  background-image: url("../images/icons-2.png");
}

.panel-left BUTTON.disabled {
  opacity: 0.5;
}

#btn-clear { background-position:0 0; }
#btn-lock { background-position:-50px 0; }
#btn-settings { background-position:-100px 0; }
#btn-download { background-position:-150px 0; }
#btn-image { background-position:-200px 0; }
#btn-save { background-position:0 -50px; }
#btn-select { background-position:-49px -50px; }
#btn-draw { background-position:-100px -50px; }
#btn-remove { background-position:-150px -50px; }
