.expand-down {
  font-family:Arial, Helvetica, sans-serif;
  line-height:normal;
  margin-top:0px;
  height:220px;
  width:880px;
  z-index:999999;
  position:relative;
}
/* reset margins and paddings */
.expand-down * {
  margin: 0;
  padding: 0;
}
.expand-down ul {
  padding-top:10px;
  margin-left:10px;
}
.expand-down ul li {
  float:left;
  list-style-type:none;
}
.expand-down ul li a {
  text-decoration:none;
}
.expand-down ul li a img {
  width:110px;  /* initial width of images, 50% of width */
  height:110px; /* initial height of images, 50% of height */
  border:none;
}
/* initially, don't show the label inside <span> tag */
.expand-down ul li a span {
  display:block;
  font-size:16px;
  font-weight: bold;
  text-align:center;
  color: #0e0331;}
.expand-down ul li:hover a span {
  /* show label on mouse hover */
  display:block;
  font-size:22px;
  font-weight: bold;
  text-align:center;
  color: #ff0032;
  text-decoration:underline;
  background: #0e0331;
  padding-top: 10px;
  padding-bottom: 10px;
  letter-spacing: -1px;
}
.expand-down ul li:hover a span:hover  {
	color:#ff0032;
}


/* expand the image to 100% on mouse hover.
** an image becomes active when mouse hovers it
** ideally, the image should have same width and height as below 
*/
.expand-down ul li:hover a img {
  width:150px;
  height:150px;
  z-index: 999999;
  position: relative;
}
/* expand the image next to the right of the active image to 60% using + selector */
.expand-down ul li:hover + li a img {
  width:125px;
  height:125px;
  z-index: 999999;
  position: relative;


}
/* expand the image second to the right of the active image to 55% using + selectors */
.expand-down ul li:hover + li + li a img {
  width:120px;
  height:120px;
  z-index: 999999;
  position: relative;
 }