/* $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: #3A68D2;
		padding: 6px 16px 5px 16px;
		margin: 0 4px -1px 0;
		border: 1px solid #CCC;
		border-width:1px 1px 1px 1px;
		height:18px;
		background-color:#F9F9F9;
	}
	ul.tabbernav li a:hover {
		color: #3A68D2;
		background: #ecf7ff;
		text-decoration: none;
	}
	ul.tabbernav li.tabberactive a {
		padding: 6px 15px 5px 15px;
		position: relative;
		bottom: 0px;
		border: 1px solid #CCC;
		border-width:1px 1px 1px 1px;
		border-bottom-color:#FFF;
		background: #fff;
		height:18px;
	}


/*--------------------------------------------------
.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 */

/* height:200px; */

/* 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{ border:1px solid #CCC; padding:10px;  }
