/* CSS navtabs technique from http://www.simplebits.com/bits/css_tabs.html */
.container
{
  background: transparent;
	border: 0;
	margin: 10px 0 10px 0;
	padding: 15px 0;
}

#minitabs
{
	/* background: url(../pnimages/tab_bottom.gif) repeat-x bottom; */
	border-bottom: 1px solid #37699B;
	height: 23px;
	margin: 0 8px 0 0;
	padding: 0 8px;
}

#minitabs li
{
	display: inline;
	list-style-type: none;
	margin: 0; 
	padding: 0;
}
	
#minitabs a:link, #minitabs a:visited
{
	background: #E4EBF1;
	border: 1px solid #37699B;
	color: #444444;
	float: left;
	font-size: 10px;
	font-weight: bold;
	line-height: 18px;
	margin-right: 4px;
	padding: 2px 14px 2px 14px;
	text-decoration: none;
}

#minitabs a:link.active, #minitabs a:visited.active
{
	background: #37699B;
	border: 1px solid #37699B;
	color: #fff;
}

#minitabs a:hover
{
	background: #7799BB;
	color: #f0f0f0;
}
