/* the overlayed element */
.apple_overlay {
	
	
	/* initially overlay is hidden */
 	display:none;
	

	/* growing background image */
	background-image:url(../img/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	
	/* some padding to layout nested elements nicely  */
	padding:0px 50px 0px 50px;

	/* a little styling */	
	font-size:11px;
	
}

/* default close button positioned on upper right corner */
.apple_overlay div.close {
	background-image:url(../img/close.png);
	position:absolute; right:10px; top:10px;
	cursor:pointer;
	height:35px;
	width:35px;
}

div.apple_overlay.black {
	background-image:url(../img/transparent.png);		
	color:#fff;
	text-align: center;
}

#overlay_footer {
	margin: 0 auto;
	margin-top: 20px;
	width: 640px;
	text-align: center;
}

#overlay_footer ul {
	margin: 0 auto;
	width: 640px;
	margin-top: 20px;
	
}


#overlay_nav li {
	float: left;
	margin-left: 10px;
	background: red;
}

#overlay_nav li a {
	color: #fff;
}
.pjbullet {
	padding-left: 10px;
	padding-right: 10px;
}


