/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	top:325px;
	left:715px;
	width:230px;		
	
	/* some padding to layout nested elements nicely  */
	padding:25px;

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

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

div.apple_overlay h2 {
	margin:-5px 0 10px 0;
	font-weight:bold;
	font-size:14px;
}	


/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#333 url(h300.png) 0 0;
	width: 100%;
       border:1px solid #999;	
	-background:#999;
}

/* accordion header */
#accordion h2 {
	background:#ccc url(h30.png);
	margin:0;
	padding:4px 10px;
	font-size:12px;
	font-weight:normal;
	border:1px solid #999;
	border-bottom:1px solid #999;
	cursor:pointer;		
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#fff;
}

/* accordion pane */
#accordion .pane {
	border:1px solid #fff;
	border-width:0px 0px;
	display:none;
	height:80px;
	padding:5px 10px;
	color:#fff;
	font-size:12px;
}

/* a title inside pane */
#accordion .pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:12px;
	color:#999;
}

