@charset "UTF-8";
/* $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 {
 display:none;
}
.tabberlive {
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
	width:568px;
	margin:0 0 1px 10px;
	padding:0;
	overflow:hidden;
}

ul.tabbernav li {
 display: inline;
}

ul.tabbernav li a {
	float:left;
	height:26px;
	width:184px;
	margin-right:3px;
	display:inline;
	overflow:hidden;
	text-indent:-999em;
	background-image:url(../images/tub_news_f.gif);
	background-repeat:no-repeat;
	cursor:pointer;
	}
	#newstubnav2 { background-position:0 0; }
	/*#newstubnav2 { background-position:-187px 0; }*/
	#newstubnav1 { background-position:-374px 0; }

ul.tabbernav li a:hover {
	background-image:url(../images/tub_news.gif);
}

ul.tabbernav li.tabberactive a {
	background-image:url(../images/tub_news.gif);
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	width:558px;
	margin:0 10px;
	border-top:solid 3px #D7053D;
	background-color:#FFF;
	padding-bottom:1px;
	zoom:1;

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

