/**************
*** working ***
**************/
#dropDownMenu2  a {
    display:block;
}
#dropDownMenu2 {
    width:800px;
    margin:0 auto;
}

/*Top level list items*/
#dropDownMenu2 .dDMUl .dDMLi {
    position:relative;
    float:left;
}

* html #dropDownMenu2 .dDMUl .dDMLi a { /*IE6 hack to get sub menu links to behave correctly*/
/*    display:inline-block;*/
}

/*1st sub level menu*/
#dropDownMenu2 .dDMUl .dDMLi .dDMUl {
    position:absolute;
    left:0;
    display:none;
}

/*Sub level menu list items (undo style from Top level List Items)*/
#dropDownMenu2 .dDMUl .dDMLi .dDMUl .dDMLi {
    float:none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
#dropDownMenu2 .dDMUl .dDMLi .dDMUl .dDMLi .dDMUl{
    top:0;
}