/*
---

description: A plugin for enabling autocomplete of a text input or textarea.

authors:
 - Fábio Miranda Costa

license: MIT-style license

...
*/

.ma-container{
    font-family: "Arial";
    color: #000;
    border: 1px solid #333;
    background-color: #fff;
    position: absolute;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
}
.ma-container ul{
    list-style: none;
    overflow: hidden;
    width: 140%;
}
.ma-container li{
    font-size: 12px;
    font-weight: bold;
    
    padding: 2px 5px;
    line-height: 16px;
    cursor: pointer;
    float: left;
    width: 100%;
    overflow: hidden;
}
.ma-container li strong{
    color: #f00;
    font-weight: bold;
    font-style: italic;
}
.ma-container .ma-hover strong{
    color: #fff !important;
    font-size: 13px;
    font-weight: bolder;
}
.ma-container .ma-hover{
    color: #000;
    background-color: rgb(226, 24, 24) !important;
    font-size: 12px;
    font-weight: thin;
}
.ma-container .ma-odd{
}
.ma-container .ma-even{
    background-color: #efefef;
}
.ma-loading{
    background-image: url('/webstore/assets/images/ajax-loading.gif') !important;
    background-repeat: no-repeat !important;
    background-position: 93% 50% !important;
}
.ma-selected{
    background-color: #fff;
}
