/* Styles for tooltips generated by pTip() (jquery.ptip.js) */
._ptip{
    margin: 8px 10px;
    padding: 5px;
    padding-right: 10px;
    color: #333;
    background-color: #fff;
    font: 12px/14px Helvetica,Arial,sans-serif;
    border: 1px solid #fc5009;
    border-radius: 2px;
    box-shadow: 0 0 4px;
    z-index: 10000000;
    width: 180px;
}

._ptip.flexwidth {
    width: auto;
    min-width: 40px;
}

/* pointer triangles */
._ptip:before,
._ptip:after{
    content: " ";
    position: absolute;
    width: 0px; height:0px; font-size:0px; line-height:0px;
    border:9px solid transparent;
}

._ptip:before{
    border-width: 11px;
}

/* point up */
._ptip.side_b:before,
._ptip.side_b:after{
    border-top: none;
    border-bottom-color: #fff;
    border-left-width: 0px;
    top: -9px;
    left: 10px;
}
._ptip.side_b:before{
    border-bottom-color: #fc5009;
    top: -11px;
    left: 9px;
}

/* point down */
._ptip.side_t:before,
._ptip.side_t:after{
    border-bottom: none;
    border-top-color: #fff;
    border-left-width: 0px;
    bottom: -9px;
    left: 10px;
}
._ptip.side_t:before{
    border-top-color: #fc5009;
    bottom: -11px;
    left: 9px;
}

/* point right */
._ptip.side_l:before,
._ptip.side_l:after{
    border-width: 6px;
    border-right: none;
    border-left-color: #fff;
    border-left-width: 11px;
    right: -11px;
    top: 4px;
}
._ptip.side_l:before{
    border-left-color: #fc5009;
    right: -13px;
}

/* point left */
._ptip.side_r:before,
._ptip.side_r:after{
    border-width: 6px 12px;
    border-left: none;
    border-right-color: #fff;
    left: -11px;
    top: 4px;
}
._ptip.side_r:before{
    border-right-color: #fc5009;
    left: -14px;
}
