@charset "utf-8";
/* CSS Document */ 

input[type=text] {
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 30px;
  box-sizing: border-box;
  border: 2px solid red;
  border-radius: 4px;
}
input[type=password] {
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 30px;
  box-sizing: border-box;
  border: 2px solid red;
  border-radius: 4px;
}
input[type=tel] {
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 30px;
  box-sizing: border-box;
  border: 2px solid red;
  border-radius: 4px;
}
input[type=email] {
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 30px;
  box-sizing: border-box;
  border: 2px solid red;
  border-radius: 4px;
}

.button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.myselect {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 30px;
  margin: 4px 2px;
  cursor: pointer;
}

.bigOption {
	font-size: 30px;
}

.thick {
	font-weight: bold;
}

.bigblue {
	color: Blue;
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 60px;
}

.lgreen {
	color: Red;
	text-align: center;
}

.switch {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

body {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 30px;
  color: blue;
  background-color: greenyellow;
}

table, th, td {
  border: 1px solid black;
}

th, td {
  padding: 5px;
}

td {
  text-align: center;
  font-size: 30px;
}

.callcard {
font-family: Verdana, Geneva, sans-serif;
font-size: 30px;
margin-top: 10px;
width: 100%;
margin: auto;
}

#pageContent {
font-family: Verdana, Geneva, sans-serif;
font-size: 12px;
margin-top: 10px;
margin-left: 50px;
width: 800px;
height: 700px;
display: block;
}

#pageContent2 {
font-family: Verdana, Geneva, sans-serif;
font-style: italic;
font-size: 12px;
margin-top: 10px;
margin-left: 50px;
width: 800px;
height: 700px;
display: block;
}


.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

.red {
	color: red;
}
