body {
    width: 100%;
    height: 500px;
    min-height: 100%;
    padding:0px;
    margin:0px;
    overflow: hidden;
}

canvas[resize] {
    width: 100%;
    height: 100%;
}

#chatInput {	position : fixed;
	bottom : 0px;
	left: 10x;
	z-index: 3000;
	width: 30%;
	height: 25px;
    border-radius: 4px;
    border: 1px solid #444;
    background: transparent;
    color: #fff;
    display: none;
}


#chatInput::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #ddd;
}
#chatInput:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #ddd;
   opacity:  1;
}
#chatInput::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #ddd;
   opacity:  1;
}
#chatInput:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #ddd;
}


.setPlayerHead{
    background: url(playerSprite.png);
    width: 33px;
    height: 32px;
}

.setPlayerHead#head1 {    background-position: 0px 0px;
}

.setPlayerHead#head2 {
    background-position: -33px 0px;
}

.setPlayerHead#head3 {
    background-position: -66px 0px;
}

.setPlayerHead#head4 {
    background-position: -99px 0px;
}

.setPlayerArm{
    background: url(playerSprite.png);
    width: 44px;
    height: 20px;
}

.setPlayerArm#arm1 {
    background-position: 0px -32px;
}

.setPlayerArm#arm2 {
    background-position: -44px -32px;
}


.setPlayerFoot{
    background: url(playerSprite.png);
    width: 11px;
    height: 8px;
}

.setPlayerFoot#foot1 {
    background-position: -88px -32px;
}

.setPlayerFoot#foot2 {
    background-position: -88px -41px;
}

.setPlayerFoot#foot3 {
    background-position: -88px -50px;
}

.setPlayerFoot#foot4 {
    background-position: -88px -59px;
}


label > input{ /* HIDE RADIO */
  visibility: hidden; /* Makes input not-clickable */
  position: absolute; /* Remove input from document flow */
}
label > input + div{ /* IMAGE STYLES */
  cursor:pointer;
  border:0px solid transparent;
  margin: 1px;
}
label > input:checked + div{ /* (RADIO CHECKED) IMAGE STYLES */
  border: 2px solid #555;
  padding: 2px;
}

#canvas{	z-index :1000;
}

#setPlayerModal{	z-index :5000;}

