/* CSS Document */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: linear-gradient(180deg, #FFF 10%,  #6b8c61);
	margin: 0;
	background-color: #FFF;
}

/* link styles */

a {
	text-decoration: none;
	padding-bottom: .1em;
}
a:link {
	color: #4fa1bd;
  }
a:visited {
	color: #003399;
  }
a:focus {
	color: #CCCCCC;
}
a:hover {
    color: #CCCCCC;
  }
a:active {
	color:#4fa1bd;
}


/* styles for the header */
#header{
	text-align: center;
	margin: 1em 0 1em;
	background-color: white;
}

#header img {
  border-radius: 15px;
}

/* styles for nav */
#nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

#nav li {
  float: left;
  border-right:1px solid #bbb;
}

#nav li:last-child {
  border-right: none;
}

#nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#nav li a:hover:not(.active) {
  background-color: #111;
}

#nav .active {
  background-color: #4CAF50;
}

#content {
  position: relative;
}


/* styles for the main section */

#main {
	background-color: #FFFFFF;
	
	line-height: 1.5em;
	padding: 1em 2%;
	border-radius: 20px;
	border: double #4fa1bd;
	margin: 1em 19em 1em 1em;
	clear: both;
	overflow: hidden;
  }

#main h2 {
	font-size: 1.2em;
	color: #6b8c61;
	text-align: center;
	text-transform: uppercase;
	text-shadow: .2em .2em .2em silver;
  }
#main h3 {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #4fa1bd;
  border-bottom: 1px solid;
  margin-top: 2.5em;
}

#main h4 {
	color: #6b8c61;
	}
#main em {
	color: #4fa1bd;
	text-shadow: .2em .2em .2em silver;
	text-align: center;
	}

#main img {
  float: left;
  margin: 0 8px 6px 0;
}

#main p {
	overflow: hidden;
	
	}
	
#main .more {
  clear: left;
}


/* styles for the sidebar */

#sidebar {
	background: #FFFFFF;
	border: double #4fa1bd;
	font-size: 0.875em;
	line-height: 1.5;
	padding: 1em;
	padding-left: 30px;
	border-radius: 20px;
	margin: 0 1em;
	position: absolute;
	top: 0;
	right: 0;
	width: 16em;
  }
  
#sidebar h2 {
	font-size: 1em;
	text-transform: uppercase;
	color: #6b8c61;
	text-shadow: .2em .2em .2em silver;
  }
  
  
/* styles for the tables */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }

/* styles for the footer */
#footer p {
	color: #fff;
	font-size: 0.6em;
	text-align: center;
  }

/* styles for the old logo */
#old {
  position: fixed;
  top: 10px;
  left: 10px;
}


/* styles for the forms */
input[type="email"],
input[type="text"],
input[type="tel"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }

/* styles for the buttons */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }

