.tipsy {
    font-size: 12px;
	font-weight:normal;
	color:#333333 !important;
    position: absolute;
    z-index: 90;

}
div.title{
    font-weight: bold;
    color: #FF0000;
}
.tipsy-inner {
background-image: -webkit-gradient(
	linear,
	left top,
	left top,
	color-stop(0, rgb(250, 251, 211)),
	color-stop(0.76, rgb(255, 255, 255))
);
background-image: -o-linear-gradient(left top, rgb(250, 251, 211) 0%, rgb(255, 255, 255) 76%);
background-image: -moz-linear-gradient(left top, rgb(250, 251, 211) 0%, rgb(255, 255, 255) 76%);
background-image: -webkit-linear-gradient(left top, rgb(250, 251, 211) 0%, rgb(255, 255, 255) 76%);
background-image: -ms-linear-gradient(left top, rgb(250, 251, 211) 0%, rgb(255, 255, 255) 76%);
background-image: linear-gradient(to left top, rgb(250, 251, 211) 0%, rgb(255, 255, 255) 76%);
    color: #333333;
    max-width: 200px;
    padding: 5px 20px 4px 20px;
    text-align: center;
		border:1px solid #9fa089;
		-webkit-box-shadow: -1px 2px 4px 0px rgba(0, 0, 0, 0.14);
		-moz-box-shadow:    -1px 2px 4px 0px rgba(0, 0, 0, 0.14);
		box-shadow:         -1px 2px 4px 0px rgba(0, 0, 0, 0.14);
		margin-bottom:5px;
		opacity:1;
}
 
/* Rounded corners */
.tipsy-inner {
    -webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
}
 
.tipsy-arrow {
    position: absolute;
    width: 12px;
    height: 8px;
    line-height: 0;
    background:url(../images/images/arrow_menu.png) bottom no-repeat;
}
 
/* Rules to color arrows */
.tipsy-arrow-n {
    border-bottom-color: #000;
}
.tipsy-arrow-s {
    border-top-color: #000;
}
.tipsy-arrow-e {
    border-left-color: #000;
}
.tipsy-arrow-w {
    border-right-color: #000;
}
 
.tipsy-n .tipsy-arrow {
    top: 0px;
    left: 50%;
    margin-left: -5px;
    border-bottom-style: solid;
    border-top: none;
    border-left-color: transparent;
    border-right-color: transparent;
}
.tipsy-nw .tipsy-arrow {
    top: 0;
    left: 10px;
    border-bottom-style: solid;
    border-top: none;
    border-left-color: transparent;
    border-right-color: transparent;
}
.tipsy-ne .tipsy-arrow {
    top: 0;
    right: 10px;
    border-bottom-style: solid;
    border-top: none;
    border-left-color: transparent;
    border-right-color: transparent;
}
.tipsy-s .tipsy-arrow {
    bottom: -2px;
    left: 50%;
    margin-left: -8px;
}
.tipsy-sw .tipsy-arrow {
    bottom: 0;
    left: 10px;
    border-top-style: solid;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
}
.tipsy-se .tipsy-arrow {
    bottom: 0;
    right: 10px;
    border-top-style: solid;
    border-bottom: none;
    border-left-color: transparent;
    border-right-color: transparent;
}
.tipsy-e .tipsy-arrow {
    right: 0;
    top: 50%;
    margin-top: -5px;
    border-left-style: solid;
    border-right: none;
    border-top-color: transparent;
    border-bottom-color: transparent;
}
.tipsy-w .tipsy-arrow {
    left: 0;
    top: 50%;
    margin-top: -5px;
    border-right-style: solid;
    border-left: none;
    border-top-color: transparent;
    border-bottom-color: transparent;
}
