/* $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 {
}

.tabberlive {
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin: 0;
 padding: 21px 0 0 7px;
 font: normal 0.001em Verdana, sans-serif;

 float: left;
}

ul.tabbernav li {
 list-style: none;
 padding: 0;
 margin: 0;
 display: inline;
}

/* Links in order */
ul.tabbernav li span {
	display: none; 
}

ul.tabbernav li a.tab0 {
	display: block;
	float: left;
	width: 138px;
	height: 31px;
	padding: 0;
	margin: 0;
	background: transparent url(../img/tab_text_inactive.gif) bottom center no-repeat;
	text-decoration: none;
	font: normal 0.8em Verdana, sans-serif;
}

ul.tabbernav a.tab1 {
	display: block;
	float: left;
	width: 154px;
	height: 31px;
	padding: 0;
	margin: 0;
	background: transparent url(../img/tab_email_inactive.gif) bottom center no-repeat !important;
	text-decoration: none;
	font: normal 0.001em Verdana, sans-serif;
}

ul.tabbernav a.tab2 {
	display: block;
	float: left;
	width: 160px;
	height: 31px;
	padding: 0;
	margin: 0;
	background: transparent url(../img/tab_web_inactive.gif) bottom center no-repeat !important;
	text-decoration: none;
	font: normal 0.001em Verdana, sans-serif;
}



ul.tabbernav li a.tab0:hover {
	width: 138px;
	background: transparent url(../img/tab_text_inactive_hover.gif) bottom center no-repeat;
	
}

ul.tabbernav a.tab1:hover {
	width: 154px;
	background: transparent url(../img/tab_email_inactive_hover.gif) bottom center no-repeat !important;
}

ul.tabbernav a.tab2:hover {
	width: 160px;
	background: transparent url(../img/tab_web_inactive_hover.gif) bottom center no-repeat !important;
}


ul.tabbernav li.tabberactive.tab0 {
	display: block;
	float: left;
	width: 138px;
	height: 31px;
	padding: 0 2px 0 0;
	background: transparent url(../img/tab_text_active.gif) bottom center no-repeat !important;
	text-decoration: none;
}

ul.tabbernav li.tabberactive.tab1 {
	display: block;
	float: left;
	width: 154px;
	height: 31px;
	padding: 0 2px 0 0;
	background: transparent url(../img/tab_email_active.gif) bottom center no-repeat !important;
	text-decoration: none;
}

ul.tabbernav li.tabberactive.tab2 {
	display: block;
	float: left;
	width: 160px;
	height: 31px;
	padding: 0 2px 0 0;
	background: transparent url(../img/tab_web_active.gif) bottom center no-repeat !important;
	text-decoration: none;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	width: 650px;
	margin: 0;
	padding: 20px 0 0 28px;
	float: left;

 /* 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 */
.tabberlive .tabbertab h2 {
 display:none;
}

.tabberlive .tabbertab h3 {
 display:none;
}

