﻿/* $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{
	position:relative;
	margin:0px 0px 0px 0px;
	padding:10px 0px 0px 0px;
	background-color:none;
	width:850px;
	z-index:3000;
}



/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/



ul.tabbernav{
	margin:0px 0px 0px 0px;
	padding: 0px;
	height:auto;
	border:0px;
	background-color:#none;
		z-index:1000;
}



ul.tabbernav li{
	list-style: none;
	margin: 0px;
	display: inline;
			z-index:1000;
}



ul.tabbernav li a{
	padding: 16px 16px;
	margin-right: 1px;
	background-color: #D2D2D2;	
	text-decoration: none;

	-webkit-border-top-left-radius: 12px;
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topleft: 12px;
	-moz-border-radius-topright: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;

	border-style:solid;
	border-width:0px;
	border-bottom-width:0px;
	border-color:#E2E2E2;

	font-family:Verdana, Arial, sans-serif;
	font-size:9.5px;
	font-size-adjust:0.58;	
	font-weight:normal;
}


ul.tabbernav li a:link { color: #000000; }
ul.tabbernav li a:visited { color: #000000; }

ul.tabbernav li a:hover{
	color: #ffffff;
	background-color: #D2D2D2;

	-webkit-border-top-left-radius: 12px;
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topleft: 12px;
	-moz-border-radius-topright: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;

	border-style:solid;
	border-width:0px;
	border-bottom-width:0px;

}



ul.tabbernav li.tabberactive a{
	padding: 16px 20px 16px 20px;
	color:#AB1800;
	background-color:#ffffff;
	height:auto;

	-webkit-border-top-left-radius: 12px;
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topleft: 12px;
	-moz-border-radius-topright: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;

	border-style:solid;
	border-width:0px;
	border-bottom-width:0px;
	border-color:#D1D1D1;
}



ul.tabbernav li.tabberactive a:hover{
	color: #AB1800;
	background-color: none;

	-webkit-border-top-left-radius: 12px;
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topleft: 12px;
	-moz-border-radius-topright: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;

	border-style:solid;
	border-width:0px;
	border-bottom-width:0px;
	border-color:#D1D1D1;
	
			z-index:1000;
}







/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/






.tabberlive .tabbertab {
	padding:40px 20px 60px 20px;
	margin-top:12px;

	background-color:none;
	border-style:solid;
	border-top-width:0px;
	border-left-width:0px;
	border-right-width:0px;
	border-bottom-width:0px;
	border-color:#D1D1D1;
			z-index:4000;
}








.content_tab{
	float:right;
	margin:5px 0px 0px 0px;
	padding:0px 0px 0px 0px; 
	width:340px;
	height:auto;
	font-family:Verdana, Arial, sans-serif;
	font-size:14px;
	font-size-adjust:0.58;	
	font-weight:normal;
	text-align:justify;
	color:#000;
	background-color:none;		
}


#slideshow_tab1, #slideshow_tab2, #slideshow_tab3, #slideshow_tab4, #slideshow_tab5, #slideshow_tab6  {
	width:440px;
	height:300px;
	margin:15px 0px 0px 0px;		
}










 /* 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 h2, .tabbertab h2 {
	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;
}





