.hg01 {
width:170px; 
text-align:right; 
font-family:Arial, Helvetica, sans-serif; 
font-size:11px; 
font-weight:bold;
}

.menu3 {
margin:0px 0px 0px 0px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.menu3 ul {
position:relative;
z-index:500;
padding:0;
margin:0;
list-style-type:none;
width:170px;
font-family:Arial, Helvetica, sans-serif;
font-size: 11px;
}
/* style the list items */
.menu3 li {
background:#ffffff;
height:18px;
/* for IE7 */
float:left;
text-align:right;
}
.menu3 li.sub {background:#ffffff url(sub.gif) no-repeat right center;} 

/* get rid of the table */
.menu3 table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu3 a, .menu3 a:visited {
display:block; 
text-decoration:none;
height:18px;
line-height:18px;
width:170px;
color:#000;
text-indent:5px;
border:1px solid #cccccc;
border-width:1px 0px 0px 0px;
padding-right:30px;
}
/* hack for IE5.5 */
* html .menu3 a, * html .menu3 a:visited {width:170px; w\idth:170px;}
/* style the link hover */
* html .menu3 a:hover {color:#ff0000; background:#cccccc; position:relative;}

.menu3 li:hover {position:relative;}

/* For accessibility of the top level menu when tabbing */
.menu3 a:active, .menu3 a:focus {color:#ff0000; background:#cccccc;}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menu3 li:hover > a {color:#ff0000; background:#cccccc;}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu3 li ul {
visibility:hidden;
position:absolute;
top:0px;
/* set up the overlap (minus the overrun) */
left:200px;
/* set up the overrun area */
padding:30px;
/* 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 */
.menu3 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 */
.menu3 ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.menu3 ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.menu3 ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.menu3 ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.menu3 ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.menu3 ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.menu3 ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}