/* dot=class, hash=id */

body {
  font-family: verdana, sans-serif;
  text-align: left;
  padding: 10px 0;
  color: rgb(75, 75, 75);
}
img {
  /* resize foreground pictures to fit a mobile screen with CSS */
  width: auto ;
  max-width: 100% ;
  height: auto ;
}

/* PAGE SECTIONs */
#pageLeft {
  width: 60px;
  float: left;
  padding: 2px 15px;
}
#pageMiddle {
  width: 780px; /* Account for margins + border values */
  float: left;
  padding: 5px 15px;
  margin: 0px 5px 5px 5px;
}

/* ICON-BAR */
.icon-bar {
    width: 60px;
}
.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: CadetBlue;
    font-size: 20px;
}
.icon-bar a:hover {
    background-color: #1d2f30;
}
.icon-bar button {
    display: block;
    text-align: center;
    padding: 3px 14px 3px 14px;
    color: CadetBlue;
    font-size: 20px;  
}

/* HORIZONTAL TAB */
.tab {
  white-space:pre;
  /* Use this to insert tab: <span class="tab">&#9;</span> */
}


/* TOP Tooltip */
.ttooltip {
    position: relative;
    display: inline-block;
}

.ttooltip .ttooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
}

.ttooltip:hover .ttooltiptext {
    visibility: visible;
    opacity: 1;
}



/* BOTTOM Tooltip */
.btooltip {
    position: relative;
    display: inline-block;
}

.btooltip .btooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
}

.btooltip:hover .btooltiptext {
    visibility: visible;
    opacity: 1;
}



/* RIGHT Tooltip */
.rtooltip {
    position: relative;
    display: inline-block;
}

.rtooltip .rtooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: green;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 20px 5px;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;


    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
}

.rtooltip:hover .rtooltiptext {
    visibility: visible;
    opacity: 1;
}


/* TABLES */
table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(odd) {
    /*background-color: #dfebec;*/
    background-color: #E0F8F1;
}
tr:nth-child(even) {
    /*background-color: #cfe2e2; */
    background-color: #EFFBF8;
}
