  
  .lgContainer
  {
      white-space: nowrap;   /*Prevents Wrapping*/
      overflow-x: scroll;
      overflow-y: hidden;
  }
  
  .lgSlide
  {
      display: inline-block; /*Display inline and maintain block characteristics.*/
      vertical-align: top;   /*Makes sure all the divs are correctly aligned.*/
      white-space: normal;   /*Prevents child elements from inheriting nowrap.*/
      margin: 4px;
  }
  
  /* The Modal (background) */
  .lgModal
  {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .lgModal-content
  {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;

  }
