/** Tooltip Styles **/

a.tooltip
{
	position: relative;
	display: inline-block;
}

a.tooltip span
{
	position: absolute;
	width: 280px;
	padding: 5px;
	left: 50%;
	font-size: 13px;
	line-height: 16px;
	margin-left: -148px;
	text-align: center;
	visibility: hidden;
	bottom: 40px; /** Use 30px for simple fade in effect - Removes slide down effect **/
	
	opacity: 0;
	
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

	/** Custom Width **/
	
	a.width200 span
	{
		width: 200px;
		margin-left: -115px;
	}

	a.width250 span
	{
		width: 250px;
		margin-left: -134px;
	}
	
	a.width300 span
	{
		width: 300px;
		margin-left: -160px;
	}

		/** CSS Down Arrow **/
		
		a.tooltip span:after
		{
			content: '';
			position: absolute;
			bottom: -14px;
			left: 50%;
			margin-left: -9px;
			width: 0;
			height: 0;
			border-left: 10px solid transparent;
			border-right: 10px solid transparent;
		}

			a:hover.tooltip span
			{
				opacity: 1;

				visibility: visible;
				bottom: 30px;
				z-index: 100;
			}
	
a.imgleft
{
	float: left;
	margin: 0 15px 10px 0;
}

a.imgright
{
	float: right;
	margin: 0 0 10px 15px;
}
	
		a.imgleft span, a.imgright span
		{
			bottom: 140px; /** Use 130px for simple fade in effect - Removes slide down effect **/
		}
		
			a:hover.imgleft span, a:hover.imgright span
			{
				bottom: 130px;
			}



/** Magenta **/

	a.ttmagenta
	{
		color: #F03;
	}
		
		a.ttmagenta span
		{
			background: #F03;
			border: 4px solid #F03;
			color: #FFF;
		}
	
			a.ttmagenta span:after
			{
				border-top: 10px solid #F03;
			}
			
/** Green **/
	
	a.ttgreen
	{
		color: #9C0;
	}
		
		a.ttgreen span
		{
			background: #4d7721;
			border: 4px solid #4d7721;
			color: #FFF;
		}
	
			a.ttgreen span:after
			{
				border-top: 10px solid #4d7721;
			}
	/*ttpasiva*/
		a.ttpasiva
	{
		color: #C90;
	}
		
		a.ttpasiva span
		{
			background: #C90;
			border: 4px solid #C90;
			color: #FFF;
		}
	
			a.ttpasiva span:after
			{
				border-top: 10px solid #C90;
			} 		
/** Blue **/
	
	a.ttblue
	{
		color: #0E73CD;
	}
	
		a.ttblue span
		{
			background: #0E73CD;
			border: 4px solid #0E73CD;
			color: #FFF;
		}
	
			a.ttblue span:after
			{
				border-top: 10px solid #0E73CD;
			}
			
/** Orange **/
	
	a.ttorange
	{
		color: #EC6C20;
	}
	
		a.ttorange span
		{
			background: #EC6C20;
			border: 4px solid #EC6C20;
			color: #FFF;
		}
	
			a.ttorange span:after
			{
				border-top: 10px solid #EC6C20;
			}
			
/** Red **/
			
	a.ttred
	{
		color: #C00F00;
	}
	
		a.ttred span
		{
			background: #C00F00;
			border: 4px solid #C00F00;
			color: #FFF;
		}
	
			a.ttred span:after
			{
				border-top: 10px solid #C00F00;
			}
			
/** Purple **/

	a.ttpurple
	{
		color: #96C;
	}
	
		a.ttpurple span
		{
			background: #96C;
			border: 4px solid #96C;
			color: #FFF;
		}
	
			a.ttpurple span:after
			{
				border-top: 10px solid #96C;
			}
