/* $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!
  --------------------------------------------------*/
#tabmenu .tabberlive .tabbertabhide {
    display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
#tabmenu .tabber {
}
#tabmenu .tabberlive {
    margin: 5px 0px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
#tabmenu {
    margin-left: auto;
    margin-right: auto;
}
#tabmenu ul.tabbernav {
    margin:0;
    padding:0;
    color:#FFFFFF;
    font-weight: bold;
	font-size:1em;
/*     background:transparent url(../images/topmenu_bg.gif) repeat-x scroll center top; */
	display:block;
	height:18px;
}

#tabmenu ul.tabbernav li {
    list-style: none;
	float:left;
	height:18px;
    background: transparent url(../images/norm_right.gif) no-repeat scroll right top;
    margin: 0px 1px 0px 0px;
    padding: 0px;
}

#tabmenu ul.tabbernav li.tabberactive {
    background:transparent url(../images/current_right.gif) no-repeat scroll right top;
}

#tabmenu ul.tabbernav li span {
	float:left;
	height:18px;
    cursor: pointer;
    background:transparent url(../images/norm_left.gif) no-repeat scroll left top;
}

#tabmenu ul.tabbernav li span a
{
	line-height:18px;
	padding: 0px 17px 0 17px;
}

#tabmenu ul.tabbernav li.tabberactive span a
{
	padding: 0px 17px 0 17px; 
}

#tabmenu ul.tabbernav li span a, #tabmenu ul.tabbernav li span a:link,#tabmenu ul.tabbernav li span a:visited, #tabmenu ul.tabbernav li span a:hover {
    text-decoration:none;
    color: #FFFFFF;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
#tabmenu .tabberlive .tabbertab {
 padding: 5px 5px 5px 5px;
 border: 1px solid #8EBEE6;
/*  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; */
}

/* If desired, hide the heading since a heading is provided by the tab */
/*
#tabmenu .tabberlive .tabbertab h2 {
 display:none;
}
#tabmenu .tabberlive .tabbertab h3 {
 display:none;
}
*/
/* Example of using an ID to set different styles for the tabs on the page
#tabmenu .tabberlive#tab1 {
}
#tabmenu .tabberlive#tab2 {
}
#tabmenu .tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}
*/