/* HORIZONTAL FREESTYLE MENU LAYOUT */

ul#navmain ul {
 visibility: hidden;
 position: absolute;
 left:5px;
 top:29px;
 margin:0px;
 padding:0px;
 width: 110px;
 background-color:#979797;
 border-bottom: solid 4px #946AA6;
}

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

/*
 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.
*/
ul#navmain li, ul#navmain li li, ul#navmain li li li {
 float: left;
 position: relative;
}






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


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