@charset "UTF-8";
/* CSS Document */

/* 
body {
	padding: 50px 0 0 50px;
}
*/
/* The "width" and "overflow" properties are used to add a scroll-bar to the wrapper div. 
We set the "position" property for easier offset calculation with Javascipt. 
Don't forget that offset is always calculated relative to the positioned parent. */

div.sc_menu {
	/* Set it so we could calculate the offsetLeft */
	position: relative;
	height: 175px;
	width: 791px;
	overflow: auto;
	/* background-color: #6f4141; */
}

ul.sc_menu {
	display: block;
	height: 110px;
	/* max width here, for users without javascript */	
	width: 1500px;	
	padding: 15px 0 0 15px; 
	/* removing default styling */
	margin: 0;
	list-style: none;
		
	/*background: url('navigation.png');	*/	


}

.sc_menu li {
	display: block;
	float: left;	
	padding: 0 4px 0 4px;
}

.sc_menu a {
	display: block;
	text-decoration: none;
}

.sc_menu span {
	display: none;
	margin-top: 2px;
	text-align: left;
	font-size: 10px;	
	color: #fff;
	font-family:Verdana, Geneva, sans-serif;
}

.sc_menu a:hover span {
	display: block;
}

.sc_menu img {
	border: 3px #fff solid;	
    -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
}

.sc_menu a:hover img {
	filter:alpha(opacity=75);	
	opacity: 0.6;
}



/* The "display: none" property hides captions, and we will add "display:block" to ":hover" rule to show them when the mouse is above images.

The "-webkit-border-radius" and "-moz-border-radius" properties add a rounded corners for Firefox, Safari and Chrome. 
Unfortunately, Internet Explorer doesn't support it and will display regular corners instead. */
