/* css settings for accordion, overlay */


/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#FFFFFF;
	height:430px;
	padding:5px 0 10px 0px;
	width:890px;	
	margin: 5px 5px 5px 0;
}

/* accordion header */
#accordion span img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
}

/* currently active header */
#accordion span img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
}

#accordion p img {
	float:none;
	margin:10px 10px 10px 0;			
}


/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
#accordion div {
	width:0px;
	float:left;	
	display:none;		
	margin-right:10px;
	padding-right: 12px;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#444;
	margin:0 0 -5px 0;
	width:260px;
	font-size:15px;	
}

#accordion div h4 {
	color:#666;
	margin:0 0 -5px 0;
	width:260px;
	font-size:13px;	
}
	
#accordion div p {	
	font-size:12px;
	width:260px;
	color: #666;
	
}


	
#overlay {
		background-image:url(../img/transparent.png);
		color:#efefef;
		height:515px;
	}
	
/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:95%;
	overflow-y:auto;
	padding:0 10px 0 0px;
	font-size: 12.5px;
}

div.contentWrap h3 {
	font-size: 15px;
}

div.contentWrap h4 {
	font-size: 13px;
}

div.contentWrap li {
	list-style: none;
	margin-bottom: 3px;
}

div.contentWrap img{
	padding: 3px;
	border:solid #444 1px;
	float:none;
}

.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
	*/
	width:650px;		
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

}

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