table { font-size:100%;} 
body { 
	font-size:100%;
	margin:0;
	padding:0;
	color:#000000;
    }

a:link {color:#0b771c; text-decoration: underline;}
a:visited {color:#0b771c; text-decoration: underline;}
a:hover {color: #7fb702; text-decoration: underline;}
a:active {color: #7fb702; text-decoration: underline;}

.head{
	background-image:url(images/head.jpg);
	background-repeat:repeat-x;
	background-position:top;
}
.bgheader{
	background-image:url(images/bghead.jpg);
	background-repeat:repeat-x;
	background-position:top;
}
.bgmenu{
	background-image:url(images/bgmenu.jpg);
	background-repeat:repeat-x;
	background-position:top;
	background-color:#005a0e;
}
.colornav{
	background-color:#7fb702;
}

.dashView {
    padding: 10px;
}

.header {
  padding: 5px;
  text-align: center;
  background: #3063A5;
  color: white;
  font-size: 24px;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 12px 8px;
  text-decoration: none;
  font-size: 16px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 8px;
}

.col-25 {
  float: left;
  width: 15%;
  margin-top: 5px;
}

.col-75 {
  float: left;
  width: 50%;
  margin-top: 5px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
  padding: 10px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

* {
  box-sizing: border-box;
}


input[type=text], select, textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size:100%;
  background-color: white;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: green;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  font-size:100%;
  min-width: 150px;
}

input[type=submit]:hover {
  background-color: #45a049;
}

