/**************************************************************************
 * Tabs Page Stylesheet
 * Tim Su (timsu@stanfordalumni.org), July 2007
 **************************************************************************/

/*--------------------------------------------------
  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;
    width: 700px;
    margin-left: 111px;
    position: relative;
}

/*--------------------------------------------------
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
    margin-top: -20px;
    padding: 0;
    list-style-type: none;
    font-family: Verdana, sans-serif;
    font-size: 12px;
    position: absolute;
    width: 0px;
}

ul.tabbernav li {
    z-index: 1;
    position: relative;
    left: -150px;
}

/* hack for firefox etc */
html>/**/body ul.tabbernav li {
    left: -110px;
}

ul.tabbernav li a
{
    display: block;
    padding: 5px 2px 5px 2px;
    border-bottom: 1px solid white;
    width: 90px;
    height: 65px;
    font-size: 11px;
    text-align: center;
    background: #c4d3e6;
}

ul.tabbernav li a:link, ul.tabbernav li a:visited
{
    color: #19354a;
    text-decoration: none;
}

ul.tabbernav li.tabberactive a {
    background: #c4d3e6 url(../images/d_tabarrow.png) no-repeat center right;
    color: #333;
}
ul.tabbernav:hover li.tabberactive a {
    background: #c4d3e6;
    color: #19354a;
}
ul.tabbernav li a:hover, ul.tabbernav:hover li.tabberactive a:hover {
    background: #c4d3e6 url(../images/d_tabarrow.png) no-repeat center right;
    color: #333;
}

ul.tabbernav li.tabberactive a:hover
{
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 /* 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; */
}

.noPrint
{
}
