﻿
/* slideshow */

/* styling for the image wrapper  */ 
#image_wrap 
{     /* dimensions */    
       padding:0px 0;      /* centered */     
       text-align:center;      /* some "skinning" */           
       -moz-ouline-radius:4px; 
       background-color: Transparent;
}


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 560px;
	height:120px;
	display: none;

	/* custom decorations */
	/*border:1px solid Black;*/
	background:url(/img/global/gradient/h300.png) repeat-x;
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	height: 85px;
	position:absolute;
	clear:both;
	overflow: hidden;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:20px 2px 5px 2px;
	border:1px solid #535152;
	cursor:pointer;
	width:94px;
	height:60px;
}

/* active item */
.scrollable .active {
	/*z-index:9999;
	position:relative;*/
	border: solid 1px green;
}
.scrollable .selected {
	border:1px solid red;
	z-index:9999;
	position:relative;
	width: 94px;
	height: 60px;
	padding: 1px;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse 
{
	display: none;
	background:url(/images/hori_large_new.png) no-repeat;
	display:block;
	width:25px;
	height:63px;
	float:left;
	margin:20px 10px;
	cursor:pointer;
	font-size:1px;
}
    /* prev, next, prevPage and nextPage bottom buttons */
a.browseBottom 
{
	background:url(/images/hori_large_bottom.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	float:right;
    margin: 0px 0px 0px 0px;
}
.prevPage
{
	background-color: White; /*test*/
}

/* right */
a.right 		{ background-position: 0 -80px; margin-right: 0px;}
a.right:hover 	{ background-position:-30px -80px; }
a.right:active 	{ background-position:-60px -80px; } 


/* left */
a.left			{ background-position: -60px -5px; margin-left: 0px; } 
a.left:hover  	{ background-position:-60px -5px; }
a.left:active  	{ background-position:-60px -5; }

/* up and down */
a.up, a.down		{ 
	background:url(/images/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;		
}

#actionContainer
{
	text-align:center;
}
#actionButtons
{
    text-align:center;
    margin-top: 30px;
    width: 160px;
    margin-left: auto;
    margin-right: auto;
}
    #actionButtons .button
    {
        width: 30px;
        text-align:center;
        float: left;
        margin-right: 10px;
    }
#actionButtonsTop
{
    font-size: 12px;
    font-weight: bold;
    float: right;
    width: 250px;
}
