/* @override 
	http://warwickartscentre.devspace.net/mmlib/css/tabber/tabber.css
	http://warwickartscentre.site/mmlib/css/tabber.tabber.css
*/


/* $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:20px;
 zoom: 1;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	float:left;
	font-size:12px;
	margin:0 0 24px 0;
	padding:1px 0 0;
	width:100%;
}

ul.tabbernav li
{
	display:block;
	float:left;
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin:0;
}

ul.tabbernav li a
{
	border-right: 1px dotted #fff;
	display:block;
	font-size:11px;
	margin-left:1px;
	padding:4px 14px 3px 14px;
	text-decoration:none;
}

ul.tabbernav li a:link { color: #fff; }

ul.tabbernav li a:hover
{
 color: #000;
 background: #fff;
border-bottom:1px solid #FFFFFF;
text-decoration: none;
}

ul.tabbernav li.tabberactive a
{
	background-color:#FFFFFF;
	border-bottom:1px solid #FFFFFF;
	color:#333333;
	display:block;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 clear: left;
 margin:0 8px 24px 8px;
 border-top:0;

 /* 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; */
}

