/* unvisited link */
a:link {
  color: white;
  text-decoration: none;
  height: 42px;
  font-family: Arial;
  font-size: 21px;
}

/* visited link */
a:visited {
  color: white;
  text-decoration: none;
  height: 42px;
  font-family: Arial;
  font-size: 21px;
}

/* mouse over link */
a:hover {
  color: hotpink;
  text-decoration: none;
  height: 42px;
  font-family: Arial;
  font-size: 21px;
}

/* selected link */
a:active {
  color: yellow;
  text-decoration: none;
  height: 42px;
  font-family: Arial;
  font-size: 21px;
}

selection {
  height: 42px;
  font-family: Arial;
  font-size: 21px;
  background-color: white;
  color: green;
}

select option[data-default] {
  color: green;
} 
option {
  height: 42px;
  font-family: Arial;
  font-size: 21px;
  background-color: white;
  color: green;
}

option:checked {
    color: green;
    font-size: 21px;
}

textarea {
  font-family: Arial;
  font-size: 27px;
}

input[type="checkbox"]{
  width: 33px; /*Desired width*/
  height: 33px; /*Desired height*/
}

input[type="submit"]{
  font-family: Arial;
  font-size: 27px;
}

p, label {
  font-family: Arial;
  font-size: 21px;
}

label2 {
  font-family: Arial;
  font-size: 18px;
}

label3 {
  font-family: Arial;
  font-size: 21px;
  color: white
}

input[type=text] {
    height: 50px;
    position: relative;
    left: 0;
    font-family: Arial;
    font-size: 24px;
}

/*
input[type=text] {
    padding: 0;
    height: 30px;
    position: relative;
    left: 0;
    outline: none;
    border: 1px solid #cdcdcd;
    border-color: rgba(0,0,0,.15);
    background-color: white;
    font-family: Arial;
    font-size: 27px;
}
*/
/*
.styled-select.slate {
   background: "arrow.jpg" no-repeat right center;
   height: 34px;
   width: 240px;
}
*/
.styled-select.datemonth select {
   border: 1px solid #ccc;
   font-family: Arial;
   font-size: 21px;
   color: black;
   height: 34px;
   width: 170px;
}

.styled-select.dateday select {
   border: 1px solid #ccc;
   font-family: Arial;
   font-size: 21px;
   color: black;
   height: 34px;
   width: 80px;
}

.styled-select.dateyear select {
   border: 1px solid #ccc;
   font-family: Arial;
   font-size: 21px;
   color: black;
   height: 34px;
   width: 90px;
}

.styled-select.hostnumber select {
   border: 1px solid #ccc;
   font-family: Arial;
   font-size: 21px;
   color: black;
   height: 34px;
   width: 220px;
}

/*************************** Calendar Top Navigation **************************/
#calendar {
  margin: 0px auto;
  padding: 0px;
  width: 602px;
  font-family: Helvetica, "Times New Roman", Times, serif;
}
#calendar .calendar_box {
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 40px;
  background-color: #787878;
}
#calendar .calendar_header {
  line-height: 40px;  
  vertical-align: middle;
  position: absolute;
  left: 11px;
  top: 0px;
  width: 582px;
  height: 40px;
  text-align: center;
}
#calendar .calendar_header .calendar_prev, #calendar .calendar_header .calendar_next {
  position: absolute;
  top: 0px;
  height: 17px;
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: #FFF;
}
#calendar .calendar_header .calendar_title {
  color: #FFF;
  font-size: 18px;
}
#calendar .calendar_header .calendar_prev {
  left: 0px;
}
#calendar .calendar_header .calendar_next {
  right: 0px;
}
/*************************** Calendar Content Cells ***************************/
#calendar .calendar_content {
  border: 1px solid #787878;
  border-top: none;
}
#calendar .calendar_label {
  float: left;
  margin: 0px;
  padding: 0px;
  margin-top: 5px;
  margin-left: 5px;
}
#calendar .calendar_label .calendar_names {
  margin: 0px;
  padding: 0px;
  margin-right: 5px;
  float: left;
  list-style-type: none;
  width: 80px;
  height: 40px;
  line-height: 40px;
  vertical-align: middle;
  text-align: center;
  color: #000;
  font-size: 15px;
  background-color: transparent;
}
#calendar .calendar_dates {
  float: left;
  margin: 0px;
  padding: 0px;
  margin-left: 5px;
  margin-bottom: 5px;
}
/** overall width = width+padding-right **/
#calendar .calendar_dates .calendar_names, #calendar .calendar_dates .calendar_days, #calendar .calendar_dates .calendar_today {
  margin: 0px;
  padding: 0px;
  margin-right: 5px;
  margin-top: 5px;
  line-height: 80px;
  vertical-align: middle;
  float: left;
  list-style-type: none;
  width: 80px;
  height: 80px;
  font-size: 25px;
  background-color: #DDD;
  color: #000;
  text-align: center;
}
#calendar .calendar_dates .calendar_today {
  background-color: #117711;
}
:focus {
  outline: none;
}
.calendar_clear {
  clear: both;
}