/*************************************************************************************************
**					   			HELP															**
*************************************************************************************************/
a.help {
	position:relative; /*this is the key*/
	text-decoration:none
	z-index:0;
}

a.help:hover {
	z-index:1;
	/*font-size: 15px;*/
	/*font-weight: bold;*/
	color: #FF6633;
	cursor: help;
}

a.help span {
	
	position:absolute;
	display:none;
	padding: 10px 10px 10px 10px;
	
	background-image: url("../img/layout/bg.jpg");
	background-repeat:repeat-y;
	
	font:12px Verdana;
	font-weight: normal;
	color: #666666;
	color: #000000;
	text-transform: none;
	
	width: 300px;
	left: -150px;
	top: 15px;
		
}

a.help:hover span { /*the span will display just on :hover state*/
	
	/*la posizione la definisco nella pagina specifica*/
	display:block; 
	position:absolute; 
	background-color: transparent; 
	/*
	display:block;
    position:absolute;
    top:2em; left:2em; width:40em;
    border:1px solid #0cf;
    background-color:#cff; color:#000;
    text-align: justify;
	font-size: 12px;
	*/
}

div.help{
	float: right;
	padding-right: 5px;
}



