/*

iss.css
rather than edit this file, copy it to your themes template directory and
edit it there: e.g. twentyten/iss.css

contents:

        1. instant search & suggest plugin

*/


/* 1. instant search & suggest plugin
--------------------------------------------------------------------------------------- */

/* force a scrollbar to stop visual jumping */
html
{
    overflow-y: scroll;
}

.jtisearch_results
{
    background: #fff;
    display: none;
    list-style: none;
    margin: 8px 0 0 -136px;
    padding: 10px 0 0;
    position: absolute;
    border: 1px solid #e8e8e8;
    z-index: 10000;
}

.jtisearch_results li
{
    text-align: left;
    font-size: 12px;
    line-height: 16px;
    word-wrap: break-word;
    padding: 10px 20px;
    transition: all .1s ease-out;
}
.jtisearch_results li:hover{
    background-color: rgba(128, 49, 167, 0.2);
    transition: all .2s ease-out;
}
.jtisearch_results li:hover .jtisearch_results__title{
    color: rgba(128, 49, 167, 1);
    transition: all .2s ease-out;
}
.jtisearch_results__title{
    font-weight: 700;
}

.jtisearch_over
{
    cursor: pointer;
}


.jtisearch_match
{
    color: rgba(128, 49, 167, 1);
}

/* new - different layouts/styles */

.jtisearch_results li.jtisearch-result
{
    overflow: hidden;
}

span.jtisearch-sub
{
    display: block;
}

.jtisearch_results li img
{
    float: left;
    margin-right: 10px;
}

/* view more */

.jtisearch_results li.jtisearch-more
{
    padding: 10px 20px;
    text-align: center;
    color: rgba(128, 49, 167, 1);
    border-top: 1px solid #e8e8e8;
    margin-bottom: 0;
    background: #fff;
    transition: all .1s ease-out;
}
.jtisearch_results li.jtisearch-more:hover{
    background: #eee;
    transition: all .2s ease-out;
}

/* while search is being performed show loading icon */

.jtisearch-on
{
    background-image: url(../images/loader.gif) !important;
    background-repeat: no-repeat !important;
    background-position: 98.5% center !important;
}