@charset "utf-8";
/* CSS Document */

#quick_menu {
width: 149px; /* set width of menu */
} 

#quick_menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#quick_menu li.quickmenu {
display: block;
border-width: 0px;
margin: 0;
position: relative;
background: url(new_images/quicklinks.jpg);
border-width: 0px;
width: 149px; /* set width of menu */
height: 45px; /* set height of menu item */
}

/* style, color and size links and headings to suit */
#quick_menu li a.quick_submenu {
font: bold 12px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-color: #ffffff #ffffff #ffffff #ffffff;
border-style: solid;
background: #C7CEE8;
color: #5772A1;
text-decoration: none;
margin: 0;
padding: 2px 3px;
width: 250px;
}

#quick_menu a.quick_submenu:hover {
color: #ffffff;
background: #5772A1;
}

#quick_menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#quick_menu ul ul {
position: absolute;
top: 0;
left: 400;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
}

div#quick_menu ul ul,
div#quick_menu ul li:hover ul
{display: none;}

div#quick_menu ul li:hover ul,
div#quick_menu 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 */
} 
#quick_menu ul li {
float: left; /* cure IE5.x "whitespace in lists" problem */
width: 100%;
}
#quick_menu ul li a {
height: 1%; /* make links honour display: block; properly */
} 

#quick_menu a {
font: bold 0.7em/1.4em arial, helvetica, sans-serif; 
/* if required use em's for IE as it won't resize pixels */
} 
</style>
<![endif]-->