*{
  box-sizing: border-box;
  font:12px 'Open Sans', sans-serif;
}
div {
max-width: 600px;
margin: 0 auto;
align-content: center;
font:12px 'Open Sans', sans-serif;
}

h2 {font-family: Verdana, Geneva, sans-serif;
   font-size: 20px;   }

input[type=text],[type=password],[type=email], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}


img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}
input[type=button] {
    background-color: rgb(0,110,199);
    color: white;
    font:14px 'Open Sans', sans-serif;
    /* ... other rules ... */
    cursor:pointer;
	text-align: center;
	padding: 6px;
    cursor: pointer;
    border: none;
    margin-top: 10px;
	text-transform: uppercase;
	text-decoration: none;
	width: 100%;
}

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

input[type=submit],[type=reset] {
  background-color: rgb(0,110,199);
  color: white;
  padding: 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font:14px 'Open Sans', sans-serif; 
  margin-top: 10px;
  width: 100%;
 }

.btn {
  display: inline-block;
  padding: 3px 6px;
  background-color: #444;
  color: #FFF;
  border: 1px solid #222;
  border-radius: 3px;
  text-decoration: none;
  font-family: arial, verdana, sans-serif;
  font-size: 12px;
  cursor: pointer;
}


.container {
  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;
}

.table-container {
  width: 100%;
  overflow-x: auto;
}


table.paleBlueRows {
  font-family: Verdana, Geneva, sans-serif;
  border: 1px solid #FFFFFF;
  border-collapse: collapse;
}
table.paleBlueRows td, table.paleBlueRows th {
  border: 1px solid #FFFFFF;
  padding: 3px 2px;
}
table.paleBlueRows tbody td {
  font-size: 13px;
}
table.paleBlueRows tr:nth-child(even) {
  background: #D0E4F5;
}
table.paleBlueRows thead {
  background: rgb(0,110,199);
  border-bottom: 5px solid #FFFFFF;
}
table.paleBlueRows thead th {
  font-size: 17px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  border-left: 2px solid #FFFFFF;
}
table.paleBlueRows thead th:first-child {
  border-left: none;
}

table.paleBlueRows tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  background: #D0E4F5;
  border-top: 3px solid #444444;
}
table.paleBlueRows tfoot td {
  font-size: 14px;
}






/* 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;
  }
}