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

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


span.clickable {
    cursor: pointer;
    color: #0000bb;
    margin-right: 5px;
}

span.active {
    color: #000000;
    background: #cccccc;
}

div.overlay table {
    margin-top: 10px;
}

