/*--------------------------------------------------
  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: 3px 0;
	font-weight: bold;
}

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

ul.eacTabber-nav li a {
	-moz-border-radius: .5em .5em 0 0; 
	-webkit-border-top-left-radius: .5em;
	-webkit-border-top-right-radius: .5em;
	padding: 3px .5em;
	margin-left: 3px;
	margin-right: 5px;
	border: 1px solid #090;
	border-top: 1px solid #090;
	border-bottom: none;
	background: #fff;
	text-align: center;
	text-decoration: none;
}

ul.eacTabber-nav li a:link { 
	color: #090; 
}
ul.eacTabber-nav li a:visited { 
	color: #090; 
}

ul.eacTabber-nav li a:hover {
	color: #090;
	background: #fff;
}

ul.eacTabber-nav li.eacTabber-active a {
	color: #fff;
	border-bottom: 1px solid #090;
	background: #363;
}

ul.eacTabber-nav li.eacTabber-active a:hover {
	color: #fff;
	border-bottom: 1px solid #090;
	background: #363;
}

/*--------------------------------------------------
  .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 #090;
	padding: 5px;
	overflow: auto;
	background: #fff;
	-moz-border-radius: .5em .5em; -webkit-border-radius: .5em .5em; border-radius:  .5em .5em;

 /* 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;*/
}

