/* $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 {
	background-color: #FFFFFF;
	font-family: Arial;
	font-size: 11px;
	color: #605D5C;
	font-weight: normal;
}
.tabberlive {
 margin-top:0px;
 margin-left:0px;
 margin-right:0px;

}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	color:#000000;
	font-weight:normal;
	display:block;
	margin: 0px;
	width: 203px;
	font-size: 11px;
	padding: 0px;

}

ul.tabbernav li
{
	list-style: none;
	display: inline;
	
}



ul.tabbernav li a:link {
	color:#000000;
	border-right-style: solid;
	border-right-width: 1px;
	border-left-width: 1px;
	border-left-style: solid;
	border-right-color: #f4f4f4;
	border-left-color: #f4f4f4;
	padding-right: 5px;
	padding-left: 5px;
	margin-right: 0px;
}
ul.tabbernav li a:visited { color:#605D5C; }

ul.tabbernav li a:hover
{
 color: #b92a28;
 
}

ul.tabbernav li.tabberactive a
{
	color: #000000;
	text-decoration: underline; 
	font-weight:bold;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #b92a28;
 
 
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
	font: bold 11px Arial;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px; /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */
	margin: 0px;
 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */

}


.tabberlive .tabbertab p{
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-right: 0px;
}
.tabberlive .tabbertab a{
	color:#000000;
}

.tabberlive .tabbertab a:hover{
	color:#b92a28;

}
.tabberlive .tabbertab li {
	list-style:none !important;
	list-style:outside;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;

	}

.tabberlive .tabbertab ul {
	list-style:none;
	margin:0px;
	padding:0px;	

	}

.tabberlive .tabbertab ul li {
	list-style:none;
	color:#aa9f9b;
	display:block;
	margin:2px 0px 2px 0px;
	width:auto;
	}

.tabberlive .tabbertab ul li a {
	color:#000000;
	font-weight:normal;
	display:block;
	background-image: url(images/gold.jpg);
	background-repeat: no-repeat;
	background-position: 0px 9px;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 15px;
	width: 203px;
	}

.tabberlive .tabbertab ul li a:hover {
	color:#b92a28;
	display:block;
	
	
}
/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
	display:none;
	padding: 0px;
	width: 203px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;

}


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