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

div.overlay_vv { 
     
    /* growing background image */ 
    background-image:url(img/overlay/white.png); 
     
    /* dimensions after the growing animation finishes  */ 
    width:400px; 
    height:600px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    padding:50px 55px 25px 40px;
    z-index: 9999; 
} 

/* IE7 */
*+html div.overlay {
    background-image:url(img/overlay/white_ie7.png); 
}

*+html div.overlay_vv {
    background-image:url(img/overlay/white_ie7.png); 
}
 
/* default close button positioned on upper right corner */ 
div.overlay div.close, div.overlay_vv div.close { 
    background-image:url(img/overlay/close.png); 
    position:absolute; 
    right:-3px;
    top:10px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
} 
 
 
/* black */ 
div.overlay.black { 
    background:url(img/overlay/transparent.png) no-repeat !important; 
    color:#fff; 
} 
 
/* petrol */ 
div.overlay.petrol { 
    background:url(img/overlay/petrol.png) no-repeat !important; 
    color:#fff; 
} 
 
div.black h2, div.petrol h2 { 
    color:#ddd;         
}





/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(img/overlay/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
}


#dialog{
    display: none;
}