/* $Id: tabber.css,v 1.6 2011/07/20 14:18:58 shoornwe 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:1em;
 width:98%;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/

div.tabbernav 
{
 margin:0;
 padding: 3px 0;
 font-size:1.2em;
 font-weight:bold;
 padding-top: 10px;

}

div.tabbernav h3
{
 font-size: 0.85em;
 list-style: none;
 margin: 0;
 display: inline;
 margin-left: 3px;
}

div.tabbernav h3 a
{
 padding: 3px 0.4em;
 margin-left: 3px;
 border: 1px solid #3C616C;
 border-bottom: none;
 background-color: #EFEDE7;
 text-decoration: none;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius-topright:5px;
	-moz-border-radius-topleft:5px;
}

div.tabbernav h3 a:link, div.tabbernav h3 a:visited{ 
	 padding: 3px 0.4em;
 text-decoration: none;
}

div.tabbernav h3 a:hover
{
	/*background: #159;	*/

 text-decoration:underline;
 color: #000;
 background-color:#CADADF;

}

div.tabbernav h3.tabberactive a
{
 background: #3C616C;
 border-bottom: 1px solid #FAFAFA;
 text-decoration:none;
 color:#fff;
 padding: 7px 15px;
}

div.tabbernav h3.tabberactive a:hover
{
	
 text-decoration:none;
 color: #fff;
 /*background-color:#FAFAFA;*/
 /*cursor: default;*/
 
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
* html .tabberlive .tabbertab {
	height:490px; /* defaults to this if JS is disabled */
}

.tabberlive .tabbertab {
 padding:1em;
 border:1px solid #3C616C;
 background-color: #FAFAFA;
 -moz-border-radius:5px;
 -webkit-border-radius:5px;
 position: relative;
 

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

  /*height:300px;*/
	max-height: 490px;
	height:expression(this.scrollHeight>489?"490px":"auto");

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

  overflow:auto; 
}

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

.tabberlive .tabbertab h4 {
	margin-top:0;
}

/* Example of using an ID to set different styles for the tabs on the page */

.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}

.tabbertab p {
 margin: .5em 0;
}


 @media print {
	
	.tabberlive .tabbertab, .tabberlive .tabbertabhide{
		background-color: transparent;
		height:100%;
		max-height:100%;
	}
	
	.tabberlive .tabbertabhide h3.tabTitle {
		 display:block;
	}
	
	div.tabbernav h3 a {
		display:none
	}
	
	.tabberlive .tabbertab h3.tabTitle, .tabberlive .tabbertabhide h3.tabTitle {
 		display:block;
	}
	
	.tabberlive .tabbertabhide{
	display:block;
	}
	
	.tabberlive .tabbertab p, .tabberlive tabbertabhide p {
		 display:block;
	}
	.tabberlive .tabbertab {
	border:0;
	}
}

