/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */
#tabber-widget {}
/*--------------------------------------------------
  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:0;
	display: block;
	clear: both;
	height: auto;
	width: 100%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	margin:0;
	padding:0;
	font-size:0.8em;
	border-bottom: 1px solid #ddd;
	padding-bottom:3px;
	text-transform: uppercase;
	list-style-image: none;
	list-style-type: none;
}

ul.tabbernav li
{
	margin: 0;
	padding: 0;
	list-style-image: none;
	list-style-type: none;
	display: inline;

	
}

ul.tabbernav li a
{
	padding: 5px 10px;
	margin-right: 5px;
	border: 1px solid #ac2c00;
	border-bottom: none;
	text-decoration: none;
	color: #FFF !important;
	text-shadow: 0px 1px 0px #000;
	-webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
	
}

ul.tabbernav li a:link {}
ul.tabbernav li a:visited {}

ul.tabbernav li a:hover
{
	color: #fff !important;
	background: #B02D00;
	text-shadow: 0px 1px 0px #000;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 background:#fff!important;
 border: 1px solid #ddd;
 border-bottom: 1px solid #fff;
 color:#000 !important;
 text-shadow: 0px 1px 1px #fff;
}

ul.tabbernav li.tabberactive a:hover
{
 color:#000;
 background: white!important;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	padding: 20px 10px 0 10px;
	border:1px solid #ddd;
	border-top:0;
	margin:0;
	background-color: #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; */

	-webkit-box-shadow: 0 5px 5px -7px #AAA;
	box-shadow: 0 5px 5px -7px #AAA;
}
.tabberlive .tabbertab .widget {
	margin: 0px;
	padding: 0px;
	display:block;
}
.tabberlive .tabbertab .widget ul {
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	list-style-type: none;	
}
.tabberlive .tabbertab .widget li {margin:0;padding:0;}
/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

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