/* AF UI Library - Tooltip CSS by David Dedden and Josh Lizarraga */
/* Copyright 2011 Autofusion.com */

/* Tooltip boundingBox */

.af-tooltip {
	z-index: 30000;
}

.af-tooltip-hidden {
	visibility: hidden !important;
	z-index: -30000 !important;
}

/* Tooltip contentBox */

.af-tooltip .af-tooltip-content {
	margin: 10px;
    padding:10px;
	border: 2px solid #000000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 1.2em;
    color: #ffffff;
    background: hsla(0, 0%, 0%, .75);
    background: #404040\9; /* IE6, IE7, IE8 */
    -moz-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .25);
    -webkit-box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .25);
    box-shadow: 0px 2px 2px hsla(0, 0%, 0%, .25);
}

/* Tooltip Arrow */

.af-tooltip .af-tooltip-arrow {
	position: absolute;
	width: 0 !important;
	height: 0 !important;
	border: 5px solid transparent;
	_border: 5px solid pink; /* IE6 */
	_filter: chroma(color=pink); /* IE6 */
	line-height: 0 !important;
	font-size: 0 !important;
	overflow: hidden !important;
}

.af-tooltip .af-tooltip-arrow-top {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-top-color: #000000;
}

.af-tooltip .af-tooltip-arrow-right {
	bottom: 50%;
	left: 0;
	margin-bottom: -5px;
	border-right-color: #000000;
}

.af-tooltip .af-tooltip-arrow-bottom {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-bottom-color: #000000;
}

.af-tooltip .af-tooltip-arrow-left {
	right: 0;
	bottom: 50%;
	margin-bottom: -5px;
	border-left-color: #000000;
}