@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-print-color-adjust: exact;
}
body {
	margin: 0;
	padding: 0;
	font-size: 11pt;
	background-color: gray;
}
a {
	color: #1b99bd;
	text-decoration: none;
}
a:active, a:hover {
	color: #11637a;
}
h1 {
	padding: 40px;
	text-align: center;
	font-size: 32pt;
	color: #666;
}
p {
	margin-bottom: 10px;
}
ul {
	list-style-type: square;
	list-style-position: outside;
	margin: 1em 0;
	padding-left: 40px;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
label {
	display: inline-block;
}
input, select {
	outline: 0;
	font-size: inherit;
}
input[disabled], input[readonly], fieldset[disabled] {
	color: #808080;
	background-color: #ffffff;
	opacity: 1;
	cursor: not-allowed;
}
input[type="text"], input[type="password"], input[type="date"], input[type="time"], input[type="month"], input[type="number"], select {
	border: 1px solid #d9d9d9;
	border-radius: 0;
	padding: 4px;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	width: 100px;
	border: 1px solid #1887a7;
	padding: 4px;
	color: #ffffff;
	background-color: #1b99bd;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	border-color: #082d37;
	background-color: #157590;
}
input[type="submit"][disabled], input[type="reset"][disabled], input[type="button"][disabled] {
	border: 1px solid #999;
	background-color: #ccc;
	cursor: not-allowed;
}
input:disabled + label {
	color: #ccc;
}

.container {
	margin-right:auto;
	margin-left:auto;
	padding-left:15px;
	padding-right:15px;
}
.info {
	color: blue;
}
.warning {
	color: yellow;
}
.error {
	color: red;
}
.left {text-align: left !important;}
.center {text-align: center !important;}
.right {text-align: right !important;}

.header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 150px;
	border-bottom-right-radius: 10px;
	padding: 2px 10px 5px;
	background-color: #fff;
}
.header > img.logo {
	width: 100%;
	height: auto;
}
.header > .title {
	text-align: center;
	font-size: 10pt;
	color: #666;
}
.menubar {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	padding: 0;
	width: 100%;
	text-align: right;
	background-color: #fff;
}
ul.menu {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}
ul.menu li {
	position: relative;
	background-color: #fff;
}
ul.menu li:hover {
	background-color: #eee;
}
ul.menu > li {
	display: inline-block;
}
ul.menu ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 200px;
	border: 1px solid #ccc;
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.menu ul ul {
	top: 0;
	left: 100%;
}
ul.menu li:hover ul {
	display: block;
}
ul.menu a {
	display: block;
	padding: 10px;
	color: #1b99bd;
	text-decoration: none;
}
ul.menu a:hover {
	color: #1b99bd;
}
.menubar > .account {
	display: inline-block;
	margin: 0;
	padding: 10px;
	color: #666;
}
.footer {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	padding: 2px;
	text-align: right;
}

.sheet {
	position: relative;
	top: 90px;
	width: 100%;
	text-align: left;
	background-color: #fff;
}
.sheet > .sheet-header {
	background-color: #eee;
	padding: 5px 10px;
}
.sheet > .sheet-header > .title {
	font-size: 16pt;
}
.sheet > .sheet-header > .actionbar {
	float: right;
	text-align: right;
}
.sheet > .sheet-header > .actionbar::after {
	content: '';
	display: block;
	clear: both;
}
.sheet > .sheet-header > .actionbar > *, .action {
	display: inline;
	padding: 0 10px;
	border-right: 1px solid #ccc;
}
.sheet > .sheet-header > .actionbar > *:last-child, .action:last-child {
	padding-right: 0;
	border-right: none;
}
.sheet > .sheet-header > .actionbar > *:first-child, .action:first-child {
	padding-left: 0;
}
.sheet > .sheet-body {
	padding: 10px;
}
.panel {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	text-align: left;
	background-color: #fff;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.panel540 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 540px;
	text-align: left;
	background-color: #fff;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.panel-header {
	padding: 5px 10px;
	background-color: #eee;
}
.panel-body {
	padding: 10px;
	max-height: 650px;
	overflow: auto;
}
.panel-body > h1 {
	margin-bottom: 10px;
	padding: 0;
	font-size: 12pt;
	color: #000;
}

table.standard {
	width: 100%;
}
table.standard td, table.standard th {
	border: 1px solid #999;
	padding: 4px;
	text-align: left;
	vertical-align: top;
}
table.standard > thead > tr > td, table.standard > thead > tr > th {
	background-color: #eee;
}
table.standard .nodata {
	text-align: center;
}
.active {
	padding: 0 10px;
	color: #ffffff;
	background-color: green;
}
.inactive {
	padding: 0 10px;
	color: #ffffff;
	background-color: red;
}

.form-group {
	margin-bottom: 8px;
}
.form-group-button {
	margin-top: 8px;
	text-align: center;
}
.form-label {
	display: inline-block;
	width: 80px;
}
.form-text, .form-dropdown {
	width: 295px;
}
.form-button {
	width: 100% !important;
}
.panel540 .form-label {
	width: 100px;
	vertical-align: top;
}
.panel540 .form-input {
	display: inline-block;
	width: 380px;
}

#login-email-label, #login-password-label {
	width: 80px;
}
#login-email-box, #login-password-box {
	width: 295px;
}
#login-submit-button {
	width: 100%;
}

#report-type-label, #report-device-label, #report-from-label, #report-to-label, #report-day-label, #report-month-label, #report-workday-label, #report-workhour-label, #report-speed-label {
	width: 80px;
}
#report-type-box, #report-device-box, #report-date-type-box {
	width: 295px;
}
#report-date-type-label {
	width: 80px;
	vertical-align: top;
}
#report-date-type-area {
	display: inline-block;
	width: 295px;
}
#report-from-date-box, #report-to-date-box, #report-day-box, #report-month-box {
	width: 150px;
}
#report-from-time-box, #report-to-time-box {
	width: 120px;
}
#report-workday-box, #report-workhour-box, #report-speed-box {
	width: 60px;
}
#report-submit-button {
	width: 100%;
}

#poi-name-label, #poi-desc-label, #poi-group-label, #poi-loc-label, #poi-lat-label, #poi-lng-label, #poi-add-label {
	width: 80px;
}
#poi-name-box, #poi-desc-box, #poi-group-box, #poi-lat-box, #poi-lng-box, #poi-add-box {
	width: 295px;
}
#poi-icon-label {
	width: 100%;
}

#geo-name-label, #geo-color_id-label, #geo-color-label, #geo-loc-label, #geo-lat-label, #geo-lng-label, #geo-add-label, #geo-rad-label {
	width: 80px;
}
#geo-name-box, #geo-color_id-box, #geo-lat-box, #geo-lng-box, #geo-add-box {
	width: 295px;
}
#geo-color-box, #geo-rad-box {
	width: 80px;
}

.opt-label {
	width: 155px;
}
.opt-box {
	width: 220px;
}
#opt-submit-button {
	width: 100%;
}

.set-label {
	width: 225px;
}
.set-box {
	width: 150px;
}
#set-hhb-label, #set-hhh-label, #set-hha-label, #set-hhs-label, #set-hhc-label {
	width: 40px;
}
#set-hhb-box, #set-hhh-box, #set-hha-box, #set-hhs-box, #set-hhc-box {
	width: 60px;
}
#set-submit-button {
	width: 100%;
}

.list-control {
	display: grid;
	grid-template-columns: auto 100px;
	grid-template-rows: auto auto;
	grid-gap: 10px;
}
.list-control > .list-area > select {
	width: 100%;
}
.list-control > .ctrl-area > input[type="button"] {
	width: 100%;
	margin-bottom: 10px;
}
.list-control > .btn-area {
	grid-column-start: 1;
	grid-column-end: 3;
	text-align: center;
}

@media print {
	.no_print {
		display: none;
	}
	.header, .menubar, .footer, .actionbar {
		display: none;
	}
	.sheet {
		position: static;
	}
}
