.TMenu {
width:964px; 
font-size:0.85em;
z-index:999;
}
/* remove all the bullets, borders and padding from the default list styling */
.TMenu ul{
padding:0;
margin:0;
list-style-type:none;
height:40px;
z-index:999;
}
.TMenu ul ul {
min-width:150px;
width:auto;
margin-top:1px;
z-index:999;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown TMenu positon */
.TMenu li {
float:left;
width:124px;
position:relative;
z-index:999;
}
/* style the links for the top level */
.TMenu a, .TMenu a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#fff; 
width:123px; 
height:34px;  /* 30px*/
/*background:green; */
padding-left:0px; 
padding-top:5px;
font-weight:bold;
z-index:999;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .TMenu a, * html .TMenu a:visited {
width:150px;
width:123px;
z-index:999;

}
/* style the second level background */
.TMenu ul ul a.drop, .TMenu ul ul a.drop:visited {
background:#8E3A3A;
z-index:999;
}
/* style the second level hover */
.TMenu ul ul a.drop:hover{
background:#c9ba65;
z-index:999;
}
.TMenu ul ul :hover > a.drop {
background:#c9ba65;
z-index:999;
}
/* style the third level background */
.TMenu ul ul ul a, .TMenu ul ul ul a:visited {
background:#C06566;
z-index:999;
}
/* style the third level hover */
.TMenu ul ul ul a:hover {
background:#8E3A3A;
z-index:999;
}
.TMenu ul ul ul :hover > a {
background:#8E3A3A;
z-index:999;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.TMenu ul ul, .TMenu ul ul ul  {
visibility:hidden;
position:absolute;
min-height:50px;
padding-bottom:8px;
top:37px;
left:0;
width:140px;
z-index:999;
}
/* another hack for IE5.5 */
* html .TMenu ul ul {
top:30px;
t\op:31px;
z-index:999;
}

/* position the third level flyout TMenu */
.TMenu ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout TMenu for a left flyout */
.TMenu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.TMenu table {position:absolute; top:0; left:0;}

/* style the second level links */
.TMenu ul ul a, .TMenu ul ul a:visited {
background:#C06566; 
color:#ffffff; 
height:auto; 
line-height:1em; 
padding:5px 10px 5px 10px; 
width:149px;
height:25px;
border:1px solid #9A0000;
border-top:none;
font-weight:normal;
z-index:999;
/* yet another hack for IE5.5 */
}
* html .TMenu ul ul a{
width:140px;
w\idth:129px;

}


/* style the top level hover */
.TMenu a:hover, .TMenu ul ul a:hover{
color:#fff; 
background:#8E3A3A;
}
.TMenu :hover > a, .TMenu ul ul :hover > a {
color:#fff;
background:#8E3A3A;
height:25px;
}

/* make the second level visible when hover on first level list OR link */
.TMenu ul li:hover ul,
.TMenu ul a:hover ul{
visibility:visible; 
  
}
.TMenu ul ul li:hover ul{
visibility:visible;
left:-169px;
}
/* keep the third level hidden when you hover on first level list OR link */
.TMenu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.TMenu ul :hover ul :hover ul ul{
visibility:hidden;

}
/* make the third level visible when you hover over second level list OR link */
.TMenu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.TMenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}