﻿/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 603px;
	height:310px;
}
.scrollable-alt {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 450px;
	height:200px;
}
.scrollable-wpg {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 900px;
	height:200px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}
.scrollable-alt .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}
.scrollable-wpg .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.
*/
.items div {
	float:left;
}

div.item {
	float:left;
	
	height:300px;
	width:196px;
	/*
    height:270px;
	width:150px;
	*/
    margin-right:5px;
	background-color:#fff;
	color:#333;
	text-align:center;
}
div.item-alt {
	float:left;
	height:172px;
	width:145px;
    margin-right:5px;
	background-color:#fff;
	color:#333;
	text-align:center;
}
div.item-wpg {
	float:left;
	height:172px;
	width:145px;
    margin-right:5px;
	background-color:#fff;
	color:#333;
	text-align:center;
}

.itemtop 
{
    text-align:center; 
    width:100%;
}

.itembottom
{
    margin-top:10px; 
    text-align:left; 
    margin-left:10px; 
    margin-right:5px;
}
.itembottom-alt
{
    text-align:left; 
    margin-top:2px; 
    margin-left:4px; 
    margin-right:4px;
}
.itembottom-wpg
{
    text-align:left; 
    margin-top:2px; 
    margin-left:4px; 
    margin-right:4px;
}
.itemtext
{
    font-family: Arial;
    font-size: 12px;
}
.itemtext-alt
{
    font-family: Arial;
    font-size: 12px;
    text-align:center;
    font-weight:normal;
}
.itemtext-wpg
{
    font-family: Arial;
    font-size: 12px;
    text-align:center;
    font-weight:normal;
}
.itemlink
{
    font-family: Arial;
    font-size: 12px;
}

.scrollableHomepage {
	/* required settings */
	/*position:relative;*/
	position:absolute;
	overflow:hidden;
	/* width: 603px; */
	width: 912px;
	height:215px;
	top:500px;
    left:175px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollableHomepage .itemsHomepage {
	/* 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.
*/
.itemsHomepage div {
	float:left;
}

div.itemHomepage {
	float:left;
	/*
	height:300px;
	width:196px;
	*/
    height:215px;
	width:120px;
	margin-left:5px;
    margin-right:5px;
	background-color:#fff;
	color:#333;
	text-align:center;
}



