* {
	box-sizing: border-box;
}

* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html, body {
	width : 100%;
	height : 100%;
	overflow : hidden;
	padding : 0px;
	margin : 0px;
}

.output {
	width: 30%;
	height: 100%;
	float: left;
	overflow-y: auto;
	color : white;
}

#mainview {
	width : 100%;
	height : 100%;
}

#scriptview {
	width : 100%;
	height: 30%;
	float: left;
	position: fixed;
	bottom : 0px;
	background-color : rgba(255,255,255,0.3);
	display : none;
}

.tool, .shader_tool, .other_tool {
	width : 32px;
	height : 32px;
	position : absolute;
	border-radius: 4px;
	border : none;
	border-color : lightgray;
	background-color : rgba(100, 100, 100, 1.0);
}

.tool:hover {
	background-color : gray;
}

.other_tool:hover {
	background-color : gray;
}

.selected {
	border : solid 1px;
	border-color : lightgray;
	background-color : gray;
}

#tool_open {
	position:absolute;
	left : 0px;
	top : 0px;
	width : 32px;
	height : 32px;
	opacity : 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	font-size: 0px;
}

#tool_open_wrap {
	left : 30px;
	top : 30px;
}

#tool_open_img {
	width : 32px;
	height : 32px;
}

#tool_open_img:hover {
	background-color : gray;
}

#tool_camera {
	left : 30px;
	top : 70px;
}

#tool_pen {
	left : 30px;
	top : 110px;
}

#tool_edit {
	right : 30px;
	bottom : 30px;
	z-index : 10;
}

#tool_surface {
	right : 30px;
	top : 30px;
}

#tool_surface_edge {
	right : 30px;
	top : 70px;
}

#tool_play {
	left : 30px;
	bottom : 30px;
}

#tool_pause {
	left : 70px;
	bottom : 30px;
}

#tool_stop {
	left : 110px;
	bottom : 30px;
}
