/* Basic Example CSS */

/* ===== Tabs CSS ===== */

.wrapper {
	position: relative;
	width: 279px;
	margin-top: 15px;
}

#scroll_image {
-moz-border-radius: 8px; -webkit-border-radius: 8px;
}

div.tabPanes > div { display: none; } /* initially all panes are hidden */
div.tabPanes { padding: 0 15px; }
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; }


/* ===== Scrollable CSS ===== */
/* Primary Container */
div.scrollable { position: relative; width: 279px; height: 182px; overflow: hidden; }

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

/* Individual Item Containers */
div.scrollable div.items div {
	float: left;
	width: 278px;
	height: 179px;

}

.items div {
	border: 1px solid #d7cfb3;
}

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

/* Navigation Container */
div.navi { 
position:absolute;
z-index:99;
bottom:0px;
background: transparent url(../img/transparent.png) scroll repeat 0 0;
width:280px;
height:27px;
padding-top:10px;
}

/* Navigation Links */
div.navi a {
	color:#999999;
	float:left;
	font-size:11px;
	margin-left:5px;
	display:block;
	width:19px;
	height:19px;
	background: transparent url(../img/front_gallery_bullet.png) scroll no-repeat 0 0;
}
div.navi a.active { background: transparent url(../img/front_gallery_bullet.png) no-repeat scroll 0 -19px;  }
div.navi a:hover,
div.navi a.active { color: #454545; }


/* ===== CSS Rounded Corners ===== */
div.tabPanes { -moz-border-radius: 8px; -webkit-border-radius: 8px; }
div.tooltip,
div.scrollable div.items div img { -moz-border-radius: 8px; -webkit-border-radius: 8px; }
