
/* All  UL tags */
.horizlist, .horizlist  ul {
 margin: 0;
 padding: 0;
 list-style: none;

}

/* All  submenus - hidden by default, positioned down from parent */
.horizlist ul {
 display: none;
 position: absolute;
 top: 25px;
 left: 0px;
 width: 220px;
 background: #4C7AAC;



}

/* Second  and third etc. level submenus - position across from parent instead */
.horizlist ul ul {
 top: 0px;
 left: 225px;
 width: 100px;

}

.horizlist ul ul ul{
 top: 0px;
 left: 105px;
 width: 210px;

}


/* All  menu items ('li' tags). These are the horizontal styles with borders/overlapping */
.horizlist li {
 float: left;
 position: relative;
 background: #4C7AAC;

 margin-right: -1px;
 }
 
 


/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.horizlist ul li {
 float: left;
 border-width: 0;
 margin-right: 0;
MARGIN-BOTTOM: 1px; 
}




/* Links inside the menu */
.horizlist  a  {
 display: block;
 color: #FFFFFF;
 text-decoration:  none;
PADDING-RIGHT: 0.8em;  PADDING-LEFT: 0.8em; PADDING-BOTTOM: 0.15em;  PADDING-TOP: 0.25em; 
filter:progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135,strength=2);

}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.horizlist a:hover, .horizlist a.highlighted:hover {
 color: #FFA400;
float: left;
}
.horizlist  a.highlighted {
 color: #FFA400;
float: left;
}

   .horizlist a#xyz {progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135,strength=1); text-decoration: none; height:1%; float: left;}
    .horizlist a#xyz:hover, .horizlist a.highlighted#xyz  {progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135,strength=1); text-decoration: none; height:1%; float: left;}



  

/* Only style submenu indicators within submenus. */
.horizlist a .subind {
 display:  none;
}
.horizlist ul a .subind {
 display:  block;
 float: right;
}

/* This  semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .horizlist  ul li {
 float: left;
 height: 1%;
}
* html .horizlist  ul a {
 height: 1%;
}
/* End Hack */ 





/* Just a random style, needed for NS4 */
b, strong {
 font-weight: bold;
}
