/* Start of CMSMS style sheet 'Tabber' */
/*--------------------------------------------------
  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 {
position: relative;
}
 
/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
 
ul.tabbernav {
     position: absolute;
     width:160px;
     left: -160px;
     top: 0px;
     border: none;
     height: auto;
     border-top: 1px solid #00ACEC;
     list-style: none;
     padding: 0;
     margin: 0;
}
 
ul.tabbernav li {
    list-style: none;
    margin: 0;
    display: block;
}
 
ul.tabbernav li a {
     display: block;
     font-weight: normal;
     text-transform: uppercase;
     font-size:1em;
     line-height: 1em;
     color:#333;
     letter-spacing: 0px;
     padding: 5px 5px 5px 20px; 
     border-bottom: 1px solid #00ACEC;
}
 
/*
ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }
*/
 
ul.tabbernav li a:hover {
     color: #00ACEC;
     text-decoration: none;
}
 
ul.tabbernav li.tabberactive a {
     color: #00ACEC;
}
 
ul.tabbernav li.tabberactive a:hover {

}
 
/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
 
.tabberlive .tabbertab {
    border: none
    clear: both;
}
 
/* If desired, hide the heading since a heading is provided by the tab */
 
/*
.tabberlive .tabbertab h2 {
    display:none;
}
.tabberlive .tabbertab h3 {
    display:none;
}

 
.tabberlive .tabbertab legend, .tabberlive .tabbertab h3, .tabberlive .tabbertab h4 {
    color: #666;
    font-size: 1.2em;
}
*/
/* End of 'Tabber' */

