﻿/* $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 {

}
.tabberlive 
{
  
    height: 55px;
    margin: 0;
    padding: 0;
    
}


/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
    text-align: left;
    color: #fff;
    font-weight: bold;
    text-decoration:none;
    font-family: arial, helvetica, sans-serif;
    font-size: 9pt;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
 float:left;
  
}

ul.tabbernav li a
{
text-decoration: none;
font: 12px Arial; /*tab font */
color:#000; /*font color */
width: 83px; /*width of tab image */
height: 25px; /*height of tab image */
line-height:12px;
float:left;
display:inline;
background-image:url(/Asianbook/Images/BackGround/inactive.png);  /*URL to tab image */
background-repeat: no-repeat;
background-position:0 100%;
padding-top:10px;
padding-bottom:0px;
text-align: center;
overflow:visible;


}


ul.tabbernav li a:link { color: #448;
     }
ul.tabbernav li a:visited { color: #667; }

ul.tabbernav li a:hover
{
    color: #fff;
    background-image: url(/Asianbook/Images/BackGround/inactive.png);
}

ul.tabbernav li.tabberactive a
{color: #fff;
 background-image:url(/Asianbook/Images/BackGround/active.png);
 
}

ul.tabbernav li.tabberactive a:hover
{
 color: #fff;
background-image:url(/Asianbook/Images/BackGround/active.png);
 
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
    clear:both;
	font: 12px Arial; /*tab font */
    color:#fff; /*font color */
	height:30px;
	background:#1b75b6;
	padding-left:100px;

}

.tabberlive .tabbertab a {
	display:block;
	font: 12px Arial; /*tab font */
    color:#fff; /*font color */
    float:left;
	width:115px;
	text-align:center;
	height:30px;
	line-height:30px;
	margin-top:0px;
	background:url(/Asianbook/Images/BackGround/gap.gif) top right no-repeat;
}

/* 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;
}

