/* $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 {
	width: 560px;
	float:left;
	padding: 20px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 border-bottom: 3px solid #63A6DB;
 height:24px;
 
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
	float:left;
}

ul.tabbernav li a
{
	display:block;
	color:#000;
	font-weight:bold;
	padding: 2px 0;
	float:left;
	width: 130px;
	margin: 0 3px;
	font-size:12px;
	line-height:19px;
	text-align:center;
	text-decoration:none;
	border: 1px solid #3399cc;
 background: url(images/div_box_head.jpg) no-repeat center center;
}

ul.tabbernav li a:link { color: #000; }
ul.tabbernav li a:visited { color: #fff; }

ul.tabbernav li a:hover
{
 color: #fff;
 background: #AAE;
	background: url(images/button_bkg.jpg) repeat-x center center;
}

ul.tabbernav li.tabberactive a
{
	background: url(images/button_bkg.jpg) repeat-x center center;
 color: #000;
 border-color: #63A6DB;
}

ul.tabbernav li.tabberactive a:hover
{
	background: url(images/button_bkg.jpg) repeat-x center center;
 color: #000;
 border-color: #63A6DB;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:3px solid #83BBD9;
 border-top:0;
 background: #FFFFFF;
 	font-size: 12px;
	font-weight:bold;

 /* 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 .tabbermorelink {
	font-weight:bold;
	text-align:center;
	clear:left;
	margin: 5px 0;
}
 
 .tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}
.tabberlive .tabbertab h4 {
	color:#2D83CC;
	padding: 4px 0;
	font-size: 12px;
}
/* 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;
}
.tabberlive .tabbertab .item{
	width:33%;
	float:left;
	margin:5px 0;
	text-align:center;
}
.tabberlive .tabbertab .item{
	width:33%;
	float:left;
	margin:5px 0;
}
.tabberlive .tabbertab .siteitem{
	width: 171px;
	float:left;
	margin: 0 0 0 3px;
	background: #E0E1E5;
	padding: 3px;
	border: 1px solid #83bbd9;
	font-size:11px;
	font-weight:bold;
	height: 125px;
}
.tabberlive .tabbertab .siteitem img{
	display:block;
	float:left;
	border: 1px solid #83bbd9;
	margin:2px 2px 15px 0;
}
