

/* set up the overall width of the menu div, the background image and the margins */
.menu {
font-family: verdana, arial, sans-serif; 
width:139px;
height:205px;
background:#fff url(../images/menu/map.jpg);
position:relative;
padding:0;
margin:0;
}
/* remove the bullets and set the margin and padding to zero for the unordered list and position it over the menu background image */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
position:absolute;
left:0;
top:0;
width:139px;
height:205px;
}
/* float the list so that the items are vertical with no gaps and their position relative so that the drop down list will appear in the right place to the right of each list item */
.menu ul li {
float:left; 
position:relative;
width:139px;
}

.menu ul li a, .menu ul li a:visited {
display:block; 
text-indent:-1000px; 
width:139px; 
height:41px;
text-decoration:none;
}

/* set up the background list/link images relative to this css file */
li:hover.map1 {background:transparent url(../images/menu/map1.jpg);}
li:hover.map2 {background:transparent url(../images/menu/map2.jpg);}
li:hover.map3 {background:transparent url(../images/menu/map3.jpg);}
li:hover.map4 {background:transparent url(../images/menu/map4.jpg);}
li:hover.map5 {background:transparent url(../images/menu/map5.jpg);}


ul.sub2 {background:transparent url(../images/menu/sub2.jpg);}

a.sub2a:hover {background:transparent url(../images/menu/sub2a.jpg);}
a.sub2b:hover {background:transparent url(../images/menu/sub2b.jpg);}
a.sub2c:hover {background:transparent url(../images/menu/sub2c.jpg);}


/* make the dropdown ul invisible */
.menu ul li ul {
visibility:hidden;
}

/* specific to non IE browsers */

/* make the sub menu ul visible and position it to the right of the main menu list item */
.menu ul li:hover ul {
visibility:visible;; 
position:absolute; 
top:0; 
left:139px; 
width:120px;
height:132px;
}

/* style the size of the submenu links */
.menu ul li:hover ul li a {
display:block; 
width:120px;
height:44px;
}

