/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  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: 2px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	margin:0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	padding-top: 8px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
}

ul.tabbernav li
{
	list-style: none;
	margin: 0;
	display: inline;
}

ul.tabbernav li a
{
	height: 40px;
	margin-left: 10px;
	text-decoration: none;
	-moz-border-radius-topleft:8px;
	-moz-border-radius-topright:8px;
	-webkit-border-top-left-radius:8px;
	-webkit-border-top-right-radius:8px;
	background-color: #FFFFFF;
	padding-top: 8px;
	padding-right: 25px;
	padding-bottom: 8px;
	padding-left: 25px;
	color: #666666;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dcdcdc;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #dcdcdc;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #dcdcdc;
	font-family: "Berlin Sans FB";
	font-size: 18px;
	font-weight: normal;
}

ul.tabbernav li a:link {
	color: #666666;
}
ul.tabbernav li a:visited {

}

ul.tabbernav li a:hover
{
	color: #00709D;
	background-color: #FFFFFF;
	font-size: 20px;
	font-family: "Berlin Sans FB";
}

ul.tabbernav li.tabberactive a
{
	background-color: #dcdcdc;
	color: #BB0909;
}

ul.tabbernav li.tabberactive a:hover
{
	color: #BB0909;
	background-color: #dcdcdc;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0.32,#ffffff),color-stop(0.66,#f8f8f8), color-stop(0.83,#efefef));
	/* chrome 10+, safari 5.1+ */
  background-image:-webkit-linear-gradient(#ffffff,#f8f8f8,#efefef);
	/* firefox; multiple color stops */
  background-image:-moz-linear-gradient(top,#ffffff,#f8f8f8,#efefef);


  /* ie 6+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f8f8f8');
	/* ie8 + */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f8f8f8')";
	/* ie10 */
  background-image: -ms-linear-gradient(#ffffff,#f8f8f8,#efefef);
	/* opera 11.1 */
  background-image: -o-linear-gradient(#ffffff,#f8f8f8,#efefef);
	/* The "standard" */
  background-image: linear-gradient(#ffffff,#f8f8f8,#efefef);
	padding:5px;
	border: 1px solid #dcdcdc;

 /* 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; */
}
.tabberlive  .tabbertab  td {
	font-family: "Bookman Old Style";
	color: #000000;
	font-size: 14px;
	line-height: 25px;
}
.tabberlive    .tabbertab     h2   {
	display: none;
}


.tabberlive    .tabbertab     h3  {
	font-family: Constantia;
	font-size: 17px;
	margin: 0px;
	padding: 0px;
	line-height: 35px;
	text-decoration: underline;

}
/* 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;
}
