/*csslint box-sizing: false*/
/*csslint known-properties: false*/

body {
	background: #ccc;
	color: #000;
}

.stage {
  position: relative;
  height: 90px;
  width: 728px;
  z-index: 0;
  right: auto;
  bottom: auto;
  overflow: hidden;
  text-overflow: clip;
  background-color: #000;
  background-size: 100% 100%;
  cursor: pointer;
  background: #FFF;
}

.border {
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #000;
	width: 100%;
	height: 100%;
}

.layer,
.fallback,
.border {
	position: absolute;
}

.black,
.wall {
	width: 100%;
	height: 100%;
	background-color: #000;
}

.square-holder {
  width: 100%;
  height: 100%;
}
.square {
  width: 6px;
  height: 6px;
  background-color: #6cb933;
}

#square {
    left:-9999px;
}




