/* the overlayed element */ 
div.overlay { 
     
    /* growing background image */ 
    background-image:url(/Media/Designimages/overlay/white-wider-topslice.png); 
    background-repeat: no-repeat;
    background-position: top left;
    
    /* dimensions after the growing animation finishes  */ 
    width:820px; 
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    padding: 50px 0 0 0;
    overflow: hidden;

} 

div.overlay .expander {
    background-image:url(/Media/Designimages/overlay/white-wider-slice.png);  
    background-repeat: repeat-y;
    background-position: top left;
    padding: 0 50px 0 50px;
}

div.overlay .foot{
    background-image:url(/Media/Designimages/overlay/white-wider-footslice.png); 
    background-repeat: no-repeat;
    background-position: bottom left;
    padding: 0 50px 0 50px;
    height: 50px;
}
 
   
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    background-image:url(/Media/Designimages/overlay/apple-close.png); 
    position:absolute; 
    right:15px; 
    top:15px; 
    cursor:pointer; 
    height:28px; 
    width:28px; 
} 
 
 
/* black */ 
div.overlay.black { 
    background:url(/Media/Designimages/overlay/transparent.png) no-repeat !important; 
    color:#fff; 
} 
 
/* petrol */ 
div.overlay.petrol { 
    background:url(/Media/Designimages/overlay/petrol.png) no-repeat !important; 
    color:#fff; 
} 
 
div.black h2, div.petrol h2 { 
    color:#ddd;         
}


/* use a semi-transparent image for the overlay */ 
#overlay { 
/*    background-image:url(/Media/Designimages/overlay/white.png);   */
    color:#efefef; 
} 
 
/* container for external content. uses vertical scrollbar, if needed */ 
div.wrap { 
    position: relative;
    overflow-y:auto; 
}



/* Scrollable */
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 

div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    height:500px; 
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/Media/Designimages/overlay/hori_large.png) no-repeat;
	display:inline-block;
	width:30px;
	height:30px;
	margin:10px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 	{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 	{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left		{ margin-left: 0px; } 
a.left:hover  	{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(/Media/Designimages/overlay/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  	{ background-position:-30px 0; }
a.up:active  	{ background-position:-60px 0; }

/* down */
a.down 		{ background-position: 0 -30px; }
a.down:hover  	{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

.frontloadernavbar a.disabled {
	visibility:visible !important;		
}



/* position and dimensions of the navigator */
.activenav .grid_4 { vertical-align: top;}
.navi {
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	margin:1px 3px 20px 3px;
	background:url(/Media/Designimages/overlay/navigator.png) 0 0 no-repeat;
	display:inline-block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}


#ptip, 
#nptip {
	display:none; 
	background:transparent url(/Media/Designimages/overlay/black_arrow_big.png);
	font-size:12px;
	height:164px;
	width:320px;
	padding:25px;
	color:#fff;
	_background-color:#fff;
}



/* Scrollable */
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 

div.frontloadergallery { 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    height:300px;  
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 

div.frontloadergallery .images { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
}

div.frontloadergallery .images .image { float: left; }
