/* Basic Example CSS */
body { font-family: Arial, Helvetica, sans-serif; }
h3 { color: #666; }

/* ===== Tabs CSS ===== */
div.tabPanes > div { display: none; } /* initially all panes are hidden */
div.tabPanes { border: solid 1px #e6e1f1; padding: 0 15px; background: url(tab-gradient.png) repeat-x; }
ul.tabs { list-style: none; margin: 0 0 0 20px; padding: 0; overflow: hidden; }
ul.tabs li { float: left; margin-left: 2px; }
ul.tabs li a {
	display: block;
	float: left;
	padding: 10px 15px;
	color: #999;
	text-decoration: none;
	font-size: 11px;
}
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; background: url(tab-gradient.png) repeat-x; }


/* ===== Scrollable CSS ===== */
/* Primary Container */

#wrap_scroll{
	position:relative;
	width:989px;
	height:401px;
	float:left;
	clear:both;
}
div.scrollable { position: relative; width: 989px; height: 401px; overflow: hidden; background:url(images/home_banner_3_03.jpg) #585747; }

/* Items Container */
div.scrollable div.items { width: 20000em; position: absolute; clear: both; }

/* Individual Item Containers */
div.scrollable div.items div {
	float: left;
	width: 989px;
	height: 401px;
	padding: 0px;
	position:relative;
	font-size:11px;
	text-align:center;
	color:#FFFFFF;

}
a.next{
	position:absolute; 
	left: 870px;
	top: 20px;
	z-index:111111;
	display:block;
	cursor:pointer;
}
/* Next and Previous buttons */
a.prev {
	position:absolute; 
	left: 20px;
	top: 20px;
	z-index:111111;
	display:block;
	cursor:pointer;
}


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