
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	width: 100%;
	height:120px;
	
	/* custom decorations */
	background-color:#040404;				
}

/* 
	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;
	vertical-align:middle;
	line-height: 120px;
	width:150px;
	height:120px;	
	overflow: hidden;
	padding: 2px;
	font-size: 30px;
	font-family: 'bitstream vera sans';
	background-color: #111;
	margin: auto;
}
div.scrollable div.items div div{
margin: auto;
}
div.scrollable div.items div img{
	vertical-align:middle;
	margin: auto;
}
/* active item */
div.scrollable div.items div.active {
	/*background-color:#066;*/
}


/* 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:18px;
	height:18px;
	background:url(/js/jquery/jquery.tools/left.png) no-repeat;
	float:left;
	margin:53px 10px;
	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(/js/jquery/jquery.tools/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/js/jquery/jquery.tools/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	


/* root element for tabs  */
ul.css-tabs {  
}

/* single tab */
ul.css-tabs li {  
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:13px;
	display:block;
	padding:5px 30px;	
	text-decoration:none;
	border:1px solid #ddd;	
	border-bottom:0px;
	height:18px;
	background-color:#f6f6f6;
	color:#0073EA;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#0073EA;
	color:#fff;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#fff;
	border-bottom:2px solid #fff;	
	color:#FF0084;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	/*border:1px solid #666;*/
	/*border-width:0 1px 1px 1px;*/
	min-height:150px;
	padding:15px 20px;
	background-color:#fff;	
}



