﻿/*textbox autocomplete*/
.SuggestionsConteneur
{
    border: solid #DEDEDE 1px;
    display:none;
    background-color:#F5F5F5;
    width:400px;
    max-height:100px;
    overflow-y:auto;
    overflow-x:hidden;
    position:absolute;
    z-index:1000;
}

.Suggestion
{
    font-family:Verdana, Geneva, sans-serif;
    font-size:smaller;
    background-color:#F5F5F5;
    border:none;
    float:left;
    min-width:400px;
}

.Suggestion b
{
    font-family:Verdana, Geneva, sans-serif;
    font-size:smaller;
    background-color:#F5F5F5;
    border:none;
    width:auto;
    float:left;
    padding-top:1px;
}

.Suggestion input
{
    font-family:Verdana, Geneva, sans-serif;
    font-size:smaller;
    background-color:#F5F5F5;
    border:none;
    float:left;
    padding-top:1px;
}

.Suggestion:hover,.Suggestion:hover b,.Suggestion:hover input
{
    background-color:#DEDEDE;
    cursor:pointer;
}