
/* the overlayed element */
.overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(images/transparent.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:640px;
	
	color:#FFF;
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

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

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

.contentWrap {
	overflow-y:auto;
	height:500px;
}



.teamOverlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing backgroud image */
	background-image:url(images/white2.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:470px;
	
	color:#FFF;
	
	/* some padding to layout nested elements nicely  */
	padding:30px;

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

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


.teamContentWrap {
	overflow-y:auto;
}
