/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor:help;
	width: auto;
	clear:both;
}

/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin-left:0px;
	margin-top:20px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	width:85px;
	float: left;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: auto;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{   
	border: 0px solid #CCC;
	
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a,ul.MenuBarHorizontal a:visited
{

	margin-left:1px; /* lücke zwischen den buttons */
	display: block;
	cursor: pointer;
	background-color: #EEE;
	background-image: url(../bilder/button_inaktiv_red.gif);
	height: 40px;
	line-height: 24px;
	color: #FFFFFF;
	text-decoration: none;
	clear:both;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus,  ul.MenuBarHorizontal a:active
{
	display: block;
	cursor:auto;
	background-color: #EEE;
	height: 40px;
	line-height: 24px;
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(../bilder/button_aktiv_red.gif);
	clear:both;
}
