body {
	font-family: Verdana,Geneva,sans-serif; 
	font-size: 12px; 
}

.topnav {
  overflow: hidden;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 25px;
  color: black;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 17px;
  float: right;
  margin-right: 30px;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
	
table {
	border-collapse: collapse;
	width: 100%;
}
/*
th, td {
	text-align: left;
	padding: 8px;
}

tr:nth-child(even){}

th {
}
*/
table thead {
	background-color: #4CAF50;
	color: white;
}

table tfoot {
	background-color: #4CAF50;
	color: white;
}

table.dataTable.display tbody tr.even > .sorting_1 {
	background-color: inherit !important;
}

.even {
	/*background-color: lightgreen !important;*/
	text-align: left;
}

table.dataTable.display tbody tr.odd > .sorting_1 {
	background-color: inherit !important;
}

.odd {
	/*background-color: #CFFFD1 !important;*/
	text-align: left;
}

table.display tbody .odd:hover {
    background-color: lightgreen !important;
}
table.display tbody .even:hover {
    background-color: lightgreen !important;
}

a.button:link, a.button:visited {
	background-color: white;
	color: black;
	border: 2px solid green;
	padding: 2px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

a.button:hover, a.button:active {
	background-color: green;
	color: white;
}

/* table css */

.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#CFFFD1}.w3-centered tr th,.w3-centered tr td{text-align:center}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px}
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#4CAF50!important}