@font-face {
  font-family: "Gravity";
  src: url("../font/Gravity-Book.otf");
  }
  
@font-face {
  font-family: "Gravity-Regular";
  src: url("../font/Gravity-Regular.otf");
  }
  
@font-face {
  font-family: "Gravity-Light";
  src: url("../font/Gravity-Light.otf");
  }

@font-face {
  font-family: "Aller";
  src: url("../font/Aller_Std_Lt.ttf");
  }
  
body {
	font-family: "Gravity", "Lucida Sans Unicode", sans-serif;
	background-color: #FFF;
	color: #151515;
	padding: 0px;
	}
	
a {
	text-decoration: underline;
	color: #4B7B93;
	transition: color .25s linear;
	-webkit-transition: color .25s linear;
	cursor: pointer;
}

a:hover {
	color: #6BB1D4;
}

.content_overlay {
	background-color: #FEFEFE;
	/*opacity: 0.75;*/
	opacity: 1;
	position:absolute;
	display:none;
	z-index: 10;
}

.toolbar {
	/*background-color: #D6DDE1;*/
	background-color: #fff;
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	border-bottom: 2px solid #888C8E;
	font-size: 14px;
	padding: 0px;
	font-family: "Gravity-Regular", "Lucida Sans Unicode", sans-serif;
	-webkit-box-shadow: 0px 0px 36px 5px rgba(0,0,0,0.08);
	-moz-box-shadow: 0px 0px 36px 5px rgba(0,0,0,0.08);
	box-shadow: 0px 0px 36px 5px rgba(0,0,0,0.08);
	z-index: 100;
}

.toolbar .logo {
	display: block;
	float:left;
	font-family: Gravity-Light;
	font-size: 28px;
	line-height: 48px;
	padding: 0px 20px 0px 10px;
	user-select:none;
	-webkit-user-select:none;
	cursor: default;
}


.toolbar_buttons {
	padding: 0px 30px 0px 0px;
	margin: 0px;
	height: 48px;
	display: block;
	float:left;
}
.toolbar_buttons li {
	position:relative;
	list-style-type: none;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px 0px;
	text-align:center;
	text-decoration:none;
	user-select:none;
	-webkit-user-select:none;
	transition: background 0.25s linear, box-shadow 0.25s linear, color 0.25s linear;
	cursor: pointer;
	height:48px;
	line-height: 48px;
	min-width: 48px;
	vertical-align: middle;
}

	.toolbar_buttons li:hover {
		background: #51B4E6;
		border-radius: 0px;
		color: #FEFEFE;
	}
	
.toolbar_buttons li span {
	padding: 0px 5px;
}

.toolbar_buttons li img {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px; /* center */
	margin-left: -20px;
}

.toolbar_buttons li:hover img {
	-webkit-filter: opacity(75%); /* Chrome, Safari, Opera */
    filter: opacity(75%);
}

.draw_area {
	margin: 0px;
	padding: 0px;
}