/*--------------------------------------------------
  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 {
	width: 536px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/

ul.tabbernav {
 border-bottom: 2px solid #597DE4;
 height: 20px;
}

ul.tabbernav li {
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a {
	text-decoration: none;
	border-top: 2px solid #597DE4;
 	border-right: 2px solid #597DE4;
 	background: #ACBDF3 url(../images/tab_dots.gif) top left no-repeat;
 	padding: 3px 10px 7px 10px;
 	position: relative;
}

ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }

ul.tabbernav li a:hover { background: #D0DCFA url(../images/tab_dots.gif) top left no-repeat; }

ul.tabbernav li.tabberactive a {
 background-color: #fff;
 font-weight: bold;
 color: #4067E0;
 border-bottom: 2px solid #fff;
}

ul.tabbernav li.tabberactive a:hover {
	background: #FFFFFF url(../images/tab_dots.gif) top left no-repeat; 
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	padding: 15px 0 20px 12px;
 	border: 2px solid #597DE4;
 	border-top: 0;
 	border-left: 0;

 /* 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; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h4 {
 display:none;
}

