body{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	cursor: default;
}
.cont{
	width:550px;
	margin-left: auto;
	margin-right: auto;
}
.game{
	float:right;
	width:500px;
	height:500px;
}
.buttonContainer{
	clear:both;
	width: 300px;
	height: 50px;
}
.movesContainer{
	width: 40px;
	height: 500px;
	float:left;
}
.moves{
    width: 10px;
    height: 10px;
    margin: 4px;
    border: 1px #3380A0 solid;
    border-radius: 2px;
    background-color: #AAFFDD;
    display: inline-block;
    margin-bottom: 0px;
}
.btn{
	margin:5px 5px 5px 5px;
	display:inline-block;
	width:30px;
	height:30px;
	border: 1px black solid;
	border-radius:5px;
	cursor: pointer;
}
.btn:hover{
	border:1px #A0A0A0 solid;
}
.btn:active{
	background-color:#DDDDDD;
}
.red{
	background-color:#FF0000;
}
.orange{
	background-color:#FF8800;
}
.yellow{
	background-color:#FFFF00;
}
.green{
	background-color:#00FF00;
}
.blue{
	background-color:#0000FF;
}
.magenta{
	background-color:#FF00FF;
}
.start{
	font-family: Helvetica, Verdana, sans-serif;
	text-align: center;
	clear: both;
	width: 50px;
	padding: 5px;
	background-color:#EEEEEE;
	border: 1px black solid;
	border-radius:5px;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
}
.right{
	float:right;
}