/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image: url(../images/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:400px;		
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:11px;
}

/* default close button positioned on upper right corner */
.apple_overlay div.close {
	background-image:url(../images/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}


div#friend_frm {
	float: left;
	display: inline;
	margin: 10px 0px 0px 30px;
	}
	
div#friend_frm h1 {
	color: #001944;
	font-size: 20px;
	font-weight: lighter;
	margin-bottom: 10px;
	display: block;
	}	
	
#friend_frm big { margin-bottom: 10px; font-size: 20px; font-weight: bold; color: #001944; display: block; }
	

	
	
	
div#friend_frm label {
	color: #001944;
	margin-bottom: 0px;
	}
	
div#friend_frm input {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-color: #001944;
	background: #001944;
	border-width: 2px;
	padding: 5px;
	color: #fdb813;
	margin-bottom: 10px;
	width: 300px;
	} 
	
div#friend_frm input.button {
	background: #001944;
	color: #fdb813;
	width: 80px;
	}
	
.red {
	color: #FF0000;
	}		
	