/**
 * This CSS file contain all CSS classes
 * for the default completion normal size
 *
 * @author      FIBO team
 * @copyright (C) France Telecom
 */

.cmpl_container {
    background-color: #FFF;
    width: 286px;
    top: 13px;
    left: -4px;
    border-bottom: 2px solid #999;
    border-top: 2px solid #999;
    -moz-box-shadow: 1px 1px 12px #999;
    -webkit-box-shadow: 1px 1px 12px #999;
    box-shadow: 1px 1px 12px #999;
    _filter: progid:DXImageTransform.Microsoft.Shadow(color='#999999',Direction=135,Strength=2);
    z-index: 900;
}

.cmpl {
    overflow: hidden;
    border: 2px solid #999;
    /* width: 300px; */
}

.cmpl .label {
    color: #333;
    font-family: arial, sans-serif;
    font-size: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* add shadow on top of default and toptrend block */
.cmpl .label.blockTop{
    -webkit-box-shadow: 0px 5px 8px 0px rgba(100, 100, 100, 0.4);
    box-shadow: 0px 5px 8px 0px rgba(100, 100, 100, 0.4);
    height: 8px;
    margin: -8px -8px 8px -8px;
}

.cmpl .suggestion {
    border-collapse: collapse;
    cursor: pointer;
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    color: #333;
    padding: 0 5px;
}

.cmpl .suggestion.highlighted {
    background-color: #979797;
    border-left: 0 none;
    border-right: 0 none;
    color: #FFF!important;
    padding: 0 7px;
}

.cmpl .suggestion .content {
    display: block;
    font-family: arial, sans-serif;
    font-size: 15px;
    margin: 5px 0 0 3px;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* DIRECTLINK */
.cmpl.link {
    color: #0044BB;
    text-decoration: underline;
}

.cmpl.link .rightLabel {
    font-family: arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #979797;
    float: right;
    line-height: 30px;
}

.cmpl.link .suggestion.highlighted,
.cmpl.link .suggestion.highlighted .rightLabel {
    color: #FFF;
}


/* TOPTREND */
.cmpl.top .suggestion {
    height: 38px !important;
    padding: 0;
}

.cmpl.top .suggestion.highlighted {
    background-color: #FFF!important;
    border-left: 2px solid #999 !important;
    border-right: 2px solid #999 !important;
}

/* don't force at 10px height */
.cmpl.top .label.blockTop {
    height: auto;
}

/* add bottom margin only for toptrend block */
.cmpl.top .label.blockBottom {
    height: 8px;
}

.cmpl.top .date {
    display: block;
    float: right;
    font-family: arial, sans-serif;
    font-size: 12px;
    margin: 25px 25px 0 0;
    color: #999;
}

.cmpl.top .date .day {
    display: none;
}

.cmpl.top .label {
    display: block;
    float: left;
    color: #666;
    font-family: arial, sans-serif;
    font-size: 15px;
    margin: 23px 0 7px 10px;
}

.cmpl.top .header {
    height: 0;
    border-top: 1px solid #CCC;
    margin: 0 30px 0 30px;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.cmpl.top .container {
    height: 26px;
    margin: 6px 2px 0 2px;
}

.cmpl.top .suggestion.highlighted .container {
    background-color: #979797 !important;
}

.cmpl.top .container span {
    vertical-align: middle;
}

.cmpl.top .container .number {
    display: inline-block;
    font-family: arial black, arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: #666;
    margin: 4px 0 0 30px;
    width: 20px;
    line-height: 20px;
    overflow: hidden;
}

.cmpl.top .suggestion.highlighted .container .number {
    color: #FFF;
}

.cmpl.top .container .text {
    display: inline-block;
    font-size: 15px;
    margin: 5px 0 0 10px;
    padding: 0;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cmpl.top .suggestion.highlighted .container .text {
    color: #FFF!important;
}


