﻿/*-----------------------------Scrolling Calendar-----------------------------*/
div.sc_menu_wrapper {
	position: relative;
	height: 325px; /* Make bigger than a photo, because we need a place for a scroll-bar. */;
	width: 350px;
	margin-top: 0px;
	overflow: auto;
}
div.sc_menu_wrapper_large {
	position: relative; /* Make bigger than a photo, because we need a place for a scroll-bar. */;
	width: 400px;
	margin-top: 0px;
	overflow: auto;
}
div.sc_menu {
	padding: 11px 0;
}
.sc_menu a {
	display: block;
	margin-bottom: 5px;
	width: 200px; /* When image support is turned off */;
	color: #333333;
	border-bottom: 1px black;
}
.sc_menu a:hover {
	border-color: gray;
	text-decoration: underline;
}
.sc_menu img {
	display: block;
	border: none;
}
.sc_menu_tooltip {
	display: block;
	position: absolute;
	padding: 6px;
	font-size: 12px;
	color: #ffffff;
	background: rgb(0, 0, 0);
/* Make background a bit transparent for browsers that support rgba */	background: rgba(0, 0, 0, 0.5);
}
