 /* common styling 
 FDF5E6 = light yellowy cream colour
 8B2252 = reddy burgundy thinger
 */
.menu {
font-family: verdana, sans-serif; 
width:750px; 
position:relative; 
font-size:0.7em; /* 1st level text size */
padding-bottom:0px;
text-align:center;
background:#000000; 
}
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
}
.menu ul li {
float:left;  /* float left or right buttons */
position:relative;
}
.menu ul li a, .menu ul li a:visited {
display:block; 
text-decoration:none; 
color:#fff; 
width:125px; 
height:2em; /* height of container */
color:white;  /* unhovered first level menu text colour */
border-right:0px solid #fff;
border-width:0px 0px 0 0; 
background:#8B2252;  /* unhovered first level menu background colour */
padding-top:2px; /* text in the container padding */
/* padding-left:10px; */
line-height:1.5em;
}
* html .menu ul li a, .menu ul li a:visited {
width:125px;
w\idth:125px;
}
.menu ul li ul {
display: none;
}
table {
margin:-1px; 
border-collapse:collapse;
font-size:1em;
}

/* specific to non IE browsers */
.menu ul li:hover a {
color:#fff; 
background:#000;
}
.menu ul li:hover ul {
display:block; 
position:absolute; 
top:1.5em;
margin-top:1px;
left:0; 
width:124px;
}
.menu ul li:hover ul li ul {
display: none;
}
.menu ul li:hover ul li a {
display:block; 
background:#8B2252; /* firefox first level background colour */
color:#fff;  /* firefox first level text colour */
height:auto; 
line-height:1.5em; 
padding:3px 8px; 
width:120px
}
.menu ul li:hover ul li a.drop {
background:#670C35 url(../../graphics/drop.gif) bottom right no-repeat; /* firefox: background on an item that has a popout */
}
.menu ul li:hover ul li a:hover {
background:#B1356E;  /* firefox: background on a hovered menu item */
color:#fff;          /* firefox: text on a hovered menu item */
}
.menu ul li:hover ul li:hover ul {
display:block; 
position:absolute; 
left:125px; /* this is the distance between the menu and its child */
top:0;
width:125px;
}
.menu ul li:hover ul li:hover ul.left {
left:-135px;
}

