/**
 * mTip black theme, by mauvm
 * Sep 2, 2011
 * version 1.0
 * http://dev.mauvm.nl/mTip
 *
 * mTip is dual licensed under the MIT and GPL licenses.
 **/
.black.mTip {
	position: relative;
	margin: 0;
	padding: 3px 6px;
	border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;
	background-color: #000;
	background-color: rgba(0,0,0,.7);
	color: #FFF;
	z-index: 100000;
	
	font-family: Verdana, Arial, sans-serif;
	font-size: 11px;
	line-height: 18px;
}

/* Arrows */
.black.mTip:after {
	content: ' ';
	width: 0; height: 0;
	position: absolute;
	margin: 0;
	border: 5px solid #000;
	border-color: transparent;
}

/* > Top */
.black.mTip-top {
	margin: -5px 0 0 0;
}

.black.mTip-top:after {
	left: 50%;
	top: 100%;
	margin: 0 0 0 -5px;
	
	border-top-color: #000;
	border-top-color: rgba(0,0,0,.7);
}

/* > Top right */
.black.mTip-top-right {
    margin: -5px 0 0 -50px;
}

.black.mTip-top-right:after {
	left: 25px;
	top: 100%;
	margin: 0 0 0 -5px;
	
	border-top-color: #000;
	border-top-color: rgba(0,0,0,.7);
}

/* > Right */
.black.mTip-right {
	margin: 0 0 0 5px;
}

.black.mTip-right:after {
	left: -10px;
	top: 50%;
	margin: -5px 0 0;
	
	border-right-color: #000;
	border-right-color: rgba(0,0,0,.7);
}

/* > Bottom right */
.black.mTip-bottom-right {
    margin: 5px 0 0 -50px;
}

.black.mTip-bottom-right:after {
	left: 25px;
	top: -10px;
	margin: 0 0 0 -5px;
	
	border-bottom-color: #000;
	border-bottom-color: rgba(0,0,0,.7);
}

/* > Bottom */
.black.mTip-bottom {
	margin: 5px 0 0;
}

.black.mTip-bottom:after {
	left: 50%;
	top: -10px;
	margin: 0 0 0 -5px;
	
	border-bottom-color: #000;
	border-bottom-color: rgba(0,0,0,.7);
}

/* > Bottom left */
.black.mTip-bottom-left {
    margin: 5px 0 0 50px;
}

.black.mTip-bottom-left:after {
	right: 20px;
	top: -10px;
	margin: 0 0 0 -5px;
	
	border-bottom-color: #000;
	border-bottom-color: rgba(0,0,0,.7);
}

/* > Left */
.black.mTip-left {
	margin: 0 0 0 -5px;
}

.black.mTip-left:after {
	left: 100%;
	top: 50%;
	margin: -5px 0 0;

	border-left-color: #000;
	border-left-color: rgba(0,0,0,.7);
}

/* > Top left */
.black.mTip-top-left {
    margin: -5px 0 0 50px;
}

.black.mTip-top-left:after {
	right: 20px;
	top: 100%;
	margin: 0 0 0 -5px;
	
	border-top-color: #000;
	border-top-color: rgba(0,0,0,.7);
}


/*	Tooltip		*/
.Tooltip_Wrapper {
	position:absolute;
	display:none;
	z-index:10001;
}

.Tooltip {
	display:inline-block;
	position:absolute;
	max-width:200px;
	width:200px;;
}
.up .Tooltip {
	bottom:10px;
}
.down .Tooltip {
	top:10px;
}
#TooltipText {
	background-color: #000;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #FFF;
	display: inline-block;
	padding: 12px;
	text-shadow: 0 1px 0 #000000;
	max-width: 200px;
	width: auto;
	line-height: 1.4em;
}
#Tooltip .Tooltip_arrow {
	height: 0;
	position: absolute;
	width: 0;
	left: 60px;
}
.up .Tooltip_arrow {
	bottom: -5px;
	border-bottom: 0 solid transparent;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 5px solid rgba(0, 0, 0, 0.8);
	border-top: 5px solid #000;
}
.down .Tooltip_arrow {
	top: -5px;
	border-bottom: 5px solid rgba(0, 0, 0, 0.8);
	border-bottom: 5px solid #000;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 0 solid transparent;
}