/*!
 * tTooltip v0.2
 *
 * Copyright 2013 Takien
 * http://takien.com
 * 
 * Licensed under the MIT License
 * http://en.wikipedia.org/wiki/MIT_License
 *
 * follow @cektkp and @perdanaweb
 */
.ttooltip-clearfix {
  *zoom: 1;
}
.ttooltip-clearfix:before,
.ttooltip-clearfix:after {
  display: table;
  content: "";
}
.ttooltip-clearfix:after {
  clear: both;
}

.ttooltip-wrap{
	font-size:13px;
	background:#f5f5f5;
	border:1px solid #b3b3b3;
	z-index:2000;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px; 
	box-shadow: 0pt 2px 4px rgba(0, 0, 0, 0.2);
}
.ttooltip-inner{
	position:relative;
}
.ttooltip-title{
	font-size:1.1em;
	font-weight:bold;
	padding:10px;
	background:#fff;
	color:#333333;
	margin:0;
}
.ttooltip-content{
	padding:5px 10px;
	background:#fff;
	box-shadow: 0pt 2px 4px rgba(0, 0, 0, 0.12);
}
.ttooltip-content p{
	margin:0 0 10px;
}
.ttooltip-arrow{
	position:absolute;
	background:transparent;
	width:0;
	height:0;
	z-index:2001
}
.ttooltip-topleft .ttooltip-arrow{
	left:20px;
	top: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
}
.ttooltip-topright .ttooltip-arrow{
	right:20px;
	top: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
}
.ttooltip-topright .ttooltip-arrow-border,
.ttooltip-topleft .ttooltip-arrow-border{
	top:-11px;
	border-bottom-color:#b3b3b3
}
.ttooltip-bottomleft .ttooltip-arrow{
	left:20px;
	bottom: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #fff;
}
.ttooltip-bottomright .ttooltip-arrow{
	right:20px;
	bottom: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #fff;
}
.ttooltip-bottomleft .ttooltip-arrow.tooltip-arrow-gray,
.ttooltip-bottomright .ttooltip-arrow.tooltip-arrow-gray{
	border-top-color:#f5f5f5
}

.ttooltip-bottomleft .ttooltip-arrow-border,
.ttooltip-bottomright .ttooltip-arrow-border{
	bottom:-11px;
	border-top-color:#b3b3b3
}

.ttooltip-footer{
	padding:10px;
}

.ttooltip-close {
    position: absolute;
    top: -4px;
    right: 0;
	padding: 0px;
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #ccc;
	margin-right:5px;
	margin-top:5px;
}