/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
/********* div.scrollable is Feature Items *********/
div.scrollable { 
 
    /* required settings */ 
    position:relative;
	float: left;
    overflow:hidden; 
    width: 634px; 
    height:250px;
	margin: 0px;
}  
/* 
    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; 
} 


/********* div.newitems is New Items *********/
div.newitems { 
 
    /* required settings */ 
    position:relative;
	float: left;
    overflow:hidden; 
    width: 280px; 
    height:128px;
	margin: 0px;
}  
/* 
    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.newitems div.items { 
    /* this cannot be too large */ 
    width:10000em; 
    position:absolute; 
}  
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.newitems div.items div { 
    float:left; 
}

/* prev, next, prevPage and nextPage buttons */
a.browseNewItems {
	background:url(https://www.altomusic.com/altoweb/images/slider_buttons.png) no-repeat;
	display:block;
	width:17px;
	height:61px;
	float:left;
	margin:40px 0px;
	cursor:pointer;
	font-size:1px;
}


 
/* you may want to setup some decorations to active the item */ 
div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}



/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(https://www.altomusic.com/altoweb/images/slider_buttons.png) no-repeat;
	display:block;
	width:17px;
	height:61px;
	float:left;
	margin:100px 0px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: -16px 0px; clear:right; margin-right: 0px; position: relative; float: right;}
a.right:hover 		{ background-position: -16px -122px; }
a.right:active 	{ background-position: -16px -61px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:0 -122px; }
a.left:active  	{ background-position:0 -61px; }


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 

/* position and dimensions of the navigator */
.navi {
	margin-left:25px;
	margin-top: 247px;
	text-align: right;
	position: absolute;
	width:auto;
	height:20px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(https://www.altomusic.com/altoweb/images/navigator1.png) 0 0 no-repeat;
	display: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;     
}


