/* $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 {
	height: 396px;
	width: 410px;
	background-color: #F2F2F2;
	position: relative;
	z-index: 10;
}
.tabberlive {
	margin-top:1em;
}
/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
	margin:0;
	padding: 3px 0;
	border-bottom: 0px solid #3c80ad;
	font: 12px Arial;
	font-weight:bold;
	color:#3e5869;
}
ul.tabbernav li {
	list-style: none;
	display: inline;
	background-image: url(/images/vid_active_tab.gif);
	height: 30px;
	width: 105px;
	margin-top:0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 0px;
}
ul.tabbernav li a {
	padding: 10px 5px 4px 5px;
	margin-left: 0px;
	border: 0px solid #c3d1d0;
	border-bottom: none;
	background: #e1e8e7;
}
ul.tabbernav li a:link {
	font-weight:bold;
	color:#ffffff;
	background-color: #999999;
	font-family: Arial;
	font-size: 12px;
	text-transform: uppercase;
}
ul.tabbernav li a:visited {
	font: 12px Arial;
	font-weight:bold;
	color:#3e5869;
}
ul.tabbernav li a:hover {
	/*color: #000;
 background: #AAE;*/
 border-color: #c3d1d0;
	background-color: #c3d1d0;
}
ul.tabbernav li.tabberactive a {
	background-color: #0E1D32;
	border-bottom: 1px solid #c3d1d0;
	text-decoration: none;
}
ul.tabbernav li.tabberactive a:hover {
	border-bottom: 1px solid #c3d1d0;
	background-color: #0E1D32;
}
/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	padding:0px;
	border:0px solid #0C73AD;
	border-top:0px;
	background-color: #c3d1d0;
	/*height:303px; */
	height: 296px;
	width:410px;
	overflow:hidden;
}
/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
	display:none;
	background-image: url(/images/vid_active_tab.gif);
	height: 30px;
	width: 105px;
}
/*.tabberlive .tabbertab h3 {
 display:none;
}*/

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 .tabbertab #firstTab {
	margin-left: 0px;
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
	height:200px;
	overflow:hidden;
}

