﻿/*!
 * Completer v0.1.2
 * https://github.com/fengyuanchen/completer
 *
 * Copyright 2014-2015 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2015-01-03T12:17:43.862Z
 */

.completer-container {
  position: absolute;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: normal;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #ccc;
}

.completer-container li {
  padding: .5em .8em;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  /*white-space: nowrap;*/
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.completer-container .completer-selected,
.completer-container li:hover {
  margin-left: -1px;
  background-color: #eee;
  border: 1px solid #39f;
}
