/* tooltip styling. uses a background image (a black box with an arrow) */
div.tooltip {
    font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana;
    font-size:14px;
    font-size:14px;
    line-height:14px;
    color:#fff;
}

/* tooltip title element (h3) */
div.tooltip h3 {
    margin:0;
    font-size:18px;
    line-height: 50px;
    margin-top: -20px;
    color:#fff;
}

div.tooltip {
    font-size:12px;
    text-align: left;
    z-index: 960;
}

/* extra */
.tooltip {
    padding: 0 0 0 0;
    position: relative;
    background: transparent;
    display: none;
}

.tooltip-size1 {
    width: 370px;
    position: relative;
}

.tooltip-size2 {
    width: 209px;
    position: relative;
}

.tooltip .tt-top {
    width: 100%;
    padding: 0 0 0 0;
}

.tooltip-size1 .tt-top{
	background: transparent url("../images/tooltip/tooltip_big_border.png") no-repeat left top;
    height: 31px;
}

.tooltip-size2 .tt-top{
	background: transparent url("../images/tooltip/tooltip_small_border.png") no-repeat left top;
    height: 18px;
}

.tooltip .tt-middle {
    background: transparent url("../images/tooltip/tooltip_gradient.gif") repeat-x left -10px;
    position: relative;
}

.tooltip-size1 .tt-middle {
    padding: 12px 8px;
    margin: 0 16px;
    top: -13px;
}

.tooltip-size2 .tt-middle {
    padding: 12px 8px;
    margin: 0 9px;
    top: -7px;
}

.tooltip-size1 .tt-bottom {
    background: transparent url("../images/tooltip/tooltip_big_border.png") no-repeat left bottom;
    padding: 0 2px 6px 2px;
}

* html .tooltip-size1 .tt-bottom {
	background: none !important;
	background: none;
	filter: none !important;
	filter: none;
}

.tooltip-size2 .tt-bottom {
    background: transparent url("../images/tooltip/tooltip_small_border.png") no-repeat left bottom;
    padding: 0 2px 4px 2px;
}

* html .tooltip-size2 .tt-bottom {
	background: none !important;
	background: none;
	filter: none !important;
	filter: none;
}

.tooltip .tt-arrow-c {
    text-align: center;
    display: block;
}


.tooltip .tt-arrow {
    text-align: left;
    width: 28px;
    height: 24px;
    margin: 0 auto;
}

.tooltip.top-center .tt-arrow-c  {
	margin-top: -19px; /* added this because the arrow was too far down */
}

.tooltip.top-center .tt-arrow {
	margin-top: -13px;
	background: transparent url("../images/tooltip/tooltip_arrow.png") no-repeat left bottom;
}

/* bottom center tooltip*/
.tooltip.bottom-center {
	margin-top: 20px;
}

.tooltip.bottom-center .tt-arrow-c {
	margin-top: -6px;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
}

.tooltip.bottom-center .tt-arrow-c .tt-arrow {
	background: transparent url("../images/tooltip/tooltip_arrow_up.png") no-repeat left bottom;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
}

/* center right tooltip*/
.tooltip.center-right {
	margin-left: 10px;
}

.tooltip.center-right .tt-arrow-c {
	margin-left: -10px;
	text-align: left !important;
	text-align: left;
	left: 0px;
	right: 0px;
	margin-right: 0px;
}

.tooltip.center-right .tt-arrow-c .tt-arrow {
	background: transparent url("../images/tooltip/tooltip_arrow_left.png") no-repeat left bottom;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	height: 28px;
}
