/* CSS Document */
div.sc_menu_wrapper {
	position: relative; 	
	height: 265px;/* height was 500px */
	/* Make bigger than a photo, because we need a place for a scrollbar. */
	width: 362px;/* width was pic width +30px = 160px old */
	
	margin-top: 18px;	
	margin-left: 10px;
	overflow: auto;
}
div.sc_menu {
	padding: 15px 0;/* was = 15px old */
}
.sc_menu a {
	display: block;
	margin-bottom: 1px;/* was = margin-bottom: 5px; */
	width: 332px;/* width was pic width = 130px old */	
}




.sc_menu a:hover {
	background-image: url('/imgs/homenew/hover.png');
}
.sc_menu img {
	display: block;
	border: none;
}

.sc_menu_wrapper .loading {
	position: absolute;
	top: 50px;
	left: 10px;
	
	margin: 0 auto;
	padding: 10px;/* was = 10px old */

	width: 332px;/* width was pic width = 130px old */
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;	
	
	text-align: center;
	color: #fff;
	border: 1px solid rgb(79, 79, 79);
	background: #1F1D1D;
}
/* Styling tooltip */
.sc_menu_tooltip {
	display: block;
	position: absolute;
	
	padding: 6px;
	font-size: 12px;	
	color: #fff;
	
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;	
	
	border: 1px solid rgb(79, 79, 79);
	background: rgb(0, 0, 0);
	/* Make background a bit transparent for browsers that support rgba */	
	background: rgba(0, 0, 0, 0.5);
}

/* Here are styles for a link to an article. Not for you :) */
#back {
	margin-left: 8px;
	color: gray;
	font-size: 18px;
	text-decoration: none;
}
#back:hover {
	text-decoration: underline;
}

