<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Structure*/

.galleryDateHeader {
  width: 100%;
  line-height: 30px;
  padding: 5px;
  height: 30px;
  color: white;
}

.galleryHolder {
  padding: 0px 5px 0px 5px;
  display: flex;
  flex-wrap: wrap;
  background-color: #2b2b2b;
}

.galleryBlockA {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  position:relative;
}

.galleryBlockB {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
}

.galleryBlockBInner {
  width: 100%;
}

.galleryBlockC {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  height: 180px;
}

.galleryItem {
  margin: 2px;
  position:relative;
}

.galleryItemFill {
  margin: 2px;
  position:relative;
}
.profileThumbnail{
    float: left;
    padding: 2px;
    }
    
.galleryItemInfo {
  text-align: center;
  position: absolute;
  z-index: 100;
  bottom: 0px;
  left:0px;
  right:0px;
  width:100%;
  background-color:rgba(0, 0, 0, 0.7);
  color:white;
  margin:0px 2px 2px 2px;
  padding:7px 7px 7px -10px;
  
}

/*Image Format*/

.galleryHolder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
}

.galleryItemFill img {
  height: 100%;
  display: block;
  object-fit: cover;
  z-index: 1;
}



/* MOBILE*/
@media only screen and (max-width: 500px) {
  .galleryBlockA {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .galleryBlockB {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .galleryBlockC {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}</pre></body></html>