
.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
                  overflow:scroll;
	position: fixed;
	z-index: 1500;
	width: 100%;
	height: 100%;
	text-align: center;
    color: beige;
    font-size: 1em;
	padding-top: ;
    line-height: ;
  list-style: none;
    text-decoration: none;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
                 
                
}



.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
}


.lightbox ul {
	   
        
                -webkit-transition: all 1s;
                -moz-transition: all 1s;
}

.lightbox li {
	     line-height: 1;
                background: rgba(255,18,0,0.4);
                text-decoration: none;
                margin: 0 0 10px 0;
                padding: 0.8px 9px;
                transition: all 1s;
                -webkit-transition: all 1s;
                -moz-transition: all 1s;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}