
.grid-container{
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: grid;
    grid-gap: .5rem;
	grid-template-columns: repeat( auto-fill, minmax(120px, 1fr) );
	grid-template-rows: masonry;
	grid-auto-flow: row;
	align-items: center;
	justify-content:center;
/*	background:#081C30;
*/	padding:.5rem;
	box-sizing:border-box;
	

}

  ul > li.level_0 {

  grid-column: span 2;
 }
 

.grid-item{

	text-align:center;
	box-sizing:border-box;
	border:1px solid rgba(242, 241, 239, 1) !important;
	box-shadow: 1px 2px 4px #f2f2f2;

}
.grid-item div{
}
.grid-item:hover{
 	filter: grayscale(100%);
 	background-image: linear-gradient(45deg, #cccccc 25%, transparent 25%) 10px 0, 
 	linear-gradient(45deg, #cccccc 25%, transparent 25%) 10px 0, 
 	linear-gradient(45deg, #cccccc 25%, transparent 25%), 
 	linear-gradient(45deg, #cccccc 25%, transparent 25%);
    background-size: 10px 10px;
    background-color: #f1f1f1;

}


.grid-item > div > a > img{
   height:auto;
   max-height:65px;
   width:auto;
  

 }
 
   ul > li.level_0 > div > a > img{
	 height:auto;
	 max-width:240px;
	 max-height:90px;  
}