/*--------------------------------------------------
  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 {
 padding-top:20px;
 clear:both;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 20px 0px 9px;
 margin-top:-20px;
 margin-bottom:20px;
 font: 12px Verdana, sans-serif;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0px 1px 0px 0px;
 float:left;
 background:url("/sites/all/themes/daac/images/tab_left_dark.gif") no-repeat left top;
}

ul.tabbernav li a
{
 display:block;
 background: #DDE;
 text-decoration: none;
 padding:8px 15px;
 background:url("/sites/all/themes/daac/images/tab_right_dark.gif") no-repeat right top;
}

ul.tabbernav li a img {
	display:inline;
	margin-right:4px;
	vertical-align:middle;
	border:0;
}


ul.tabbernav li.tabberactive
{
 background:url("/sites/all/themes/daac/images/tab_left_light.gif") no-repeat left top;
}

ul.tabbernav li.tabberactive a
{
 background:url("/sites/all/themes/daac/images/tab_right_light.gif") no-repeat right top;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border-left:1px solid #D4D4D4;
 border-right:1px solid #D4D4D4;
 border-bottom: 1px solid #ACACAC;
 border-top:0;
 background:#F2F2F2;
 /* 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; */
}



/* Example of using an ID to set different styles for the tabs on the page 
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
*/

.tabberlive .tabbertab {border:1px solid #D3D3D3; }