#lightbox {
	position: absolute;
	top: 0;
	left: 50%;
	max-width: 500px;
	margin-left: -250px;
	background: #f5f5f5;
	z-index: 1001;
	display: none;
	height:auto;
	padding:20px;
	border-radius:5px;
	box-shadow:0px 2px 10px #000
	
}
#lightbox-shadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
	z-index: 1000;
	display: none;
}

#lightbox p{
	color: #000;
	font-size: 16px;
	

}

#lightbox h4{
	margin: 0 auto;
}

#lightbox img{
	margin: 0 auto;
	

}

@media only screen and (max-width: 560px) {

		#lightbox{
			left: 7%;
			margin-left:0;
			max-width:230px;
			margin-bottom:25%;
}			

	#lightbox img {

    max-width:50px;
}
		
		}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {


		#lightbox{
			left: 0%;
			margin-left:0;
}			
		
		}