﻿@charset "UTF-8";

/*	
	Group: Tabbed Navigation
	
	$Id: tabNav.css,v 1.1 2008/09/22 10:05:26 btapley Exp $
	@author btapley
*/

.tabtitle,
.dyn-tabsection .tabcontent { display: none; }

.hide {
	display: none;
}

/*-----------------------------------------------------------------------

	Object: .tabNav
		Base style for a tab navigation
	
	Usage:
>		<ul class="tabNav">
		
	Applied Tags:
	UL, OL
	
-----------------------------------------------------------------------*/
.tabNav {
	display: block;
	word-spacing: -1ex;
	letter-spacing: -1ex;
	line-height: 0;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 1em;
	zoom: 1;
	_height: 1em;
}

.tabNav li,
.tabNav li a {
	display: inline;
	display: inline-block;
	display: -moz-inline-box;
	zoom: 1;
	_height: 1em;
}

.tabNav li a:hover { background-color: transparent; }	/* override default hover bg color */

.tabNav li {
	padding-bottom: 0; /* unfortunately <LI> is globally redefined to have padding bottom. I need to override that here */
	_display: inline;
	word-spacing: 0;
	letter-spacing: 0;
	line-height: 1.25;
}

[className~=tabNav] li { display: inline; }

.tabNav li a { vertical-align: /*\*/ bottom /*/ baseline /**/; }

/*-----------------------------------------------------------------------

	Object: .tabCenter
		Horizontally centers tab navigation within it's container
	
	Usage:
>		<ul class="tabNav tabCenter">
		
	Applied Tags:
	UL, OL
	
-----------------------------------------------------------------------*/

/*-----------------------------------------------------------------------

	Object: .tabRight
		Positions tab navigation on the right edge of it's container
	
	Usage:
>		<ul class="tabNav tabRight">
		
	Applied Tags:
	UL, OL
	
-----------------------------------------------------------------------*/


/* Hide space delimited selector from Mac IE: http://www.macedition.com/cb/ie5macbugs/substringbug.html \*/

.tabCenter { text-align: center; }

.tabRight { text-align: right; }

/**/



/* CSS Document */

/*-----------------------------------------------------------------------

	Object: .tabZen
		Minimal skin for tabs
	
	Usage:
>		<ul class="tabNav tabZen">
		
	Applied Tags:
	UL, OL
	
-----------------------------------------------------------------------*/

.tabZen {
	padding-left: 0;
	padding-right: 0;
	border-bottom: 3px solid #666;
}

.tabZen li {
	background-repeat: no-repeat;
	font-weight: bold;
}

.tabZen li.on,
.tabZen li.on:hover {  background-color: #666; }

.tabZen li.on a,
.tabZen li.on a:visited,
.tabZen li.on a:hover {	color: #FFF; }

.tabZen li:hover,
.tabZen li.hover { background-color: #EEE; }

.tabZen li:hover a,
.tabZen li.hover a { color: #888; }

.tabZen li a {
	padding: 5px 12px 4px;
	text-decoration: none;
	color: #999;
}

.tabZen li a:visited { color: #999; }

.tabZen li a:hover { _text-decoration: none }

.tabZen li.on a:hover {	_color: #FFF !important; }

.tabZen li.off a:hover { 
	_background-color: #EEE;
	_color: #888 !important;
}