﻿
/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background-image:url(/images/overlay/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:480px;	
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:11px;
	
	text-align:left;
	
}

.apple_overlay input.tbox
{
    background-color : Transparent;
    background-image:url('.');
    border-color : #777777;
    border-width : 0 0 1px 0;
    width: 450px;
}

.apple_overlay textarea
{
    background-color : Transparent;
    background-image:url('.');
    border-color : #777777;
    border-width : 1px;
    overflow:hidden;
    overflow-y: hidden;
    overflow-x: hidden; 
    line-height: 18px;
    height: 150px;
    width : 450px;
}


.apple_overlay h2 
{
	text-align:left;
}

/* default close button positioned on upper right corner */
.apple_overlay div.close {
	background-image:url(/images/overlay/close.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

