body {
  color: #0d5748;
  font-family: Times, "Times New Roman", serif;
}

header img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 0px 20px 0px;
}

h1 {
  color: #0d5748;
  text-align: center;
  font-size: 36pt;
  margin: auto;
}

h2 {
  color: #0d5748;
  text-align: center;
  font-size: 24pt;
  margin: auto;
}

h3 {
  color: #0d5748;
  font-size: 18pt;
  margin-left: 10%;
}

h4 {
  color: #0d5748;
  font-size: 18pt;
  margin-left: 13%;
}

#PageClock {
  color: #0d5748;
  font-size: 26pt;
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 70%;
  margin: auto;
}

table td, table th {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

table tr:nth-child(even){background-color: #f2f2f2;}

table tr:hover {background-color: #ddd;}

table th {
  padding-top: 7px;
  padding-bottom: 7px;
  background-color: #0d5748;
  color: white;
  font-size: 16pt;
}


.converter table {
  border-collapse: collapse;
  width: 50%;
  margin: auto;
}

.converter table td, table th {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.converter table tr:nth-child(even){background-color: #f2f2f2;}

.converter table tr:hover {background-color: #ddd;}

.converter table th {
  padding-top: 7px;
  padding-bottom: 7px;
  background-color: #0d5748;
  color: white;
  font-size: 16pt;
}


#topPage {
position: fixed;
background-color: white;
z-index: 10;
width: 100%;
}

.topnav {
  background-color: #0d5748;
  text-align: center;
  margin: 20px auto auto auto;
  width: 70%;
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  font-size: 18pt;
  padding: 0px 10px 0px 10px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

div.element img {
  background-color: #0d5748;
}

footer p {
  text-align: center;
}
ol {
  background: #baebbe;
  padding: 20px 30px 20px 40px;
  width: 35%;
  margin-left: 15%;
}

ul {
  background: #baebbe;
  padding: 20px 30px 20px 40px;
  width: 35%;
  margin-left: 15%;
}



/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #0d5748;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#lucky {
  display: block;
  background-color: #0d5748;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  margin: auto;
  cursor: pointer;
}

#formbuttons {
  text-align: center;
}

input[type=reset] {
  background-color: #0d5748;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Add a background color and some padding around the form */
.contactform {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  width: 70%;
  margin: auto;
}

.radiocontainer {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
}

/* Hide the browser's default radio button */
.radiocontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0px;
  left: 16px;
  height: 15px;
  width: 15px;
  background-color: white;
  border-radius: 50%;
  border-color: #0d5748;
  border: 1px solid;
}


/* When the radio button is checked, add a blue background */
.radiocontainer input:checked ~ .radiomark {
  background-color: #0d5748;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiocontainer input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radiocontainer .radiomark:after {
 	top: 5px;
	left: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: white;
}
 .radiochoice {
    margin-top: 10px;
 }



/* The checkbox  container */
.checkboxcontainer {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
}

/* Hide the browser's default checkbox */
.checkboxcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 12px;
  height: 15px;
  width: 15px;
  background-color: white;
  border-color: #0d5748;
  border: 1px solid;

}


/* When the checkbox is checked, add a blue background */
.checkboxcontainer input:checked ~ .checkmark {
  background-color: #0d5748;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxcontainer .checkmark:after {
  left: 4px;
  top: 0px;
  width: 4px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
 .checkchoice {
    margin-top: 10px;
 }

