/* 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; 
margin:0 auto; 
position:relative;
z-index:1;
text-align:center;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu2 ul {
padding:0; 
margin:0;
list-style-type: none;
border:0;
}
/* float the list so that the items are in a line */
.menu2 ul li {

}
/* style the links to be 124px 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 {
text-align:center; 
text-decoration:none; 
color:#000; 
}
/* make the dropdown ul invisible */
.menu2 ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu2 ul li a{
color:#; 
background:#;

}
/* make the sub menu ul visible and position it beneath the first list item */
.menu2 ul li ul {
display:block; 
margin:0 auto;
}
/* make the sub menu ul li the full width with padding and border. */
.menu2 ul li ul li {
width:470px;
background:#fff; 
color:#000;
margin:0 auto;
}

/* style the initial image size 100px x 75px no border and 5pixel padding */
.menu2 ul li ul li a img {
width:100px; height:120px;
border:0; margin:5px;
}

/* style the size, background color, border and margin of the submenu links */
.menu2 ul li ul li a {
float:left;
width:110px;
height:130px;
background:#eee;
border:1px solid #888;
margin:2px;
}

/* style position of the links on hover */
.menu2 ul li ul li a:hover {
position:relative;
}

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