div.links
{
  position: absolute;
  top: 0px; left:0px;
  width: 600px;
}

input.sbutton
{
  cursor: pointer;
  color: #6666FF;
  font-weight: bold;
}

div.rmenu
{
  position: absolute;
  top: 10px; left: 620px;
  width: 150px; height: 900px;
}
div.suchtext
{
  width: 150px;
  height:12px;
  font-size: 10px;
  text-align: left;
}
div.menu1
{
  position: relative;
  top: 0px; left: 0px;
  width: 150px; height: 750px;
}
div.menu2
{
  position: relative;
  top: 0px; left: 0px;
  width: 150px; height: 100px;
}

/* VERTICAL FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 position: absolute;
 left: 0px; top: 0px;
 margin: 0;
 padding: 0;
 width: 150px;
 list-style: none;
 font-size: 12px;
 text-align: left;
}
/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist ul {
 display: none;
 position: absolute;
 top: -1px;
 left: 148px;
}
/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li, .menulist a:focus {
 position: relative;
 border: 1px solid #330;
 background-color: #F5F7F9;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}
/* Links inside the menu */
.menulist a, .menulist a:visited {
 display: block;
 padding: 3px;
 color: #6666FF;
 text-decoration: none;
}
/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover {
 color: #FFF;
 background-color: #c2bdb9;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #c2bdb9;
}
/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}
/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */
