/*
One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.
*/

/* All <ul> tags in the menu including the first level */
.menu_venstre, .menu_venstre ul {
   margin: 0;
   padding: 0;
   border: none;
   width: 150px;
   list-style: none;
   background: #f4f3f3;
    font-size: 11px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menu_venstre ul {
   visibility: hidden;
   position: absolute;
   top: 0;
   left: 150px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menu_venstre li {
   position: relative;
   margin: 0;
   border-bottom: 1px solid #fff;
}

/* Links inside the menu */
.menu_venstre a {
   display: block;
   width: 100%;
    padding: 5px;
    color: #000;
   text-decoration: none;
   border: 1px solid #B9B9B9;
   /* border: 1px solid transparent; */
}
/*
.menu_venstre#listMenu1Root a {
   border-left: 4px solid #003366;
}

.menu_venstre#listMenu2Root a {
   border-left: 4px solid #ba2f2f;
}

.menu_venstre#listMenu3Root a {
   border-left: 4px solid #339933;
}

.menu_venstre#listMenu4Root a {
   border-left: 4px solid #e7bf1f;
}
*/
/* Items in submenus  */
.menu_venstre#listMenu1Root ul a, .menu_venstre#listMenu1Root ul a, .menu_venstre#listMenu3Root ul a {
   border-left: 0;
}

/*workaround for mac*/
.menu_venstre > li a {
  width: auto;
}

/* blå kant på øverste nivå */
/* .menu_venstre > li > a {
  border-left: 4px solid #003366;
}
*/

/* IE fix because it doesn't support transparent borders */
* html .menu_venstre a {
   border: none;
   /*margin: 1px;*/ /* Tatt bort 25.10.07 */
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/

.menu_venstre a:hover, .menu_venstre a.highlighted:hover, .menu_venstre a:focus {
   background-color: #C8E3EA;
/* color: #FFF;
   background-color: #46A;
   border: 1px solid #ADF; */
   margin: 0;
}

.menu_venstre a.highlighted {
/* color: #FFF;
   background-color: #68C;
   border: 1px solid #CDE; */
   margin: 0;
}

/*
 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:
    .menu_venstre a#xyz {
      background-image: url(out.gif);
    }
    .menu_venstre a#xyz:hover, .menu_venstre a.highlighted#xyz, .menu_venstre a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menu_venstre a .subind {
   float: right; margin-top: 2px;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menu_venstre li {
   float: left;
   height: 1%;
}
* html .menu_venstre a {
   height: 1%;
}
/* End Hack */
