

/* style the outer div to give it width */
.dmenu {
width:155px;
height:20px;
font-size:11px;
left:-10px;
top:-2px;
position:relative;
}

/* remove all the bullets, borders and padding from the default list
styling */
.dmenu ul 
{
padding:0;
margin:0;
list-style-type:none;
background-color:#263135;
width:155px;
}

.dmenu ul ul
{
width:155px;
}

/* float the list to make it horizontal and a relative positon so that you
can control the dropdown menu positon */
.dmenu li
{
float:left;
width:155px;
position:relative;
}

/* style the links for the top level */
.dmenu a, .dmenu a:visited
{
display:block;
font-size: 11px;
text-decoration:none; 
color: #263135; 
width:144px; 
height:20px; 
background: #; 
padding-left:10px; 
line-height:19px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .dmenu a, * html .dmenu
a:visited
{
width:155px;
w\idth:144px;
}

/* style the second level background */
.dmenu ul ul a.drop, .dmenu ul
ul a.drop:visited
{
background: #;
}

/* style the second level hover */
.dmenu ul ul a.drop:hover
{
background: #;
}

.dmenu ul ul :hover > a.drop
{
background: #;
}

/* style the third level background */
.dmenu ul ul ul a, .dmenu ul ul
ul a:visited
{
background: #;
}

/* style the third level hover */
.dmenu ul ul ul a:hover
{
background: #;
}

.dmenu ul ul ul :hover > a
{
background: #;
}

/* style the table so that it takes no part in the layout - required for
IE to work */
.dmenu table {border-collapse:collapse; border:0;
position:absolute; left:0; bottom:-1px;}

/* hide the sub levels and give them a positon absolute so that they take
up no room */
.dmenu ul ul
{
visibility:hidden;
position:absolute;
bottom:21px;
left:0; 
width:155px;
}

* html .dmenu ul ul
{
bottom:30px;
}

/* position the third level flyout menu */
.dmenu ul ul ul
{
left:155px; 
bottom:0;
width:155px;
}

/* position the third level flyout menu for a left flyout */
.dmenu ul ul ul.left
{
left:-155px;
}


/* style the second level links */
.dmenu ul ul a, .dmenu ul ul
a:visited
{
color: #fff; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:134px
/* yet another hack for IE5.5 */
}

* html .dmenu ul ul a
{
font-size: 11px;
width:155px;
w\idth:134px;
}


/* style the top level hover */
.dmenu a:hover, .dmenu ul ul
a:hover
{
color: #000;
font-size: 11px;
background: #263135;
}

.dmenu :hover > a, .dmenu ul
ul :hover > a
{
color: #000;
font-size: 11px;
background: #263135;
}

/* make the second level visible when hover on first level list OR link
*/
.dmenu ul :hover ul
{
visibility:visible;
height:auto;
}

/* keep the third level hidden when you hover on first level list OR link
*/
.dmenu ul :hover ul ul
{
display:none;
}

/* keep the fourth level hidden when you hover on second level list OR
link */
.dmenu ul :hover ul :hover ul ul
{
display:none;
}

/* make the third level visible when you hover over second level list OR
link */
.dmenu ul :hover ul :hover ul
{ 
display:block;
bottom:0;
}

/* make the fourth level visible when you hover over third level list OR
link */
.dmenu ul :hover ul :hover ul :hover ul
{ 
display:block;
bottom:0;
}