/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
#fsmenu {
 font-size: small;
 margin-left: 2px;
 z-index: 2;
}
#fsmenu, #fsmenu  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
#fsmenu ul {
 visibility: hidden;
 position: absolute;
 top: 2.5em;
 left: 0px;
 width: 180px;
}

/* Second and third etc. level submenus - position across from parent instead */
#fsmenu ul ul {
 top: 0px;
 left: 180px;
}

/*
 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.
*/
#fsmenu li {
 float: left;
 position: relative;
 background: #FFF;
 border: 1px solid #CCC;
 margin-left: 3px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
#fsmenu ul li {
 float: none;
 border-color: #666;
 border-width: 1px 2px;
 margin-right: 0;
 margin-bottom: -1px;
 z-index: 3;
}
#fsmenu ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
#fsmenu a {
 display: block;
 padding: 3px 7px 4px 7px;
}
#fsmenu ul li a {
 color: #000;
 text-decoration: line-through;
}
#fsmenu ul li a:link,
#fsmenu ul li a:visited {
 text-decoration: none;
}

/*
 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:
    #fsmenu a#xyz {
      background-image: url(out.gif);
    }
    #fsmenu a#xyz:hover, #fsmenu a.highlighted#xyz, #fsmenu a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
#fsmenu a .subind {
 display:  none;
 font-size: x-small;
}
#fsmenu ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
#fsmenu a {
 float: left;
}
#fsmenu ul a {
 float: none;
}
/* \*/
#fsmenu a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html #fsmenu  ul li {
 float: left;
 height: 1%;
}
* html #fsmenu  ul a {
 height: 1%;
}
/* End Hack */
