/*******************************************
 * styles for the menu frame
 * 
 * the whole menu is done without loading
 * new pages or any javascript.
 *
 * oli 2010
 *******************************************/

body {
  font-family: arial, sans-serif; 
  font-size: 13px;
  text-color: #5E82B9;
  background:#FDFDF6;
}

/* the whole menu is placed in here */
#menu {
  position:absolute;
  width:314px;
  height:580px;
  margin:0 auto;
  left:0px;
  top:0;
  /*font-family:arial, sans-serif;*/
  /*
  background:#f8f8f8;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
  border-right:1px solid #ddd;
  */
}

/* this fills the menu space */
#menu #full {
  position:absolute;
  width: 314px;
  height:570px;
  left: 0px;
  top: 0px;
  /*background:#f8ccf8;*/
  overflow: hidden;
}

/* and this is the div with content, 
 * which get swapped on mouse clicks */
#menu #full div.menu {
  position:relative;
  padding-top: 10px;
  width: 314px; 
  height:560px;
  z-index:200;
}

li {
  /*font-size: 13px;*/
}

/* level 1 style */
ul {
  /*font-size: 12px;*/
  position:absolute;
  list-style: none;
  padding-left: 10px;
  margin-left: 0px;
  top: 0px;
  width: 125px;
}
/* level 2 style */
ul li ul {
  position:absolute;
  top: 0px;
  left: 125px;
  width: 180px;
}
ul li ul li {
  border-top: 1px solid #0D5CAB;
  margin-top: 2px;
  width: 180px;
}

/* level 1 links */
a {
  text-decoration: none;
  color: #0D5CAB;
  display: block;
}
a:visited {
  text-decoration: none;
  color: #0D5CAB;
}
a:link {
  text-decoration: none;
  color: #0D5CAB;
}
a:hover {
  text-decoration: none;
  color: #0D5CAB;
}

/* formattierung fuer level2 menus mit rss icon */
div.rss {
  width: 100%;
  height: 14px;
}

img.rss {
  margin-top: 1px;
  width: 14px;
  height: 14px;
  border: 0;
}

div.rsstext {
  float: left;
  width: 165px;
}

div.rssicon {
  float: left;
}


table.index {
  border-width: 0px;
}

td.index {
  text-align: center;
}


