body {
	background: white;
	bottom: 0px;
	display: block;
	font-family: Arial, sans-serif;
	left: 0px;
	margin: 0px;
	overflow: hidden;
	position: absolute;
	right: 0px;
	top: 0px;
}
.Main {
	bottom: 0px;
	display: block;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}
.HomeView {
	bottom: 0px;
	display: block;
	left: 0px;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	right: 0px;
	top: 0px;
}
.DrawingCanvasView {
	bottom: 0px;
	display: block;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}
.DrawingCanvasView > .tools {
	background: #f2f2f2;
	border-radius: 300em;
	cursor: auto;
	left: 20px;
	padding: 4px;
	position: absolute;
	top: 20px;
	z-index: 200;
}
.DrawingCanvasView > .tools > .ui.button {
	display: block;
	margin: 10px 0px 0px 0px;
}
.DrawingCanvasView > .tools > .ui.button:first-child {
	margin-top: 0px;
}
.DrawingCanvasView > .loadingIndicators {
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 0;
}
.DrawingCanvasView > .loadingIndicators .loadingChunk {
	background: #fafafa;
	box-shadow: 0px 0px 10px #f3f3f3 inset;
	left: 0px;
	height: 256px;
	position: absolute;
	text-align: center;
	top: 0px;
	width: 256px;
	z-index: 0;
}
.DrawingCanvasView > .loadingIndicators .loadingChunk:after {
	color: #eee;
	content: "LOADING...";
	display: inline-block;
	font-family: Arial, sans-serif;
	font-size: 20px;
	margin-top: 120px;
}
.DrawingCanvasView > canvas {
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.DrawingCanvasView > canvas.moveCursor {
	cursor: url('../images/cursor-move.png') 11 11, move;
}
.DrawingCanvasView > canvas.pencilCursor {
	cursor: url('../images/cursor-pencil.png') 0 18, default;
}
.DrawingCanvasView > canvas.eraserCursor {
	cursor: url('../images/cursor-eraser.png') 0 17, default;
}
.DrawingCanvasView > .saveIndicator {
	background: white;
	border-radius: 40px;
	bottom: 20px;
	display: none;
	height: 40px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	width: 40px;
	z-index: 201;
}
.DrawingCanvasView.saving > .saveIndicator {
	display: block;
}
.DrawingCanvasView .noteShare {
	margin-bottom: 20px;
}
.DrawingCanvasView .noteShare .messages {
	position: fixed;
	top: 20px;
	left: 30%;
	right: 30%;
}
.DrawingCanvasView .noteShare .ui.input {
	width: 460px;
}
.DrawingCanvasView .noteShare .ui.input input {
	background: transparent;
	border-color: white;
	color: white;
	text-align: center;
}
.DrawingCanvasView .noteShare .ui.input ::-moz-selection {
	color: white;
	background: #2185D0;
}
.DrawingCanvasView .noteShare .ui.input ::selection {
	color: white;
	background: #2185D0;
}
