/* This sets the initial values for all elements */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

* {box-sizing: border-box}

body {
background-color: #F5F7FA; 
/* background-color: #F5F7FA;*/  
height:100%;
font-family: Arial, Helvetica, sans-serif;
}

input[type=submit] {
  background-color: #92a8d1;
  color: white;
  padding: 6px 10px;
  border: none;
  cursor: pointer;
}

input[type="text"] {
	margin: 0px;
	padding: 2px;
	/*border: 1px solid #CCCCCC;*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000; 
	background-color: #EFFCE8; 
	}
textarea {
	background-color: #FFFFFF; 
	color: #000000; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 13px; 
	border: 1 solid #333333;
}
select {
	background-color: #EFFCE8; 
	color: #000000; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 13px; 
	border: 1 solid #333333;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    cursor:pointer;
}
option { /* Text and background colour, blue on light gray */
	color:#00f;
	background-color:#ddd;
}

/* Add a background color and some padding around the form */
.webform {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
} 
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 5px; /* Some padding */  
	font-size: 15px;
	color: #333333; 
}
td {
/*	font-family: Arial; */
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 13px;
	color: #000000; 
}
th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
}
a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
	text-decoration: underline;

}
a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #999999;
	text-decoration: none;

}
a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FC0202;
	text-decoration: bold;
	}

ul,li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #333333;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}

.responsive {
  max-width: 100%;
  height: auto;
}

#container {
   min-height:100%;
   position:relative;
   margin: 0 auto;
   max-width: 1200px; /* Maximum width */
   width:100%;
}
#header {
   padding:0px;
   width:100%;
}
#body {
   padding-bottom:32px;   /* Height of the footer */
   width:100%;
}
#footer {
   position:absolute; 
   bottom:0;
   height:32px;   /* Height of the footer */
   width:100%;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #92a8d1;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px; 
  border: none;
  outline: none;
  color: white;
  padding: 14px 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 blue background color to navbar links on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #4d4dff;
  color: white;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* 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;
  color: black;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

table.colorlt {
	background-color: #7AC94A; 
}
table.colormed {
	background-color: #7CB566; 
}
table.colordk {
	background-color: #468F2C; 
}
table.border {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000; 
	border-collapse: collapse;
}
table.border th {
	border-width: 1px;
	padding: 3px;
	border-style: solid;
	border-color: #666666;
	background-color: #C0C0C0;
}
table.border td {
	border-width: 1px;
	padding: 3px;
	border-style: solid;
	border-color: #666666; 
	background-color: #FFFFFF;
}

table.forms {
	padding: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#000000;
	border-collapse: collapse;
}
table.forms th {
	background-color: #FFFFFF;
}
table.forms td {
	padding: 3px;
	background-color: #FFFFFF;
}

table.display {
	padding: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#000000;
	border-collapse: collapse;
}
table.display th {
	background-color: #FFFFFF;
}
table.display td {
	padding: 3px;
	background-color: #FFFFFF;
}

table.list {
	padding: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color:#000000;
	border-collapse: collapse;
}
table.list th {
	border-style: solid;
	border-color: #EAF7DC;
	border-width: 1px;

}
table.list td {
	padding: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color: #FFFFFF;
}

table.list tr:nth-child(even) {
  background-color: #f2f2f2
}

.heading {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000080;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	}
.headingtitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #000080;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	}
.headingName {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	}
.headingUser {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FC0202;
	text-decoration: none;
	font-weight: bold;
	}

.important {
	color: #CC0000;
}

.COF {
	color: #6db746;
	font-weight: bold;
}
.center {
     margin: auto;
     width: 50%;
}
