/* new menu style */ ul.makeMenu, ul.makeMenu ul { width: 150px; /* sets the size of the menu blocks */ background-color: #96b0c1; /* makes the menu blocks IC_menu_1_color_bg - a bg-color MUST be included for IE to work properly! */ padding: 0px; /* stops the usual indent from ul */ cursor: default; /* gives an arrow cursor */ margin-left: 0px; /* Opera 7 final's margin and margin-box model cause problems */ font-family: verdana,geneva,arial,helvetica,sans-serif; font-size: 10px; } ul.makeMenu li { list-style-type: none; /* removes the bullet points */ margin: 0px; /* Opera 7 puts large spacings between li elements */ position: relative; /* makes the menu blocks be positioned relative to their parent menu item*/ padding: 5px; /* the lack of offset makes these appear normal, but it will make a difference*/ /* to the absolutely positioned child blocks */ color: ; /* sets the default font colour to white */ border: 1px solid; border-color: #a8a4a4 #a8a4a4 #C0C0C0 #a8a4a4; cursor:hand; } ul.makeMenu li > ul { display: none; position: absolute; top: 2px; left: 148px; z-index:10; } ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight { background-color: #adccdf; /* gives the active menu a background */ color: #FFFFFF; /* makes the active menu item text to the value of menu1 color over */ z-index:10; } ul.makeMenu ul.CSStoShow { /* must not be combined with the next rule or IE gets confused */ display: block; /* specially to go with the className changes in the behaviour file */ } ul.makeMenu li:hover > ul { /* one of the most important declarations - the browser must detect hovering over arbitrary elements*/ /* the > targets only the child ul, not any child uls of that child ul */ display: block; /* makes the child block visible - one of the most important declarations */ } /* and some link styles */ ul.makeMenu li a { color: #FFFFFF; display: block; text-decoration: none; } ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #FFFFFF; text-decoration: none; } ul.makeMenu li:hover > a { color: #FFFFFF; text-decoration: none; } /* supports links in branch headings - should not be display: block; */