compass 0.13.alpha.6 → 0.13.alpha.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION.yml +1 -1
- data/frameworks/compass/stylesheets/compass/_support.scss +6 -6
- data/test/fixtures/stylesheets/compass/sass/support.scss +4 -4
- data/test/fixtures/stylesheets/compass/sass/utilities.scss +3 -3
- data/test/fixtures/stylesheets/compass/tmp/animation-with-legacy-ie.css +22 -0
- data/test/fixtures/stylesheets/compass/tmp/animation.css +22 -0
- data/test/fixtures/stylesheets/compass/tmp/appearance.css +3 -0
- data/test/fixtures/stylesheets/compass/tmp/background-clip.css +11 -0
- data/test/fixtures/stylesheets/compass/tmp/background-origin.css +11 -0
- data/test/fixtures/stylesheets/compass/tmp/background-size.css +17 -0
- data/test/fixtures/stylesheets/compass/tmp/border_radius.css +14 -0
- data/test/fixtures/stylesheets/compass/tmp/box-sizing.css +9 -0
- data/test/fixtures/stylesheets/compass/tmp/box.css +103 -0
- data/test/fixtures/stylesheets/compass/tmp/box_shadow.css +24 -0
- data/test/fixtures/stylesheets/compass/tmp/brightness.css +14 -0
- data/test/fixtures/stylesheets/compass/tmp/browser-support.css +306 -0
- data/test/fixtures/stylesheets/compass/tmp/color.css +18 -0
- data/test/fixtures/stylesheets/compass/tmp/columns.css +134 -0
- data/test/fixtures/stylesheets/compass/tmp/filters.css +29 -0
- data/test/fixtures/stylesheets/compass/tmp/flexbox.css +94 -0
- data/test/fixtures/stylesheets/compass/tmp/fonts.css +4 -0
- data/test/fixtures/stylesheets/compass/tmp/force-wrap.css +9 -0
- data/test/fixtures/stylesheets/compass/tmp/gradients.css +230 -0
- data/test/fixtures/stylesheets/compass/tmp/grid_background.css +64 -0
- data/test/fixtures/stylesheets/compass/tmp/hyphenation.css +16 -0
- data/test/fixtures/stylesheets/compass/tmp/image_size.css +15 -0
- data/test/fixtures/stylesheets/compass/tmp/images.css +8 -0
- data/test/fixtures/stylesheets/compass/tmp/layout.css +16 -0
- data/test/fixtures/stylesheets/compass/tmp/legacy_clearfix.css +26 -0
- data/test/fixtures/stylesheets/compass/tmp/lists.css +145 -0
- data/test/fixtures/stylesheets/compass/tmp/opacity.css +3 -0
- data/test/fixtures/stylesheets/compass/tmp/print.css +11 -0
- data/test/fixtures/stylesheets/compass/tmp/regions.css +9 -0
- data/test/fixtures/stylesheets/compass/tmp/replacement.css +59 -0
- data/test/fixtures/stylesheets/compass/tmp/reset.css +59 -0
- data/test/fixtures/stylesheets/compass/tmp/selection.css +50 -0
- data/test/fixtures/stylesheets/compass/tmp/sprites.css +1263 -0
- data/test/fixtures/stylesheets/compass/tmp/sprites_with_explicit_separator.css +16 -0
- data/test/fixtures/stylesheets/compass/tmp/stretching.css +66 -0
- data/test/fixtures/stylesheets/compass/tmp/support.css +59 -0
- data/test/fixtures/stylesheets/compass/tmp/text_shadow.css +29 -0
- data/test/fixtures/stylesheets/compass/tmp/transform.css +369 -0
- data/test/fixtures/stylesheets/compass/tmp/transition.css +116 -0
- data/test/fixtures/stylesheets/compass/tmp/typography/links/hover-link.css +4 -0
- data/test/fixtures/stylesheets/compass/tmp/units.css +30 -0
- data/test/fixtures/stylesheets/compass/tmp/user-interface.css +52 -0
- data/test/fixtures/stylesheets/compass/tmp/utilities.css +71 -0
- data/test/fixtures/stylesheets/compass/tmp/vertical_rhythm.css +211 -0
- data/test/fixtures/stylesheets/envtest/tmp/env.css +1 -1
- data/test/integrations/sprites_test.rb +3 -3
- metadata +91 -3
@@ -0,0 +1,50 @@
|
|
1
|
+
*::-moz-selection {
|
2
|
+
background-color: #fe57a1;
|
3
|
+
color: #fff; }
|
4
|
+
*::selection {
|
5
|
+
background-color: #fe57a1;
|
6
|
+
color: #fff; }
|
7
|
+
|
8
|
+
.hot-pink::-moz-selection {
|
9
|
+
background-color: #fe57a1;
|
10
|
+
color: #fff; }
|
11
|
+
.hot-pink::selection {
|
12
|
+
background-color: #fe57a1;
|
13
|
+
color: #fff; }
|
14
|
+
|
15
|
+
.hot-pink-with-arguments::-moz-selection {
|
16
|
+
color: white;
|
17
|
+
background-color: #fe57a1; }
|
18
|
+
.hot-pink-with-arguments::selection {
|
19
|
+
color: white;
|
20
|
+
background-color: #fe57a1; }
|
21
|
+
|
22
|
+
.hot-pink-with-arguments-and-extra-stuff::-moz-selection {
|
23
|
+
color: white;
|
24
|
+
background-color: #fe57a1;
|
25
|
+
text-decoration: line-through; }
|
26
|
+
.hot-pink-with-arguments-and-extra-stuff::selection {
|
27
|
+
color: white;
|
28
|
+
background-color: #fe57a1;
|
29
|
+
text-decoration: line-through; }
|
30
|
+
|
31
|
+
.hot-pink-with-default-foreground::-moz-selection {
|
32
|
+
color: black;
|
33
|
+
background-color: #fe57a1; }
|
34
|
+
.hot-pink-with-default-foreground::selection {
|
35
|
+
color: black;
|
36
|
+
background-color: #fe57a1; }
|
37
|
+
|
38
|
+
.browser-support-is-considered::-moz-selection {
|
39
|
+
color: black;
|
40
|
+
background-color: #fe57a1;
|
41
|
+
prefix: -moz;
|
42
|
+
-moz-prefix: true;
|
43
|
+
-ms-prefix: false;
|
44
|
+
-webkit-prefix: false; }
|
45
|
+
.browser-support-is-considered::selection {
|
46
|
+
color: black;
|
47
|
+
background-color: #fe57a1;
|
48
|
+
-moz-prefix: false;
|
49
|
+
-ms-prefix: false;
|
50
|
+
-webkit-prefix: false; }
|
@@ -0,0 +1,1263 @@
|
|
1
|
+
.flag-sprite, #flags .us, #flags .au, #flags .ca, #flags .es, #flags .eg, #flags .ly, .flag-ad, .flag-ae, .flag-af, .flag-ag, .flag-ai, .flag-al, .flag-am, .flag-an, .flag-ao, .flag-ar, .flag-as, .flag-at, .flag-au, .flag-aw, .flag-ax, .flag-az, .flag-ba, .flag-bb, .flag-bd, .flag-be, .flag-bf, .flag-bg, .flag-bh, .flag-bi, .flag-bj, .flag-bm, .flag-bn, .flag-bo, .flag-br, .flag-bs, .flag-bt, .flag-bv, .flag-bw, .flag-by, .flag-bz, .flag-ca, .flag-catalonia, .flag-cc, .flag-cd, .flag-cf, .flag-cg, .flag-ch, .flag-ci, .flag-ck, .flag-cl, .flag-cm, .flag-cn, .flag-co, .flag-cr, .flag-cs, .flag-cu, .flag-cv, .flag-cx, .flag-cy, .flag-cz, .flag-de, .flag-dj, .flag-dk, .flag-dm, .flag-do, .flag-dz, .flag-ec, .flag-ee, .flag-eg, .flag-eh, .flag-england, .flag-er, .flag-es, .flag-et, .flag-europeanunion, .flag-fam, .flag-fi, .flag-fj, .flag-fk, .flag-fm, .flag-fo, .flag-fr, .flag-ga, .flag-gb, .flag-gd, .flag-ge, .flag-gf, .flag-gh, .flag-gi, .flag-gl, .flag-gm, .flag-gn, .flag-gp, .flag-gq, .flag-gr, .flag-gs, .flag-gt, .flag-gu, .flag-gw, .flag-gy, .flag-hk, .flag-hm, .flag-hn, .flag-hr, .flag-ht, .flag-hu, .flag-id-2, .flag-ie, .flag-il, .flag-in, .flag-io, .flag-iq, .flag-ir, .flag-is, .flag-it, .flag-jm, .flag-jo, .flag-jp, .flag-ke, .flag-kg, .flag-kh, .flag-ki, .flag-km, .flag-kn, .flag-kp, .flag-kr, .flag-kw, .flag-ky, .flag-kz, .flag-la, .flag-lb, .flag-lc, .flag-li, .flag-lk, .flag-lr, .flag-ls, .flag-lt, .flag-lu, .flag-lv, .flag-ly, .flag-ma, .flag-mc, .flag-md, .flag-me, .flag-mg, .flag-mh, .flag-mk, .flag-ml, .flag-mm, .flag-mn, .flag-mo, .flag-mp, .flag-mq, .flag-mr, .flag-ms, .flag-mt, .flag-mu, .flag-mv, .flag-mw, .flag-mx, .flag-my, .flag-mz, .flag-na, .flag-nc, .flag-ne, .flag-nf, .flag-ng, .flag-ni, .flag-nl, .flag-no, .flag-np, .flag-nr, .flag-nu, .flag-nz, .flag-om, .flag-pa, .flag-pe, .flag-pf, .flag-pg, .flag-ph, .flag-pk, .flag-pl, .flag-pm, .flag-pn, .flag-pr, .flag-ps, .flag-pt, .flag-pw, .flag-py, .flag-qa, .flag-re, .flag-ro, .flag-rs, .flag-ru, .flag-rw, .flag-sa, .flag-sb, .flag-sc, .flag-scotland, .flag-sd, .flag-se, .flag-sg, .flag-sh, .flag-si, .flag-sj, .flag-sk, .flag-sl, .flag-sm, .flag-sn, .flag-so, .flag-sr, .flag-st, .flag-sv, .flag-sy, .flag-sz, .flag-tc, .flag-td, .flag-tf, .flag-tg, .flag-th, .flag-tj, .flag-tk, .flag-tl, .flag-tm, .flag-tn, .flag-to, .flag-tr, .flag-tt, .flag-tv, .flag-tw, .flag-tz, .flag-ua, .flag-ug, .flag-um, .flag-us, .flag-uy, .flag-uz, .flag-va, .flag-vc, .flag-ve, .flag-vg, .flag-vi, .flag-vn, .flag-vu, .flag-wales, .flag-wf, .flag-ws, .flag-ye, .flag-yt, .flag-za, .flag-zm, .flag-zw {
|
2
|
+
background-image: url('/images/flag-s5b4f509715.png');
|
3
|
+
background-repeat: no-repeat; }
|
4
|
+
|
5
|
+
#flags .us {
|
6
|
+
background-position: 0 -2520px;
|
7
|
+
height: 11px;
|
8
|
+
width: 16px; }
|
9
|
+
#flags .au {
|
10
|
+
background-position: 0 -132px;
|
11
|
+
height: 11px;
|
12
|
+
width: 16px; }
|
13
|
+
#flags .ca {
|
14
|
+
background-position: 0 -385px;
|
15
|
+
height: 11px;
|
16
|
+
width: 16px; }
|
17
|
+
#flags .es {
|
18
|
+
background-position: 0 -737px;
|
19
|
+
height: 11px;
|
20
|
+
width: 16px; }
|
21
|
+
#flags .eg {
|
22
|
+
background-position: 0 -693px;
|
23
|
+
height: 11px;
|
24
|
+
width: 16px; }
|
25
|
+
#flags .ly {
|
26
|
+
background-position: 0 -1474px;
|
27
|
+
height: 11px;
|
28
|
+
width: 16px; }
|
29
|
+
|
30
|
+
.flag-ad {
|
31
|
+
background-position: 0 0;
|
32
|
+
height: 11px;
|
33
|
+
width: 16px; }
|
34
|
+
|
35
|
+
.flag-ae {
|
36
|
+
background-position: 0 -11px;
|
37
|
+
height: 11px;
|
38
|
+
width: 16px; }
|
39
|
+
|
40
|
+
.flag-af {
|
41
|
+
background-position: 0 -22px;
|
42
|
+
height: 11px;
|
43
|
+
width: 16px; }
|
44
|
+
|
45
|
+
.flag-ag {
|
46
|
+
background-position: 0 -33px;
|
47
|
+
height: 11px;
|
48
|
+
width: 16px; }
|
49
|
+
|
50
|
+
.flag-ai {
|
51
|
+
background-position: 0 -44px;
|
52
|
+
height: 11px;
|
53
|
+
width: 16px; }
|
54
|
+
|
55
|
+
.flag-al {
|
56
|
+
background-position: 0 -55px;
|
57
|
+
height: 11px;
|
58
|
+
width: 16px; }
|
59
|
+
|
60
|
+
.flag-am {
|
61
|
+
background-position: 0 -66px;
|
62
|
+
height: 11px;
|
63
|
+
width: 16px; }
|
64
|
+
|
65
|
+
.flag-an {
|
66
|
+
background-position: 0 -77px;
|
67
|
+
height: 11px;
|
68
|
+
width: 16px; }
|
69
|
+
|
70
|
+
.flag-ao {
|
71
|
+
background-position: 0 -88px;
|
72
|
+
height: 11px;
|
73
|
+
width: 16px; }
|
74
|
+
|
75
|
+
.flag-ar {
|
76
|
+
background-position: 0 -99px;
|
77
|
+
height: 11px;
|
78
|
+
width: 16px; }
|
79
|
+
|
80
|
+
.flag-as {
|
81
|
+
background-position: 0 -110px;
|
82
|
+
height: 11px;
|
83
|
+
width: 16px; }
|
84
|
+
|
85
|
+
.flag-at {
|
86
|
+
background-position: 0 -121px;
|
87
|
+
height: 11px;
|
88
|
+
width: 16px; }
|
89
|
+
|
90
|
+
.flag-au {
|
91
|
+
background-position: 0 -132px;
|
92
|
+
height: 11px;
|
93
|
+
width: 16px; }
|
94
|
+
|
95
|
+
.flag-aw {
|
96
|
+
background-position: 0 -143px;
|
97
|
+
height: 11px;
|
98
|
+
width: 16px; }
|
99
|
+
|
100
|
+
.flag-ax {
|
101
|
+
background-position: 0 -154px;
|
102
|
+
height: 11px;
|
103
|
+
width: 16px; }
|
104
|
+
|
105
|
+
.flag-az {
|
106
|
+
background-position: 0 -165px;
|
107
|
+
height: 11px;
|
108
|
+
width: 16px; }
|
109
|
+
|
110
|
+
.flag-ba {
|
111
|
+
background-position: 0 -176px;
|
112
|
+
height: 11px;
|
113
|
+
width: 16px; }
|
114
|
+
|
115
|
+
.flag-bb {
|
116
|
+
background-position: 0 -187px;
|
117
|
+
height: 11px;
|
118
|
+
width: 16px; }
|
119
|
+
|
120
|
+
.flag-bd {
|
121
|
+
background-position: 0 -198px;
|
122
|
+
height: 11px;
|
123
|
+
width: 16px; }
|
124
|
+
|
125
|
+
.flag-be {
|
126
|
+
background-position: 0 -209px;
|
127
|
+
height: 11px;
|
128
|
+
width: 16px; }
|
129
|
+
|
130
|
+
.flag-bf {
|
131
|
+
background-position: 0 -220px;
|
132
|
+
height: 11px;
|
133
|
+
width: 16px; }
|
134
|
+
|
135
|
+
.flag-bg {
|
136
|
+
background-position: 0 -231px;
|
137
|
+
height: 11px;
|
138
|
+
width: 16px; }
|
139
|
+
|
140
|
+
.flag-bh {
|
141
|
+
background-position: 0 -242px;
|
142
|
+
height: 11px;
|
143
|
+
width: 16px; }
|
144
|
+
|
145
|
+
.flag-bi {
|
146
|
+
background-position: 0 -253px;
|
147
|
+
height: 11px;
|
148
|
+
width: 16px; }
|
149
|
+
|
150
|
+
.flag-bj {
|
151
|
+
background-position: 0 -264px;
|
152
|
+
height: 11px;
|
153
|
+
width: 16px; }
|
154
|
+
|
155
|
+
.flag-bm {
|
156
|
+
background-position: 0 -275px;
|
157
|
+
height: 11px;
|
158
|
+
width: 16px; }
|
159
|
+
|
160
|
+
.flag-bn {
|
161
|
+
background-position: 0 -286px;
|
162
|
+
height: 11px;
|
163
|
+
width: 16px; }
|
164
|
+
|
165
|
+
.flag-bo {
|
166
|
+
background-position: 0 -297px;
|
167
|
+
height: 11px;
|
168
|
+
width: 16px; }
|
169
|
+
|
170
|
+
.flag-br {
|
171
|
+
background-position: 0 -308px;
|
172
|
+
height: 11px;
|
173
|
+
width: 16px; }
|
174
|
+
|
175
|
+
.flag-bs {
|
176
|
+
background-position: 0 -319px;
|
177
|
+
height: 11px;
|
178
|
+
width: 16px; }
|
179
|
+
|
180
|
+
.flag-bt {
|
181
|
+
background-position: 0 -330px;
|
182
|
+
height: 11px;
|
183
|
+
width: 16px; }
|
184
|
+
|
185
|
+
.flag-bv {
|
186
|
+
background-position: 0 -341px;
|
187
|
+
height: 11px;
|
188
|
+
width: 16px; }
|
189
|
+
|
190
|
+
.flag-bw {
|
191
|
+
background-position: 0 -352px;
|
192
|
+
height: 11px;
|
193
|
+
width: 16px; }
|
194
|
+
|
195
|
+
.flag-by {
|
196
|
+
background-position: 0 -363px;
|
197
|
+
height: 11px;
|
198
|
+
width: 16px; }
|
199
|
+
|
200
|
+
.flag-bz {
|
201
|
+
background-position: 0 -374px;
|
202
|
+
height: 11px;
|
203
|
+
width: 16px; }
|
204
|
+
|
205
|
+
.flag-ca {
|
206
|
+
background-position: 0 -385px;
|
207
|
+
height: 11px;
|
208
|
+
width: 16px; }
|
209
|
+
|
210
|
+
.flag-catalonia {
|
211
|
+
background-position: 0 -396px;
|
212
|
+
height: 11px;
|
213
|
+
width: 16px; }
|
214
|
+
|
215
|
+
.flag-cc {
|
216
|
+
background-position: 0 -407px;
|
217
|
+
height: 11px;
|
218
|
+
width: 16px; }
|
219
|
+
|
220
|
+
.flag-cd {
|
221
|
+
background-position: 0 -418px;
|
222
|
+
height: 11px;
|
223
|
+
width: 16px; }
|
224
|
+
|
225
|
+
.flag-cf {
|
226
|
+
background-position: 0 -429px;
|
227
|
+
height: 11px;
|
228
|
+
width: 16px; }
|
229
|
+
|
230
|
+
.flag-cg {
|
231
|
+
background-position: 0 -440px;
|
232
|
+
height: 11px;
|
233
|
+
width: 16px; }
|
234
|
+
|
235
|
+
.flag-ch {
|
236
|
+
background-position: 0 -451px;
|
237
|
+
height: 11px;
|
238
|
+
width: 11px; }
|
239
|
+
|
240
|
+
.flag-ci {
|
241
|
+
background-position: 0 -462px;
|
242
|
+
height: 11px;
|
243
|
+
width: 16px; }
|
244
|
+
|
245
|
+
.flag-ck {
|
246
|
+
background-position: 0 -473px;
|
247
|
+
height: 11px;
|
248
|
+
width: 16px; }
|
249
|
+
|
250
|
+
.flag-cl {
|
251
|
+
background-position: 0 -484px;
|
252
|
+
height: 11px;
|
253
|
+
width: 16px; }
|
254
|
+
|
255
|
+
.flag-cm {
|
256
|
+
background-position: 0 -495px;
|
257
|
+
height: 11px;
|
258
|
+
width: 16px; }
|
259
|
+
|
260
|
+
.flag-cn {
|
261
|
+
background-position: 0 -506px;
|
262
|
+
height: 11px;
|
263
|
+
width: 16px; }
|
264
|
+
|
265
|
+
.flag-co {
|
266
|
+
background-position: 0 -517px;
|
267
|
+
height: 11px;
|
268
|
+
width: 16px; }
|
269
|
+
|
270
|
+
.flag-cr {
|
271
|
+
background-position: 0 -528px;
|
272
|
+
height: 11px;
|
273
|
+
width: 16px; }
|
274
|
+
|
275
|
+
.flag-cs {
|
276
|
+
background-position: 0 -539px;
|
277
|
+
height: 11px;
|
278
|
+
width: 16px; }
|
279
|
+
|
280
|
+
.flag-cu {
|
281
|
+
background-position: 0 -550px;
|
282
|
+
height: 11px;
|
283
|
+
width: 16px; }
|
284
|
+
|
285
|
+
.flag-cv {
|
286
|
+
background-position: 0 -561px;
|
287
|
+
height: 11px;
|
288
|
+
width: 16px; }
|
289
|
+
|
290
|
+
.flag-cx {
|
291
|
+
background-position: 0 -572px;
|
292
|
+
height: 11px;
|
293
|
+
width: 16px; }
|
294
|
+
|
295
|
+
.flag-cy {
|
296
|
+
background-position: 0 -583px;
|
297
|
+
height: 11px;
|
298
|
+
width: 16px; }
|
299
|
+
|
300
|
+
.flag-cz {
|
301
|
+
background-position: 0 -594px;
|
302
|
+
height: 11px;
|
303
|
+
width: 16px; }
|
304
|
+
|
305
|
+
.flag-de {
|
306
|
+
background-position: 0 -605px;
|
307
|
+
height: 11px;
|
308
|
+
width: 16px; }
|
309
|
+
|
310
|
+
.flag-dj {
|
311
|
+
background-position: 0 -616px;
|
312
|
+
height: 11px;
|
313
|
+
width: 16px; }
|
314
|
+
|
315
|
+
.flag-dk {
|
316
|
+
background-position: 0 -627px;
|
317
|
+
height: 11px;
|
318
|
+
width: 16px; }
|
319
|
+
|
320
|
+
.flag-dm {
|
321
|
+
background-position: 0 -638px;
|
322
|
+
height: 11px;
|
323
|
+
width: 16px; }
|
324
|
+
|
325
|
+
.flag-do {
|
326
|
+
background-position: 0 -649px;
|
327
|
+
height: 11px;
|
328
|
+
width: 16px; }
|
329
|
+
|
330
|
+
.flag-dz {
|
331
|
+
background-position: 0 -660px;
|
332
|
+
height: 11px;
|
333
|
+
width: 16px; }
|
334
|
+
|
335
|
+
.flag-ec {
|
336
|
+
background-position: 0 -671px;
|
337
|
+
height: 11px;
|
338
|
+
width: 16px; }
|
339
|
+
|
340
|
+
.flag-ee {
|
341
|
+
background-position: 0 -682px;
|
342
|
+
height: 11px;
|
343
|
+
width: 16px; }
|
344
|
+
|
345
|
+
.flag-eg {
|
346
|
+
background-position: 0 -693px;
|
347
|
+
height: 11px;
|
348
|
+
width: 16px; }
|
349
|
+
|
350
|
+
.flag-eh {
|
351
|
+
background-position: 0 -704px;
|
352
|
+
height: 11px;
|
353
|
+
width: 16px; }
|
354
|
+
|
355
|
+
.flag-england {
|
356
|
+
background-position: 0 -715px;
|
357
|
+
height: 11px;
|
358
|
+
width: 16px; }
|
359
|
+
|
360
|
+
.flag-er {
|
361
|
+
background-position: 0 -726px;
|
362
|
+
height: 11px;
|
363
|
+
width: 16px; }
|
364
|
+
|
365
|
+
.flag-es {
|
366
|
+
background-position: 0 -737px;
|
367
|
+
height: 11px;
|
368
|
+
width: 16px; }
|
369
|
+
|
370
|
+
.flag-et {
|
371
|
+
background-position: 0 -748px;
|
372
|
+
height: 11px;
|
373
|
+
width: 16px; }
|
374
|
+
|
375
|
+
.flag-europeanunion {
|
376
|
+
background-position: 0 -759px;
|
377
|
+
height: 11px;
|
378
|
+
width: 16px; }
|
379
|
+
|
380
|
+
.flag-fam {
|
381
|
+
background-position: 0 -770px;
|
382
|
+
height: 11px;
|
383
|
+
width: 16px; }
|
384
|
+
|
385
|
+
.flag-fi {
|
386
|
+
background-position: 0 -781px;
|
387
|
+
height: 11px;
|
388
|
+
width: 16px; }
|
389
|
+
|
390
|
+
.flag-fj {
|
391
|
+
background-position: 0 -792px;
|
392
|
+
height: 11px;
|
393
|
+
width: 16px; }
|
394
|
+
|
395
|
+
.flag-fk {
|
396
|
+
background-position: 0 -803px;
|
397
|
+
height: 11px;
|
398
|
+
width: 16px; }
|
399
|
+
|
400
|
+
.flag-fm {
|
401
|
+
background-position: 0 -814px;
|
402
|
+
height: 11px;
|
403
|
+
width: 16px; }
|
404
|
+
|
405
|
+
.flag-fo {
|
406
|
+
background-position: 0 -825px;
|
407
|
+
height: 11px;
|
408
|
+
width: 16px; }
|
409
|
+
|
410
|
+
.flag-fr {
|
411
|
+
background-position: 0 -836px;
|
412
|
+
height: 11px;
|
413
|
+
width: 16px; }
|
414
|
+
|
415
|
+
.flag-ga {
|
416
|
+
background-position: 0 -847px;
|
417
|
+
height: 11px;
|
418
|
+
width: 16px; }
|
419
|
+
|
420
|
+
.flag-gb {
|
421
|
+
background-position: 0 -858px;
|
422
|
+
height: 11px;
|
423
|
+
width: 16px; }
|
424
|
+
|
425
|
+
.flag-gd {
|
426
|
+
background-position: 0 -869px;
|
427
|
+
height: 11px;
|
428
|
+
width: 16px; }
|
429
|
+
|
430
|
+
.flag-ge {
|
431
|
+
background-position: 0 -880px;
|
432
|
+
height: 11px;
|
433
|
+
width: 16px; }
|
434
|
+
|
435
|
+
.flag-gf {
|
436
|
+
background-position: 0 -891px;
|
437
|
+
height: 11px;
|
438
|
+
width: 16px; }
|
439
|
+
|
440
|
+
.flag-gh {
|
441
|
+
background-position: 0 -902px;
|
442
|
+
height: 11px;
|
443
|
+
width: 16px; }
|
444
|
+
|
445
|
+
.flag-gi {
|
446
|
+
background-position: 0 -913px;
|
447
|
+
height: 11px;
|
448
|
+
width: 16px; }
|
449
|
+
|
450
|
+
.flag-gl {
|
451
|
+
background-position: 0 -924px;
|
452
|
+
height: 11px;
|
453
|
+
width: 16px; }
|
454
|
+
|
455
|
+
.flag-gm {
|
456
|
+
background-position: 0 -935px;
|
457
|
+
height: 11px;
|
458
|
+
width: 16px; }
|
459
|
+
|
460
|
+
.flag-gn {
|
461
|
+
background-position: 0 -946px;
|
462
|
+
height: 11px;
|
463
|
+
width: 16px; }
|
464
|
+
|
465
|
+
.flag-gp {
|
466
|
+
background-position: 0 -957px;
|
467
|
+
height: 11px;
|
468
|
+
width: 16px; }
|
469
|
+
|
470
|
+
.flag-gq {
|
471
|
+
background-position: 0 -968px;
|
472
|
+
height: 11px;
|
473
|
+
width: 16px; }
|
474
|
+
|
475
|
+
.flag-gr {
|
476
|
+
background-position: 0 -979px;
|
477
|
+
height: 11px;
|
478
|
+
width: 16px; }
|
479
|
+
|
480
|
+
.flag-gs {
|
481
|
+
background-position: 0 -990px;
|
482
|
+
height: 11px;
|
483
|
+
width: 16px; }
|
484
|
+
|
485
|
+
.flag-gt {
|
486
|
+
background-position: 0 -1001px;
|
487
|
+
height: 11px;
|
488
|
+
width: 16px; }
|
489
|
+
|
490
|
+
.flag-gu {
|
491
|
+
background-position: 0 -1012px;
|
492
|
+
height: 11px;
|
493
|
+
width: 16px; }
|
494
|
+
|
495
|
+
.flag-gw {
|
496
|
+
background-position: 0 -1023px;
|
497
|
+
height: 11px;
|
498
|
+
width: 16px; }
|
499
|
+
|
500
|
+
.flag-gy {
|
501
|
+
background-position: 0 -1034px;
|
502
|
+
height: 11px;
|
503
|
+
width: 16px; }
|
504
|
+
|
505
|
+
.flag-hk {
|
506
|
+
background-position: 0 -1045px;
|
507
|
+
height: 11px;
|
508
|
+
width: 16px; }
|
509
|
+
|
510
|
+
.flag-hm {
|
511
|
+
background-position: 0 -1056px;
|
512
|
+
height: 11px;
|
513
|
+
width: 16px; }
|
514
|
+
|
515
|
+
.flag-hn {
|
516
|
+
background-position: 0 -1067px;
|
517
|
+
height: 11px;
|
518
|
+
width: 16px; }
|
519
|
+
|
520
|
+
.flag-hr {
|
521
|
+
background-position: 0 -1078px;
|
522
|
+
height: 11px;
|
523
|
+
width: 16px; }
|
524
|
+
|
525
|
+
.flag-ht {
|
526
|
+
background-position: 0 -1089px;
|
527
|
+
height: 11px;
|
528
|
+
width: 16px; }
|
529
|
+
|
530
|
+
.flag-hu {
|
531
|
+
background-position: 0 -1100px;
|
532
|
+
height: 11px;
|
533
|
+
width: 16px; }
|
534
|
+
|
535
|
+
.flag-id-2 {
|
536
|
+
background-position: 0 -1111px;
|
537
|
+
height: 11px;
|
538
|
+
width: 16px; }
|
539
|
+
|
540
|
+
.flag-ie {
|
541
|
+
background-position: 0 -1122px;
|
542
|
+
height: 11px;
|
543
|
+
width: 16px; }
|
544
|
+
|
545
|
+
.flag-il {
|
546
|
+
background-position: 0 -1133px;
|
547
|
+
height: 11px;
|
548
|
+
width: 16px; }
|
549
|
+
|
550
|
+
.flag-in {
|
551
|
+
background-position: 0 -1144px;
|
552
|
+
height: 11px;
|
553
|
+
width: 16px; }
|
554
|
+
|
555
|
+
.flag-io {
|
556
|
+
background-position: 0 -1155px;
|
557
|
+
height: 11px;
|
558
|
+
width: 16px; }
|
559
|
+
|
560
|
+
.flag-iq {
|
561
|
+
background-position: 0 -1166px;
|
562
|
+
height: 11px;
|
563
|
+
width: 16px; }
|
564
|
+
|
565
|
+
.flag-ir {
|
566
|
+
background-position: 0 -1177px;
|
567
|
+
height: 11px;
|
568
|
+
width: 16px; }
|
569
|
+
|
570
|
+
.flag-is {
|
571
|
+
background-position: 0 -1188px;
|
572
|
+
height: 11px;
|
573
|
+
width: 16px; }
|
574
|
+
|
575
|
+
.flag-it {
|
576
|
+
background-position: 0 -1199px;
|
577
|
+
height: 11px;
|
578
|
+
width: 16px; }
|
579
|
+
|
580
|
+
.flag-jm {
|
581
|
+
background-position: 0 -1210px;
|
582
|
+
height: 11px;
|
583
|
+
width: 16px; }
|
584
|
+
|
585
|
+
.flag-jo {
|
586
|
+
background-position: 0 -1221px;
|
587
|
+
height: 11px;
|
588
|
+
width: 16px; }
|
589
|
+
|
590
|
+
.flag-jp {
|
591
|
+
background-position: 0 -1232px;
|
592
|
+
height: 11px;
|
593
|
+
width: 16px; }
|
594
|
+
|
595
|
+
.flag-ke {
|
596
|
+
background-position: 0 -1243px;
|
597
|
+
height: 11px;
|
598
|
+
width: 16px; }
|
599
|
+
|
600
|
+
.flag-kg {
|
601
|
+
background-position: 0 -1254px;
|
602
|
+
height: 11px;
|
603
|
+
width: 16px; }
|
604
|
+
|
605
|
+
.flag-kh {
|
606
|
+
background-position: 0 -1265px;
|
607
|
+
height: 11px;
|
608
|
+
width: 16px; }
|
609
|
+
|
610
|
+
.flag-ki {
|
611
|
+
background-position: 0 -1276px;
|
612
|
+
height: 11px;
|
613
|
+
width: 16px; }
|
614
|
+
|
615
|
+
.flag-km {
|
616
|
+
background-position: 0 -1287px;
|
617
|
+
height: 11px;
|
618
|
+
width: 16px; }
|
619
|
+
|
620
|
+
.flag-kn {
|
621
|
+
background-position: 0 -1298px;
|
622
|
+
height: 11px;
|
623
|
+
width: 16px; }
|
624
|
+
|
625
|
+
.flag-kp {
|
626
|
+
background-position: 0 -1309px;
|
627
|
+
height: 11px;
|
628
|
+
width: 16px; }
|
629
|
+
|
630
|
+
.flag-kr {
|
631
|
+
background-position: 0 -1320px;
|
632
|
+
height: 11px;
|
633
|
+
width: 16px; }
|
634
|
+
|
635
|
+
.flag-kw {
|
636
|
+
background-position: 0 -1331px;
|
637
|
+
height: 11px;
|
638
|
+
width: 16px; }
|
639
|
+
|
640
|
+
.flag-ky {
|
641
|
+
background-position: 0 -1342px;
|
642
|
+
height: 11px;
|
643
|
+
width: 16px; }
|
644
|
+
|
645
|
+
.flag-kz {
|
646
|
+
background-position: 0 -1353px;
|
647
|
+
height: 11px;
|
648
|
+
width: 16px; }
|
649
|
+
|
650
|
+
.flag-la {
|
651
|
+
background-position: 0 -1364px;
|
652
|
+
height: 11px;
|
653
|
+
width: 16px; }
|
654
|
+
|
655
|
+
.flag-lb {
|
656
|
+
background-position: 0 -1375px;
|
657
|
+
height: 11px;
|
658
|
+
width: 16px; }
|
659
|
+
|
660
|
+
.flag-lc {
|
661
|
+
background-position: 0 -1386px;
|
662
|
+
height: 11px;
|
663
|
+
width: 16px; }
|
664
|
+
|
665
|
+
.flag-li {
|
666
|
+
background-position: 0 -1397px;
|
667
|
+
height: 11px;
|
668
|
+
width: 16px; }
|
669
|
+
|
670
|
+
.flag-lk {
|
671
|
+
background-position: 0 -1408px;
|
672
|
+
height: 11px;
|
673
|
+
width: 16px; }
|
674
|
+
|
675
|
+
.flag-lr {
|
676
|
+
background-position: 0 -1419px;
|
677
|
+
height: 11px;
|
678
|
+
width: 16px; }
|
679
|
+
|
680
|
+
.flag-ls {
|
681
|
+
background-position: 0 -1430px;
|
682
|
+
height: 11px;
|
683
|
+
width: 16px; }
|
684
|
+
|
685
|
+
.flag-lt {
|
686
|
+
background-position: 0 -1441px;
|
687
|
+
height: 11px;
|
688
|
+
width: 16px; }
|
689
|
+
|
690
|
+
.flag-lu {
|
691
|
+
background-position: 0 -1452px;
|
692
|
+
height: 11px;
|
693
|
+
width: 16px; }
|
694
|
+
|
695
|
+
.flag-lv {
|
696
|
+
background-position: 0 -1463px;
|
697
|
+
height: 11px;
|
698
|
+
width: 16px; }
|
699
|
+
|
700
|
+
.flag-ly {
|
701
|
+
background-position: 0 -1474px;
|
702
|
+
height: 11px;
|
703
|
+
width: 16px; }
|
704
|
+
|
705
|
+
.flag-ma {
|
706
|
+
background-position: 0 -1485px;
|
707
|
+
height: 11px;
|
708
|
+
width: 16px; }
|
709
|
+
|
710
|
+
.flag-mc {
|
711
|
+
background-position: 0 -1496px;
|
712
|
+
height: 11px;
|
713
|
+
width: 16px; }
|
714
|
+
|
715
|
+
.flag-md {
|
716
|
+
background-position: 0 -1507px;
|
717
|
+
height: 11px;
|
718
|
+
width: 16px; }
|
719
|
+
|
720
|
+
.flag-me {
|
721
|
+
background-position: 0 -1518px;
|
722
|
+
height: 12px;
|
723
|
+
width: 16px; }
|
724
|
+
|
725
|
+
.flag-mg {
|
726
|
+
background-position: 0 -1530px;
|
727
|
+
height: 11px;
|
728
|
+
width: 16px; }
|
729
|
+
|
730
|
+
.flag-mh {
|
731
|
+
background-position: 0 -1541px;
|
732
|
+
height: 11px;
|
733
|
+
width: 16px; }
|
734
|
+
|
735
|
+
.flag-mk {
|
736
|
+
background-position: 0 -1552px;
|
737
|
+
height: 11px;
|
738
|
+
width: 16px; }
|
739
|
+
|
740
|
+
.flag-ml {
|
741
|
+
background-position: 0 -1563px;
|
742
|
+
height: 11px;
|
743
|
+
width: 16px; }
|
744
|
+
|
745
|
+
.flag-mm {
|
746
|
+
background-position: 0 -1574px;
|
747
|
+
height: 11px;
|
748
|
+
width: 16px; }
|
749
|
+
|
750
|
+
.flag-mn {
|
751
|
+
background-position: 0 -1585px;
|
752
|
+
height: 11px;
|
753
|
+
width: 16px; }
|
754
|
+
|
755
|
+
.flag-mo {
|
756
|
+
background-position: 0 -1596px;
|
757
|
+
height: 11px;
|
758
|
+
width: 16px; }
|
759
|
+
|
760
|
+
.flag-mp {
|
761
|
+
background-position: 0 -1607px;
|
762
|
+
height: 11px;
|
763
|
+
width: 16px; }
|
764
|
+
|
765
|
+
.flag-mq {
|
766
|
+
background-position: 0 -1618px;
|
767
|
+
height: 11px;
|
768
|
+
width: 16px; }
|
769
|
+
|
770
|
+
.flag-mr {
|
771
|
+
background-position: 0 -1629px;
|
772
|
+
height: 11px;
|
773
|
+
width: 16px; }
|
774
|
+
|
775
|
+
.flag-ms {
|
776
|
+
background-position: 0 -1640px;
|
777
|
+
height: 11px;
|
778
|
+
width: 16px; }
|
779
|
+
|
780
|
+
.flag-mt {
|
781
|
+
background-position: 0 -1651px;
|
782
|
+
height: 11px;
|
783
|
+
width: 16px; }
|
784
|
+
|
785
|
+
.flag-mu {
|
786
|
+
background-position: 0 -1662px;
|
787
|
+
height: 11px;
|
788
|
+
width: 16px; }
|
789
|
+
|
790
|
+
.flag-mv {
|
791
|
+
background-position: 0 -1673px;
|
792
|
+
height: 11px;
|
793
|
+
width: 16px; }
|
794
|
+
|
795
|
+
.flag-mw {
|
796
|
+
background-position: 0 -1684px;
|
797
|
+
height: 11px;
|
798
|
+
width: 16px; }
|
799
|
+
|
800
|
+
.flag-mx {
|
801
|
+
background-position: 0 -1695px;
|
802
|
+
height: 11px;
|
803
|
+
width: 16px; }
|
804
|
+
|
805
|
+
.flag-my {
|
806
|
+
background-position: 0 -1706px;
|
807
|
+
height: 11px;
|
808
|
+
width: 16px; }
|
809
|
+
|
810
|
+
.flag-mz {
|
811
|
+
background-position: 0 -1717px;
|
812
|
+
height: 11px;
|
813
|
+
width: 16px; }
|
814
|
+
|
815
|
+
.flag-na {
|
816
|
+
background-position: 0 -1728px;
|
817
|
+
height: 11px;
|
818
|
+
width: 16px; }
|
819
|
+
|
820
|
+
.flag-nc {
|
821
|
+
background-position: 0 -1739px;
|
822
|
+
height: 11px;
|
823
|
+
width: 16px; }
|
824
|
+
|
825
|
+
.flag-ne {
|
826
|
+
background-position: 0 -1750px;
|
827
|
+
height: 11px;
|
828
|
+
width: 16px; }
|
829
|
+
|
830
|
+
.flag-nf {
|
831
|
+
background-position: 0 -1761px;
|
832
|
+
height: 11px;
|
833
|
+
width: 16px; }
|
834
|
+
|
835
|
+
.flag-ng {
|
836
|
+
background-position: 0 -1772px;
|
837
|
+
height: 11px;
|
838
|
+
width: 16px; }
|
839
|
+
|
840
|
+
.flag-ni {
|
841
|
+
background-position: 0 -1783px;
|
842
|
+
height: 11px;
|
843
|
+
width: 16px; }
|
844
|
+
|
845
|
+
.flag-nl {
|
846
|
+
background-position: 0 -1794px;
|
847
|
+
height: 11px;
|
848
|
+
width: 16px; }
|
849
|
+
|
850
|
+
.flag-no {
|
851
|
+
background-position: 0 -1805px;
|
852
|
+
height: 11px;
|
853
|
+
width: 16px; }
|
854
|
+
|
855
|
+
.flag-np {
|
856
|
+
background-position: 0 -1816px;
|
857
|
+
height: 11px;
|
858
|
+
width: 9px; }
|
859
|
+
|
860
|
+
.flag-nr {
|
861
|
+
background-position: 0 -1827px;
|
862
|
+
height: 11px;
|
863
|
+
width: 16px; }
|
864
|
+
|
865
|
+
.flag-nu {
|
866
|
+
background-position: 0 -1838px;
|
867
|
+
height: 11px;
|
868
|
+
width: 16px; }
|
869
|
+
|
870
|
+
.flag-nz {
|
871
|
+
background-position: 0 -1849px;
|
872
|
+
height: 11px;
|
873
|
+
width: 16px; }
|
874
|
+
|
875
|
+
.flag-om {
|
876
|
+
background-position: 0 -1860px;
|
877
|
+
height: 11px;
|
878
|
+
width: 16px; }
|
879
|
+
|
880
|
+
.flag-pa {
|
881
|
+
background-position: 0 -1871px;
|
882
|
+
height: 11px;
|
883
|
+
width: 16px; }
|
884
|
+
|
885
|
+
.flag-pe {
|
886
|
+
background-position: 0 -1882px;
|
887
|
+
height: 11px;
|
888
|
+
width: 16px; }
|
889
|
+
|
890
|
+
.flag-pf {
|
891
|
+
background-position: 0 -1893px;
|
892
|
+
height: 11px;
|
893
|
+
width: 16px; }
|
894
|
+
|
895
|
+
.flag-pg {
|
896
|
+
background-position: 0 -1904px;
|
897
|
+
height: 11px;
|
898
|
+
width: 16px; }
|
899
|
+
|
900
|
+
.flag-ph {
|
901
|
+
background-position: 0 -1915px;
|
902
|
+
height: 11px;
|
903
|
+
width: 16px; }
|
904
|
+
|
905
|
+
.flag-pk {
|
906
|
+
background-position: 0 -1926px;
|
907
|
+
height: 11px;
|
908
|
+
width: 16px; }
|
909
|
+
|
910
|
+
.flag-pl {
|
911
|
+
background-position: 0 -1937px;
|
912
|
+
height: 11px;
|
913
|
+
width: 16px; }
|
914
|
+
|
915
|
+
.flag-pm {
|
916
|
+
background-position: 0 -1948px;
|
917
|
+
height: 11px;
|
918
|
+
width: 16px; }
|
919
|
+
|
920
|
+
.flag-pn {
|
921
|
+
background-position: 0 -1959px;
|
922
|
+
height: 11px;
|
923
|
+
width: 16px; }
|
924
|
+
|
925
|
+
.flag-pr {
|
926
|
+
background-position: 0 -1970px;
|
927
|
+
height: 11px;
|
928
|
+
width: 16px; }
|
929
|
+
|
930
|
+
.flag-ps {
|
931
|
+
background-position: 0 -1981px;
|
932
|
+
height: 11px;
|
933
|
+
width: 16px; }
|
934
|
+
|
935
|
+
.flag-pt {
|
936
|
+
background-position: 0 -1992px;
|
937
|
+
height: 11px;
|
938
|
+
width: 16px; }
|
939
|
+
|
940
|
+
.flag-pw {
|
941
|
+
background-position: 0 -2003px;
|
942
|
+
height: 11px;
|
943
|
+
width: 16px; }
|
944
|
+
|
945
|
+
.flag-py {
|
946
|
+
background-position: 0 -2014px;
|
947
|
+
height: 11px;
|
948
|
+
width: 16px; }
|
949
|
+
|
950
|
+
.flag-qa {
|
951
|
+
background-position: 0 -2025px;
|
952
|
+
height: 11px;
|
953
|
+
width: 16px; }
|
954
|
+
|
955
|
+
.flag-re {
|
956
|
+
background-position: 0 -2036px;
|
957
|
+
height: 11px;
|
958
|
+
width: 16px; }
|
959
|
+
|
960
|
+
.flag-ro {
|
961
|
+
background-position: 0 -2047px;
|
962
|
+
height: 11px;
|
963
|
+
width: 16px; }
|
964
|
+
|
965
|
+
.flag-rs {
|
966
|
+
background-position: 0 -2058px;
|
967
|
+
height: 11px;
|
968
|
+
width: 16px; }
|
969
|
+
|
970
|
+
.flag-ru {
|
971
|
+
background-position: 0 -2069px;
|
972
|
+
height: 11px;
|
973
|
+
width: 16px; }
|
974
|
+
|
975
|
+
.flag-rw {
|
976
|
+
background-position: 0 -2080px;
|
977
|
+
height: 11px;
|
978
|
+
width: 16px; }
|
979
|
+
|
980
|
+
.flag-sa {
|
981
|
+
background-position: 0 -2091px;
|
982
|
+
height: 11px;
|
983
|
+
width: 16px; }
|
984
|
+
|
985
|
+
.flag-sb {
|
986
|
+
background-position: 0 -2102px;
|
987
|
+
height: 11px;
|
988
|
+
width: 16px; }
|
989
|
+
|
990
|
+
.flag-sc {
|
991
|
+
background-position: 0 -2113px;
|
992
|
+
height: 11px;
|
993
|
+
width: 16px; }
|
994
|
+
|
995
|
+
.flag-scotland {
|
996
|
+
background-position: 0 -2124px;
|
997
|
+
height: 11px;
|
998
|
+
width: 16px; }
|
999
|
+
|
1000
|
+
.flag-sd {
|
1001
|
+
background-position: 0 -2135px;
|
1002
|
+
height: 11px;
|
1003
|
+
width: 16px; }
|
1004
|
+
|
1005
|
+
.flag-se {
|
1006
|
+
background-position: 0 -2146px;
|
1007
|
+
height: 11px;
|
1008
|
+
width: 16px; }
|
1009
|
+
|
1010
|
+
.flag-sg {
|
1011
|
+
background-position: 0 -2157px;
|
1012
|
+
height: 11px;
|
1013
|
+
width: 16px; }
|
1014
|
+
|
1015
|
+
.flag-sh {
|
1016
|
+
background-position: 0 -2168px;
|
1017
|
+
height: 11px;
|
1018
|
+
width: 16px; }
|
1019
|
+
|
1020
|
+
.flag-si {
|
1021
|
+
background-position: 0 -2179px;
|
1022
|
+
height: 11px;
|
1023
|
+
width: 16px; }
|
1024
|
+
|
1025
|
+
.flag-sj {
|
1026
|
+
background-position: 0 -2190px;
|
1027
|
+
height: 11px;
|
1028
|
+
width: 16px; }
|
1029
|
+
|
1030
|
+
.flag-sk {
|
1031
|
+
background-position: 0 -2201px;
|
1032
|
+
height: 11px;
|
1033
|
+
width: 16px; }
|
1034
|
+
|
1035
|
+
.flag-sl {
|
1036
|
+
background-position: 0 -2212px;
|
1037
|
+
height: 11px;
|
1038
|
+
width: 16px; }
|
1039
|
+
|
1040
|
+
.flag-sm {
|
1041
|
+
background-position: 0 -2223px;
|
1042
|
+
height: 11px;
|
1043
|
+
width: 16px; }
|
1044
|
+
|
1045
|
+
.flag-sn {
|
1046
|
+
background-position: 0 -2234px;
|
1047
|
+
height: 11px;
|
1048
|
+
width: 16px; }
|
1049
|
+
|
1050
|
+
.flag-so {
|
1051
|
+
background-position: 0 -2245px;
|
1052
|
+
height: 11px;
|
1053
|
+
width: 16px; }
|
1054
|
+
|
1055
|
+
.flag-sr {
|
1056
|
+
background-position: 0 -2256px;
|
1057
|
+
height: 11px;
|
1058
|
+
width: 16px; }
|
1059
|
+
|
1060
|
+
.flag-st {
|
1061
|
+
background-position: 0 -2267px;
|
1062
|
+
height: 11px;
|
1063
|
+
width: 16px; }
|
1064
|
+
|
1065
|
+
.flag-sv {
|
1066
|
+
background-position: 0 -2278px;
|
1067
|
+
height: 11px;
|
1068
|
+
width: 16px; }
|
1069
|
+
|
1070
|
+
.flag-sy {
|
1071
|
+
background-position: 0 -2289px;
|
1072
|
+
height: 11px;
|
1073
|
+
width: 16px; }
|
1074
|
+
|
1075
|
+
.flag-sz {
|
1076
|
+
background-position: 0 -2300px;
|
1077
|
+
height: 11px;
|
1078
|
+
width: 16px; }
|
1079
|
+
|
1080
|
+
.flag-tc {
|
1081
|
+
background-position: 0 -2311px;
|
1082
|
+
height: 11px;
|
1083
|
+
width: 16px; }
|
1084
|
+
|
1085
|
+
.flag-td {
|
1086
|
+
background-position: 0 -2322px;
|
1087
|
+
height: 11px;
|
1088
|
+
width: 16px; }
|
1089
|
+
|
1090
|
+
.flag-tf {
|
1091
|
+
background-position: 0 -2333px;
|
1092
|
+
height: 11px;
|
1093
|
+
width: 16px; }
|
1094
|
+
|
1095
|
+
.flag-tg {
|
1096
|
+
background-position: 0 -2344px;
|
1097
|
+
height: 11px;
|
1098
|
+
width: 16px; }
|
1099
|
+
|
1100
|
+
.flag-th {
|
1101
|
+
background-position: 0 -2355px;
|
1102
|
+
height: 11px;
|
1103
|
+
width: 16px; }
|
1104
|
+
|
1105
|
+
.flag-tj {
|
1106
|
+
background-position: 0 -2366px;
|
1107
|
+
height: 11px;
|
1108
|
+
width: 16px; }
|
1109
|
+
|
1110
|
+
.flag-tk {
|
1111
|
+
background-position: 0 -2377px;
|
1112
|
+
height: 11px;
|
1113
|
+
width: 16px; }
|
1114
|
+
|
1115
|
+
.flag-tl {
|
1116
|
+
background-position: 0 -2388px;
|
1117
|
+
height: 11px;
|
1118
|
+
width: 16px; }
|
1119
|
+
|
1120
|
+
.flag-tm {
|
1121
|
+
background-position: 0 -2399px;
|
1122
|
+
height: 11px;
|
1123
|
+
width: 16px; }
|
1124
|
+
|
1125
|
+
.flag-tn {
|
1126
|
+
background-position: 0 -2410px;
|
1127
|
+
height: 11px;
|
1128
|
+
width: 16px; }
|
1129
|
+
|
1130
|
+
.flag-to {
|
1131
|
+
background-position: 0 -2421px;
|
1132
|
+
height: 11px;
|
1133
|
+
width: 16px; }
|
1134
|
+
|
1135
|
+
.flag-tr {
|
1136
|
+
background-position: 0 -2432px;
|
1137
|
+
height: 11px;
|
1138
|
+
width: 16px; }
|
1139
|
+
|
1140
|
+
.flag-tt {
|
1141
|
+
background-position: 0 -2443px;
|
1142
|
+
height: 11px;
|
1143
|
+
width: 16px; }
|
1144
|
+
|
1145
|
+
.flag-tv {
|
1146
|
+
background-position: 0 -2454px;
|
1147
|
+
height: 11px;
|
1148
|
+
width: 16px; }
|
1149
|
+
|
1150
|
+
.flag-tw {
|
1151
|
+
background-position: 0 -2465px;
|
1152
|
+
height: 11px;
|
1153
|
+
width: 16px; }
|
1154
|
+
|
1155
|
+
.flag-tz {
|
1156
|
+
background-position: 0 -2476px;
|
1157
|
+
height: 11px;
|
1158
|
+
width: 16px; }
|
1159
|
+
|
1160
|
+
.flag-ua {
|
1161
|
+
background-position: 0 -2487px;
|
1162
|
+
height: 11px;
|
1163
|
+
width: 16px; }
|
1164
|
+
|
1165
|
+
.flag-ug {
|
1166
|
+
background-position: 0 -2498px;
|
1167
|
+
height: 11px;
|
1168
|
+
width: 16px; }
|
1169
|
+
|
1170
|
+
.flag-um {
|
1171
|
+
background-position: 0 -2509px;
|
1172
|
+
height: 11px;
|
1173
|
+
width: 16px; }
|
1174
|
+
|
1175
|
+
.flag-us {
|
1176
|
+
background-position: 0 -2520px;
|
1177
|
+
height: 11px;
|
1178
|
+
width: 16px; }
|
1179
|
+
|
1180
|
+
.flag-uy {
|
1181
|
+
background-position: 0 -2531px;
|
1182
|
+
height: 11px;
|
1183
|
+
width: 16px; }
|
1184
|
+
|
1185
|
+
.flag-uz {
|
1186
|
+
background-position: 0 -2542px;
|
1187
|
+
height: 11px;
|
1188
|
+
width: 16px; }
|
1189
|
+
|
1190
|
+
.flag-va {
|
1191
|
+
background-position: 0 -2553px;
|
1192
|
+
height: 11px;
|
1193
|
+
width: 16px; }
|
1194
|
+
|
1195
|
+
.flag-vc {
|
1196
|
+
background-position: 0 -2564px;
|
1197
|
+
height: 11px;
|
1198
|
+
width: 16px; }
|
1199
|
+
|
1200
|
+
.flag-ve {
|
1201
|
+
background-position: 0 -2575px;
|
1202
|
+
height: 11px;
|
1203
|
+
width: 16px; }
|
1204
|
+
|
1205
|
+
.flag-vg {
|
1206
|
+
background-position: 0 -2586px;
|
1207
|
+
height: 11px;
|
1208
|
+
width: 16px; }
|
1209
|
+
|
1210
|
+
.flag-vi {
|
1211
|
+
background-position: 0 -2597px;
|
1212
|
+
height: 11px;
|
1213
|
+
width: 16px; }
|
1214
|
+
|
1215
|
+
.flag-vn {
|
1216
|
+
background-position: 0 -2608px;
|
1217
|
+
height: 11px;
|
1218
|
+
width: 16px; }
|
1219
|
+
|
1220
|
+
.flag-vu {
|
1221
|
+
background-position: 0 -2619px;
|
1222
|
+
height: 11px;
|
1223
|
+
width: 16px; }
|
1224
|
+
|
1225
|
+
.flag-wales {
|
1226
|
+
background-position: 0 -2630px;
|
1227
|
+
height: 11px;
|
1228
|
+
width: 16px; }
|
1229
|
+
|
1230
|
+
.flag-wf {
|
1231
|
+
background-position: 0 -2641px;
|
1232
|
+
height: 11px;
|
1233
|
+
width: 16px; }
|
1234
|
+
|
1235
|
+
.flag-ws {
|
1236
|
+
background-position: 0 -2652px;
|
1237
|
+
height: 11px;
|
1238
|
+
width: 16px; }
|
1239
|
+
|
1240
|
+
.flag-ye {
|
1241
|
+
background-position: 0 -2663px;
|
1242
|
+
height: 11px;
|
1243
|
+
width: 16px; }
|
1244
|
+
|
1245
|
+
.flag-yt {
|
1246
|
+
background-position: 0 -2674px;
|
1247
|
+
height: 11px;
|
1248
|
+
width: 16px; }
|
1249
|
+
|
1250
|
+
.flag-za {
|
1251
|
+
background-position: 0 -2685px;
|
1252
|
+
height: 11px;
|
1253
|
+
width: 16px; }
|
1254
|
+
|
1255
|
+
.flag-zm {
|
1256
|
+
background-position: 0 -2696px;
|
1257
|
+
height: 11px;
|
1258
|
+
width: 16px; }
|
1259
|
+
|
1260
|
+
.flag-zw {
|
1261
|
+
background-position: 0 -2707px;
|
1262
|
+
height: 11px;
|
1263
|
+
width: 16px; }
|