/* site.css */

html, body {
  padding-top: 20px;
  background: #C5CDD8;
  font-family: Segoe UI, Arial, Helvetica, sans-serif;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0;
  padding: 0;
}

header {
    padding-top: 20px;
    width: auto;
    height: auto;
    text-align: center;
    font-size: 24px; 
    background-position: 100% 100%;
    background-repeat: no-repeat;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    border-radius: 10px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
    margin: 2%;
}

li a {
    float: center;
    color: white;
    text-align: center;
    padding: 14px 16px;
}

.link_button {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: solid 1px #1A4575;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
  background: #3A68A1;
  color: #fee1cc;
  text-decoration: none;
  padding: 8px 12px;
  text-decoration: none;
  font-size: smaller;
  display: inline-block;
}

a:link {
    border: solid 1px firebrick;
    color: white;
    background-color: transparent blue;
}

a:visited {
    color: red;
    background-color: transparent blue;
}

a:hover {
    color: darkgreen;
    background-color: transparent blue;
}

a:active {
    color: yellow;
    background-color: transparent blue;
}

iframe {
    float: right;
    margin: 0 2.5%;
    padding-top: 25px;
}

.text {
  float:left;
  width: 50%;
  margin-top: 2%;
  padding-left: 40px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #727B84;
}

h3 {
  font-size: 28px;
  text-align: left;
}

.text1 {
  float: left;
}

.text2 {
  float: left;
  padding: 5px 30px 30px 25px;
  background-position: 90% 90%;
  background-repeat: no-repeat;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #727B84;
}

.forms {
  padding: 30px 25px 30px 25px;
  margin-top: 17%;
}

.textbox {
  padding: 30px 25px 30px 25px;
  margin-right: 2%;
  float: right;
}

.img {
  margin-top: 10%;
  float: right;
}

.image { 
  text-align: center;
  margin-top: 20%;
  padding: 27px 20px 20px 70px;
}

.main {
  float: inline-block;
  margin-top: 30%;
}

table, td, tr {
  border: hidden;
  padding: 2px 10px 10px 2px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td {
  height: 20px;
  vertical-align: bottom;
}

tr {
  height: 20px;
  vertical-align: bottom;
}

input[type=text], select {
    width: 300px;
    padding: 12px 20px;
    padding-left: 20px;
    margin: 8px 0;
    display: inline;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 300px;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    padding-left: 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

div {
    padding: 20px;
}

.footer {
  padding: 5px 10px 10px 5px;
  text-align: center;
  background-color: #217C74;
  font-size: 16px;
  width: 100%;
}

input.button {
  width: 100px;
  background-color: #4CAF50;
}

.dropdown {
  width: 20px;
}




