@media print
{
	.tabs
	{
		display: none;
	}
}
@media screen
{
	.tabs
	{
		position: absolute;
		left: 0px;
		bottom: 0px;
		width: 900px;
		height: 48px;
		z-index: 3;
		margin: 0px auto;
	}
	.tabs .tabsBottom
	{
		position: absolute;
		left: 0px;
		bottom: 0px;
		height: 26px;
		width: 100%;
		background: url(images/tab-bottom.png) bottom left repeat-x;
	}
	
	.tabsMenu,
	.subMenu
	{
		list-style: none;
		margin: 0px 0px 0px 6px;
		padding-left: 0px;
	}
	.tabsMenu li,
	.subMenu li
	{
		position: relative;
		float: left;
		margin-left: 4px;
	}
	
	.tabsMenu li a
	{
		display: block;
		padding: 3px 10px 3px 10px;
		color: #fff;
		text-decoration: none;
	}
	.tabsMenu li .tabLeft,
	.tabsMenu li .tabRight
	{
		position: absolute;
		top: 0px;
		width: 3px;
		height: 22px;
	}
	.tabsMenu li .tabLeft
	{
		left: 0px;
		background: url(images/tab-corner-left.png) top left no-repeat;
	}
	.tabsMenu li .tabRight
	{
		right: 0px;
		background: url(images/tab-corner-right.png) top right no-repeat;
	}
	
	.subMenu li a
	{
		display: block;
		padding: 6px 14px 4px 14px;
		text-decoration: none;
	}
	.subMenu li a:hover,
	.subMenu li a:active
	{
		text-decoration: underline;
	}
	.subMenu li.selected a
	{
		font-weight: bold;
		padding: 6px 12px 4px 12px;
	}
	

	/* Blue theme (default) */
	.tabs .tabsBottom
	{
		background-color: #BFC5DF;
	}
	.tabsMenu li a
	{
		background-color: #00488E;
	}
	.tabsMenu li.selected a
	{
		font-weight: bold;
		background-color: #BFC5DF;
		color: black;
	}
	.subMenu li a
	{
		color: #00488E;
	}

	/* Red theme */
	body.red-theme .tabs .tabsBottom
	{
		background-color: #E9C4BD;
	}
	body.red-theme .tabsMenu li a
	{
		background-color: #9E032A;
	}
	body.red-theme .tabsMenu li.selected a
	{
		background-color: #E9C4BD;
		color: black;
	}
	body.red-theme .subMenu li a
	{
		color: #9E032A;
	}

	/* Purple theme */
	body.purple-theme .tabs .tabsBottom
	{
		background-color: #D4BFD4;
	}
	body.purple-theme .tabsMenu li a
	{
		background-color: #6E005F;
	}
	body.purple-theme .tabsMenu li.selected a
	{
		background-color: #D4BFD4;
		color: black;
	}
	body.purple-theme .subMenu li a
	{
		color: #6E005F;
	}
}