/* JAVASCRIPT TABBER BOX TABS*/

/*--------------------------------------------------
  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:0px;
 padding: 3px 3px;
 border-bottom: 1px solid #AAAAAA;
 font: 12px Verdana, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0px;
 display: inline;
}

ul.tabbernav li a
{
 padding: 3px 0.5em;
 margin-left: 3px;
 border: 1px solid #AAAAAA;
 border-bottom: none;
 background-color: #E3E3EF;
 /*background-image: url('../sb_images/gallery/images/tabbackground.jpg');*/
 text-decoration: none;
 background-color: #F1F1FB;
}

ul.tabbernav li a:link {
color: #000000;
text-decoration: none;
}
ul.tabbernav li a:visited {
color: #000000;
text-decoration: none;
margin-bottom: 0px;
}

ul.tabbernav li a:hover
{
 color: #000000;
 /*background-image: url('../sb_images/gallery/images/tabbackgroundbright.jpg');*/
 background-image: none;
 background-color: #FFFFCC;
 border-color: #AAAAAA;
text-decoration: none;
}

ul.tabbernav li.tabberactive a
{
 color: #417A24;
 background-color: #FFFFFF;
 border-bottom: 1px solid #FFFFFF;
 text-decoration: none;
 /*background-image: url('../sb_images/gallery/images/minitabbackgroundselected.jpg');*/
 background-image: none;
 font-weight: bold;

}

ul.tabbernav li.tabberactive a:hover
{
color: #417A24;
 background: #FFFFFF;
 border-bottom: 1px solid #FFFFFF;
 text-decoration: none;
 font-weight: bold;
 /*background-image: url('../sb_images/gallery/images/minitabbackgroundselected.jpg');*/
 background-image: none;

}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 border:1px solid #AAAAAA;
 border-top:0;
 background-color: #FFFFFF;
 /*background-image: url('../sb_images/gallery/images/tabbedfadeout.jpg'); */
 background-repeat: repeat-x;
 margin-top: 0px;
 padding: 10px;

 /* If you dont want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:145px; */

 /* 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 h4 {
 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;
}


/*Basic Simple Tabs */



.basictab{
padding-bottom: 3px;
padding-left: 10px;
margin-left: 0;
font: bold 12px Verdana;
border-bottom: 1px solid gray;
list-style-type: none;
text-decoration: none;
color: #000000;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.basictab li{
display: inline;
margin: 0;
}

.basictab li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid gray;
border-bottom: none;
background-color: #F1F1FB;
color: #000000;
}

.basictab li a:visited{
text-decoration: none;
color: #000000;
}

.basictab li a:hover{
/*background-color: #DBDBEB;*/
color: #000000;
text-decoration: none;
}

.basictab li a:active{
color: black;
text-decoration: none;
}

.basictab li.selected a{ /*selected tab effect*/
position: relative;
top: 1px;
padding-top: 4px;
background-color: #FFFFFF;
background-image: none;
color: #417A24;
}

.basictab li.selected a:hover{ /*selected tab effect*/
position: relative;
top: 1px;
padding-top: 4px;
background-color: #FFFFFF;
background-image: none;
color: #417A24;
}



