/* VOISCOPE alan tooltip'leri.
   (i) ikonu saf CSS; aciklama kutusu ise vs-tooltip.js tarafindan body'ye eklenen
   tek bir position:fixed #vsTipBox ile gosterilir -> tum kapsayicilari (overflow + stacking) asar.
   JS kutuphanesi YOK; kendi ~25 satirlik konumlandirici. */
.vs-tip{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:14px;
    height:14px;
    margin-left:5px;
    vertical-align:middle;
    border:1px solid #1F4E79;
    border-radius:50%;
    color:#1F4E79;
    background:#fff;
    font-family:Georgia,'Times New Roman',serif;
    font-style:italic;
    font-weight:bold;
    font-size:10px;
    line-height:1;
    cursor:help;
    position:relative;
    -webkit-user-select:none;
    -moz-user-select:none;
    user-select:none;
    text-transform:none;
}
.vs-tip:hover,
.vs-tip:focus{
    background:#1F4E79;
    color:#fff;
    outline:none;
}
/* JS ile body'ye eklenen tek aciklama kutusu */
#vsTipBox{
    position:fixed;
    display:none;
    max-width:240px;
    background:#1F3864;
    color:#fff;
    padding:8px 10px;
    border-radius:4px;
    font-family:Arial,Helvetica,sans-serif;
    font-style:normal;
    font-weight:normal;
    font-size:12px;
    line-height:1.4;
    text-align:left;
    white-space:normal;
    box-shadow:0 2px 8px rgba(0,0,0,.35);
    z-index:2147483000;
    pointer-events:none;
}
