/* $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:0em;

}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
margin:0 !important;
padding:0 !important;
border-bottom: 0px solid #778;
font: bold 12px Verdana, sans-serif;
background-image:none !important;
background-color:#FFF !important;
border:0px solid blue !important;
float:left !important;
width:auto !important;
margin-top:1em !important;
margin-left:-0.7em !important;



}

ul.tabbernav li
{
 list-style: none;
 margin: 0 !important;
 padding:0 !important;
 display: block !important;
 width:13em !important;
 float:left !important;
 clear:right !important;
 border:0px solid red !important;
 width:auto !important;

}

div.tabbertab h2#more_products {border:1px solid red !important;}

div.tabbertab ul.additional_products {
						border:0px solid red;
						background-image:none !important;
						background-color:#FFF !important;
						width:50em !important;
				}

div.tabbertab ul.additional_products li  img{
						padding:0 !important;
						float:none !important;
						margin:0 !important;
							}
							
div.tabbertab ul.additional_products li {
						display:block !important;
						float:left !important;
						clear:none !important;
						display:inline !important;
						width:22em !important;
						height:22em !important;
						overflow:hidden !important;
						margin:0.8em;
						padding:0.7em;
						}


/*body.forehead_thermometers div.tabbertab ul.additional_products li {width:18em !important;}*/

ul.tabbernav li a
{
 margin-left: 3px;
 border: 0px solid #778;
 border-bottom: none;
 color: #CFCFCF !important;
	font-size: 1.4em !important;
	line-height:1em !important;
	display:block !important;
	text-transform:lowercase !important;
	font-style:italic;
	font-weight:normal;
	text-decoration:underline !important;
	
}

ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }

ul.tabbernav li a:hover
{
 color: #FFF !important;
 background: #CF26AC !important;
 border-color: #227;
}

ul.tabbernav li.tabberactive a
{
 border-bottom: 1px solid #fff;
 color: #B23F8C !important;
 text-transform:uppercase !important;
 font-style:normal;
 font-size: 1.4em !important;
 font-weight:bold;
 text-decoration:none !important;

}

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

}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px !important;
 margin:0 !important;
 padding-top:0 !important;
 border:1px solid #aaa;
 border-top:0 !important;
 clear:both !important;
 border:0px solid green !important;


 /* 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 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;

}

