/* $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 !important;
}

/*--------------------------------------------------
  .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 !important;
 //padding: 0px 0 !important;
padding: 10px !important;
 border-bottom: 2px solid #c0c0c0 !important;
 font: #ff6600 15px !important;
}

ul.tabbernav li
{
 list-style: none !important;
 margin: 0 !important;
 display: inline !important;
}

ul.tabbernav li a
{
 padding: 3px 0.5em !important;
 margin-left: 3px !important;
 font-size: 15px !important;
 border: 1px solid #d0d0d0 !important;
 border-bottom: none !important;
 background: #ffffff !important;
 text-decoration: none !important;
}

/* inactive tab */
ul.tabbernav li a:link {
 background-color: #fff !important;
 color: #808080 !important;
 font-weight: normal !important;
 font-size: 15px !important;
 text-transform: capitalize !important;
 border-bottom: 0px solid #ffffff !important;
 border-right: 1px solid #f0f0f0 !important;
 border-left: 1px solid #f0f0f0 !important;
 border-top: 1px solid #f0f0f0 !important;
 padding: 10px !important;

}

ul.tabbernav li a:visited { color: #000000 !important; font-weight: normal !important; }

ul.tabbernav li a:hover
{
 background-color: #fff !important;
 border-bottom: 0px solid #ffffff !important;
 color: #a0a0a0 !important;
 font-weight: normal !important;
 font-size: 15px !important;
 border-right: 1px solid #c0c0c0 !important;
 border-left: 1px solid #c0c0c0 !important;
 border-top: 1px solid #c0c0c0 !important;
 padding: 10px !important;
}

/*active tab below */
ul.tabbernav li.tabberactive a {
 background-color: #fff !important;
 border-bottom: 2px solid #ffffff !important;
 color: #000000 !important;
 font-weight: normal !important;
 text-transform:capitalize !important;
 font-size: 20px !important;
 border-right: 2px solid #c0c0c0 !important;
 border-left: 2px solid #c0c0c0 !important;
 border-top: 2px solid #c0c0c0 !important;
 padding: 10px !important;


}

/* active tab hover text */
ul.tabbernav li.tabberactive a:hover
{
 color: #000000 !important;
 background: white !important;
 border-bottom: 4px solid white !important;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding: 20px !important;
 border: 1px solid #f6f6f6 !important;
 border-top: 0 !important;
 //height: 40px !important;
 //overflow: none !important;

	//background: #f9f9f9 !important;
	//background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f9f9f9)) !important;
	//background: -moz-linear-gradient(top,  #ffffff,  #f9f9f9) !important;
	//filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f9f9f9') !important;
	//border-radius: 5px !important;

 
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display: none !important;
}
.tabberlive .tabbertab h3 {
 display:none !important;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px !important;
 overflow:auto !important;
}
