﻿/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 660px;	
	height:90px;	
	
	/* custom decorations */
	padding:10px 0;	
	border:1px outset #ccc;
	background-color:#efefef;				
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super 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;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}


/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:110px;
	padding:25px 0px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border:1px outset #ccc;
	background-color: #ddd;
	margin-right: 20px;	
	-moz-border-radius:5px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

/************************/
/* Top and Sub Features */
/************************/

/* root element for scrollable */  
div.subFeaturesScrollable{
    /* required settings */     
    position:relative;     
    overflow:hidden;          
    /* vertical scrollers have typically larger height than width */         
    height: 292px;          
    width: 225px; 
}
/* root element for scrollable items */ 
div.subFeaturesScrollable div.items {
    position:absolute;
    /* this time we have very large space for height */         
    height:20000em;     
}

div.scrollableTopFeatures {
	position:relative;
	overflow:hidden;
	width: 610px;
	height: 177px;
}
div.scrollableTopFeatures div.items{
	position: absolute;
	width:20000em;
	clear:both;
}
div.scrollableTopFeatures div.items div {
	float:left;
	width:610px;
	height:177px;
	margin-right:20px;
}

/*****************/
/*Scrollable News*/
/*****************/

div.scrollableNews {
	position:relative;
	overflow:hidden;
	height:320px;
	width:240px;
	/* custom decorations */
	padding:10px 0;	
	border:1px outset #ccc;
	background-color:#efefef;
}

div.scrollableNews div.items {
	position: absolute;
	height:20000em;
}

/*************************/
/* Navigational elements */
/*************************/

div.navi a{
	width: 8px;
	height: 8px;
	float: left;
	margin: 3px;
	background: transparent url(/SiteCollectionImages/icons/navigator.png) no-repeat scroll 0 0;
	cursor: pointer;
}

div.navi a.active {
background-position: -16px 0;
}

div.navi a:hover {
background-position: -8px 0;
}


#sub-features div.navi {
	position: absolute;
	top: 166px;
	left: 5px;
	z-index: 20;
}

#top-feature div.navi a{
	width: 17px;
	height: 17px;
	float: left;
	margin: 2px;
	background: transparent url(/SiteCollectionImages/icons/navigator_top.png) no-repeat scroll 0 0;
	cursor: pointer;
}

#top-feature div.navi {
	position: absolute;
	bottom: 3px;
	left: 3px;
	z-index: 50;
}

#top-feature div.navi a.active {
background-position: -34px 0;
}

#top-feature div.navi a:hover {
background-position: -17px 0;
}

a.prevPage, a.nextPage {
	display: block;
	width:209px;
	height:14px;
	background:url(/SiteCollectionImages/icons/subfeatureUp.gif) no-repeat;
	cursor:pointer;
	margin: 0 auto 3px auto;
}

/* next button uses another background image */
a.nextPage {
	background-image:url(/SiteCollectionImages/icons/subfeatureDown.gif);
	clear:right;	
	margin: 3px auto 0 auto;	
}

/*mouseover*/

a.prevPage:hover, a.nextPage:hover {
	background-position: 0px -16px;
}

a.disabled {
	visibility:hidden !important;
}


