/*** Menu: includes highlighting which menu item is chosen, as well as Subments ***/
#index #mytopmenu .index, 
#page1 #mytopmenu .page1, 
#page2 #mytopmenu .page2, 
#page3 #mytopmenu .page3, 
#page4 #mytopmenu .page4, 
#page5 #mytopmenu .page5, 
#page5 #mytopmenu .page6, 
#page6 #mytopmenu .page7 
{
  font-weight: bold;
  background-color: #00AAff;
  color: white;
}

/*** responsive Heading ***/
.myheader {
 font-size: min(max(20px, 4vw), 64px);
 white-space: nowrap;
}

/*** Menu Highlight current selection ***/
/*++ Control Width for wide screens ++*/
div.mywidth {
  max-width: 1100px;
  margin: auto;
  Xborder: 3px solid #73AD21;
}
.topnav {
  overflow: hidden;
  background-color: #333;
}

/*++ Begin Responsive Menu ++*/
.topnav a {
  /*  Menu Items, menu bar */
  float: left;
  display: block;
  color: #f2f2f2; /* text color */
  text-align: center;
  padding: 4px 12px; /* Row height, cell spacing */
  text-decoration: none;
  font-size: 16px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #0088FF;
  color: white;
}

.topnav .icon {
  display: none;
}

.sidebar .icon { /* -- PDS 2020-12-04 */
  display: none;
}

.my-bars:before{
 content:"\f0c9"
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .hidewhensmall {
    display: none;
  }
}

/* --- Begin Sidebar Menu --- */
p { /* --- Fixes problem of too much white space when using <p> --- */
  padding: 0px;
  margin: 6px 0 6px 0; /* -- Top Right Bottom Left --- */
}

.sidebar .icon { /* === PDS === */
  display: none;
}

@media screen and (max-width: 600px) {
  .hidewhennarrow {
    display: none;
  }
}
/* --- Sidebar Menu --- */
.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #DDD;
  position: fixed;
  height: 100%;
  overflow: auto;
}
.sidebar a {
  display: block;
  color: black;
  padding: 5px;
  text-decoration: none;
  border-style: dotted;
  border-width: 1px; /* Debug border to visually confirm cell location */
  border-color: black; /* Debug border to visually confirm cell location */
}

.sidebar h1 {
  Xborder: 1px solid red; 
  margin: 3px 0 3px 0;
}
.sidebar a.active {
  background-color: #4CAF50;
  color: white;
}

div.content {
  margin-left: 200px;
  padding: 0 20px 0 20px; /* left and right spacing */
  background-color: #eee; /* === PDS === */
  border-style: dotted;
  border-width: 1px;
}

@media screen and (max-width: 800px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}

@media screen and (max-width: 550px) {  /* === PDS === */
  .sidebar a:not(:first-child) {display: none;} /* === Makes TOPNAV menu disappear === */
  .sidebar a.icon {
    float: right;
    display: block;
  }
  .sidebar a {
    text-align: center;
    float: none;
  }
  .sidebar.responsive {position: relative;}
  .sidebar.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .sidebar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/* --- End Sidebar Menu --- */
/*-- End Responsive Menu --*/
/*** End menu ***/

/*** hide if width too small ***/

