body {margin:20; 
	  background-color:#4CAF50;
	  //background-color:#1abc9c;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    //overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0px;
    left: 0;
    height:46px;
    width:50%;
    z-index:1;
}

li {
    float: left;
        border-right:1px solid #bbb;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    overflow:visible;

}

li a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}



table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    border: 1px solid #000000;
}

td {
    border: 1px solid #000000;
    text-align: left;
    padding: 4px;
}
th {
    border: 1px solid #000000;
    text-align: left;
    padding: 4px;
    background-color: #333;
    color:white;
}

tr:nth-child(even) {
    background-color: #ffffcc /*#dddddd;*/
}
tr:nth-child(odd) {
    background-color: #99ff99 /*#c0c0c0;*/
}
th.center {
	text-align: center;
}
td.center {
	text-align: center;
}
td.left {
	text-align: left;
}
td.right {
    text-align: right;
}
td.padding {
	height: 14px;
}
td.sponsors {
    text-align: center;
    font-size:22px;
    font-weight: bold;
}
table.sponsors {
    font-size:18px;
}
td.notwalking {
    background-color: white;
    color: black;
}
td.walking {
    background-color: #80ff80;
    color: black;
}
td.retired {
    background-color: #ff8080;
    color: black;
}
td.retiredwaiting {
    background-color: #ffff80;
    color: black;
}
td.home {
    background-color: #ffff80;
    color: black;
}
td.finished {
    background-color: #33E0FF; /*0080ff;*/
    color: black;
}
span.completed {
    background-color: #33E0FF; /*#0080ff;*/
    color:black;
}
div.heading {
    color: white;
    margin: 0;
    padding: 0;
    background-color: #333;
    position: fixed;
    top: 0;
    right: 0;
    width:50%;
    height:46px;
    text-align: center;
    border-left:2px solid #bbb;
    z-index:2;

    }
h2 {
    margin:auto;
    line-height:46px;
    vertical-align:middle;
}
h3 {
    margin:auto;
    line-height:25px;
    vertical-align:center;
}
div.footer {
  color:white;
  margin:0;
  position: fixed;
  right: 0;
  bottom: 0;
  width:100%;
  height:25px;
  background-color: #333;
    text-align: center;
}
div.update {
  //border: 5px solid red;
  color:white;
  margin:5;
  position: fixed;
  right: 0;
  top: 46px;
  width:200px;
  height:25px;
  background-color: #333;
    text-align: center;
    font-size:15px
    display:none;
}
div.notes {
  border: 5px solid red;
  color:white;
  margin:0;
  position: fixed;
  left: 0;
  top: 100px;
  width:200px;
  height:550px;
  background-color: #333;
    text-align: center;
    font-size:15px
}
div.welcome {
  color:white;
  position: fixed;
  left:25px;
  top:75px;
    z-index:-1;

}
span.heading {
  border: 3px solid red;
  padding :10px;
color:white;
background-color:#333;
}

h1.welcome {
position: relative; 
   top:10px
   left: 10px; 
   width: 100%;
    font-size:40px;
}
h2.welcome {
position: relative; 
   top:10px
   left: 10px; 
   width: 100%;
    font-size:25px;
}
image.welcome {
    position:relative;
    width:100%
    }

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    font-size:15px
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}