/* CSS Document */


	
.dummy-text {
	width:800px;
	margin: 100px auto;
	}	

.lightbox {
	/** Hide the lightbox */
	display: none;
	
	/** Apply basic lightbox styling */
	position: fixed;
	z-index: 9999;
	width: 90%;
	height: 90%;
	top: 0;
	left: 0;
	color:#333333;
	}

.lightbox:target {
    /** Show lightbox when it is target */
    display: block;
    outline: none;
}

.lightbox .box {
  	width: -webkit-min-content;
  	width: -moz-min-content;
  	width: min-content;
	min-width:70%;
 	margin: 2% auto;
	padding:20px;
	background-color:#FFF;
	box-shadow: 0px 1px 26px -3px #777777;
	max-height: 600px;
	overflow-y: auto ! important; 
	}

.lightbox .title {
	margin:0;
	padding:0 0 10px 0px;
	border-bottom:1px #ccc solid;
	font-size:22px;
	}

.lightbox .content {
	display:block;
	padding:10px 0 0 0px;
	font-size:15px;
	line-height:22px;
	}

.lightbox .close {
	float:right;
	display:block;
	text-decoration:none;
	font-family:'Open Sans', sans-serif;
	font-size:22px;
	color:#01c5de;
	}