.menuR {
z-index:1000;
font-size:10px;
}
/* remove all the bullets, borders and padding from the default list
styling */
.menuR ul {
       padding:0;
       margin:0;
       list-style-type:none;
       width:171px;
}
/* hack for IE5.5 */
* html .menuR ul {
       margin-left:-16px;
       ma\rgin-left:0;
  }
/* position relative so that you can position the sub levels */
.menuR li {
       position:relative;
       background: #eaeaea;
       height:165%;
       margin: 0;
}
.menuR li ul {
       background: #eaeaea;
}
/* get rid of the table */
.menuR table {
       position:absolute; 
       border-collapse:collapse; 
       top:0; 
       left:0; 
       z-index:100; 
       font-size: 1em;
}
/* style the links */
.menuR a, .menuR a:visited {
       display:block; 
       text-decoration:none;
       height:164%;
       line-height:164%;
       width:171px;
       color: #5b7738;
       text-indent:5px;
       font-size:10px;
       margin: 0;
}
/* hack for IE5.5 */
* html .menuR a, * html .menuR a:visited {
          background: #eaeaea;
          width:171px;
          w\idth:171px;
}
/* style the link hover */
* html .menuR a:hover {
       font-size:10px;
       /*color: #5b7738; */
	   color:#000000;
       background: #eaeaeb;
       margin: 0;
}
.menuR :hover > a {
       /*color: #5b7738;*/
	   color:#000000;
       font-size:10px;
       background: #eaeaea;
}
/* hide the sub levels and give them a positon absolute so that they take
up no room */
.menuR ul ul {
       visibility:hidden;
       position:absolute;
       top:0;
       left:-50px; 
       width:50px;
}
.menuR ul ul a {
       width:50px !important;
}

.menuR ul ul ul {
       left:-230px; 
       width:230px;
}
.menuR ul ul ul a {
       width:230px !important;
}
/* make the second level visible when hover on first level list OR link
*/
.menuR ul :hover ul{
       visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link
*/
.menuR ul :hover ul ul{
       visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR
link */
.menuR ul :hover ul :hover ul ul{
       visibility:hidden;
}
/* make the third level visible when you hover over second level list OR
link */
.menuR ul :hover ul :hover ul{ 
       visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR
link */
.menuR ul :hover ul :hover ul :hover ul { 
       visibility:visible;
}
* + html .menuR li.sub {
    margin-bottom:-2px;
    }