/*This css covers the basic structure and behavior of a vertical flyout navigation...*/
/*Which means it shouldn't need to much changing*/

/*WARNING: Don't use li elements for styling instead display:inline your li elements*/
/*If you want extra styling then wrap the a tag in other div elements then style those elements*/

/*turn off all the default setting for 'a','li',and 'ul' tags*/
ul.navigation,
ul.navigation a,
ul.navigation li,
ul.navigation ul{padding: 0px;margin: 0px;border: 0px;}
ul.navigation li{display: inline;}
ul.navigation,
ul.navigation ul{list-style: none;}
ul.navigation a,
ul.navigation span {display:block;}
ul.navigation ul{position: absolute;margin-left: -9999px;}