body{ 
	font: 15px Verdana, sans-serif; 
	margin: 0px;
	background-color: #55913e;
}

h1 {
	font: bold 28px Decker, Verdana, sans-serif;
	margin: 30px 30px;
	color: #bada9a;
}

#logo_box {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 100px;
	height: 100px;
	background-color: #72ac44;
	border-radius: 10px;
	box-shadow: #447623 5px 5px 0px;
}

#logo {
	
}


#ink_box {
	float: left;
	width: 180px;
	height: 180px;
	margin: 20px 0px 20px 20px;
	overflow: auto;
	background-color: #88ae4e;
	padding: 15px;
	overflow: auto;
	border-radius: 10px;
	box-shadow: #577e1b 5px 5px 0px;
	color: #f1f3d5;
	font: 18px profontwindows, inconsolata, "ubuntu mono", monofur,  Monospace, Verdana, sans;
	line-height: 120%;
	white-space: pre-wrap;
	-moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
}
#ink_box:focus {
	outline: 0px none transparent;
}

#panel_box {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 120px;
	bottom: 0px;

}

#bits_box {
	float: left;
	width: 200px;
	height: 200px;
	margin: 20px;
	padding: 5px;
	overflow: auto;
	background-color: #4a9f51;
	border-radius: 10px;
	box-shadow: #218029 5px 5px 0px;
	font: 15px profontwindows, inconsolata, "ubuntu mono", monofur,  Monospace, Verdana, sans;
	color: #c7e5a2;
}

.line_box {
	position: relative;
	margin: 5px 2px 12px 2px;
	/*height: 46px;*/
	/*background: #7ca;*/
}

/* visualization for line node */
.line_node {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 36px;
	height: 36px;
	background: #39ba6a;
	border-radius: 10px;
	box-shadow: #219073 5px 5px 0px;
}

.line_weight {
	margin: 0px 0px 5px 45px;
	width: 36px;
	height: 36px;
	background: #2bb384;
	border-radius: 10px;
	box-shadow: #219073 5px 5px 0px;
}
.line_node_label {
	padding-top: 10px;
	text-align: center;
	color: #e7e492;
	/*background: #2bb384;*/
}
.sub_box {
	padding: 5px 0px 0px 40px;
	
}


/* visualization for bits node */
.bit_box {
	display: inline-block;
	width: 40px;
}
.bit {
	position: static;
	margin: 0px 8px 5px 6px;
	width: 36px;
	height: 36px;
	background: #39ba6a;
	border-radius: 10px;
	box-shadow: #219073 5px 5px 0px;
}

.bit_error {
	position: static;
	margin: 0px 8px 5px 6px;
	width: 36px;
	height: 36px;
	background: #ba7539;
	border-radius: 10px;
	box-shadow: #836a39 5px 5px 0px;
	color: #e7ba92;	
}

.bit_label {
	text-align: center;
	font-size: 14px;
	padding-top: 8px;
}


#edit_button {
	position: absolute;
	width: 100px;
	height: 30px;
	top: 220px;
	right: 20px;
	border-radius: 12px;
	box-shadow: #00775e 5px 5px 0px;
	text-align: center;
	padding-top:11px;
	font: bold 14px Verdana;
	color: #d2e3b9;
	cursor: hand;
	cursor: pointer;
}


#parse_button {
	position: absolute;
	width: 100px;
	height: 30px;
	top: 160px;
	right: 20px;
	border-radius: 12px;
	box-shadow: #00775e 5px 5px 0px;
	text-align: center;
	padding-top:11px;
	font: bold 14px Verdana;
	color: #d2e3b9;
	cursor: hand;
	cursor: pointer;
	
	background-image: linear-gradient(bottom, rgb(56,140,128) 0%, rgb(100,178,164) 100%);
	background-image: -o-linear-gradient(bottom, rgb(56,140,128) 0%, rgb(100,178,164) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(56,140,128) 0%, rgb(100,178,164) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(56,140,128) 0%, rgb(100,178,164) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(56,140,128) 0%, rgb(56,140,128) 100%);

	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(56,140,128)),
	color-stop(1, rgb(100,178,164))
);
}

#parse_button:hover {
	box-shadow: #00775e 6px 6px 0px;
	top: 159px;
	right: 21px;
	
	background-image: linear-gradient(bottom, rgb(42,159,110) 0%, rgb(177,231,207) 100%);
	background-image: -o-linear-gradient(bottom, rgb(42,159,110) 0%, rgb(177,231,207) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(42,159,110) 0%, rgb(177,231,207) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(42,159,110) 0%, rgb(177,231,207) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(42,159,110) 0%, rgb(177,231,207) 100%);

	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(42,159,110)),
	color-stop(1, rgb(177,231,207))
	);
}

#parse_button:active {
	box-shadow: #00775e 1px 1px 0px;
	top: 164px;
	right: 16px;
	background-image: linear-gradient(bottom, rgb(72,168,24) 0%, rgb(168,234,127) 100%);
	background-image: -o-linear-gradient(bottom, rgb(72,168,24) 0%, rgb(168,234,127) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(72,168,24) 0%, rgb(168,234,127) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(72,168,24) 0%, rgb(168,234,127) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(72,168,24) 0%, rgb(168,234,127) 100%);

	background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(72,168,24)),
	color-stop(1, rgb(168,234,127))
);
}

