/* CSS Document - humanities visualization - tabs.css */

/*--------------------------------------------------
  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 {
	display:none; /* hides tab body until loaded */
}
.tabberlive {

}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/

ul.tabbernav
{
	 padding: 0px 0px 0px 15px;
	 margin: 0px 0px 0px 15px;
	 padding: 5px 0px 5px 7px;
	text-align: right;
}

ul.tabbernav li
{
	 list-style: none;
	 margin: 0px;
	 display: inline;
}

ul.tabbernav li a
{
	 padding: 5px 7px 5px 7px;
 	 margin: 0px;
 	 border: 1px dotted #DDDDDD;
 	 border-bottom: none;
	 border-collapse: collapse;
	 background-color: #EEEEEE;
	 text-decoration: none;
}

ul.tabbernav li a:hover
{
 	 background: #FFFFFF;
}

ul.tabbernav li.tabberactive a
{
	 background-color: #FFFFFF;
	 border-bottom: 1px solid #FFFFFF;
}

ul.tabbernav li.tabberactive a:hover
{
	 background-color: #FFFFFF;
	 border-bottom: 1px solid #FFFFFF;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	 padding: 15px 25px;
	 border: 1px dotted #DDDDDD;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

/*  height: 400px; 
*/
 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

/*  overflow:auto; 
*/}