body {
	font-family: Verdana, Arial, sans-serif;
	font-size: 10pt;
}
/* $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:1em;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
	background:#fff;
	float:left;
	width:100%;
	margin:0;padding:0;
	list-style:none;
	line-height:1em;
	border-bottom:1px solid #4d7ab3;
}

ul.tabbernav li
{
	float:left;
	margin:0 5px;
	padding:0;
	text-align:center;
}

ul.tabbernav li a
{
	display:block;
	color:#000;
	text-decoration:none;
	font-weight:bold;
	background:url(/images/wide_tab_3.jpg) no-repeat;
	width:175px;
	margin:0;
	padding:0.5em 0;
}

ul.tabbernav li a:link { 	
	color:#000;
	background:url(/images/wide_tab_3.jpg) no-repeat;
 }
ul.tabbernav li a:visited { 	
	color:#000;
	background:url(/images/wide_tab_3.jpg) no-repeat;
 }

ul.tabbernav li a:hover
{
	color:#000;
	background:url(/images/wide_tab_1.jpg) no-repeat;

}

ul.tabbernav li.tabberactive a:link
{
	color:#fff;
	background:url(/images/wide_tab_2.jpg) no-repeat #174f8a;
}

ul.tabbernav li.tabberactive a:hover
{
	color:#fff;
	background:url(/images/wide_tab_2.jpg) no-repeat #174f8a;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;
 border:1px solid #4d7ab3;
 border-top:0;

 /* 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;
 
}

table {
	border-collapse: collapse;
	}
th {
	border:1px solid #2c84c5;
	background:#2c84c5;
	color:#fff;
	text-align:center;
	}
td {
	border:1px solid #2c84c5;
	vertical-align:top;
	padding:5px;
	}
/* css from FRONTSUMMIT.COM for tabs 
ul#tabs {
	position:relative;
	float:left;
	width:100%;
	padding:0 0 1.75em 1em;
	margin:0 0 .5em 0;padding:0;
	list-style:none;
	line-height:1em;
	border-bottom:1px solid #4d7ab3;
	}
#tabs li {
	float:left;
	margin:0 5px;
	padding:0;
	text-align:center;
	}
#tabs li a {
	display:block;
	color:#000;
	text-decoration:none;
	font-weight:bold;
	background:url(/images/tab_3.jpg) no-repeat;
	width:124px;
	margin:0;
	padding:0.5em 0;
	}

#tabs A:hover,
#tabs A:active {
	color:#000;
	background:url(/images/tab_1.jpg) no-repeat;
}
#tabs A.here:link,
#tabs A.here:visited {
	color:#fff;
	background:url(/images/tab_2.jpg) no-repeat;
}
#tabs A.here:link,
#tabs A.here:visited {
	position:relative;
	z-index:102;
}
*/