﻿div.scrollable { 
 
    /* required settings */ 
    background-repeat:no-repeat;
    background-attachment:scroll;
    position:relative; 
    overflow:hidden; 
} 
 
/* 
    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; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
    float:left; 
} 


/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
}

/*
	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;
	position:absolute;
	clear:both;
}

.scrollable h2
{
    margin-top:0.83em;
    font-size:large;
}

/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable img.overlay
{
    border:none;
    background-color:transparent;
    padding:0;

	-moz-border-radius:inherit;
	-webkit-border-radius:inherit;
}

.scrollable .scrollcaption
{
    float:left;
    width:220px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../Images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:30px 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 */
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;	} 	


#CAROUSEL div.scrollable
{
    background:url(../Images/carousel_background.png);
    width: 919px; 
    height:255px; 
}
#CAROUSEL .scrollable
{
	width: 680px;
	height:210px;
}
#CAROUSEL .scrollable img
{	
	margin:20px 5px 20px 21px;
    width:200px;
	height:200px;
}
#CAROUSEL .scrollable img.overlay
{
    width:205px;
    height:75px;
    margin-left:-210px;
    margin-top:21px;
}
#CAROUSEL .scrollable .scrollcaption h2
{
    margin-bottom:0px;
}
#CAROUSEL .scrollable .scrollcaption p
{
    margin-left:0px;
    margin-right:0px;
}

#CAROUSEL_LOCATION .scrollable
{
	width: 319px;
	height:78px;
	padding-bottom:15px;
}
#CAROUSEL_LOCATION .scrollable img
{	
	margin:20px 5px 20px 15px;
    width:50px;
	height:50px;
}
#CAROUSEL_LOCATION .scrollable img.overlay
{
    width:205px;
    height:75px;
    margin-left:-210px;
    margin-top:21px;
}

#CAROUSEL_LOCATION .items div 
{
	float:left;
	width:400px;
}

#CAROUSEL_LOCATION .scrollable img:hover
{
    border-color:Black;
}

#CAROUSEL_LOCATION .scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

