img.frame {
  border: 2px solid white;
}

img.grayscale {
  border: 2px solid white;
  filter: gray; /* IE6-9 */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
}

/* Disable grayscale on hover */
img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}

.member {
    font-weight: bold;
}

.fade {
    opacity: 1;
    visibility: visible;

    border: solid thick red;
    width: 50%;

    font-family: arial;

/*    transition: visibility 2s, border 2s, display 2s; */
    transition: visibility 2s;
    transition: opacity 2s;
}

/* Member page side navigation */
.sidenav {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
/*    background-color: #111; */
    overflow-x: hidden;
/*    padding-top: 20px; */
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
/*  color: #818181; */
  color: #000000;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
/*  color: #f1f1f1; */
  color: #0000f1;
}

/* Add an active class to the active dropdown button */
.active {
/*  background-color: green; */
/*  color: white; */
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
/*  background-color: #262626; */
  opacity: 10%;
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-right {
    display: inline-block;
    width: 0.75em;
    text-align: left;
}
.fa-caret-down {
    display: inline-block;
    width: 0.75em;
    text-align: left;
}
.fa-plus-square {
    display: inline-block;
    width: 1em;
    text-align: left;
}
.fa-minus-square {
    display: inline-block;
    width: 1em;
    text-align: left;
}
.icon-active {
    display: inline-block;
}
.icon-hidden {
    display: none;
}
