/* common styling */
/* set up the overall width of the menu div and the margins with a relative position*/
#menu2 {
font-family: verdana, arial, sans-serif; 
width:501px;
height:450px;
background:#eee;
margin:0 auto; 
position:relative;
z-index:1;
border:1px solid #006300;
}

/* remove the bullets and set the margin and padding to zero for the unordered list */
#menu2 ul {
padding:0; 
margin:0;
list-style:none;
border:0;
}
/* float the list so that the items are in a line */
#menu2 ul li {
      display:inline;
      margin:0;
      padding:0;
}
/* style the links to be 233px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
#menu2 ul li a, #menu2 ul li a:visited {
display:block; 
float:left;
text-align:center; 
text-decoration:none; 
width:166px; 
height:31px; 
color:#000; 
border-right:1px solid #bd8d5e;
background:#ffcc00; 
line-height:30px; 
font-size:11px;
}


/* clear the link floats at the end of each line so that IE gets it right */
span.clr {display:block; clear:both; width:0; height:0; font-size:0; line-height:1px;}



/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
#menu2 ul li:hover a{
color:#fff; 
background:#006600;
}
/* make the sub menu ul visible and position it beneath the first list item */
#menu2 ul li:hover ul {
text-align:left;
display:block; 
position:absolute; 
top:31px; 
left:0; 
}


/* style the size, background color, border and margin of the submenu links */
#menu2 img {
float:left;
width:110px;
height:85px;
background:#eee;
border:1px solid #888;
margin:1px;
padding:5px;
margin-top:5px;
}
/* style position of the links on hover 
#menu2 a:hover {
position:relative;
}
*/

/* style the 2x size image on hover with an absolute position to place it centrally over the original image 
#menu2 a:hover img {
width:200px; height:150px;
position:absolute;
left:-50px; top:-38px;
border:0;
border:1px solid #888;
padding:5px;
background:#ccc;
}
*/
