@charset "utf-8";
/* CSS Document */
.container{
	width:100%;
	height:100%;;
}
.header{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100px;
	box-sizing:border-box;
	background-color:#003300;
	color:#FFFFFF;
	padding:8px;
}
.content {
	box-sizing:border-box;
	position:absolute; 
	top:100px;
	left:0px;
	bottom:0px;
	width:100%;
	background-color:#EAEAEA;
}
.navigasi {
	position:absolute;
	left:0px;
	top:0px;
	bottom:50px;
	width:250px;
	height:auto;
	box-sizing:border-box;
	overflow:auto;
	background-color:#EDEDED;
	padding:8px;
}
.navigasi .li-opsi:hover {
	cursor:pointer;
	text-decoration:underline;
}
.main {
	position:absolute;
	width:auto;
	height:auto;
	top:0px;
	right:0px;
	bottom:0px;
	left:250px;
	background-color:#FFFFFF;
	padding:8px;
	overflow:auto;
}
.footer {
	position:absolute;
	width:100%;
	height:50px;
	left:0px;
	bottom:0px;
	background-color:#666666;
	color:#FFFFFF;
	padding:8px;
}
.data-list {
	width:100%;
	border-collapse:collapse;
	font-size:14px;
	color:#333333;
}
.data-list td{
	padding:4px;
}
.data-list tr:nth-child(even) {
	background-color: #f2f2f2;
}
.data-list thead td {
	font-weight:bold;
	border-bottom:solid 1px #030303;
}
.data-list tbody tr:hover {
	background-color:#669999;
}
.numbering {
	text-align:right;
}
.font-kecil {
	color:#999999;
	font-size:10px;
}
.paging {
	float:right;
	margin:4px;
}
.paging td {
	padding:4px;
}
.result {
	position:absolute;
	box-sizing:border-box;
	width:200px;
	height:auto;
	border:solid 1px #CCCCCC;
	background-color:#FFFFFF;
	padding:8px;
	display:none;
}

.opsi-page {
	float:right;
}

.login-container {
	width:300px;
	height:300px;
	position:fixed;
	top:0px;
	right:0px;
	bottom:0px;
	left:0px;
	margin:auto;
	background-color:#003300;
	color:#FFFFFF;
	padding:16px;
	border-radius:16px;
}

.login-container input[type=text]{
	padding:8px;
}
.login-container input[type=password]{
	padding:8px;
}
.login-container input[type=submit]{
	padding:8px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 10% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 340px; /* Could be more or less, depending on screen size */
	height:500px;
	overflow:auto;
	border-radius:8px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.form_add table {
	display:inline-table;
}

.form_add input[type=text]{
	padding:8px;
}
.form_add input[type=submit]{
	padding:8px;
}
.form_add select{
	width:100%;
	box-sizing:border-box;
	padding:8px;
}

.kiri {
	box-sizing:border-box;
	padding:5px;
	position:absolute;
	width:400px;
	height:auto;
	top:0;
	bottom:0;
}
.kiri table {
	width:100%;
	border-collapse:collapse;
}
.kiri table td {
	padding:5px;
}

.kanan {
	box-sizing:border-box;
	padding:5px;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:400px;
	background-color:#FAFAFA;
	overflow:auto;
}

.kanan table td {
	vertical-align:text-top;
}

.tombol {
	color:#000099;
}

.tombol:hover {
	text-decoration:underline;
	color:#000000;
	cursor:pointer;
}

.info-user {
	float:right;
	box-sizing:border-box;
	padding:10px;
	height:90px;
}

@media print {
	.printable {
		position:fixed;
		top:0px;
		left:0px;
		width:100%;
		background-color:#FFFFFF;
		z-index:9999;
	}
}