@charset "utf-8";
/* CSS Document */
div.sc_menu {  /* Set it so we could calculate the offsetLeft */
margin-left: 0px; /**10px**/
margin-bottom: 0px;  /**10px**/
position: relative;
height: 110px;
width: 668px;  /* Add scroll-bars */
overflow: hidden;
background-color:#6A7179; /** #CCC **/
}
ul.sc_menu {
display: block;
height: 110px;  /* Max width here, for users without Javascript */
width: 5000px;
padding: 0;  /* Remove default margin */
margin: 0 0 0 0;
list-style: none;
}
.sc_menu li {
display: block;
float: left;
padding: 0 1px 0 0;
}
.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: 0;
text-align: center;
font-size: 9px;
}
/** **/
.sc_menu span {
display: none;
margin-top: 0;
text-align: center;
font-size: 9px;
color: #000;
font-weight:normal;
}
.sc_menu a:hover span {
display: block;
}
.sc_menu img {
	border: 1px #666 solid;
}
.sc_menu a:hover img {
filter:alpha(opacity=50);
opacity: 0.5;
text-decoration: none;
}
