@CHARSET "UTF-8";

* {
	margin: 0px;
	padding: 0px;
	font-size: small;
}

body {
	color: #222222;
	font-size: small;
	font-family: "MS PGothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "sans-serif";
	font-family: Roboto,Noto,Helvetica,Arial,sans-serif;
}

a {
	text-decoration: none;
	color: #008DBB;
}

button, input[type="submit"], span.button {
	background: #009688;
	color: #FFFFFF;
	width: 150px;
	padding: 5px;
	border-radius: 3px;
	border: 1px solid #009688;
	cursor: pointer;
}

button:hover, input[type="submit"]:hover, span.button:hover {
	opacity: 0.6
}

button.btn_mini, input[type="submit"].btn_mini, .btn_mini {
	width: 80px;
	margin-bottom: 10px;
}

label {
	font-weight: bold;
}

li {
	list-style-type: none;
}

table {
	border: 1px solid #CCCCCC;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 30px 70px;
}

table.datalist_full {
	margin: 30px 0px;
	width: 100%;
}

table.edit_table td {
	padding: 5px;
}

th {
	background-color: #FFFFFF;
}

td, th {
	border: 1px solid #CCCCCC;
	padding: 5px;
}

input[type="text"], input[type="password"], input[type="date"], textarea, select {
	border: 1px solid;
	border-color: #C0C0C0 #D9D9D9 #D9D9D9;
	padding: 5px;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, textarea:focus, select:focus {
	outline: none;
	border: 1px solid #009688;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}

.header, .footer {
	padding: 5px;
	background-color: #009688;
	color: #FFFFFF;
	padding: 5px;
	margin-bottom: 20px;

}

#loading {
	display: table;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: #FFFFFF;
	opacity: 0.8;
	z-index: 9000;
}

#loading .loading-msg {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding-top: 140px;
	background: url("/applications/img/loading2.gif") center center no-repeat;
}

.none {
	display: none;
}