/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 border-bottom: 0px solid #CDCDCD;
 margin:0;
 padding:0;
 border: 0;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
 height: 15px;
 font-size:11px;
 margin-right:8px;
 font-weight: bold;
 color: #525152;
}

ul.tabbernav li a
{
  border-bottom: none;
  text-decoration: none;
  padding:0;
  margin:0;
  letter-spacing: 1px;
  background-color: #393939;
}

ul.tabbernav li a:link { color: #CDCDCD; }

ul.tabbernav li.tabberactive {
  background-color: #FFDE01;
  color: #525152;
  padding: 1px 5px 0px 5px;
  border-bottom: 1px solid #FFDE01;
}


ul.tabbernav li.tabberactive a
{
 background-color: transparent; /*#FFDE01;*/
 color: #525152;
 font-weight: bold;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 margin-top:0;
 padding:0px;
 border: 0;

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

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

.innertab p {
	border-top: 2px solid #FFDE01;	
}
.innertab ul.tabbernav li {
	background: none;
}

.innertab ul.tabbernav li a {
	background: none;
	color: #FFF;
}

.innertab ul.tabbernav li.tabberactive {
	background-color: #FFDE01;
}
.innertab ul.tabbernav li.tabberactive a {
	background-color: #FFDE01;
	color: #000;
}
