/* the overlayed element */
div.overlay {
	background-image:url('images/overlay/white.png');	/* growing background image */
	width:600px;	                                    /* dimensions after the growing animation finishes  */
	height:470px;		
	display:none;	                                    /* initially overlay is hidden */
	padding:55px;	                                    /* some padding to layout nested elements nicely  */
}

/* FOM customisation for contact us popup */
#contactform {
    background-image:url('images/overlay/white-contact.png');
    width:420px;
	height:350px;
}

#contactfriendform {
    background-image:url('images/overlay/white-friend.png');
    width:420px;
	height:430px;
}

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

/* use a semi-transparent image for the overlay
#overlay {
	background-image:url('images/overlay/transparent.png');
	color:#efefef;
}*/

/* container for external content. uses vertical scrollbar, if needed */
div.wrap {
	height:441px;
	overflow-y:auto;
}