body {
	color: #FFFFFF;
	font-family: Arial, sans-serif;
	background-color: #221F1F;
	text-align: center;
	background-position: top center !important;
	background-repeat: no-repeat;
}
#mainCanvasContainer {
	margin-bottom:10px;
    width: 800px;
    height: 600px;
}
.left {
	float: left;
	text-align:left;
    width: 50%;
}
.right {
	float: right;
    width: 50%;
}

#yarnAmount {
	font-family: 'Autour One', cursive;
}

/*  FLOW  */
.screen {
    display: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

.screen.active {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 600px;
    overflow: hidden;
}

#tabs {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
}

#tabs a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-family: 'Autour One', serif;
    text-decoration: none;
    color: white;
    background-color: #656A45;
    border-radius: 5px;
    border-bottom: 3px solid #4E5230;
    margin-bottom: 10px;
    opacity: 0.25;
}

#tabs a.active {
    opacity: 1.0;
}

/*  DEBUG  */
#debugBtns {
	clear:both;
}
#debugBtns span {
	float: left;
	margin-left: 18px;
	background-color: #89d280;
	border: 1px solid #5d8f5a;
	border-radius: 5px;
	color: #fff;
	padding:8px;
}
#debugBtns span:hover {
	background-color: #19596a;
	cursor: pointer;
}
#debugInputs {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	clear: both;
	float: left;
}
textarea {
	width: 400px;
	height: 260px;
	font-family: "Courier New", Courier, monospace;
	font-size: 11px;
    margin: 0;
    padding: 0;
    border: none;
}
.plainText {
	font-family: "Courier New", Courier, monospace;
	font-size: 11px;
}
.gameVariables {
	width: 800px;
}
.gameVariables textarea {
	width: 800px;
	float: left;
    padding: 0;
    margin: 0;
    border: none;
    height: 150px;
}

#fpsMeter {
	position:fixed;
	top:0;
	left:0;
	background-color:#FF0000;
	color:#FFFFFF;
	font-size: 14px;
	padding:4px;
	font-weight: bold;
	display: none;
}
#divDebug {
	position:fixed;
	bottom:0;
	right:0;
	background-color:#FF0000;
	color:#FFFFFF;
	font-size: 14px;
	padding:4px;
	font-weight: bold;
}
.playOnly {
	display: none;
}
#debugScreen {
    background-color: #564F4F; 
}