/* $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 {
 margin-top:1em;
}
.tabberlive {
 margin-top:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
/*ul.tabbernav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #b20439;
 font: bold 13px Arial;
 text-transform:capitalize;
}*/
ul.tabbernav
{
	margin:0;
	font: bold 13px Arial;
	text-transform:capitalize;
	padding:2px 0px 2px 9px;
}

* html ul.tabbernav
{
	margin:0px;
	font: bold 13px Arial;
	text-transform:capitalize;
	padding:0px 0px 0px 5px;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}


/*ul.tabbernav li a{ padding: 4px; margin-left: 1px; display:block; width:127px; text-align:center; float:left; margin-top:-20px; border: 1px solid #780329; border-bottom: none; background: #ac0038; text-decoration: none; background:url(http://site.beautybrokers.com/imgs/tabs.jpg) no-repeat center top;}*/

ul.tabbernav li a{
	margin-left: 1px;
	display:block;
	width:127px;
	text-align:center;
	float:left; /*border: 1px solid #780329;*/
	border-bottom: none;
	background: #ac0038;
	text-decoration: none;
	background:url(http://site.beautybrokers.com/imgs/tabs.jpg) no-repeat center top;
	padding-top: 4px;
	padding-right: 3px;
	padding-bottom: 4px;
	padding-left: 3px;
}


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

ul.tabbernav li a:hover
{
 color: #fff;
 background:url(http://site.beautybrokers.com/imgs/tabs2.jpg) no-repeat center top;
 /*background: #550216;
 border-color: #780329;*/
}

ul.tabbernav li.tabberactive a
{
 /*background-color: #550216;
 border-bottom: 1px solid #780329;*/
 background:url(http://site.beautybrokers.com/imgs/tabs2.jpg) no-repeat top center;
 
}

ul.tabbernav li.tabberactive a:hover
{
 color: #fff;
 /*background: #550216;
 border-bottom: 1px solid #780329;*/
 background:url(http://site.beautybrokers.com/imgs/tabs.jpg) no-repeat top center;
}

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

.tabberlive .tabbertab {
	padding:4px 3px;
	float: left;
	width: 680px;
	border:1px solid #B20439;
}

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

