
/****** overlay ********/

div.overlay_signup { 
     
    /* growing background image */ 
    background-image:url(http://static2.bluetunes.net/images/blank.png); 
    /* dimensions after the growing animation finishes  */ 
    width:500px; 
     
    background-color: gray;
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
}

div.overlay { 
     
    /* growing background image */ 
    background-image:url(http://static2.bluetunes.net/images/blank.png); 
    /* dimensions after the growing animation finishes  */ 
    width:700px; 
    position:absolute; 
    left:100px; 
    top:100px; 

    background-color: gray;
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
}


.overlay_content_outer
{
	background-color: gray;
	opacity: 1;
	z-index: 10001;
	padding: 10px;
} 

.overlay_content
{
	padding: 0;
	background-color: white;
	opacity: 1;
	margin: 0 auto 0 auto;
	z-index: 10002;
} 
 
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    background-image:url(/close.png); 
    position:absolute; 
    right:11px; 
    top:11px; 
    cursor:pointer; 
    height:24px; 
    width:30px; 
}

div.overlay_signup div.close { 
    background-image:url(/close.png); 
    position:absolute; 
    right:11px; 
    top:11px; 
    cursor:pointer; 
    height:24px; 
    width:30px; 
}


