/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.verticalright, .verticalright ul {
 margin: 0;
 padding: 0;
 width: 120px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.verticalright ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: -122px;   /* (-) = klappt nach links */
}

/*
 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.
*/
.verticalright li {
 position: relative;
 /*border: 1px solid White;*/
 /*background: #7d80ff;  /* Hellblau */
 margin-bottom: -1px;
}

.vsub {
  border: 1px solid White;
  background: #000063;  /* Dunkelblau */  /*7d80ff;  /* Hellblau */
}

.verticalright ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.verticalright a {
 display: block;
 padding: 5px;
 /*color: #000;*/
 text-decoration: none;
}

/* Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus. */
.verticalright a:hover, .verticalright a.highlighted:hover, .verticalright a:focus {
 color: Black;
 background-color: #1e7bbc;  /* Hellblau */  /*#000063;  /* Dunkelblau */
}

.verticalright  a.highlighted {
 color: White;
 background-color: #1e7bbc;  /* Hellblau */  /*#4549ff;  /* Mittelblau */
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .verticalright a#xyz {
      background-image: url(out.gif);
    }
    .verticalright a#xyz:hover, .verticalright a.highlighted#xyz, .verticalright a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.verticalright a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .verticalright li {
 float: left;
 height: 1%;
}
* html .verticalright a {
 height: 1%;
}
/* End Hack */
