/* Comment */


a:hover {color: coral;}

a {
color: blue;
line-height: 120%;
font-size: 1.2em;
text-decoration: none;
}

body {
background-color: LightYellow;
text-align: left;
margin-left: 2%;
padding: 0;
font-size: 2vw;
width: 100%;
}

.checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.container {
max-width: 100%;
margin: 2px;
text-align: left;
background-color: #C1E1C1;
}

.ed{
font-size: 1.5em;
}

footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
font-weight: normal;
font-size: 0.5em;
color: red;
}

header {
  position: sticky;
  top:0;
  padding:4px;
  background: lightblue;
  text-align: center;
}

h4 {
color: navy;
font-size: 1.2em;
}

/* input */    
input[type=text] {
font-size: 1.0em;
padding: 0;
margin: 0;
}
input[type="submit"], input[type="reset"], input[type="report"] {
margin-bottom: 2px;
width: 5em;  
height: 3em;
}
input[type="radio"] {
margin-bottom: 2px;
width: 1em;  
height: 1em;
}
input[type="submit"] {background-color: green;}
input[type="reset"] {background-color: red;}
input[type="report"] {background-color: yellow;}

textarea {
max-width: 100%;
height: 150px;
}
.userInput {
font-size: 1.5em;
margin: 0px;
padding: 0px;
width: 100%;
resize: none;
}
/* end of input */ 

/* keyframes */
#duck {
  width: 200px;
  font-size: 2em;
  position: relative;
  animation-timing-function: linear;
  animation-name: duck;
  animation-duration: 50s;
  animation-iteration-count: infinite;
}
#lake {
left: -10%;
  width: 110%;
  background-color: lightblue;
}
@keyframes duck {
  0%   {left: 110%;}
  100%  {left: -40%;}
}
/* end of keyframes */


#link {
font-size: 1.0em;
width: 100%;
background-color: LightGreen;
height: 50px;
}

.list {
  line-height: 1.5em;
  font-size: 1.5em;
}

.lw::before {
  font-weight: bold;
  color: navy;
  content: "Live well ";
}


/* Messages. The next two are for message boxes: */
.box{
background-color: MintCream;
font-size: 1.0em;
display: none;
width: 100%;
}
#inf:hover + .box,.box:hover{
    display: block;
    position: relative;
    z-index: 100;
}
/* end of message boxes: */

p {
color: black;
line-height: 100%;
font-size: 1.0em;
width: 100%;
display: inline-block;
}

.page {background-color: Lavender;}

.plist {
color: black;
line-height: 100%;
font-size: 1.0em;
border-style: solid;
border-width: 0;
}

select, input, option {
width: 100%;
margin-left: 10px;
line-height: 1.2;
font-size: 1.0em;
color: black;
}

.select-block {
width: 100%;
margin: 0px;
position: relative;
}

select {
color: black;
}

/* Table formatting */
table {
background-color:PapayaWhip;
border-spacing: 0px;
table-layout: fixed;
margin-left:auto;
margin-right:auto;
width: 100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
font-size: 1.0em;
}
th, td {
word-wrap: break-word;
}
th {
   top: 0;
   position: sticky;
}
/* end of table formatting */





/* For IE <= 11 
select::-ms-expand {
display: none;
}
select:hover,
select:focus {
color: #000000;
background-color: #90EE90;
*/
