@charset "utf-8";
/* CSS Document */

  body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  .bd {
    background-color: #FFFFFF;
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  .tbl {
    background-color: #DEE7DE;
  }
  a:link { 
    background-color: #FFFFFF01;
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  a:active { 
    background-color: #FFFFFF01;
    color: #DC143C;
    font-family: sans-serif;
    font-size: 12px;
  }
  a:visited { 
    background-color: #FFFFFF01;
    color: #800080;
    font-family: sans-serif;
    font-size: 12px;
  }
  .hr {
     background-color:#EAEAEA;
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  a.hr:link {
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  a.hr:active {
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  a.hr:visited {
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  .dr {
    background-color: #FFFFFF01;
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  .sr {
    background-color: #FFFBF0;
    color: #000000;
    font-family: sans-serif;
    font-size: 12px;
  }
  .alert
	{
    font-size: 1.3em;
	background-color: #FFFBF0;
    padding: 1em;
    text-align: center;
    white-space: nowrap;
    width: auto;
    word-wrap: normal;
	}
	* {
  box-sizing: border-box;
}
/*start of mobileres */
input[type=text], select, textarea,file {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=password] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit],button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
.div {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Style the buttons inside the tab */
.tab label {
  background-color: #4CAF50;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 12px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab label:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab label.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* 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: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}