
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:7px;
	height:9px;
	background:url(img/left.gif) no-repeat;
	float:left;
	margin: 25px 4px;
	cursor:pointer;
}

/* mouseover state */
/*
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}
*/
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(img/right.gif);
	clear:right;	
}

/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrolltable{
	/* required settings */
	width: 210px;	
	height:61px;	
	
	/* custom decorations */
	padding:0 0;	
	margin: 0 0;
	border:1px solid #FAD3F2;
}

div.scrollable {
	width: 180px;	
	height:61px;
	/* required settings */
	position:relative;
	overflow:hidden;		
}

/* 
	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;		
}

/* 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;
}
*/

/** ibm **/
div.scrollable div.items {clear:both;}
div.scrollable div.items div {
	float:left;
	text-align:center;
	font-size: 11px;
	font-family: Dotum;
	padding:0px;
}
.items div a {
        text-decoration:none;
        color:#666;
}
.items div a:hover {color:#000;font-weight:bold;}
.items div a {
        display:block;
        width:60px;
        padding-top:48px;
}

a#ibm-sp-foot-water {background:#FFF url(img/water_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-energy {background:#FFF url(img/energy_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-traffic {background:#FFF url(img/traffic_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-food {background:#FFF url(img/food_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-cities {background:#FFF url(img/cities_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-health {background:#FFF url(img/health_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-safety {background:#FFF url(img/safety_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-retail {background:#FFF url(img/retail_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-infra {background:#FFF url(img/infra_icon.jpg) no-repeat; background-position: top;}
a#ibm-sp-foot-intel {background:#FFF url(img/intel_icon.jpg) no-repeat; background-position: top;}