
/* ===== Tabs CSS ===== */
div.tabPanes > div { display: non; } /* initially all panes are hidden */
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; }

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

