/* Tabification SCREEN Stylesheet
 * version:	1.0
 * by:		William Price
 * since:	15 December 2004
 *
 * COPYRIGHT (c)2004 by William R. Price
 * Released under the GPL.
 * This copyright notice must be kept with the source code and CSS.
 */

/* Contains all the tab "buttons" themselves */
div.tabStrip
{
	position: relative;
	clear: both;
	width: 95%;
	padding: 0 0 0 2em;
	margin: 0;
	
	color: black;
	background: transparent none;

	border: none 0px white;
	
	/*
	height: 2.26em;
	border-bottom: solid 1px black;
	*/
}

/* Forms the actual tab buttons (active or otherwise)*/
div.tabStrip a, div.tabStrip span
{
	display: block;
	float: left;
	clear: right;
	position: relative;
	z-index: 99;
	margin: 0.5em 0.1em 0 0.1em;
	padding: 0.25em 0.4em;
	border: solid 1px black !important;
	
	color: black !important;
	background: #cdf none;

	font-weight: normal;
	
	/* -moz-border-radius: 0em 0.5em 0 0; */
	-moz-border-radius: 0.5em 0.5em 0 0;
}

div.tabStrip a:hover
{
	background: #eef none;
}

/* Overriding properties for a "selected" tab */
div.tabStrip a.Selected, div.tabStrip a.Selected:hover, div.tabStrip span.Selected
{
	padding-top: 0.75em;
	margin: 0 0 0 0;
	border-bottom: solid 1px #ffffe0 !important;

	color: black !important;
	background: #ffffe0 none;
	
	font-weight: bold;
}

/* Contains the body/bodies for the tabs */
div.tabBody
{
	position: relative;
	top: -2px;
	clear: both;

	color: black;
	background: #ffffe0 none;	

	border: solid 1px black;
	margin: 0;
	padding: 0.75em;


	/*
	border-style: none solid solid solid;
	border-width: 0 1px 1px 1px;
	border-color: black;
	*/
}

/* Common properties to all tab content DIVs (height, etc) */
div.tabBody div.tabContentViewable, div.tabBody div.tabContentHidden
{
	display: none;
	height: 20em;
	width: auto;
	overflow: auto;
}

/* Specifically make the Viewable class visible */
div.tabBody div.tabContentViewable
{
	display: block;
}

div.tabBody div div.tabContentTitle
{
	display: none;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 125%;
	
	border-bottom: solid 0.2em gray;
	margin-bottom: 0.2em;
	margin-top: 1em;
}
