@charset "utf-8";
/*just for gallery styling, not actual core CSS*/



/***********************GALLERY STYLING*****************/



.gallery > ul {margin-bottom: 0; padding-left: 15px;}
.gallery.floatRT > ul  {display: block; position: relative; float: right; padding-left: 15px;} 
.gallery.floatCNTR > ul  {padding-left: 50px;} 


.gallery > ul > li {
    display: inline-block;
    margin-right: 0px;
    border: 7px solid #FFF;
    border-radius: 0px;
    margin-bottom: 0px;
    contain: content;
    list-style: outside none none;
    background-color: #000000;
    box-shadow: 2px 2px 6px #CCCCCC;}

.gallery.small ul > li {width: 130px; height: 80px;}
.gallery.medium ul > li {width: 180px; height: 120px;}
.gallery.large ul > li {width: 280px; height: 180px;}
.gallery.Xlarge ul > li {width: 380px; height: 240px;}
.gallery.XXlarge ul > li {width: 500px; height: auto;}
.gallery.XXXlarge ul > li {width: 85%; height: auto;}
/*if need custom sizes, add width="___px" to HTML instead*/
.gallery.custom ul > li {}







.gallery > ul > li a {
    display: block;
    overflow: hidden;
    position: relative;
    float: left;
    width: 100%}


.gallery > ul > li a > img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
    align-items: center;
    align-content: center;}

.gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);}

.gallery > ul > li a:hover .gallery-poster > img {
  opacity: 1;}




/*******poster, not used? *******/
.gallery > ul > li a .gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;}

.gallery > ul > li a .gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;}

.gallery > ul > li a:hover .gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);}




/********justified, not currenlty used
.gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;}

.gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);}

.gallery .justified-gallery > a:hover .gallery-poster > img {
  opacity: 1;}

.gallery .justified-gallery > a .gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;}

.gallery .justified-gallery > a .gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;}

.gallery .justified-gallery > a:hover .gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);}
********/




/*********Play Icon for Videos**************/
.gallery .gallery-poster img.gallery-play-icon {
    height: 48px;
    margin-left: 0px;
    margin-top: 0px;
    opacity: 1;
    width: 48px;    
    top: 6px;
    left: 6px;}

.gallery.dark > ul > li a {
  border: 3px solid #04070a;}

