/* Basic Example CSS */
body { font-family: Arial, Helvetica, sans-serif; }
h3 { color: #666; }
/*body > .wrapper { width: 500px; margin: 50px auto 0; }*/
img, a { behavior: url(../iepngfix.htc); }
/* ===== 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: 5px 10px;
	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; }

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

/* ===== Scrollable CSS ===== */
/* Primary Container */
div.scrollable {
	position: relative;
	width: 235px;
	height: 302px;
	overflow: hidden;
	clear: both;
}

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

/* Individual Item Containers */
div.scrollable div.items div {
	float: left;
	width: 235px;
	height: 300px;
	padding-top: 0;
	padding-bottom: 0;
}

/* Next and Previous buttons */
a.prev, a.next {
	display:block;
	float:right;
	cursor:pointer;
	font-size: 13px;
	color: #999;
	font-size:18px;
	margin-right:5px;
	margin-top:4px;
	padding:0;
}
a.prev:hover, a.next:hover { color: #333; line-height:normal; }

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

/* Navigation Container */
div.navi {
	padding-left: 10px;
}

/* Navigation Links */
div.navi a {
	float: left;
	margin-left: 0;
	padding: 5px 0;
	width:20px;
	color: #999;
	text-decoration: none;
	font-size: 11px;
	background: transparent url(radio.png) 0 0 no-repeat;
	margin-top:5px;
	display:inline;
}
div.navi a.active { font-weight: bold; }
div.navi a:hover { color: #454545; background: transparent url(radio.png) 0 -25px no-repeat; }
div.navi a.active { color: #454545; background: transparent url(radio.png) 0 -50px no-repeat; }


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