/* common styling */
/* set up the overall width of the menu div and the margins with a relative position*/
.galerie2 {
font-family: verdana, arial, sans-serif; 
width:380px;
height:150px;
margin:0 auto; 
position:relative;
z-index:1;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.galerie2 ul {
padding:0; 
margin:0;
list-style-type: none;
border:0;
}
/* float the list so that the items are in a line */
.galerie2 ul li {
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. */
.galerie2 ul li a, .galerie2 ul li a:visited {
display:block; 
float:left;
text-align:center; 
text-decoration:none; 
width:124px; 
height:85px; 
color:#000; 
background:#C0D9D9; 
line-height:30px; 
font-size:11px;
}
/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.galerie2 ul li:hover a{
color:#fff; 
background:#C0D9D9;
}
/* style the initial image size 100px x 75px no border and 5pixel padding */
.galerie2 ul li:hover a img, .galerie2 ul li a img {
width:100px; height:75px;
border:0; margin:5px;
}
/* style position of the links on hover */
.galerie2 ul li:hover a:hover {
position:relative;
}
/* style the 2x size image on hover with an absolute position to place it centrally over the original image */
.galerie2 ul li:hover a:hover img {
width:200px; height:150px;
position:absolute;
left:-50px; top:-38px;
border:0;
border:1px solid #888;
padding:5px;
background:#ccc;
}

