/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.eacTabber-live .eacTabber-hide {
	display: none;
}

/*--------------------------------------------------
  .eacTabber = before the tabber interface is set up
  .eacTabber-live = after the tabber interface is set up
  --------------------------------------------------*/
.eacTabber { display: none; }
.eacTabber-live {
	margin-top: .5em;
}

/*--------------------------------------------------
  ul.eacTabber-nav = the tab navigation list
  li.eacTabber-active = the active tab
  --------------------------------------------------*/
ul.eacTabber-nav {
	margin: 0;
	padding: 0px;
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 7px;

}

ul.eacTabber-nav li {
	list-style: none;
	margin: 0;
	display: inline;

}

ul.eacTabber-nav li a {
	padding-top: 7px;
	padding-bottom: 7px;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 24px;
	padding-right: 25px;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	border-bottom: none;
	background: #fff;
	text-align: center;
	text-decoration: none;

}

ul.eacTabber-nav li a:link { 
	color: #ffffff;
	background: #c2af00; 
	border-bottom: none;

}
ul.eacTabber-nav li a:visited { 
	color: #b19b00; 
	border-bottom: none;

}

ul.eacTabber-nav li a:hover {
	color: #ffffff;
	background: #c2af00;
	border-bottom: none;

}

ul.eacTabber-nav li.eacTabber-active a {
	color: #b19b00;
	border-bottom: 1px solid #ccc;
	background: #ffffff;
	border-bottom: none;

}

ul.eacTabber-nav li.eacTabber-active a:hover {
	color: #b19b00;
	border-bottom: 1px solid #ccc;
	background: #ffffff;
	border-bottom: none;

}

/*--------------------------------------------------
  .eacTabber-tab = the tab content
  Add style only after the tabber interface is set up (.eacTabber-live)
  --------------------------------------------------*/
.eacTabber-live .eacTabber-tab {
	padding: 0;
	border: 1px solid #cccccc;
//	overflow: auto;
	background: #fff;

 /* 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 */
/*
.eacTabber-live .eacTabber-tab h2 {
	display:none;
}
*/
/*
.eacTabber-live .eacTabber-tab h3 {
	display:none;
}
*/

/* Example of using an ID to set different styles for the tabs on the page */
.eacTabber-live#tab1 {}
.eacTabber-live#tab2 {}
.eacTabber-live#tab2 .eacTabber-tab {
 /*height:200px;
 overflow:auto;*/
}
