/*$Id: tabs.css,v 1.2 2008/09/08 02:35:29 johnalbin Exp $

* Tabs CSS
*
* Adds styles for the primary and secondary tabs.
*
* Compare this with default CSS found in the system module's stylesheet (a copy
* of which is in drupal6-reference.css, line 510.)
*
 */
DIV.tabs
{
	margin: 0 0 5px;
}
UL.primary
{
	margin: 0;
	padding: 0 0 0 10px;
	border-width: 0;
	list-style: none;
	white-space: nowrap;
	line-height: normal;
	background: url(images/tab-bar.png) repeat-x left bottom;
}
UL.primary LI
{
	float: left;
	margin: 0;
	padding: 0;
}
UL.primary LI A
{
	display: block;
	height: 24px;
	margin: 0;
	padding: 0 0 0 5px;
/*width of tab-left.png*/
	border-width: 0;
	font-weight: bold;
	text-decoration: none;
	color: #777;
	background-color: transparent;
	background: url(images/tab-left.png) no-repeat left -38px;
}
UL.primary LI A .tab
{
	display: block;
	height: 20px;
/*24px (parent) - 4px (padding)*/
	margin: 0;
	padding: 4px 13px 0 6px;
	border-width: 0;
	line-height: 20px;
	background: url(images/tab-right.png) no-repeat right -38px;
}
UL.primary LI A:hover
{
	border-width: 0;
	background-color: transparent;
	background: url(images/tab-left.png) no-repeat left -76px;
}
UL.primary LI A:hover .tab
{
	background: url(images/tab-right.png) no-repeat right -76px;
}
UL.primary LI.active A, UL.primary LI.active A:hover
{
	border-width: 0;
	color: #000;
	background-color: transparent;
	background: url(images/tab-left.png) no-repeat left 0;
}
UL.primary LI.active A .tab, UL.primary LI.active A:hover .tab
{
	background: url(images/tab-right.png) no-repeat right 0;
}
UL.secondary
{
	margin: 0;
	padding: 0 0 0 5px;
	border-bottom: 1px solid #C0C0C0;
	list-style: none;
	white-space: nowrap;
	background: url(images/tab-secondary-bg.png) repeat-x left bottom;
}
UL.secondary LI
{
	float: left;
	margin: 0 5px 0 0;
	padding: 5px 0;
	border-right: none;
}
UL.secondary A
{
	display: block;
	height: 24px;
	margin: 0;
	padding: 0;
	border: 1px solid #C0C0C0;
	text-decoration: none;
	color: #777;
	background: url(images/tab-secondary.png) repeat-x left -56px;
}
UL.secondary A .tab
{
	display: block;
	height: 18px;
/*24px (parent) - 6px (padding)*/
	margin: 0;
	padding: 3px 8px;
	line-height: 18px;
}
UL.secondary A:hover
{
	background: url(images/tab-secondary.png) repeat-x left bottom;
}
UL.secondary A.active, UL.secondary A.active:hover
{
	border: 1px solid #C0C0C0;
	color: #000;
	background: url(images/tab-secondary.png) repeat-x left top;
}
