.tooltip {
	position: absolute;
	width: auto;
/*	width: 240px;*/
	background-color: rgb(255, 255, 234);
	border: 1px solid black;
	padding: 2px;
	font-size: 12px;
	margin: 1em;
}

.tooltip h1 {
	height: auto;
	margin-top: 0px;
	margin-left: 0px;
	background-color: rgb(106,106,106);
	color: white;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
}

.tooltip p {
	padding: 2px;
	margin-top: 0.5em;
	line-height: 1.2em;
}

.tooltip a.close {
	/* Here for example only. Styles the Close link */
}

.netflix {
	position: absolute;
	margin-top: -230px;
	margin-left: 30px;
	z-index: 1000;
	background-color: transparent;
	width: 328px;
	height: 299px;
	background-image: url(images/bubble.png);
	background-repeat: no-repeat;
	border: none;
	padding-left: 60px;
}

.netflix h1 {
	margin-top: 17px;
	background-color: transparent;
}

.netflix p {
	font-size: 10px;
	width: 230px;
}

.netflix .close {
	display: none;
}

.grassetto{
	font-weight: bold;
}


	
/*
	PURE CSS TOOLTIP
	Per mostrare il tooltip mouseover sulle icone 
*/


a.tooltiponmouseover{
	float:left;
	margin:2px;
}

a.tooltiponmouseover span { 
	display:none;
	background-color: #FFFFFF;
	width:150px;
	height:auto;
	font-weight: bold;
	font-size:13px;
	color: #000000;
	font-family:arial;
	padding:10px; 
	border: 1px solid #000000;
	border-radius: 10px 10px;
	-moz-border-radius: 10px 10px;
	
}
a.tooltiponmouseover:hover span {
display:block;
position: absolute;
top: 1.5em;
left:-10.5em;
z-index: 10000;
}
a.tooltiponmouseover:hover { position: relative; }

/**************************************************************/