/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
REQUIRED to hide the non-active tab content.
But do not hide them in the print stylesheet!
--------------------------------------------------*/
.tabberlive .tabbertabhide {
	display:none;
}

/*--------------------------------------------------
.tabber = before the tabber interface is set up
.tabberlive = after the tabber interface is set up
--------------------------------------------------*/
.tabber {
	
}
.tabberlive {
	margin-top: 0;
}

/*--------------------------------------------------
ul.tabbernav = the tab navigation list
li.tabberactive = the active tab
--------------------------------------------------*/
ul.tabbernav {
	float: left;
	width: 100%;
	list-style: none;
	padding: 2px 0 0 0;
}
	ul.tabbernav li {
		display: inline;
	}
	ul.tabbernav li a {
		display: block;
		float: left;
		text-decoration: none;
		color: #444;
		padding: 6px 16px 5px 16px;
		margin: 2px 0 0 5px;
		position:relative;
		top:5px;
		border: 2px solid #ededed;
		border-width:2px;
		height:19px;
		background-color:#f2f2f2;
		z-index:5;
	}
	ul.tabbernav li a:hover {
		color:#666;
		background: #ededed;
		text-decoration: none;
	}
	ul.tabbernav li.tabberactive a {
		padding: 6px 15px 5px 15px;
		position: relative;
		top:5px;
		border: 2px solid #ededed;
		border-width:2px;
		border-bottom-color:#FFF;
		background: #fff;
		height:19px;
		z-index:5;
	}


/*--------------------------------------------------
.tabbertab = the tab content
Add style only after the tabber interface is set up (.tabberlive)
--------------------------------------------------*/
.tabberlive .tabbertab {
/* If you don't want the tab size changing whenever a tab is changed
you can set a fixed height */

min-height:200px;
width:95%;
/* If you set a fix height set overflow to auto and you will get a
scrollbar when necessary */

/* overflow:auto; */
	clear:both;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
	display:none;
}
.tabberlive .tabbertab h3 {
	display:none;
}
.tabberlive .tabbertab h4 {
	display:none;
}

.tabberlive .tabbertab .content{ display:block;position:relative;border:5px solid #ededed; padding:10px;  }
