@font-face {
	font-family:'Noto Sans';
	src:
		url('/etc/fonts/NotoSans-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
}

@font-face {
	font-family:'Noto Mono';
	src:
		url('/etc/fonts/NotoMono-Regular.ttf') format('truetype');
	font-weight:400;
	font-style:normal;
}

@font-face {
	font-family:'Noto Sans';
	src:
		url(/etc/fonts/NotoSans-Italic.ttf) format("truetype");
	font-weight:400;
	font-style:italic;
}

@font-face {
	font-family:'Noto Sans';
	src:
		url(/etc/fonts/NotoSans-Regular.ttf) format("truetype");
	font-weight:400;
	font-style:normal;
}

@font-face {
	font-family:'Noto Sans';
	src:
		url(/etc/fonts/NotoSans-Bold.ttf) format("truetype");
	font-weight:700;
	font-style:italic;
}

body, html {
	color:#333333;
	font-size:16px;
	line-height:20px;
	min-width:1280px;
	background-color:#f7f7f7;
	font-family:'Noto Sans',Verdana;
	/*color:#eee;*/
}

label {
	user-select:none;
	cursor:pointer;
}

::-webkit-scrollbar {
	width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #eee;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #333;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #2D71C1;
	opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #2D71C1;
}

::-ms-input-placeholder { /* Microsoft Edge */
	color: #2D71C1;
}

.gm-content input {
	position:relative;
	width:100%;
	height:2em;
	line-height:2em;
	float:left;
	outline:0;
	background-color:transparent;
	border:none;
	border-bottom:1px solid #bbbbbb;
	padding:0 0.5em;
	font-size:16px;
	color:#111111;
	transition:all .3s ease;
}

.gm-content input:enabled:hover {
	border-bottom:1px solid #2d71c1;
}

.gm-content input:focus {
	color:#2d71c1;
	border-bottom:1px solid #2d71c1;
}

.gm-button {
	position:relative;
	padding:1em 2em;
	line-height:1em;
	background-color:#333333;
	color:#dddddd;
	text-align:center;
	cursor:pointer;
	border:0;
	transition:background-color .3s;
}

.gm-button:hover {
	background-color:#2d71c1;
}

.gm-content {
	position:relative;
	left:0;
	width:100%;
	height:100%;
	min-height:100%;
	padding:1rem;
}

.gm-wrap-login {
	position:absolute;
	left:50%;
	top:50%;
	width:200px;
	height:200px;
	margin:-100px 0 0 -100px;
	/*background-color:#bbb;*/
	padding:20px;
}

#login-submit {
	width:100%;
}

