#overlayTocIDs {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 33%; /* 33% width  */
    /*height: 100%; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(245,245,245,0.9); /* Grey background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
/*     overflow: scroll; */
    overflow-x: hidden; 
    overflow-y: scroll;
    height: 100%;
  }

  #overlayTocIDs h2 {
    /*text-align: center;
    padding: 30px;*/
    font-size: 1.3rem;
    color: #c26c6e;
    margin-bottom: 20px;
    text-align: center;
    padding-top: 20px;
    text-transform: uppercase;
  }
  
  #overlayTocIDs ul {
    list-style-type:none;
  }

  ::-webkit-scrollbar {
    display: none;
	}

/* tutti i device mobili fino a ipad portrait */	
@media only screen  and (max-width : 1023px) {
	#overlayTocIDs {
		width: 100%;
	}
}