div[id$=_download_schedule]{
	position:relative;
	border:1px lightgray solid;
	border-radius:1em;
	width:8em;
	margin-left:2em;
	margin-top:1em;
	margin-bottom:1em;
	display:inline-block;
	overflow:visible;
}
div[id$=_download_schedule]:hover{
	background:linear-gradient(#ead700 0%, #c9a500 100%);
	cursor:pointer;
}
#vs_download_schedule{
	background-color:#eff2f7;
}
#na_download_schedule{
	background-color:#d3f7ff;
}
div[id$=_download_schedule] p{
	font-weight:bold;
	font-size:1.2em;
	text-align:center;
	margin-bottom:0;
}
div[id$=_download_schedule] img{
	width:6em;
	display:block;
	margin: 0.3em auto 1em auto;
}
div[id$=_download_schedule] .tooltipContainer{
	position:absolute;
	border-radius: 6px;
	padding:5px;
	z-index:1;
	background-color: black;
	text-align:center;
	width:auto;
	margin-top:5px;
	margin-left:5px;
	opacity: 0;
	visibility:hidden;
}
div[id$=_download_schedule]:hover .tooltipContainer{
	opacity:1;
	visibility:visible;
	transition: opacity 1s linear 0.5s;
	-webkit-transition: opacity 1s linear 0.5s;
}
div[id$=_download_schedule] .tooltipText{
	word-break: keep-all;
	color: #fff;
	text-align: center;
}
div[id$=_download_schedule] .tooltipText::after{
	content: "";
	position: absolute;
	bottom: 100%; /* At the bottom of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}
