div.multiTabs { 
/*	overflow: auto; */
	}
ul.multiTabsNav { 
	margin: 0;
	margin-top: 0;
	padding: 0;
	list-style: none;
	height: 22px; /*--Set height of tabs--*/
	border-bottom: 1px solid #999;
	margin-bottom: -1px;
 }
ul.multiTabsNav li { 
	float: left;
	margin: 0;
	padding: 0;
	height: 23px; /*--Add 1px from the height of the unordered list--*/
	line-height: 23px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #999;
	border-right: none; 
	margin-bottom: 0px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #e0e0e0;
 }
ul.multiTabsNav li.last { 
	border-right: 1px solid #999;
	}
ul.multiTabsNav li a { 
	text-decoration: none;
	color: #000;
	display: block;
	font-size: 1em;
	padding: 0 3px;
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
	}
ul.multiTabsNav li a:hover { 
	background: #ccc;
	}
ul.multiTabsNav li a.current { 
	background: #fff;
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
	}
div.multiTabsContent { 
	margin-top:3px; 
	display:none;
 }
div.multiTabsContent.currentTab { display:block; }
