a.tooltip
{
	position: relative;
	display: inline-block;
}

a.tooltip span
{
	position: absolute;
	width: 150px;
	padding: 4px;
	left: 50%;
	font-size: 13px;
	line-height: 16px;
	margin-left: -88px;
	text-align: center;
	visibility: hidden;
	bottom: 30px;
	
	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: 130px; 
		}
		
			a:hover.imgleft span, a:hover.imgright span
			{
				bottom: 130px;
			}

	
	a.ttblue
	{
		color: #990000;
	}
	
		a.ttblue span
		{
			background: #990000;
			border: 4px solid #990000;
			color: #FFF;
		}
	
			a.ttblue span:after
			{
				border-top: 10px solid #990000;
			}
			