/****** fabtabulous.js support ******/
.jTabMenu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.jTabMenu li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
}
.jTabMenu a {
	float: left;
	padding: 5px 8px;
	margin-right: 6px;
	border: 1px solid #00adef;
	border-width: 1px 1px 0 1px;
	text-decoration: none;
	color: #000;
}
.jTabMenu a:hover {
	background-color: #8dd8f8;
	color: #FFF;
}
.jTabMenu a.active-tab {
	border: 1px solid black;
	border-bottom: none;
	background: #BBEEFF;
    font-weight: bold;
    color: black;
}
.jTabMenuFrame {
	width: 100%;
	font-family: tahoma, verdana, sans-serif;
	white-space: nowrap;
	font-size: 85%;
}
.jTabMenuFrame ul {
	margin: 0;
	margin-left: 0.5em;
	padding: 0;
/* For an unknown reason, following line is mandatory for IE.
 * If this line is not present, the top border is not displayed !!
 */
    border-top: 1px solid white;
}
.jTabMenuFrame ul li  {
	display: inline;
	list-style: none;
}
.jTabMenuFrame ul a {
    padding-left: 0.5em;
    padding-right: 0.5em;
	margin: 1px 2px 0 0;
	text-align: center;
	text-decoration: none;
	color: black;
}
/* Selected tab - suppress visual FX on hover */
.jTabMenuFrame ul a.tabs-selected,
.jTabMenuFrame ul a.tabs-selected:hover {
	border: 1px solid black;
	border-bottom: none;
    padding-bottom: 1px;		/* extend padding to 'join' the tab to the bar */
	background: #BBEEFF;
    font-weight: bold;
    color: black;
}
/* Unselected tab - here we want visual FX on hover */
.jTabMenuFrame ul a {
	background: #DDD;
	border: 1px solid #AAA;
	border-bottom: none;
}
/* Default tab -- hover -- */
.jTabMenuFrame ul a:hover {
    margin-top: 0;
    border-color: #666;
    color: black;
    background: white;
}
.jTabMenuFrame .jTabMenuFrameHbar {
    clear: both;
    background: #BBEEFF;
    font-size: 4pt;
    padding: 0;
    margin: 0;
}
.panel {
    clear: both;
    display: none;
    border: 3px solid #00adef;
    padding: 1em;
    margin: 0;
	overflow: hidden;
}
.panel.active-tab-body {
    display: block;
}

