﻿
#menu{ /* nothing in here right now */
}

#menu .Item
{ 
  /* CSS class for non-selected Menu Item */
  width: 120px;
  margin-bottom : 1px;
  background: url(../images/knapp_bak.gif) no-repeat; 
}

#menu .ItemSelected, #menu .ItemHover
{ 
  /* CSS class for hovering and selected Menu Item
     ... which can be split up, of course! */
  width: 139px;
  margin-bottom : 1px;
  background: url(../images/knapp_bak_over2.gif) no-repeat; 
}

/* CSS classes for standard Links, only valid inside the #menu DIV */
#menu a, #menu a:visited
{
	width: 139px;
	margin-top: 3px;
	margin-bottom: 3px;
  background: transparent ! important;
  display: block;
  background: url(../images/knapp_bak.gif) no-repeat; 
}

#menu a,  #menu a:active, #menu a:focus
{
  background: transparent ! important;
  display: block;
  margin-left: 25px;
  padding-top : 3px;
  padding-bottom : 3px;
  text-decoration: none;
  font-weight : bold;
  color : White;
}

#menu a:hover
{
	color: #cccccc;
	}


