/** LIGHTBOX MARKUP **/

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position:absolute;
	z-index: 999;
	width:550px;
	height: 100%;
	overflow:auto;
	text-align: center;
	top:0;left:0;
	font-family: 'Antic', sans-serif;
	background-color:rgba(250,250,250,1);
	text-decoration:none;
	
	
}


.lightbox img {
	/** Pad the lightbox image */
	max-width:100%;
	margin-top: 0;
	margin-right:0;
	margin-left:0;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}

.lightbox a {
	/** Pad the lightbox image */
	text-decoration:none;
	border:none;
	color:#FFF;
	padding:20px;
}


.lightbox h3 {
	/** Pad the lightbox image */
	font-family: 'Allura', cursive;
 font-size:3em;
 color:#333;
 text-decoration:none;
 text-align:center;
}

.lightbox h4 {
	/** Pad the lightbox image */
	font-family: 'Allura', cursive;
 font-size:2em;
 color:#b5987e;
 text-decoration:none;
 border:none;
 text-align:center;
}

.lightbox table tr td{
	text-align:left;
	color:#b5987e;
	font-size:14px;
}

.lightbox table tr td.junior{
	padding-left:50px;
	color:#b5987e;
	width:100px;
	
}

.lightbox table tr td.senior{
	padding-left:5px;
	color:#b5987e;
	
}

.lightbox table tr td.mega{
	padding-left:5px;
	color:#b5987e;
	
}

.lightbox table tr td span{
	text-transform:uppercase;
	color:#333;
	font-size:16px;
}

.lightbox ul{
	list-style:none;
	
}



_____________

