/*--------------------------------------------------
  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:-5px 0px 0px 0px;  padding: 0px 0px 9px 0px;  border-bottom: 1px solid #E1DFDF; }

ul.tabbernav li {  list-style: none;   margin:0px 0px 0px 0px;  display: inline; }

ul.mdp li a { background: red;}

ul.tabbernav li a {  padding: 10px 22px 10px 23px;  margin-left: 0px; border-right:1px solid #E1DFDF; border-top:1px solid #E1DFDF; border-bottom: none; text-decoration: none; background:#38585B; color: #000; font-weight: bold; font-size: 11px;}

ul.tabbernav li a:link { color: #fff; }
ul.tabbernav li a:visited { color: #fff; }

ul.tabbernav li a:hover { color: #fff;    border-top: 1px solid #aaa;}
ul.tabbernav li.tabberactive a { border: 0px solid #fff; background:#657B7D;  color: #fff;  border-right:1px solid #E1DFDF; border-top:1px solid #E1DFDF;}
ul.tabbernav li.tabberactive a:hover { color: #fff;  border-top: 1px solid #ddd;}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab { padding:5px;  border:1px solid #E1DFDF; border-top:0; background:#fff; /* If you don't want the tab size changing whenever a tab is changed you can set a fixed height */
 height:105px; /* */
 /* If you set a fix height set overflow to auto and you will get a scrollbar when necessary */
 /*  overflow:auto;  */
}
 .tabberlive .tabbertab p{font-size:11px; color:#6A6767;  padding:5px 10px 0 5px; text-align:justify; line-height:160%;}

/* 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; }

.tabbertab ul  { margin:0; padding:0px 5px 0 15px; margin-top:-3px; }
.tabbertab ul li { font-size:11px; list-style-image:url(../images/list-image.gif); color:#000; padding-top:5px; }
.tabbertab ul li a{ text-decoration:none; color:#6A6767; }
.tabbertab ul li a:hover{ text-decoration:underline; }


/*************************/