@charset "utf-8";
/* CSS Document */
  *{
        margin: 0px;
        padding: 0px;
	  font-family: sans-serif;
    }

h2
{
	font-family: sans-serif;
}

.styled-table {
    border-collapse: collapse;
    /*margin: 25px 0;*/
	margin-left: auto;
	margin-right: auto;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 1000px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

table a{
	color: #333;
} 

table a:visited{
	color: brown;
}

table a:hover{
	color: red;
}

.topheader
{
	width: 100%;
	background-image:url("headbg.jpg");
	background-repeat: repeat-x;
	height: 150px;
	margin-top: 0px;
	left: 0;
	top: 0;
	padding:0;
}
.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}
#myInput {
  background-image: url('/css/searchicon.png'); /* Add a search icon to input */
  background-position: 10px 12px; /* Position the search icon */
  background-repeat: no-repeat; /* Do not repeat the icon image */
  width: 40%; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 12px 20px 12px 40px; /* Add some padding */
  border: 1px solid #ddd; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
}