/* HORIZONTAL FREESTYLE MENU LAYOUT */

#menuRoot {
 position:relative;
 z-index:9001;
}

/* All <ul> tags in the menu including the first level */
.menu1, .menu1  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

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

/* Second and third etc. level submenus - position across from parent instead */
.menu1 ul ul {
 top: 0px;
 left: 155px;
}

/* All menu items (<li> tags). 'float: left' lines them up horizontally, and    */
/* they are positioned relatively to correctly offset submenus. Also, they have */
/* overlapping borders. */
.menu1 li {
 float: left;
 position: relative;
 background: #90DEFE;
 border: 1px solid #6EC8FE;
 margin-right: 10px;
 font-family : Georgia, Times, serif;
 font-size : 11px;
}
li:hover ul, li.over ul {
  display:block;
}
/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menu1 ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
}
.menu1 ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menu1 a {
 display: block;
 padding: 3px;
 color: #000066;
 text-decoration:  none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menu1 a:hover, .menu1 a.highlighted:hover, .menu1 a:focus {
 background-color: #C8F8FE;
}
.menu1  a.highlighted {
 background-color: #B2EEFE;
}

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

/* Only style submenu indicators within submenus. */
.menu1 a .subind    { display:  none; }
.menu1 ul a .subind { display:  block; float: right; }

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menu1 a    { float: left; }
.menu1 ul a { float: none; }
/* \*/
.menu1 a    { float: none; }
/* */


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