/* $Id: tabber.css,v 1.5 4/26/2009 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 {
/*  margin-top:1em; */
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
  margin:0;
  padding: 0;
  height:34px;
  border-bottom: 1px solid #dbdbdb;
  font: bold 12px Verdana, sans-serif;
}

ul.tabbernav li {
	list-style: none;
	margin: 0;
	display: block;
	float:left;
	width:auto;
	margin-top:1px;
	margin-right:5px;
	
 	background:transparent url(../../images/emc/tabber-r.gif) no-repeat scroll 100% 0px;
	height:34px;
}

ul.tabbernav li a:link, ul.tabbernav li a:visited {
 	background:transparent url(../../images/emc/tabber-l.gif) no-repeat scroll 0 0;
	padding:1px 12px 8px 12px;
	height:24px;
	display:block;
	line-height:40px;
	
	color:#666;
	font-family:verdana;
	font-size:11px;
	font-weight:bold;
	text-decoration:none; 
}

ul.tabbernav li.tabberactive, ul.tabbernav li.tabberactive:hover, ul.tabbernav li:hover {
 	background:transparent url(../../images/emc/tabber-r-active.gif) no-repeat scroll 100% 0px;
	height:34px;
	padding:0px;
}

ul.tabbernav li.tabberactive a:link, ul.tabbernav li.tabberactive a:visited, ul.tabbernav li.tabberactive a:hover, ul.tabbernav li a:hover {
	padding:1px 12px 11px 12px;
	height:30px;
	display:block;
	color:#fff;
	font-family:verdana;
	font-size:11px;
	font-weight:bold;

 	background:transparent url(../../images/emc/tabber-l-active.gif) no-repeat scroll 0 0;
	line-height:34px;
}

/* 
ul.tabbernav li.tabberactive a:hover
{
 	background:transparent url(../../images/emc/tabberactive-m.png) repeat-x scroll 0 0;
	color:#666;
	font-family:verdana;
	font-size:11px;
	font-weight:bold;
	border:1px solid #dbdbdb;
	border-bottom: 1px solid #fff;
}
*/

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:1px solid #dbdbdb;
 border-top:0;
 height:230px;
 background-color:#fff;
 

 /* 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; */
}

/* The default 230px applies to the home page, other page need this taller */
.wrapper-body .tabberlive .tabbertab {
  height: 250px;
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
  display:none;
}

.tabberlive .tabbertab h3 {
  display:none;
}

/* 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;
}