/* trigger button */
#download_now {
	display:block;
	overflow:hidden;
	cursor:pointer;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	margin: 0px;
	padding: 0px;
}

/* mouseover state */
#download_now:hover {
	background-position:0 -44px ;		
}

/* clicked state */
#download_now:focus {
	background-position:0 -88px;
}

/* tooltip styling */
.tooltip {
	display:none;
	height:96px;
	padding:40px 30px 10px 30px;
	width:190px;
	font-size:11px;
	color:#fff;
	background-image: url(../images/black_arrow_big.png);
}

/* a .label element inside tooltip */
.tooltip .label {
	color:yellow;
	width:35px;
}

.tooltip a {
	color:#ad4;
	font-size:11px;
	font-weight:bold;
}

