1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
| .ac_results {
| border: 1px solid gray;
| background-color: white;
| padding: 0;
| margin: 0;
| list-style: none;
| position: absolute;
| z-index: 10000;
| display: none;
| }
|
| .ac_results li {
| padding: 2px 5px 2px 0px;
| margin-left : 2px;
| white-space: nowrap;
| color: #101010;
| text-align: left;
| }
|
| .ac_over {
| cursor: pointer;
| background-color: #F0F0B8;
| }
|
| .ac_match {
| text-decoration: underline;
| color: black;
| }
|
|
|