/**Notes**/
.greenNote {
  margin-bottom: 15px;
  padding: 4px 12px;
  background-color: #ddffdd;
  border-left: 6px solid #4CAF50;
}

table, th, td {
  margin: auto;
  border: 1px solid #555555;
  border-collapse: collapse;
  padding: 4px;
  border-left: 0px solid;
  border-right: 0px solid;
  color: #FFFFFF;
  width: 100%;
}

td:nth-child(odd) {width: 25%;}
tr:nth-child(odd) {background-color: #111111;}
tr:nth-child(even) {background-color: #101011;}

div.gallery {
    border: 1px solid #ccc;
    margin: 3px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}


  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }