/* 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 {

}
 
/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
 
ul.tabbernav {
    margin:0;
    padding: 0;
    font-weight: bold;
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-bottom: -1px;
}
 
ul.tabbernav li {
    list-style: none;
    margin: 0;
    display: block;
    float: left;
}
 
ul.tabbernav li a {
    padding: 2px 4px;
    margin: 0 3px 2px 0;
    border: 1px solid #999;
    color: #444;
    text-decoration: none;
    display: block;float: left;
   background: #ccc;
   font-size: 12px;
}
 
/*
ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }
*/
 
ul.tabbernav li a:hover {
    color: #222;
    background: #EEEEEE;
    border-color: #999;
}
 
ul.tabbernav li.tabberactive a {
    background: #eee;
    border-color: #999 #999 #eee #eee;
    height: 20px;
    color: #222;
    margin: 0 3px 0 0;
}
 
ul.tabbernav li.tabberactive a:hover {
    background-color: #eee;
    border-color: #999;
    color: #222;
}
 
/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
 
.tabberlive .tabbertab {
    padding:10px;
    border-top: 1px solid #999;
    background: #fff;
    clear: both;
    width: 635px;
}
 
/* 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 h4 {
    color: #666;
    font-size: 1.2em;
}

.tabberlive .tabbertab h3 {
   color:#333;
   font-size:1.3em;
   font-weight:bold;
   line-height:1.25em;
   margin:0;
}
 
/* End of 'tabber' */

