famfamfam-flags.css 25 KB

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