.menu_sus {
font-size:90%;
margin:0 0 0 0; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.menu_sus ul {
position:relative;
z-index:500;
padding:0;
margin:0;
list-style-type:none;
width:520px;
text-align:center;
float:left;
clear:both;
}
/* style the list items */
.menu_sus li {
background:#A90B1C;
border-left:1px solid #F87F15;
margin:0px;
padding:8px 0 10px 0;
text-align:center;
/* for IE7 */
float:left;
}

/*
.menu_sus li.sub_sus {background:#A90B1C url(sub_sus.gif) no-repeat right center;} 
*/

.sub_sus li{
background:#A90B1C;
border-left:0px;
border-bottom:1px solid #F87F15;
margin:0px;
width:120px;
text-align:center;
float:left;
clear:both;
} 


/* get rid of the table */
.menu_sus table {position:absolute; border-collapse:collapse; width:110px;top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu_sus a, .menu_sus a:visited {
display:block; 
text-decoration:none;
color:#FFFFFF;
padding:3px 5px 3px 5px;
}
/* hack for IE5.5 */
* html .menu_sus a, * html .menu_sus a:visited {}
/* style the link hover */
* html .menu_sus a:hover {color:#CCCCCC; background:#A90B1C; position:relative;}

.menu_sus li:hover {position:relative;}

/* For accessibility of the top level menu_sus when tabbing */
.menu_sus a:active, .menu_sus a:focus {color:#CCCCCC; background:#A90B1C;}

/* retain the hover colors for each sub_suslevel IE7 and Firefox etc */
.menu_sus li:hover > a {color:#CCCCCC;}
 
/* hide the sub_sus levels and give them a positon absolute so that they take up no room */
.menu_sus li ul {
visibility:hidden;
position:absolute;
top:24px;
/* set up the overlap (minus the overrun) */
left:0px;
right:0px;
/* set up the overrun area */
padding:0px;
/* this is for IE to make it interpret the overrrun padding */
background:transparent url(transparent.gif);
}

/* for browsers that understand this is all you need for the flyouts */
.menu_sus li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.menu_sus ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.menu_sus ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.menu_sus ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.menu_sus ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.menu_sus ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.menu_sus ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.menu_sus ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}

