body, html {
  height: 100%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
}

.hide{
    display: none;
}

/* Full-width input fields */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.greenBtn {
  background-color: #1FB0B0; /*04AA6D*/
  color: white;
  padding: 10px 18px;
  width: auto;
}

.orangeBtn {
  background-color: #39B4FF; /*ED4F00*/
  color: white;
  padding: 10px 18px;
  width: auto;
}

.redBtn {
  background-color: red;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: gray;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 100px;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
	 display: block;
	 float: none;
  }
  .cancelbtn {
	 width: 100%;
  }
}

.header {
	left: 0;
	top: 0;
	width: 100%;
	background-color: #0C3C60;
	color: white;
	text-align: center;
}
	
.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #0C3C60;
	color: white;
	text-align: center;
}

ul.menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #0C3C60;
}

ul.menu li {
	float: left;
	border-right:1px solid #bbb;
}

ul.menu li:last-child {
	border-right: none;
}

ul.menu li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

ul.menu li a:hover:not(.active) {
	background-color: #2986BF; 
	cursor: pointer;
}

.navActive {
	background-color: #39B4FF;
	color: white;
}






/*Dropdown*/
	dropdown {
	  float: right;
	  overflow: hidden;
	}

	.dropdown .dropbtn {
	  font-size: 16px;  
	  border: none;
	  outline: none;
	  color: black;
	  padding: 50px 50px;
	  background-color: inherit;
	}

	.dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: #f9f9f9;
	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  min-width:200px;
	  margin:0;
	  padding:0;
	  z-index:1
	}

	.dropdown-content a {
	  float: none;
	  color: black;
	  padding: 12px 16px;
	  text-decoration: none;
	  display: block;
	  text-align: left;
	}

	.dropdown-content a:hover {
		background-color: #ddd;
		cursor: pointer;
	}

	.dropdown:hover .dropdown-content {
	  display: block;
	}
	



/*Message*/	
	#divMsg {
	  visibility: hidden;
	  min-width: 250px;
	  margin-left: -125px;
	  background-color: #ffcc00;
	  color: #0C3C60;
	  text-align: center;
	  border-radius: 2px;
	  padding: 16px;
	  position: fixed;
	  z-index: 1;
	  left: 50%;
	  top: 30px;
	  font-size: 17px;
	}
	
	#divMsg.show {
	  visibility: visible;
	  -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
	  animation: fadein 0.5s, fadeout 0.5s 4.5s;
	}
	
	@-webkit-keyframes fadein {
	  from {top: 0; opacity: 0;} 
	  to {top: 30px; opacity: 1;}
	}
	
	@keyframes fadein {
	  from {top: 0; opacity: 0;}
	  to {top: 30px; opacity: 1;}
	}
	
	@-webkit-keyframes fadeout {
	  from {top: 30px; opacity: 1;} 
	  to {top: 0; opacity: 0;}
	}
	
	@keyframes fadeout {
	  from {top: 30px; opacity: 1;}
	  to {top: 0; opacity: 0;}
	}










.buttonUser {
	background-color:transparent;
	display:none;
	cursor:pointer;
	color:#39B4FF;
	font-size:20px;
	padding:5px 5px;
	text-decoration:none;
	text-shadow:0px 1px 0px #a14e12;
}
.buttonUser:active {
	position:relative;
	top:1px;
}




.vMenu {
  width: 100%;
}

.vMenu button {
  background-color: #eee;
  width: 100%;
  color: black;
  display: block;
  padding: 12px;
  text-decoration: none;
}

.vMenu button:hover {
  background-color: #ccc;
}

.vMenu button.active {
  background-color: #0C3C60;
  color: white;
}







.view{
	border: 5;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}







/* DivTable.com */
.divTable{
	display: table;
	width: 100%;
	table-layout: fixed;
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	display: table-cell;
	padding: 0px 0px;
	valign: top;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}






SELECT, INPUT[type="text"] {
    width: 160px;
    box-sizing: border-box;
}
SECTION {
    padding: 8px;
    background-color: #f0f0f0;
    overflow: auto;
}
SECTION > DIV {
    float: left;
    padding: 4px;
}
SECTION > DIV + DIV {
    width: 40px;
    text-align: center;
}

















