.showing{
  display: block;
  }

.hiding{
  display: none;
  }

/* *?* SMALL SECTIONS ** */

section.detail_container{
	display: grid;
	grid-template-columns: 33% 33% 33%;
	grid-gap: 0px;
	justify-content: center;
	padding: 3px 0;
	}	

div.detail_txt{
  position: relative;
	padding: 3px 0px 12px 3px;
  border: 1px solid #cccccc;
  }

.detail_title{  /*Also has the <h3> style in text_style.css */
  margin: 3px 3px;
  }

.detail_description{  /* also has the <p> style in text_style.css */
  margin-top: 2px;
  }

.detail_link_container{
  margin-left: 10px;
  padding: 3px;
  }

picture.frame{
	min-width: 156px;
  padding: 3px;
  }

img.gallery_img{
	width: 100%;
  height: 100%;
  cursor: pointer;  
  filter: grayscale(33%);
  }

img.gallery_img:hover{
  filter: grayscale(0%);
  box-shadow: 1px 2px 5px #999999, 1px 1px 1px #333333;
  }
  
img.gallery_lang{
  width: 50%;
  height: 50%;
  display: block;
  margin: 25% auto;
  }