.tt-container {
	#width: 100px;
	#height: 20px;
	margin: auto;
	#overflow: hidden;
	position: relative;
	display: inline-block;
}

.tt-container #tooltip {
	position: absolute;
	width: 300px;
	height: auto;
	background: #0d6f8a;
	margin-bottom: 20px;
	left: -30px;
	top: -140px;
	opacity: 0;
	visibility: hidden;
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.3)));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#4d000000',GradientType=0 );	
	
	-webkit-transition: all .2s .5s ease;
	-moz-transition: all .2s .5s ease;
	-ms-transition: all .2s .5s ease;
	-o-transition: all .2s .5s ease;
	transition: all .2s .5s ease;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

.tt-container #tooltip .avatar {
	float: left;
	width: 70px;
	height: 70px;
	margin: 5px 15px 5px 5px;
	border: 5px solid rgba(0,0,0,0.2);
	z-index: 5;
	position: relative;
}

.tt-container #tooltip .info h2 {	
	color: white;
	font: bold 17px/34px Arial;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
	margin: 0;
}

.tt-container #tooltip .info {	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: left;
	color: #aaa;
	margin-top: 0;
	margin-bottom: 10px;
	position: relative;
	left: 5px;
	float: left;
}

.tt-container #tooltip .info p {	
	font: 12px/14px Arial, sans-serif;
	color: #aaa;
	margin-top: 0;
}

.tt-container #tooltip:after {
	content: '';
	position: absolute;
	bottom: -10px;
	width: 20px;
	height: 20px;
	background: #0d6f8a;
	left: 40px;
	background-image: -webkit-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -moz-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -o-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -ms-linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	background-image: linear-gradient(-45deg, rgba(0,0,0,0.27) 0%,rgba(0,0,0,0.3) 100%);
	
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	
	box-shadow: 2px 2px 1px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 1px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 2px 2px 1px 0px rgba(0,0,0,0.2);
}


.tt-container a.trigger:hover ~ #tooltip {
	opacity: 1;
	visibility: visible;
	display: inline-block;
	top: -120px;
	
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.tt-container #tooltip:hover {
    	opacity: 1;
	visibility: visible;
	top: -120px;
}


.tt-container #tooltip .close {
	position: absolute;
	top: 5px;
	right: 6px;
	font-size: 20px;
	font-weight: bold;
	line-height: 18px;
	color: #000000;
	text-shadow: 0 1px 0 #ffffff;
	opacity: 0.2;
	filter: alpha(opacity=20);
	text-decoration: none;
}

.tt-container #tooltip .close:hover {
	color: #000000;
	text-decoration: none;
	opacity: 0.4;
	filter: alpha(opacity=40);
	cursor: pointer;
}




.tt-container #tooltip2 {
	position: relative;
	width: 300px;
	height: auto;
	background: #0d6f8a;
	margin-top: 30px;
	margin-bottom: 23px;
	margin-right: 15px;

	opacity: 1;
	visibility: visible;
	display: inline-block;

	background-image: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.3)));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	background-image: linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#4d000000',GradientType=0 );	
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
}

.tt-container #tooltip2 .avatar {
	float: left;
	width: 70px;
	height: 70px;
	margin: 5px 15px 5px 5px;
	border: 5px solid rgba(0,0,0,0.2);
	z-index: 5;
	position: relative;
}

.tt-container #tooltip2 .info h2 {	
	color: white;
	font: bold 17px/34px Arial;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
	margin: 0;
}

.tt-container #tooltip2 .info {	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: left;
	color: #aaa;
	margin-top: 0;
	margin-bottom: 10px;
	position: relative;
	left: 5px;
	float: left;
}

.tt-container #tooltip2 .info p {	
	font: 12px/14px Arial, sans-serif;
	color: #aaa;
	margin-top: 0;
}
