div.sc_menu {
  /* Set it so we could calculate the offsetLeft */
  position: relative;
  height: 140px;
  width: 650px;
  /* Add scroll-bars */
  overflow: auto;
}
ul.sc_menu {
  display: block;
  height: 100px;
  /* Max width here, for users without Javascript */
  width: 5000px;
  padding:10px 0 10px 0;
  /* Remove default margin */
  margin: 0;
  list-style: none;
  background-color:#D4D3BF;
}
.sc_menu li {
  display: block;
  float: left;
  padding: 0 5px;
  width:100px; 
  height:100px;
  overflow:hidden;
}
.sc_menu a {
  display: block;
  text-decoration: none;
}
.sc_menu span {
  /* We want a caption to display on the next line */
  display: block;
  margin-top: 3px;
  text-align: center;
  font-size: 12px;
  color: #444;
}
/* That’s how menu will look if Javascript is disabled */
.sc_menu span {
  display: none;
  margin-top: 3px;
  text-align: center;
  font-size: 12px;
  color: #444;
}
.sc_menu a:hover span { display: block; }
.sc_menu img { border:0px; }
.sc_menu a:hover img { filter:alpha(opacity=70); opacity: 0.7; }
