/* Basic Example CSS */
.wrapper {
	width: 590px;
	height: 250px;
	position: absolute;
	top: 0px;
}

/* ===== Tabs CSS ===== */
div.tabPanes > div { display: none; } /* initially all panes are hidden */
div.tabPanes { padding: 0 0px; }
ul.tabs { list-style: none; margin: 0 0 0 0px; padding: 0; overflow: hidden; }
ul.tabs li { float: left; margin-left: 2px; }
ul.tabs li a {
	display: block;
	float: left;
	padding: 2px 5px;
	color: #999;
	text-decoration: none;
	font-size: 8px;
}
ul.tabs li a:hover { background: #666; }
ul.tabs li a.current { font-weight: bold; }
ul.tabs li a:hover,
ul.tabs li a.current { color: #454545; }

/* ===== Tooltip CSS ===== */
div.tooltip { 
	display: none; /* initially tooltips are hidden */
	padding: 2px 10px;
	background: #222;
	color: #fff;
	font-size: 10px;
	font-style: italic;
}

/* ===== Scrollable CSS ===== */
/* Primary Container */
div.scrollable {
	position: absolute;
	top: 10px;
	width: 590px;
	height: 205px;
	overflow: hidden;
	left: 0px;
}

/* Items Container */
div.scrollable div.items {
	width: 1800px;
	position: absolute;
	clear: both;
	top: 10px;
	height: 185px;
	float: left;
	color: #FFF;
}

/* Individual Item Containers */
div.scrollable div.items div {
	float: left;
	width: 590px;
	height: 20px;
	padding: 0 0px;
	
}

/* Next and Previous buttons */
a.prev, a.next {
	display:block;
	float:right;
	padding: 2px 5px;
	cursor:pointer;
	font-size: 10px;
	color: #999;
	position: relative;
}
a.prev:hover, a.next:hover { color: #333; }

/* Disabled Next or Previous button */
a.disabled { visibility: hidden !important; }

/* Navigation Container */
div.navi {
	padding-left: 0px;
	top: 30px;
}

/* Navigation Links */
div.navi a {
	float: left;
	margin-left: 2px;
	padding: 1px 5px;
	color: #999;
	text-decoration: none;
	font-size: 10px;
}
div.navi a.active { font-weight: bold; }
div.navi a:hover,
div.navi a.active { color: #454545; background:  }
