blob: ae9d6e19e74510bd870287f8dcc26bc4c73eeef5 (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
/*
================================================
autosuggest, inquisitor style
================================================
*/
div.autosuggest
{
position: absolute;
background-position: top;
background-repeat: no-repeat;
padding: 0px 0 0 0;
}
/* IEXX compatinility */
* html div.autosuggest {
padding-top:1px;
}
/* Only IE7 compatibility */
*+html div.autosuggest {
margin-top:12px;
padding:0px;
}
div.autosuggest div.as_header
{
margin-top:5px;
position: relative;
height: 3px;
padding: 1px 0 0 0 ;
border-top:1px solid #95a5c6;
border-left:1px solid #95a5c6;
border-right:1px solid #95a5c6;
background-color:#ffffff;
background-position: top right;
background-repeat: no-repeat;
overflow: hidden;
}
div.autosuggest div.as_footer
{
position: relative;
height: 3px;
padding: 1px 0 0 0 ;
border-bottom:1px solid #95a5c6;
border-left:1px solid #95a5c6;
border-right:1px solid #95a5c6;
background-color:#ffffff;
background-position: top right;
background-repeat: no-repeat;
overflow: hidden;
}
/* Only IE7 compatibility */
*+html div.autosuggest div.as_header { margin-top:0px; }
* html div.autosuggest div.as_header { margin-top:5px; }
div.autosuggest div.as_footer
{
/* border-bottom:1px solid #95a5c6; */
}
div.autosuggest div.as_header div.as_corner,
div.autosuggest div.as_footer div.as_corner
{
position: absolute;
top: 0;
left: 0;
}
div.autosuggest div.as_footer div.as_corner
{
}
div.autosuggest div.as_header div.as_bar,
div.autosuggest div.as_footer div.as_bar
{
height: 0px;
overflow: hidden;
background-color: #ffffff;
}
div.autosuggest ul
{
list-style: none;
margin: 0 0 -4px 0;
padding: 0;
overflow: hidden;
background-color: #ffffff;
border-left:1px solid #95a5c6;
border-right:1px solid #95a5c6;
}
div.autosuggest ul li
{
color: #5776ae;
padding: 0;
margin: 0 4px 4px;
text-align: left;
}
div.autosuggest ul li a
{
color: #000000;
display: block;
text-decoration: none;
background-color: transparent;
text-shadow: #000 0px 0px 5px;
position: relative;
padding: 0;
width: 100%;
}
div.autosuggest ul li a:hover
{
background-color: #3b5998;
text-decoration:none;
}
div.autosuggest ul li.as_highlight a:hover
{
background-color: #3b5998;
text-decoration:none;
}
div.autosuggest ul li a span
{
display: block;
padding: 3px 6px;
font-weight: normal;
}
div.autosuggest ul li a span small
{
font-weight: normal;
color: #999;
}
div.autosuggest ul li.as_highlight a span small
{
color: #ccc;
}
div.autosuggest ul li.as_highlight a
{
color: #fff;
background-color: #3b5998;
background-position: bottom right;
background-repeat: no-repeat;
text-decoration:none;
}
div.autosuggest ul li.as_highlight a span
{
background-position: bottom left;
background-repeat: no-repeat;
}
div.autosuggest ul li a .tl,
div.autosuggest ul li a .tr
{
background-image: transparent;
background-repeat: no-repeat;
width: 6px;
height: 6px;
position: absolute;
top: 0;
padding: 0;
margin: 0;
}
div.autosuggest ul li a .tr
{
right: 0;
}
div.autosuggest ul li.as_highlight a .tl
{
left: 0;
background-position: bottom left;
}
div.autosuggest ul li.as_highlight a .tr
{
right: 0;
background-position: bottom right;
}
div.autosuggest ul li.as_warning
{
font-weight: bold;
text-align: center;
}
div.autosuggest ul li.as_header
{
font-weight: bold;
font-size:14px;
color:#FFFFFF;
background:#999;
padding-left:6px;
padding-top:2px;
padding-bottom:2px;
}
div.autosuggest ul em
{
font-style: normal;
font-weight:bold;
color: #000000;
background-color:#d8dfea;
}
|