/* This is the default Tooltipster theme (with the name of 'tooltipster-default') */
.tooltipster-default {
	border-radius: 5px; 
	border: 2px solid #000;
	background: #4c4c4c;
	color: #fff;
}

/* Use this class to style the content of your tooltips. Note that any styles applied here will be overridden by the styles of the theme. */
.tooltipster-default .tooltipster-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}

/* This next part of the code is necessary for Tooltipster to function correctly. Do not edit. */
.tooltipster-base {
	display: block;
	position: absolute;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}

/* These are the different positions of the tooltip. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	position: absolute;
	visibility: hidden;
	z-index: -1;
}
.tooltipster-arrow-top, .tooltipster-arrow-top-right, .tooltipster-arrow-top-left {
	bottom: 0;
	left: 0;
}
.tooltipster-arrow-bottom, .tooltipster-arrow-bottom-right, .tooltipster-arrow-bottom-left {
	top: 0;
	left: 0;
}
.tooltipster-arrow-left {
	top: 50%;
	right: 0;
	margin-top: -5px;
}
.tooltipster-arrow-right {
	top: 50%;
	left: 0;
	margin-top: -5px;
}

/* This is the arrow of the tooltip. */
.tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top .tooltipster-arrow-border {
	border-left: 10px solid transparent !important;
	border-right: 10px solid transparent !important;
	border-top: 10px solid #000 !important;
	bottom: -10px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border {
	border-left: 10px solid transparent !important;
	border-right: 10px solid transparent !important;
	border-bottom: 10px solid #000 !important;
	top: -10px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 10px solid transparent !important;
	border-bottom: 10px solid transparent !important;
	border-left: 10px solid #000 !important;
	right: -10px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 10px solid transparent !important;
	border-bottom: 10px solid transparent !important;
	border-right: 10px solid #000 !important;
	left: -10px;
}

/* This is the inner part of the arrow. */
.tooltipster-arrow-background {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top .tooltipster-arrow-background {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid #4c4c4c !important;
	bottom: -9px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-background {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid #4c4c4c !important;
	top: -9px;
}
.tooltipster-arrow-left .tooltipster-arrow-background {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important;
	border-left: 9px solid #4c4c4c !important;
	right: -9px;
}
.tooltipster-arrow-right .tooltipster-arrow-background {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important;
	border-right: 9px solid #4c4c4c !important;
	left: -9px;
}

/* Tooltipster animations */
.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-o-transition-property: -o-transform, opacity;
	-ms-transition-property: -ms-transform, opacity;
	transition-property: transform, opacity;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
}

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall-show {}
.tooltipster-fall-down {
	top: 10px !important;
}

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide-show {}
