/* $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 .tabberloading {
     width:100%;
     height:33px;
     background: url(../../../_graphics/ajax_loader.gif)  no-repeat top center;
}
.tabber .tabbertab {
    display: none;
}
.tabberlive {
overflow:hidden;
margin-top:10px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 /*margin:0px 0px 0px 7px;
 padding:0px 0px 25px 0px; 	
 */
 font: bold 12px Verdana, sans-serif; 
 margin:0px 0px 26px 8px; 
 padding:0px 0px 0px 0px; 	 
 top:1px;
 position:relative;
 border-bottom:1px soild red;
}

ul.tabbernav li
{
	display:inline;	
	margin:0 2px 0 0;
	padding:0px;	
}

ul.tabbernav li a
{
	/*padding:0px 0px 7px 0px !important;
	background:transparent url(../../../mod/theme_pheonix/graphics/tabmenuright.gif) no-repeat scroll right top;
	border:0 none;		
	margin:0;			
	padding:5px 0px 6px 0px;
	display:block;
	*/
	
	text-decoration:none; 		
	background:url(../../../mod/theme_pheonix/graphics/tabmenuright.gif) no-repeat scroll right top;			
	float:left; 	
 	margin:0px 2px 0px 0px; 	
}

ul.tabbernav li a span
{
	/*padding:1px 15px 6px 15px  !important;*/
	background:transparent url(../../../mod/theme_pheonix/graphics/tabmenuleft.gif)  no-repeat scroll left top;
	color:#646464;	
	font-family:Arial,Helvetica,sans-serif;
	display:block;	
	font-size:11px;
	font-weight:bold;	
	line-height:25px;
	padding:0px 13px 0px 13px;
	
/*
padding: 7px 3px 7px 3px;
 margin-left: 3px;  
 text-decoration: none;
 background:url(../../../mod/theme_pheonix/graphics/tabmenuleft.gif) no-repeat scroll left top;	
 */
}

ul.tabbernav li a:hover
{
	background-position:right bottom;
 	color: #4690D6;
 	text-decoration:none;
 /*	padding:3px 0px 8px 0px;*/
}

ul.tabbernav li a:hover span
{
	background-position:left bottom; 
	color: #4690D6;	
	padding:0px 13px 1px 13px;
}

ul.tabbernav li.tabberactive a
{
	background-position:right bottom; 
	color: #4690D6;		
	position:relative;
}

ul.tabbernav li.tabberactive a span
{
	background-position:left bottom; 
	color: #4690D6;
	padding:0px 13px 1px 13px;
}



/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 width:550px;
 margin:0px 0px 0px 0px;
 border:1px solid #CCCCCC;    
 line-height:1.6em;


 /* 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; */
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}
.tabbertab label {
width:100px;
font-weight:bold;

}
.tabbertab span {

font-weight:normal;

}

