* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #435165;
}
.login {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 10px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #5f9608;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
 	margin-top: 20px;
  	background-color: #5f9608;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}

.navtop {
	background-color: #2f3947;
	height: 60px;
	width: 100%;
	border: 0;
}
.navtop div {
	display: flex;
	margin: 0 auto;
	width: 980px;
	height: 100%;
}
.navtop div h1, .navtop div a {
	display: inline-flex;
	align-items: center;
}
.navtop div h1 {
	flex: 1;
	font-size: 24px;
	padding: 0;
	margin: 0;
	color: #eaebed;
	font-weight: normal;
}
.navtop div a {
	padding: 0 20px;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
	font-size: 13px;
}
.navtop div a i {
	padding: 2px 8px 0 0;

}
.navtop div a:hover {
	color: #eaebed;
}
body.loggedin {
	background-color: #f3f4f7;
	margin: 0;
	padding: 0;
}
.content {
	width: 1000px;
	margin: 0 auto;
}
.content h2 {
	margin: 0;
	padding: 10px 0;
	font-size: 22px;
	color: #4a536e;
}
.content h1 {
	margin: 0;
	padding: 0px 0;
	font-size: 22px;
	color: #4a536e;
}
.content h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 46px;
    color: #4a536e;
}
.content h3 {
	margin: 0;
	padding: 0px 0;
	font-size: 15px;
	color: #4a536e;
}
.content > p, .content > div {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
}
.content > p table td, .content > div table td {
	padding: 5px;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}

input[type=text], select {
  
  padding: 7px 8px;
  margin: 0px 0;
  display: inline-block;
  
  border-radius: 1px;
  box-sizing: border-box;
  white-space: pre-wrap;
}

input[type=number], select {
  
  padding: 7px 8px;
  margin: 0px 0;
  display: inline-block;
  
  border-radius: 1px;
  box-sizing: border-box;
  white-space: pre-wrap;
}

input[type=checkbox] {
  
  padding: 7px 8px;
  margin: 8px 10px;
  display: inline-block;
 }

input[type=submit] {
 
  background-color: #2F3947;
  color: white;
  padding: 14px 20px;
  margin: 0px 0;
  
  border-radius: 0px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #2F3947;
}

.a {
    width: 400px;
    height: 150px;
    border-radius: 1px;
    box-shadow: 0 0 0 2px #7ac209;
    border: 3px solid transparent;
}
.a:focus {
    outline:none;
}
#checkboxdiv {
width:auto;
margin:auto;
text-align: left;
}

table.blueTable {
  border: 1px solid #1C6EA4;
  background-color: #EEEEEE;
  color:#4a536e;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.blueTable tbody td {
  font-size: 13px;
}
table.blueTable tr:nth-child(even) {
  background: #D0E4F5;
}
table.blueTable thead {
  background: #5f9608;
  background: -moz-linear-gradient(top, #5f9608 0%, #5f9608 66%, #5f9608 100%);
  background: -webkit-linear-gradient(top, #5f9608 0%, #5f9608 66%, #5f9608 100%);
  background: linear-gradient(to bottom, #5f9608 0%, #5f9608 66%, #5f9608 100%);
  border-bottom: 1px solid #444444;
}
table.blueTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
  border-left: none;
}

table.blueTable tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  background: #D0E4F5;
  background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  border-top: 2px solid #444444;
}
table.blueTable tfoot td {
  font-size: 14px;
}
table.blueTable tfoot .links {
  text-align: right;
}
table.blueTable tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
.clearpromo {
	box-shadow: 3px 4px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	background-color:#f9f9f9;
	border-radius:15px;
	border:2px solid #2F3947;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:13px;
	font-weight:bold;
	padding:7px 25px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.clearpromo:hover {
	background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
	background-color:#e9e9e9;
}
.clearpromo:active {
	position:relative;
	top:1px;
}
.clearbreak {
	box-shadow: 3px 4px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	background-color:#f9f9f9;
	border-radius:15px;
	border:2px solid #2F3947;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:13px;
	font-weight:bold;
	padding:7px 25px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.clearbreak:hover {
	background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
	background-color:#e9e9e9;
}
.clearbreak:active {
	position:relative;
	top:1px;
}
/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #ffffff;
  font-family: Arial;
  align-items: center;
  max-width: 100%;
  color:black;
  padding:0px;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5)  ; 
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5)  ; 
	-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5)  ; 


  
  
}

.navbarbg {
  overflow: hidden;
  background-color: #ffffff;
  font-family: Arial;
  align-items: center;
  max-width: 100%;
  color:black;
  border-bottom: 0px solid black;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5)  ; 
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5)  ; 
	-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5)  ; 
}

/* Links inside the navbar */
.navbar a {
  float: left;
  align-items: center;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 20px 16px;
  text-decoration: none;
   
  
}

.menuhead {
  float: left;
  align-items: center;
  font-size: 24px;
  color: black;
  text-align: center;
  padding: 16px 18px;
  text-decoration: none;
  
}


/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: black;
  padding: 20px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ffffff;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 11;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

table.blueTable7 {
  border: 1px solid #1C6EA4;
  background-color: #ffffff;
  width: 70%;
  text-align: left;
  border-collapse: collapse;
  overflow: auto;
}
table.blueTable7 td, table.blueTable7 th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
  height: 40px;
  overflow: auto;
}
table.blueTable7 tbody td {
  font-size: 11px;
  background: #ffffff;
  height: 40px;
  overflow: auto;
}
table.blueTable7 tr {
  background: #D0E4F5;
  height: 40px;
}

table.blueTable7 tr:nth-child(even) {
  background: #D0E4F5;
  height: 40px;
}
table.blueTable7 thead {
  background: #1C6EA4;
  background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  border-bottom: 1px solid #444444;
}
table.blueTable7 thead th {
  font-size: 15px;
  width: 80px;
  font-weight: bold;
  color: #FFFFFF;
  
}
table.blueTable7 thead th:first-child {
  border-left: none;
}

table.blueTable7 tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  background: #D0E4F5;
  background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  border-top: 2px solid #444444;
}
table.blueTable7 tfoot td {
  font-size: 14px;
}
table.blueTable7 tfoot .links {
  text-align: right;
}
table.blueTable7 tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
.smalltable {
  border: none;
}