/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(../images/white.gif);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
	
	color:#ededed;
  font-family:Verdana, Arial;
	font-size:12px;
}

.overlay li {
  padding:10px 0px 0px 0px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(../images/close.gif);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:25px;
	width:25px;
}



/*{{{ buttons */

button {
	outline:1px outset #999;	
	border:1px solid #999;	
	background-color:#333;
	color:#fff;
	width:350px;
	height:24px;
	padding:3px;
	-moz-border-radius:4px;
	-moz-outline-radius:4px;
	cursor:pointer;
	font-size:12px;
  font-family:Verdana;
  text-align:left;
}

