.menu2 {
font-family: verdana, arial, sans-serif; 
width:625px;
margin:0 auto;
position:relative;
z-index:1;
}

/* 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;
}

/* puts padding and border on menu of photos */
.menu2 ul li {
width:464px;
height:250px;
border:20px solid #0036cc;
background:#eee; 
color:#000;
position:relative;
padding:40px 60px;
float:left;
}

/* 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 {
float:left;
width:110px;
height:85px;
background:#eee;
border:1px solid #888;
margin:1px;
}

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

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

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