/* $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 {
	width:700px; 
}

.tabberlive {
 margin-top:0px;
 padding-bottom:50px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav { /* Samma top och bottom padding som tabben */
	padding-top:5px;
	padding-bottom:5px;
	border-bottom:none;
	color:black;
}

ul.tabbernav li { /* Samma top och bottom padding som tabben */
	padding-top:5px;
	padding-bottom:5px;
	list-style: none;
	display: inline;
}

ul.tabbernav li a { /* Denna paddingen bestämmer tabbens storlek */
	padding-left:77px;
	padding-right:77px;
	padding-top:5px;
	padding-bottom:5px;
	width:200px;
	
	border:none;
	border-bottom:none;
	background:#B2DDF2;
	text-decoration:none;
}

ul.tabbernav li a:link { color:#0083CA; font-size:20px; font-weight:bold; }

ul.tabbernav li a:hover
{
 color: #000;
 background:#B2DDF2;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-bottom:none;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom:none;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	padding-left:50px;
	border:none;
	width:600px;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
