/* $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 {
	margin-left: auto;
	margin-right: auto;
}
.tabberlive {
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 	margin:0;
 	padding: 0;
 	border-right: 1px solid #CABF82;
 	font-weight: bold;
 	float: left;
 	width: 150px; /* 1. change width of tabs*/
 	
}

ul.tabbernav li
{
 	list-style: none;
 	margin: 0;
 	float:left;
	width: 100%;
	display: block;
	padding: 0;
}

ul.tabbernav li a
{
	display: block;
	text-align:right;
	cursor:pointer;
	border-top:solid 1px #CABF82;
	border-left:solid 1px #CABF82;
	border-right: none;
	border-bottom:solid 1px #CABF82;
	height:100px; /* 2. change height of tabs*/
	padding:10px 10px 5px 10px;	
	filter:alpha(opacity=50); 
	-moz-opacity: 0.50; 
	opacity: 0.50;
	margin: -1px -1px 0px 0px;
	text-decoration: none;
	position:relative;
	top:1px;
}

ul.tabbernav li a:link { color: #3F1B09; 	text-decoration: none;}
ul.tabbernav li a:visited { color: #7B3411; }

ul.tabbernav li a:hover
{
 color: #000;
 background: #CABF82;
 border-color: #CABF82;
 filter:alpha(opacity=75); 
 -moz-opacity: 0.75; 
 opacity: 0.75;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-right: none;
 margin:;
 filter:alpha(opacity=100); 
	-moz-opacity: 1; 
	opacity: 1;
	text-decoration: none;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: #fff;
  border-right: none;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 	padding:5px;
 	border-top:1px solid #CABF82;
	border-bottom:1px solid #CABF82;
	border-right:1px solid #CABF82;
	border-left: none;
	float:left;
	margin:-1px;
	width:400px;
	height: 337px;
	position:relative;
	top:1px;
	background-color: #DFD7B3;
 }

 /* 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 */
.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 {
	background: url(/img/tptabber/no1.jpg) top left;
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}
#undefinednav1{
	background: url(/img/tptabber/no1.jpg) top left;
}
#undefinednav2{
	background: url(/img/tptabber/no2.jpg) top left;
}
#undefinednav3{
	background: url(/img/tptabber/no3.jpg) top left;
}

/*not used in the actual tabber code, just surrounding styles*/
.toptitle{
	border-top: 1px solid #CABF82;
	border-left: 1px solid #CABF82;
	border-right: 1px solid #CABF82;
	float: left;
	margin: 0px;
	padding: 5px;
	background: url(/img/barbeige_bg.jpg) repeat-x #CAC083;
	color: #3F1B09;
}
#tabbedinstructions{
	
	clear: both;
	float: left;
}
.instruction-content {
	float: left;
}
.instruction-half {
	background-color: #fff;
	float: left;
	width: 47%;
	margin: 3px;
	padding: 3px;
	height: 210px;
	text-align: center;
}
.instruction-full {
	background-color: #fff;
	clear:both;
	margin: 3px;
	padding: 3px;
	float: left;
	width: 97%;
}
.tabbertab img {
	margin: 5px 0;
}
#tabbedinstructions h4 {
	font-size: 100%;
}
#tabbedinstructions h4 a {
	color: #7B3411;
	text-decoration: underline;
}