/* 
 ************************************************** 
 * EMHS Custom CSS
 */

/* detail/summary stuff */
details{
  margin-bottom: 18px;
}

summary {
  font-weight: bold; 
  font-size: 1.4em; 
  list-style: none;
  display: flex;
  cursor: pointer;
}

sdummary::-webkit-details-marker {
  display: none;
}

summary:before{
  content: "\002B";
  margin-right: 5px;
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}

details[open] summary:before{
  content: "\00D7";
}

details[open] div{

}

/* embed images */

.imgRightMed img {
  float: right;
  width: 400px;
}