@charset "utf-8";
/* CSS Document */
/* Slide_Out */
/* A  vertical menu with  3 level  horizontal slide outs*/
/* to work in IE it needs to call the file "csshover.htc"*/

#menu_list {
	width: 10em; /* set width of menu */
	background: #eee;
	text-align: left;
} 

#menu_list ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu_list a, #menu_list h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
margin: 0;
padding: 2px 3px;
}

#menu_list h2 {
	color: #FFF;
	text-transform: uppercase;
	background-image: url(../images/bg-bubplastic-h-blue.gif);
	font-weight: bolder;
	text-align: center;
}

#menu_list a {
	color: #FFF;
	text-decoration: none;
	background-image: url(../images/bg-bubplastic.gif);
}

#menu_list a:hover {
	color: #FF0;
	background-image: url(../images/bg-bubplastic-h-lime.gif);
}
#menu_list li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#menu_list ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
}
div#menu_list ul ul ul,
div#menu_list ul ul li:hover ul ul
{display: none;}

div#menu_list ul ul li:hover ul,
div#menu_list ul ul ul li:hover ul
{display: block;}

[if IE]>
<style type="text/css" media="screen">
body {
behavior: url(csshover.htc); /* call hover behaviour file */
font-size: 100%; /* enable IE to resize em fonts */
} 
#menu_list ul li {
float: left; /* cure IE5.x "whitespace in lists" problem */
width: 100%;
}
#menu_list ul li a {
height: 1%; /* make links honour display: block; properly */
} 

#menu_list a, #menu_list h2 {
font: bold 0.7em/1.4em arial, helvetica, sans-serif; 
/* if required use em's for IE as it won't resize pixels */
} 

<![endif]
