/*! miniTip CSS - v1.5.3 */

#miniTip {
    /* main styles for tooltip */
    color: #FFF;
    font-size: 12px;
    border: #E86537 4px solid;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    /* end editing style */
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    
    background: #F58733;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F48636), to(#E86537));
    background: -webkit-linear-gradient(#F48636,#E86537);
    background: -moz-linear-gradient(#F48636,#E86537);
    background: -ms-linear-gradient(#F48636,#E86537);
    background: -o-linear-gradient(#F48636,#E86537);
    background: linear-gradient(#F48636,#E86537);
    -pie-background: linear-gradient(#F48636,#E86537); 

    behavior: url(css/PIE.htc);
}

/* title bar style */
#miniTip_t {
    background-color: #f5edc2;
    font-weight: 700;
    padding: 4px 6px;
}

/* main content style */
#miniTip_c { padding: 4px 8px }


/* arrow holder, no need to edit */
#miniTip_a {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* arrow pointing down, change border-top color to change color of the arrow */
#miniTip .n {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #E86537;
    border-bottom: 0;
}

/* arrow pointing up, change border-bottom color to change color of the arrow */
#miniTip .s {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #E86537;
    border-top: 0;
}

/* arrow pointing left, change border-right color to change color of the arrow */
#miniTip .e {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    border-right: 8px solid #E86537;
    border-left: 0;
}

/* arrow pointing right, change border-left color to change color of the arrow */
#miniTip .w {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    border-left: 8px solid #E86537;
    border-right: 0;
}