-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1049 lines (1028 loc) · 89.7 KB
/
index.html
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="html" lang="en-US">
<head>
<script type="text/javascript">
if(typeof Muse == "undefined") window.Muse = {}; window.Muse.assets = {"required":["jquery-1.8.3.min.js", "museutils.js", "jquery.watch.js", "webpro.js", "musewpslideshow.js", "jquery.museoverlay.js", "touchswipe.js", "jquery.scrolleffects.js", "jquery.musemenu.js", "jquery.musepolyfill.bgsize.js", "index.css"], "outOfDate":[]};
</script>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
<meta name="generator" content="2015.0.0.309"/>
<title>BigBiral</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/site_global.css?31452529"/>
<link rel="stylesheet" type="text/css" href="css/index.css?521202088" id="pagesheet"/>
<!-- Other scripts -->
<script type="text/javascript">
document.documentElement.className += ' js';
</script>
<!-- JS includes -->
<!--[if lt IE 9]>
<script src="scripts/html5shiv.js?4241844378" type="text/javascript"></script>
<![endif]-->
<!--custom head HTML-->
<style>
.trigerDetails{
transition:all 0.5s ease 0s;
-webkit-transition:all 0.5s ease 0s;
}
</style>
<!--HTML Widget code-->
<style>
.normal,.trigerRoll {
transition:all .5s ease;
-webkit-transition: all .5s ease;
}
}
</style>
<style>
.stroke {
transition:all 0.5s linear;
-webkit-transition: all 0.5s linear;
}
}
</style>
<style>
.rotate img {
transition: all 0.4s ease 0s;
-webkit-transition: all 0.4s ease 0s;
transform-origin: center center;
-webkit-transform-origin: center center;
}
.rotate img:hover {
transform: scale(1) rotate(180deg);
-webkit-transform: scale(1) rotate(180deg);
}
</style>
</head>
<body>
<div class="clearfix" id="page"><!-- column -->
<div class="position_content" id="page_position_content">
<div class="clearfix colelem" id="pslideshowu444"><!-- column -->
<div class="SlideShowWidget clearfix colelem" id="slideshowu444"><!-- none box -->
<div class="popup_anchor" id="u445popup">
<div class="SlideShowContentPanel clearfix fullscreen" id="u445"><!-- stack box -->
<div class="SSSlide clip_frame fullscreen" id="u658"><!-- image -->
<img class="ImageInclude" id="u658_img" data-src="images/img1.jpg" src="images/blank.gif" alt="" data-width="11201" data-height="6301"/>
</div>
<div class="SSSlide invi clip_frame fullscreen" id="u2313"><!-- image -->
<img class="ImageInclude" id="u2313_img" data-src="images/img2.jpg" src="images/blank.gif" alt="" data-width="11201" data-height="6301"/>
</div>
<div class="SSSlide invi clip_frame fullscreen" id="u2322"><!-- image -->
<img class="ImageInclude" id="u2322_img" data-src="images/img3.jpg" src="images/blank.gif" alt="" data-width="10081" data-height="6301"/>
</div>
<div class="SSSlide invi clip_frame fullscreen" id="u2331"><!-- image -->
<img class="ImageInclude" id="u2331_img" data-src="images/img4.jpg" src="images/blank.gif" alt="" data-width="11201" data-height="6301"/>
</div>
<div class="SSSlide invi clip_frame fullscreen" id="u2340"><!-- image -->
<img class="ImageInclude" id="u2340_img" data-src="images/img5.jpg" src="images/blank.gif" alt="" data-width="11201" data-height="6301"/>
</div>
<div class="SSSlide invi clip_frame fullscreen" id="u2349"><!-- image -->
<img class="ImageInclude" id="u2349_img" data-src="images/img6.jpg" src="images/blank.gif" alt="" data-width="10081" data-height="6301"/>
</div>
<div class="SSSlide invi clip_frame fullscreen" id="u2358"><!-- image -->
<img class="ImageInclude" id="u2358_img" data-src="images/img7.jpg" src="images/blank.gif" alt="" data-width="11201" data-height="6301"/>
</div>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu415"><!-- group -->
<div class="browser_width grpelem" id="u415-bw">
<div id="u415"><!-- column -->
<div class="clearfix" id="u415_align_to_page">
<div class="position_content" id="u415_position_content">
<a class="anchor_item colelem" id="home"></a>
<nav class="MenuBar clearfix colelem" id="menuu75"><!-- horizontal box -->
<div class="MenuItemContainer clearfix grpelem" id="u83"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing clearfix colelem" id="u84" href="index.html#bigcats"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u85" alt="Big Cats" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u106"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing clearfix colelem" id="u107" href="index.html#types"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u110" alt="Types" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u99"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing clearfix colelem" id="u100" href="index.html#geography"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u103" alt="Habitat" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u92"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing clearfix colelem" id="u93" href="index.html#population"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u96" alt="Population" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u173"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing clearfix colelem" id="u174" href="index.html#todo"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u177" alt="Save Them" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u113"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing clearfix colelem" id="u114" href="index.html#contact"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u117" alt="About" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
</nav>
<div class="colelem" id="u2787"><!-- custom html -->
</div>
<a class="anchor_item colelem" id="bigcats"></a>
</div>
</div>
</div>
</div>
<div class="PamphletWidget clearfix grpelem" id="pamphletu2850"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u2861"><!-- none box -->
<div class="popup_anchor">
<div class="Thumb popup_element" id="u2862"><!-- simple frame --></div>
</div>
</div>
<div class="popup_anchor" id="u2851popup">
<div class="ContainerGroup clearfix" id="u2851"><!-- stack box -->
<div class="Container invi museBGSize grpelem" id="u2852"><!-- simple frame --></div>
<div id="svglogo"><object>
<embed src="logo-out-line.svg">
</object></div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu129"><!-- group -->
<div class="browser_width mse_pre_init" id="u129-bw">
<div class="rgba-background" id="u129"><!-- simple frame --></div>
</div>
<nav class="MenuBar clearfix mse_pre_init" id="menuu688"><!-- horizontal box -->
<div class="MenuItemContainer clearfix grpelem" id="u689"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing rounded-corners clearfix colelem" id="u692" href="index.html#home"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u693" alt="Home" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u703"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing rounded-corners clearfix colelem" id="u706" href="index.html#bigcats"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u707" alt="Big Cats" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u710"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing rounded-corners clearfix colelem" id="u713" href="index.html#types"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u714" alt="Types" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u717"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing rounded-corners clearfix colelem" id="u720" href="index.html#geography"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u721" alt="Habitat" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u724"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing rounded-corners clearfix colelem" id="u725" href="index.html#population"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u726" alt="Population" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u731"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing rounded-corners clearfix colelem" id="u732" href="index.html#todo"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u733" alt="Save Them" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
<div class="MenuItemContainer clearfix grpelem" id="u738"><!-- vertical box -->
<a class="nonblock nontext MenuItem MenuItemWithSubMenu anim_swing rounded-corners clearfix colelem" id="u739" href="index.html#contact"><!-- horizontal box --><img class="MenuItemLabel NoWrap grpelem" id="u742" alt="About" src="images/blank.gif"/><!-- state-based BG images --></a>
</div>
</nav>
<img class="mse_pre_init" id="u2789-4" alt="Use mouse wheel or the menu to navigate . . ." width="457" height="26" src="images/u2789-4.png"/><!-- rasterized frame -->
</div>
<div class="browser_width colelem" id="u417-bw">
<div id="u417"><!-- group -->
<div class="clearfix" id="u417_align_to_page">
<a class="anchor_item grpelem" id="types"></a>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu786-4"><!-- group -->
<img class="mse_pre_init" id="u786-4" alt="Of the predators found around the world, some of the most elegant and regal are the big cats. You may be able to recognize these species at first sight, but how much do you really know about them? From the speedy cheetah to the powerful tiger, each species has qualities and quirks that makes them stand out from the rest. Here's a dose of fascinating trivia about these well-loved felids. " width="381" height="336" src="images/u786-4.png"/><!-- rasterized frame -->
<div class="PamphletWidget clearfix mse_pre_init" id="pamphletu883"><!-- none box -->
<div class="popup_anchor" id="u884popup">
<div class="ContainerGroup clearfix" id="u884"><!-- stack box -->
<div class="Container invi rgba-background rounded-corners clearfix grpelem" id="u890"><!-- column -->
<div class="clearfix colelem" id="pu1187"><!-- group -->
<div class="museBGSize grpelem" id="u1187"><!-- simple frame --></div>
<div class="clearfix grpelem" id="u1197-4"><!-- content -->
<p id="u1197-2">1. Cheetahs are capable of going from zero to 40 miles per hour in only a few strides, and can hit 60 miles per hour in just three seconds. That’s an explosive power that would leave most cars in the dust. The cheetah’s top speed has been clocked at 64 miles per hour.</p>
</div>
</div>
<div class="clearfix colelem" id="u1198-15"><!-- content -->
<p id="u1198-3"> <span id="u1198-2">1. Cheetahs are capable of going from zero to 40 miles per hour in only a few strides, and can hit 60 miles per hour in just three seconds. That’s an explosive power that would leave most cars in the dust. The cheetah’s top speed has been clocked at 64 miles per hour.</span></p>
<p id="u1198-4"> </p>
<p id="u1198-6">2. A species of cheetah was once found in North America. While it is extinct today, evidence of its existence remains in a modern species: the pronghorn. It's believed that these incredibly fast ungulates, which can sustain speeds of 30 miles per hour for miles on end, evolved their speed and endurance as a way to escape their ancient cheetah predators.</p>
<p id="u1198-7"> </p>
<p id="u1198-9">3. Cheetahs are great at getting by with little water. They only need to have a drink every three or four days.</p>
<p id="u1198-10"> </p>
<p id="u1198-12">4. Though cheetahs are fast, they aren’t perfect hunters. Only about half of their kill attempts are successful. The effort to catch prey lasts a mere 20-60 seconds, but is incredibly energy-intensive, so every missed kill is a significant amount of wasted energy.</p>
<p id="u1198-13"> </p>
</div>
</div>
<div class="Container invi rgba-background rounded-corners clearfix grpelem" id="u978"><!-- column -->
<div class="clearfix colelem" id="pu1203"><!-- group -->
<div class="museBGSize grpelem" id="u1203"><!-- simple frame --></div>
<div class="clearfix grpelem" id="u1217-4"><!-- content -->
<p id="u1217-2">1. The cougar has the Guinness World Record for the animal species with the most names. It has over 40 names in the English language alone, including mountain lion, puma, catamount, ghost cat, painter, shadow cat, panther and mountain screamer.</p>
</div>
</div>
<div class="clearfix colelem" id="u1218-14"><!-- content -->
<p class="Paragraph-Style" id="u1218-2"> 2. The cougar cannot roar. Instead it makes chirping or yowling sounds when it needs to vocalize. And of course it has a hearty purr.</p>
<p class="Paragraph-Style" id="u1218-3"> </p>
<p class="Paragraph-Style" id="u1218-5">3. Cougars are ambush predators, often hiding until prey is within reach and making a powerful leap. This strategy has helped make the species' leaping ability extraordinary. The cats can jump 15 feet high in a single leap, and they can clear 40 feet in distance especially if leaping down from a vantage point above their prey.</p>
<p class="Paragraph-Style" id="u1218-6"> </p>
<p class="Paragraph-Style" id="u1218-8">4. While animals like deer are a staple for cougars, when food is scarce they catch whatever is edible, including insects.</p>
<p class="Paragraph-Style" id="u1218-9"> </p>
<p class="Paragraph-Style" id="u1218-11">5. Cougar populations are mostly stable, but there is one subspecies that is critically endangered. The Florida panther has only about 100 individuals left.</p>
<p> </p>
</div>
</div>
<div class="Container invi rgba-background rounded-corners Style clearfix grpelem" id="u981"><!-- column -->
<div class="clearfix colelem" id="pu1221"><!-- group -->
<div class="museBGSize grpelem" id="u1221"><!-- simple frame --></div>
<div class="clearfix grpelem" id="u1222-4"><!-- content -->
<p id="u1222-2">1. Jaguars have unique markings compared to other cats, and they have spots within spots. Actually, they're not called "spots" but rather are "rosettes" because each marking looks like a rose, with an outer dark marking and a lighter spot within that darker marking.</p>
</div>
</div>
<div class="clearfix colelem" id="u1223-12"><!-- content -->
<p class="Paragraph-Style" id="u1223-2"> 2. Cats are famous for their dislike of water, but the jaguar turns that stereotype on its head. This big cat enjoys water and swims, plays, hunts and even fishes in rivers and streams. There are historical accounts that jaguars dipped their tails in streams to lure fish!</p>
<p class="Paragraph-Style" id="u1223-3"> </p>
<p class="Paragraph-Style" id="u1223-5">3. Jaguars have the strongest jaws of any of the cat species and can bite down with 2,000 pounds of force. This is enough to pierce turtle shells and easily crunch through bones. Their bite is twice as strong as the lion; in fact, the jaguar is second only to the hyena for strongest bite of all mammals.</p>
<p class="Paragraph-Style" id="u1223-6"> </p>
<p class="Paragraph-Style" id="u1223-8">4. This big cat's name is derived from the Native American word yaguar, which means "he who kills with one leap," referencing the animal's incredible hunting prowess and strength.</p>
<p class="Paragraph-Style" id="u1223-9"> </p>
<p> </p>
</div>
</div>
<div class="Container invi Style clearfix grpelem" id="u983"><!-- column -->
<div class="clearfix colelem" id="pu1230"><!-- group -->
<div class="museBGSize grpelem" id="u1230"><!-- simple frame --></div>
<div class="clearfix grpelem" id="u1231-4"><!-- content -->
<p id="u1231-2">1. Leopards can be found throughout Africa and Asia, and have adapted to thrive in diverse environments from dense jungles to grassy savannas to deserts.</p>
</div>
</div>
<div class="clearfix colelem" id="u1232-16"><!-- content -->
<p class="Paragraph-Style" id="u1232-2"> 2. Females can give birth at any time of the year. The cubs — usually a litter of two — will stay with the mother for as long as two years while learning to hunt.</p>
<p class="Paragraph-Style" id="u1232-3"> </p>
<p class="Paragraph-Style" id="u1232-5">3. Though leopards are the smallest of the big cat species, they are pound-for-pound the strongest. Their stocky, powerful build allows them to drag large prey up into trees to keep it away from scavengers.</p>
<p class="Paragraph-Style" id="u1232-6"> </p>
<p class="Paragraph-Style" id="u1232-8">4. Leopards are opportunistic and will eat most things that come close enough to catch, including wild pigs, snakes, monkeys and even porcupines.</p>
<p class="Paragraph-Style" id="u1232-9"> </p>
<p class="Paragraph-Style" id="u1232-11">5. There are nine subspecies of leopard, all of which are near threatened, endangered or critically endangered. The Javan leopard has only an estimated 250 individuals left, and the Amur leopard has only perhaps 20 individuals left in the wild.</p>
<p class="Paragraph-Style" id="u1232-12"> </p>
<p class="Paragraph-Style" id="u1232-13"> </p>
<p> </p>
</div>
</div>
<div class="Container invi Style clearfix grpelem" id="u985"><!-- column -->
<div class="clearfix colelem" id="pu1239"><!-- group -->
<div class="museBGSize grpelem" id="u1239"><!-- simple frame --></div>
<div class="clearfix grpelem" id="u1240-4"><!-- content -->
<p id="u1240-2">1. Lions are the only social species of the cat family. Members of a lion pride are typically very affectionate with each other, with plenty of cuddling and mutual grooming they they are resting. The pride also works as a team to bring down prey, which is shared with the entire group.</p>
</div>
</div>
<div class="clearfix colelem" id="u1241-17"><!-- content -->
<p class="Paragraph-Style" id="u1241-2"> 2. As long as food is plentiful, a female lions will stay with the pride in which she was born for her entire life. Males, however, usually leave once they reach maturity, forced out by the dominant male or males. These bachelors will sometimes form small coalitions of two or three, and seek out another pride to take over.</p>
<p class="Paragraph-Style" id="u1241-3"> </p>
<p class="Paragraph-Style" id="u1241-5">3. A lion's roar can be heard as far as 5 miles away.</p>
<p class="Paragraph-Style" id="u1241-6"> </p>
<p class="Paragraph-Style" id="u1241-8">4. If lions and tigers seem similar, that's because they are. In fact their bodies are so similar that if you disguised their coats, only experts would be able to tell which was the lion and which the tiger.</p>
<p class="Paragraph-Style" id="u1241-9"> </p>
<p class="Paragraph-Style" id="u1241-11">5. Lion populations have decreased by half since the 1950s. According to Panthera, "Lions have vanished from over 80 percent of their historic range.</p>
<p class="Paragraph-Style" id="u1241-12"> </p>
<p class="Paragraph-Style" id="u1241-13"> </p>
<p class="Paragraph-Style" id="u1241-14"> </p>
<p> </p>
</div>
</div>
<div class="Container invi Style clearfix grpelem" id="u987"><!-- column -->
<div class="clearfix colelem" id="pu1248"><!-- group -->
<div class="museBGSize grpelem" id="u1248"><!-- simple frame --></div>
<div class="clearfix grpelem" id="u1249-4"><!-- content -->
<p id="u1249-2">1. Snow leopards have shorter front legs than back legs. The front legs (which also have larger paws than the back legs) help the cat balance and land jumps more easily. Meanwhile, the longer,powerful back legs help the cat make those impressive jumps,which can be as far as 45 feet!</p>
</div>
</div>
<div class="clearfix colelem" id="u1250-15"><!-- content -->
<p class="Paragraph-Style" id="u1250-2">2. Snow leopards cannot roar. Rather, they hiss, mew, chuff and growl.</p>
<p class="Paragraph-Style" id="u1250-3"> </p>
<p class="Paragraph-Style" id="u1250-5">3. Though the snow leopard is a medium-sized cat, weighing in at between 60-120 pounds, it can still take down prey three times heavier than itself.</p>
<p class="Paragraph-Style" id="u1250-6"> </p>
<p class="Paragraph-Style" id="u1250-8">4. Snow leopards can travel many miles in a single night. The Snow Leopard Trust documented one cat traveling across 27 miles of open desert in one night. This same cat walked more than 93 miles in five days. Their ability to cross vast distances helps them to move between areas where prey can be found, which is sometimes sparse in their cold mountain habitat.</p>
<p class="Paragraph-Style" id="u1250-9"> </p>
<p class="Paragraph-Style" id="u1250-10"> </p>
<p class="Paragraph-Style" id="u1250-11"> </p>
<p class="Paragraph-Style" id="u1250-12"> </p>
<p> </p>
</div>
</div>
<div class="Container invi Style clearfix grpelem" id="u989"><!-- column -->
<div class="clearfix colelem" id="pu1258"><!-- group -->
<div class="museBGSize grpelem" id="u1258"><!-- simple frame --></div>
<div class="clearfix grpelem" id="u1259-4"><!-- content -->
<p id="u1259-2">1. The tiger is the world's largest cat species. Males of the largest subspecies, the Siberian tiger, weigh in at between 400-675 pounds on a frame measuring 6-7.5 feet long!</p>
</div>
</div>
<div class="clearfix colelem" id="u1260-14"><!-- content -->
<p class="Paragraph-Style" id="u1260-2"> 2. Though the tiger is well camouflaged, stealthy and powerful, only about 1 in 10 of its attempts to bring down prey are successful. To make sure they get the most out of every kill, a tiger can eat as much as 35-90 pounds of meat in a single sitting.</p>
<p class="Paragraph-Style" id="u1260-3"> </p>
<p class="Paragraph-Style" id="u1260-5">3. Tigers are typically loners but there have been reports of tigers traveling in groups. In most of these cases, the tigers are probably either coming together to mate or are somehow related such as older siblings still with their mother. In any case, a group of tigers is called a "streak" or an "ambush."</p>
<p class="Paragraph-Style" id="u1260-6"> </p>
<p class="Paragraph-Style" id="u1260-8">4. Tigers can and do purr. But it isn't the purring we're used to. Unlike our domesticated cat, which can purr while breathing in and out, the tiger can only purr when it is exhaling. Some biologists have pointed out that the physical traits that allow tigers to roar don't provide them with the ability to purr, and while there is debate on the specificity of whether their sounds "count" as purring, studies have leaned toward the theory that they can indeed purr, just differently.</p>
<p class="Paragraph-Style" id="u1260-9"> </p>
<p class="Paragraph-Style" id="u1260-10"> </p>
<p class="Paragraph-Style" id="u1260-11"> </p>
<p> </p>
</div>
</div>
</div>
</div>
<div class="ThumbGroup clearfix grpelem" id="u902"><!-- none box -->
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu905"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u905"><!-- group -->
<img class="grpelem" id="u963" alt="Cheetahs" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu980"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u980"><!-- group -->
<img class="grpelem" id="u964" alt="Cougars" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu982"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u982"><!-- group -->
<img class="grpelem" id="u965" alt="Jaguars" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu984"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u984"><!-- group -->
<img class="grpelem" id="u966" alt="Leopards" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu986"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u986"><!-- group -->
<img class="grpelem" id="u967" alt="Lions" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu988"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u988"><!-- group -->
<img class="grpelem" id="u968" alt="Snow leopards" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu990"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u990"><!-- group -->
<img class="grpelem" id="u969" alt="Tigers" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
</div>
</div>
<img class="mse_pre_init" id="u795-5" alt="Surprising facts about our favorite big cat species. Just hover on them to view." width="228" height="98" src="images/u795-5.png"/><!-- rasterized frame -->
</div>
<div class="clearfix colelem" id="pu418"><!-- group -->
<div class="browser_width grpelem" id="u418-bw">
<div id="u418"><!-- group -->
<div class="clearfix" id="u418_align_to_page">
<a class="anchor_item grpelem" id="geography"></a>
</div>
</div>
</div>
<img class="mse_pre_init" id="u1296" alt="Big cats, small wild cats and domestic cats are members of the felidae family, which is a biological classification. A member of the felidae family is called a felid. There are two sub-families of felidae, the Pantherinae(Big cats) and the Felinae(Small cats,some big) (There was once a third family, the Machairodontinae, also known as the saber-toothed cats.).The Pantherinae subfamily includes the genus Panthera, Uncia and Neofelis." src="images/blank.gif"/><!-- state-based BG images -->
</div>
<div class="clearfix colelem" id="pu1300-5"><!-- column -->
<div class="position_content" id="pu1300-5_position_content">
<img class="mse_pre_init" id="u1300-5" alt="All the big cats are part of one of the three subfamily below. Hover over them to view." width="224" height="110" src="images/u1300-5.png"/><!-- rasterized frame -->
<div class="PamphletWidget clearfix mse_pre_init" id="pamphletu1302"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u1305"><!-- none box -->
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu1306"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u1306"><!-- group -->
<img class="grpelem" id="u1319" alt="Panthera" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu1320"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u1320"><!-- group -->
<img class="grpelem" id="u1325" alt="Unica" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu1323"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u1323"><!-- group -->
<img class="grpelem" id="u1326" alt="Neofelis" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="popup_element Thumb clearfix" id="pu1501"><!-- group -->
<div class="popup_anchor">
<div class="popup_element clearfix" id="u1501"><!-- group -->
<img class="grpelem" id="u1525" alt="Felinae" src="images/blank.gif"/><!-- state-based BG images -->
</div>
</div>
</div>
</div>
</div>
<div class="popup_anchor" id="u1309popup">
<div class="ContainerGroup clearfix" id="u1309"><!-- stack box -->
<div class="Container invi clearfix grpelem" id="u1310"><!-- column -->
<div class="PamphletWidget clearfix colelem" id="pamphletu1408"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u1417"><!-- none box -->
<div class="popup_anchor">
<div class="Thumb popup_element rgba-background normal clearfix" id="u1419"><!-- group -->
<div class="clearfix grpelem" id="u1404-6"><!-- content -->
<p>Tigers (Panthera tigris)</p>
<p>Is the largest of all big cats. 423kg, 931 pounds or 58.2 bowling balls. Subspecies (Amur tiger|Siberian tiger,Indochinese tiger,Bengal tiger,Sumatran tiger,Malayan tiger ,South China tiger )</p>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1425"><!-- group -->
<div class="clearfix grpelem" id="u1444-6"><!-- content -->
<p>The lion (Panthera leo)</p>
<p>The king of cats. 272 kg, 598 pounds or 37.4 bowling balls. Subspecies (Asiatic lion,West African lion,Congo lion,East African lion,Southwest African lion, Southeast African lion )</p>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1427"><!-- group -->
<div class="clearfix grpelem" id="u1451-6"><!-- content -->
<p>Jaguars (Panthera onca)</p>
<p>They are very similar in appearance to leopards, but generally larger. 136kg, 299 pounds or 18.7 bowling balls. Subspecies (Mexican jaguar,Centeral American jaguar,Arizonan jaguar,Goldman’s jaguar,Peruvian jaguar,Panthera onca onca )</p>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1429"><!-- group -->
<div class="clearfix grpelem" id="u1452-6"><!-- content -->
<p>Leopard (Panthera pardus)</p>
<p>Smallest among big cats. 65kg, 143 pounds or 8.9 bowling balls. Subspecies (Persian leopard, Arabian,Sri Lankan leopard,Javan leopard,Indian leopard,North Chinese leopard )</p>
</div>
</div>
</div>
</div>
<div class="popup_anchor" id="u1409popup">
<div class="ContainerGroup clearfix" id="u1409"><!-- stack box -->
<div class="Container invi grpelem" id="u1412"><!-- simple frame --></div>
<div class="Container invi grpelem" id="u1426"><!-- simple frame --></div>
<div class="Container invi grpelem" id="u1428"><!-- simple frame --></div>
<div class="Container invi grpelem" id="u1430"><!-- simple frame --></div>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu1327"><!-- group -->
<div class="museBGSize grpelem" id="u1327"><!-- simple frame --></div>
<div class="grpelem" id="u1447"><!-- custom html -->
</div>
</div>
<div class="museBGSize colelem" id="u1376"><!-- simple frame --></div>
<div class="clearfix colelem" id="pu1377"><!-- group -->
<div class="museBGSize grpelem" id="u1377"><!-- simple frame --></div>
<div class="museBGSize grpelem" id="u1378"><!-- simple frame --></div>
</div>
</div>
<div class="Container invi clearfix grpelem" id="u1322"><!-- group -->
<div class="PamphletWidget clearfix grpelem" id="pamphletu1459"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u1466"><!-- none box -->
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1467"><!-- group -->
<div class="clearfix grpelem" id="u1468-6"><!-- content -->
<p>Snow Leopard (Uncia uncia)</p>
<p>The genus Uncia includes the snow leopard (Uncia uncia or Panthera uncial), the only big cat classified in this genus. 75kg, 165 pounds or 10.3 bowling balls</p>
</div>
</div>
</div>
</div>
<div class="popup_anchor" id="u1475popup">
<div class="ContainerGroup clearfix" id="u1475"><!-- stack box -->
<div class="Container invi grpelem" id="u1478"><!-- simple frame --></div>
</div>
</div>
</div>
<div class="museBGSize grpelem" id="u1547"><!-- simple frame --></div>
</div>
<div class="Container invi clearfix grpelem" id="u1324"><!-- column -->
<div class="PamphletWidget clearfix colelem" id="pamphletu1582"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u1583"><!-- none box -->
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1588"><!-- group -->
<div class="clearfix grpelem" id="u1589-6"><!-- content -->
<p>Clouded Leopard (Neofelis nebulosa)</p>
<p>The smallest of the big cats, they are secretive and rare in the wild, preferring to remain alone and hidden from view.23kg, 51 pounds or 3.2 bowling balls.</p>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1584"><!-- group -->
<div class="clearfix grpelem" id="u1585-6"><!-- content -->
<p>Sunda Clouded Leopard (Neofelis diardi)</p>
<p>They were only identified to science in 2006.They have been separated from the mainland population of Clouded Leopard for 2.8 million years. 10-25 kg (22-55 lbs).</p>
</div>
</div>
</div>
</div>
<div class="popup_anchor" id="u1592popup">
<div class="ContainerGroup clearfix" id="u1592"><!-- stack box -->
<div class="Container invi grpelem" id="u1594"><!-- simple frame --></div>
<div class="Container invi grpelem" id="u1596"><!-- simple frame --></div>
</div>
</div>
</div>
<div class="museBGSize colelem" id="u1568"><!-- simple frame --></div>
<div class="museBGSize colelem" id="u1569"><!-- simple frame --></div>
</div>
<div class="Container invi clearfix grpelem" id="u1503"><!-- group -->
<div class="PamphletWidget clearfix grpelem" id="pamphletu1628"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u1629"><!-- none box -->
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1634"><!-- group -->
<div class="clearfix grpelem" id="u1635-6"><!-- content -->
<p>Cougar (Puma concolor)</p>
<p>Aka Puma and Mountain Lion. 120kg, 264 pounds or 16.5 bowling balls. Over 30 subspecies of cougar have been documented. Six subspecies have been recognized. Found throughout the Americas.</p>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element normal rgba-background clearfix" id="u1630"><!-- group -->
<div class="clearfix grpelem" id="u1631-6"><!-- content -->
<p>Cheetah (Acinonyx jubatus)</p>
<p>The world’s fastest land animal. 54 kg, 119 pounds or 7.4 bowling balls. Subspecies (Asiatic cheetah,Northwest African cheetah,Eastern Africa cheetah,Southern Africa cheetah,Central Africa cheetah0)</p>
</div>
</div>
</div>
</div>
<div class="popup_anchor" id="u1638popup">
<div class="ContainerGroup clearfix" id="u1638"><!-- stack box -->
<div class="Container invi grpelem" id="u1640"><!-- simple frame --></div>
<div class="Container invi grpelem" id="u1642"><!-- simple frame --></div>
</div>
</div>
</div>
<div class="clearfix grpelem" id="pu1548"><!-- column -->
<div class="museBGSize colelem" id="u1548"><!-- simple frame --></div>
<div class="museBGSize colelem" id="u1615"><!-- simple frame --></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu419"><!-- group -->
<div class="browser_width grpelem" id="u419-bw">
<div id="u419"><!-- column -->
<div class="clearfix" id="u419_align_to_page">
<img class="svg colelem" id="u1694" src="images/worldmaps3.svg" width="920" height="570" alt="" data-mu-svgfallback="images/worldmaps3_poster_.png"/><!-- svg -->
<a class="anchor_item colelem" id="population"></a>
</div>
</div>
</div>
<div class="PamphletWidget clearfix grpelem" id="pamphletu1706"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u1717"><!-- none box -->
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1720"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1721"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1723"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1725"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1727"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1747"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1749"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1751"><!-- simple frame --></div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element museBGSize" id="u1753"><!-- simple frame --></div>
</div>
</div>
<div class="popup_anchor" id="u1707popup">
<div class="ContainerGroup clearfix" id="u1707"><!-- stack box -->
<div class="Container invi rgba-background clearfix grpelem" id="u1710"><!-- group -->
<img class="svg grpelem" id="u1796" src="images/tigers.svg" width="918" height="569" alt="" data-mu-svgfallback="images/tigers_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1907-7" alt="Tigers are found in Northeastern China, Korea, Russia, parts of India and around the Himalayas, including Bangladesh, Vietnam, Cambodia, Thailand, Indonesia, Laos, Malaysia and Myanmar." width="364" height="209" src="images/u1907-7.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1722"><!-- group -->
<img class="svg grpelem" id="u1817" src="images/lions.svg" width="920" height="570" alt="" data-mu-svgfallback="images/lions_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1908-7" alt="Lions once roamed throughout southeastern Europe, the Middle East and parts of India. Today found in African countries while a few are found in India. In Africa, lions can be found in savanna grasslands with scattered Acacia trees which serve as shade, their habitat in India is a mixture of dry savanna forest and very dry deciduous scrub forest. Lions can be found in African continent except the central rainforest-zone and the Sahara desert. " width="550" height="303" src="images/u1908-7.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1724"><!-- group -->
<img class="svg grpelem" id="u1834" src="images/jaguar.svg" width="922" height="571" alt="" data-mu-svgfallback="images/jaguar_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1909-9" alt="Jaguars roam throughout Central and South America in forests located near rivers and lakes.
Found in Southern Arizona and New Mexico to Northern Argentina and Northeastern Brazil." width="373" height="231" src="images/u1909-9.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1726"><!-- group -->
<img class="svg grpelem" id="u1842" src="images/leopards.svg" width="919" height="569" alt="" data-mu-svgfallback="images/leopards_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1910-7" alt="Leopards are found throughout most of Africa and Asia from the middle east to the Soviet Union, Korea, China, India, and Malaysia. Leopards live in a variety of habitats including forests, mountains, grassland and deserts." width="401" height="209" src="images/u1910-7.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1728"><!-- group -->
<img class="svg grpelem" id="u1847" src="images/snowleopards.svg" width="920" height="570" alt="" data-mu-svgfallback="images/snowleopards_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1911-7" alt="Snow leopards are nearly extinct, with remaining populations located in twelve countries: Afghanistan, Bhutan, China, India, Kazakhstan, Kyrgyzstan, Mongolia, Nepal, Pakistan, Russia, Tajikistan, and Uzbekistan." width="371" height="255" src="images/u1911-7.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1748"><!-- group -->
<img class="svg grpelem" id="u1852" src="images/cloudedleopard.svg" width="921" height="570" alt="" data-mu-svgfallback="images/cloudedleopard_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1912-7" alt="Clouded Leopards are found across Southeast Asia and the Himalayas in the following countries: southern China, Bhutan, Nepal, northeast India, Burma, Thailand, Vietnam, Malaysia, Cambodia, Laos, and Bangladesh. It is believed to be extinct in Taiwan, China." width="427" height="231" src="images/u1912-7.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1750"><!-- group -->
<img class="svg grpelem" id="u1867" src="images/sundacloudedleopard.svg" width="920" height="570" alt="" data-mu-svgfallback="images/sundacloudedleopard_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1913-7" alt="Sunda Clouded Leopards also called the Sundaland clouded leopard is found in Sumatra and Borneo. Studies show a continuing decrease in population. The leopard’s local name means “tree branch tiger.”" width="452" height="185" src="images/u1913-7.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1752"><!-- group -->
<img class="svg grpelem" id="u1884" src="images/cougars.svg" width="920" height="570" alt="" data-mu-svgfallback="images/cougars_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1914-7" alt="Cougars are found throughout the Americas." width="241" height="111" src="images/u1914-7.png"/><!-- rasterized frame -->
</div>
<div class="Container invi rgba-background clearfix grpelem" id="u1754"><!-- group -->
<img class="svg grpelem" id="u1895" src="images/chettah.svg" width="921" height="570" alt="" data-mu-svgfallback="images/chettah_poster_.png"/><!-- svg -->
<img class="grpelem" id="u1915-7" alt="Cheetahs once ranged throughout India, Pakistan, Russia, Iran and the Middle East, but due to diminishing populations, most cheetahs can only be found in the eastern and southern parts Sub-Saharan Africa and Northern Iran." width="433" height="209" src="images/u1915-7.png"/><!-- rasterized frame -->
</div>
</div>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu420"><!-- group -->
<div class="browser_width grpelem" id="u420-bw">
<div id="u420"><!-- simple frame --></div>
</div>
<a class="anchor_item grpelem" id="todo"></a>
<div class="SlideShowWidget clearfix grpelem" id="slideshowu2582"><!-- none box -->
<div class="popup_anchor" id="u2589popup">
<div class="SlideShowContentPanel clearfix" id="u2589"><!-- stack box -->
<div class="SSSlide clip_frame grpelem" id="u2590"><!-- image -->
<img class="ImageInclude" id="u2590_img" data-src="images/ss1fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2623"><!-- image -->
<img class="ImageInclude" id="u2623_img" data-src="images/ss2fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2632"><!-- image -->
<img class="ImageInclude" id="u2632_img" data-src="images/ss3fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2641"><!-- image -->
<img class="ImageInclude" id="u2641_img" data-src="images/ss4fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2650"><!-- image -->
<img class="ImageInclude" id="u2650_img" data-src="images/ss5fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2684"><!-- image -->
<img class="ImageInclude" id="u2684_img" data-src="images/ss1fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2693"><!-- image -->
<img class="ImageInclude" id="u2693_img" data-src="images/ss2fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2702"><!-- image -->
<img class="ImageInclude" id="u2702_img" data-src="images/ss3fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2711"><!-- image -->
<img class="ImageInclude" id="u2711_img" data-src="images/ss4fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2720"><!-- image -->
<img class="ImageInclude" id="u2720_img" data-src="images/ss5fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
<div class="SSSlide invi clip_frame grpelem" id="u2744"><!-- image -->
<img class="ImageInclude" id="u2744_img" data-src="images/ss6fw.jpg" src="images/blank.gif" alt="" data-width="1160" data-height="355"/>
</div>
</div>
</div>
<div class="popup_anchor" id="u2583-4popup">
<div class="SSPreviousButton clearfix" id="u2583-4"><!-- content -->
<p><</p>
</div>
</div>
<div class="popup_anchor" id="u2591-4popup">
<div class="SSNextButton clearfix" id="u2591-4"><!-- content -->
<p>></p>
</div>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu2575-4"><!-- group -->
<img class="mse_pre_init" id="u2575-4" alt="Despite staunch conservation efforts, global big cat populations continue to decline. In just the last 30 years, data collected by conservation groups in Africa show that some big cat populations fell by at least 50% . Loss of habitat, human-wildlife conflicts, hunting, and poaching continue to threaten the long –term survival of these iconic creatures." width="1161" height="85" src="images/u2575-4.png"/><!-- rasterized frame -->
<img class="mse_pre_init" id="u2576-18" alt="Species 1985 2015 Source
Cheetah (Africa and Iran) ~21,000 <10,000 (CCF) Lion (African and Asia) 100,000 3,000 Africa; <400 Asia (IUCN)
Tiger (6 subspecies) 5,000-7,000 <3,500 (Global Tiger Initiative)
Leopard (9 subspecies) no reliable data 100,000 Africa; 8,000 India (Nat Geo)
Amur Leopard no reliable data 30
Snow Leopard 5,000 ~2,000 (Nat Geo)
Jaguar >25,000 ~15,000 (WWF)" width="960" height="138" src="images/u2576-18.png"/><!-- rasterized frame -->
</div>
<div class="browser_width colelem" id="u421-bw">
<div id="u421"><!-- group -->
<div class="clearfix" id="u421_align_to_page">
<div class="grpelem" id="u1950"><!-- custom html -->
</div>
<a class="anchor_item grpelem" id="contact"></a>
</div>
</div>
</div>
<div class="clearfix colelem" id="pu2173-4"><!-- group -->
<img class="mse_pre_init ose_pre_init" id="u2173-4" alt="As individuals we may think we have nothing to do, " width="616" height="37" src="images/u2173-4.png"/><!-- rasterized frame -->
<a class="nonblock nontext Button clearfix ose_pre_init mse_pre_init" id="buttonu1941" href="https://www.panthera.org" target="_blank"><!-- container box --><div class="stroke grpelem" id="u1938" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=-0.7071,M21=0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1939" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=0.7071,M21=-0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1940" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=0.7071,M21=-0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1944" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1959" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-21" data-mu-ie-matrix-dy="-21"><!-- simple frame --></div><div class="clip_frame grpelem" id="u1967"><!-- image --><img class="block" id="u1967_img" src="images/panthera-logo-800x469fw.png" alt="" width="104" height="61"/></div></a>
<img class="mse_pre_init ose_pre_init" id="u2176-4" alt="big cats conservation, as below" width="364" height="33" src="images/u2176-4.png"/><!-- rasterized frame -->
<a class="nonblock nontext Button clearfix ose_pre_init mse_pre_init" id="buttonu2030" href="http://www.worldwildlife.org/species/tiger" target="_blank"><!-- container box --><div class="stroke grpelem" id="u2037" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=-0.7071,M21=0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2036" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=0.7071,M21=-0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2035" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=0.7071,M21=-0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2033" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2034" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-21" data-mu-ie-matrix-dy="-21"><!-- simple frame --></div><div class="clip_frame grpelem" id="u2039"><!-- image --><img class="block" id="u2039_img" src="images/263px-wwf_logosvg.png" alt="" width="60" height="89"/></div></a>
<a class="nonblock nontext Button clearfix ose_pre_init mse_pre_init" id="buttonu1985" href="http://www.bigcatrescue.org" target="_blank"><!-- container box --><div class="stroke grpelem" id="u1987" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=-0.7071,M21=0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1990" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=0.7071,M21=-0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1988" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=0.7071,M21=-0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1989" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u1986" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-21" data-mu-ie-matrix-dy="-21"><!-- simple frame --></div><div class="clip_frame grpelem" id="u1994"><!-- image --><img class="block" id="u1994_img" src="images/bigcatrescuelogofw.png" alt="" width="98" height="66"/></div></a>
<img class="mse_pre_init ose_pre_init" id="u2175-4" alt="but what we can do is support the organizations working for" width="720" height="34" src="images/u2175-4.png"/><!-- rasterized frame -->
<a class="nonblock nontext Button clearfix ose_pre_init mse_pre_init" id="buttonu2045" href="http://www.bornfree.org.uk/about-us/" target="_blank"><!-- container box --><div class="stroke grpelem" id="u2050" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=-0.7071,M21=0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2051" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=0.7071,M21=-0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2049" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=0.7071,M21=-0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2052" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2046" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-21" data-mu-ie-matrix-dy="-21"><!-- simple frame --></div><div class="clip_frame grpelem" id="u2054"><!-- image --><img class="block" id="u2054_img" src="images/bpcc-web-bff-logo.png" alt="" width="102" height="48"/></div></a>
<img class="mse_pre_init ose_pre_init" id="u2177-4" alt="click on them to view" width="261" height="33" src="images/u2177-4.png"/><!-- rasterized frame -->
<a class="nonblock nontext Button clearfix ose_pre_init mse_pre_init" id="buttonu2000" href="http://animals.nationalgeographic.com/animals/big-cats-initiative/" target="_blank"><!-- container box --><div class="stroke grpelem" id="u2005" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=-0.7071,M21=0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2006" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=0.7071,M21=-0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2004" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=0.7071,M21=-0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2007" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2001" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-21" data-mu-ie-matrix-dy="-21"><!-- simple frame --></div><div class="clip_frame grpelem" id="u2009"><!-- image --><img class="block" id="u2009_img" src="images/national_geographic_society.png" alt="" width="109" height="32"/></div></a>
<img class="mse_pre_init ose_pre_init" id="u2174-4" alt="for protecting big cats" width="269" height="37" src="images/u2174-4.png"/><!-- rasterized frame -->
<a class="nonblock nontext Button clearfix ose_pre_init mse_pre_init" id="buttonu2060" href="http://www.bigcatswildcats.com" target="_blank"><!-- container box --><div class="stroke grpelem" id="u2067" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=-0.7071,M21=0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2066" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=0.7071,M21=-0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2065" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=0.7071,M21=-0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2063" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2064" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-21" data-mu-ie-matrix-dy="-21"><!-- simple frame --></div><div class="clip_frame grpelem" id="u2069"><!-- image --><img class="block" id="u2069_img" src="images/bigcatswildcatsfw.png" alt="" width="87" height="87"/></div></a>
<a class="nonblock nontext Button clearfix ose_pre_init mse_pre_init" id="buttonu2015" href="http://www.wcs.org/our-work/wildlife/big-cats" target="_blank"><!-- container box --><div class="stroke grpelem" id="u2020" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=-0.7071,M21=0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2018" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=-0.7071,M12=0.7071,M21=-0.7071,M22=-0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2017" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=0.7071,M21=-0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2016" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-44" data-mu-ie-matrix-dy="17"><!-- simple frame --></div><div class="stroke grpelem" id="u2019" data-mu-ie-matrix="progid:DXImageTransform.Microsoft.Matrix(M11=0.7071,M12=-0.7071,M21=0.7071,M22=0.7071,SizingMethod='auto expand')" data-mu-ie-matrix-dx="-21" data-mu-ie-matrix-dy="-21"><!-- simple frame --></div><div class="clip_frame grpelem" id="u2024"><!-- image --><img class="block" id="u2024_img" src="images/wcs_logo_detailfw.png" alt="" width="78" height="78"/></div></a>
</div>
<div class="clearfix colelem" id="pu423"><!-- group -->
<div class="browser_width grpelem" id="u423-bw">
<div id="u423"><!-- group -->
<div class="clearfix" id="u423_align_to_page">
<div class="grpelem" id="u2142"><!-- custom html --></div>
<div class="grpelem" id="u2117"><!-- custom html -->
<a href="http://www.adobe.com/go/made_with_muse_link"><img class="actAsDiv" width="210" src="http://musebadge.com/assets/madewithmuse-dark-en_US.png" data-hidpi-src="http://musebadge.com/assets/madewithmuse-2x-dark-en_US.png" alt="Made with Adobe Muse"/></a>
</div>
</div>
</div>
</div>
<div class="PamphletWidget clearfix grpelem" id="pamphletu2144"><!-- none box -->
<div class="ThumbGroup clearfix grpelem" id="u2145"><!-- none box -->
<div class="popup_anchor">
<div class="Thumb popup_element clearfix" id="u2147"><!-- group -->
<div class="rotate clip_frame grpelem" id="u2426"><!-- image -->
<img class="block" id="u2426_img" src="images/rotatefw.png" alt="" width="120" height="120"/>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element clearfix" id="u2390"><!-- group -->
<div class="rotate clip_frame grpelem" id="u2438"><!-- image -->
<img class="block" id="u2438_img" src="images/rotatefw.png" alt="" width="120" height="120"/>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element clearfix" id="u2395"><!-- group -->
<div class="rotate clip_frame grpelem" id="u2471"><!-- image -->
<img class="block" id="u2471_img" src="images/rotatefw.png" alt="" width="120" height="120"/>
</div>
</div>
</div>
<div class="popup_anchor">
<div class="Thumb popup_element clearfix" id="u2397"><!-- group -->
<div class="rotate clip_frame grpelem" id="u2486"><!-- image -->
<img class="block" id="u2486_img" src="images/rotatefw.png" alt="" width="120" height="120"/>
</div>
</div>
</div>
</div>
<div class="popup_anchor" id="u2155popup">
<div class="ContainerGroup clearfix" id="u2155"><!-- stack box -->
<div class="Container invi clearfix grpelem" id="u2158"><!-- group -->
<div class="rgba-background rounded-corners clearfix grpelem" id="u2409"><!-- group -->
<img class="grpelem" id="u2514-4" alt="This site is just a test site describing about big cats in brief. This project was undertaken to explore the art of website designing using various code free web designing softwares as mentioned in ''TECH..". All the data provided in this site are collected from various resources in web as mentioned in "REF..", so if there are any mistakes in informations provided please ignore." width="451" height="463" src="images/u2514-4.png"/><!-- rasterized frame -->
</div>
<div class="clip_frame grpelem" id="u2450"><!-- image -->
<img class="block" id="u2450_img" src="images/arrowfw.png" alt="" width="18" height="26"/>
</div>
</div>
<div class="Container invi clearfix grpelem" id="u2394"><!-- group -->
<div class="rgba-background rounded-corners clearfix grpelem" id="u2410"><!-- group -->
<img class="grpelem" id="u2516-28" alt="References....
1.http://www.mnn.com/earth-matters/animals/stories/surprising-facts-about-our-favorite-big-cat-species
2.http://www.earthrangers.com/wildwire/top-10/top-10-biggest-cats/
3.http://bigcatswildcats.com/list-of-big-cats/
4.http://bigcatswildcats.com/big-cats/big-cats-biological-classification/
5.http://www.wildcatconservation.org/wild-cats/asia/sunda-clouded-leopard/
6.https://en.wikipedia.org/wiki/Sunda_clouded_leopard
7.http://blog.wwf.ca/blog/2014/07/29/13-countries-can-find-wild-tigers/
8.http://www.wildlifeextra.com/go/news/extinct-lions.html#cr
9.http://bigcatrescue.org/jaguar-facts/
10.http://www.snowleopard.org/learn/cat-facts/habitat
11.http://wwf.panda.org/what_we_do/endangered_species/clouded_leopard/
12.http://bigcatrescue.org/cougar-facts/" width="439" height="463" src="images/u2516-28.png"/><!-- rasterized frame -->
</div>
<div class="clip_frame grpelem" id="u2456"><!-- image -->
<img class="block" id="u2456_img" src="images/arrowfw.png" alt="" width="18" height="26"/>
</div>
</div>
<div class="Container invi clearfix grpelem" id="u2396"><!-- group -->
<div class="clearfix grpelem" id="pu2411"><!-- group -->
<div class="rgba-background rounded-corners clearfix grpelem" id="u2411"><!-- group -->
<img class="grpelem" id="u2517-22" alt=" This project is entirely made using . . . Adobe Muse CC. With . . . Adobe Fireworks. And . . . Adobe Illustrator." width="444" height="464" src="images/u2517-22.png"/><!-- rasterized frame -->
</div>
<div class="clip_frame grpelem" id="u2544"><!-- image -->
<img class="block" id="u2544_img" src="images/muse_cc_splash.png" alt="" width="169" height="119"/>
</div>
<div class="clip_frame grpelem" id="u2550"><!-- image -->
<img class="block" id="u2550_img" src="images/adobe_fireworks_cs6_icon.png" alt="" width="96" height="96"/>
</div>
<div class="clip_frame grpelem" id="u2556"><!-- image -->
<img class="block" id="u2556_img" src="images/adobe_illustrator_icon_cs6.png" alt="" width="96" height="96"/>
</div>
</div>
<div class="clip_frame grpelem" id="u2474"><!-- image -->
<img class="block" id="u2474_img" src="images/arrowfw.png" alt="" width="18" height="26"/>
</div>
</div>
<div class="Container invi clearfix grpelem" id="u2398"><!-- group -->
<div class="clearfix grpelem" id="pu2412"><!-- group -->
<div class="rounded-corners clearfix grpelem" id="u2412"><!-- group -->
<img class="grpelem" id="u2568-8" alt="Hello! I am Soumen Saniel . . .
an amateur web designer
just starting off . . ." width="293" height="87" src="images/u2568-8.png"/><!-- rasterized frame -->
</div>
<div class="clip_frame grpelem" id="u2569"><!-- image -->
<img class="block" id="u2569_img" src="images/facefw.png" alt="" width="41" height="41"/>
</div>
</div>
<div class="clip_frame grpelem" id="u2483"><!-- image -->
<img class="block" id="u2483_img" src="images/arrowfw.png" alt="" width="18" height="26"/>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="verticalspacer"></div>
</div>
</div>
<div class="preload_images">
<img class="preload" src="images/u85-r.png" alt=""/>
<img class="preload" src="images/u110-r.png" alt=""/>
<img class="preload" src="images/u103-r.png" alt=""/>
<img class="preload" src="images/u96-r.png" alt=""/>
<img class="preload" src="images/u177-r.png" alt=""/>
<img class="preload" src="images/u117-r.png" alt=""/>
<img class="preload" src="images/u693-r.png" alt=""/>
<img class="preload" src="images/u693-a.png" alt=""/>
<img class="preload" src="images/u707-r.png" alt=""/>
<img class="preload" src="images/u707-a.png" alt=""/>
<img class="preload" src="images/u714-r.png" alt=""/>
<img class="preload" src="images/u714-a.png" alt=""/>
<img class="preload" src="images/u721-r.png" alt=""/>
<img class="preload" src="images/u721-a.png" alt=""/>
<img class="preload" src="images/u726-r.png" alt=""/>
<img class="preload" src="images/u726-a.png" alt=""/>
<img class="preload" src="images/u733-r.png" alt=""/>
<img class="preload" src="images/u733-a.png" alt=""/>
<img class="preload" src="images/u742-r.png" alt=""/>
<img class="preload" src="images/u742-a.png" alt=""/>
<img class="preload" src="images/u963-r.png" alt=""/>
<img class="preload" src="images/u963-a.png" alt=""/>
<img class="preload" src="images/u964-r.png" alt=""/>
<img class="preload" src="images/u964-a.png" alt=""/>
<img class="preload" src="images/u965-r.png" alt=""/>
<img class="preload" src="images/u965-a.png" alt=""/>
<img class="preload" src="images/u966-r.png" alt=""/>
<img class="preload" src="images/u966-a.png" alt=""/>
<img class="preload" src="images/u967-r.png" alt=""/>
<img class="preload" src="images/u967-a.png" alt=""/>
<img class="preload" src="images/u968-r.png" alt=""/>
<img class="preload" src="images/u968-a.png" alt=""/>
<img class="preload" src="images/u969-r.png" alt=""/>
<img class="preload" src="images/u969-a.png" alt=""/>
<img class="preload" src="images/u1296-r.png" alt=""/>
<img class="preload" src="images/u1319-r.png" alt=""/>
<img class="preload" src="images/u1319-a.png" alt=""/>
<img class="preload" src="images/u1325-r.png" alt=""/>
<img class="preload" src="images/u1325-a.png" alt=""/>
<img class="preload" src="images/u1326-r.png" alt=""/>
<img class="preload" src="images/u1326-a.png" alt=""/>
<img class="preload" src="images/u1525-r.png" alt=""/>
<img class="preload" src="images/u1525-a.png" alt=""/>
<img class="preload" src="images/cclogofw-u1419-r-fr.png" alt=""/>
</div>
<!-- JS includes -->
<script type="text/javascript">
if (document.location.protocol != 'https:') document.write('\x3Cscript src="http://musecdn.businesscatalyst.com/scripts/4.0/jquery-1.8.3.min.js" type="text/javascript">\x3C/script>');
</script>
<script type="text/javascript">
window.jQuery || document.write('\x3Cscript src="scripts/jquery-1.8.3.min.js" type="text/javascript">\x3C/script>');
</script>
<script src="scripts/museutils.js?183364071" type="text/javascript"></script>
<script src="scripts/webpro.js?3803554875" type="text/javascript"></script>
<script src="scripts/musewpslideshow.js?242596657" type="text/javascript"></script>
<script src="scripts/jquery.museoverlay.js?493285861" type="text/javascript"></script>
<script src="scripts/touchswipe.js?4038331989" type="text/javascript"></script>
<script src="scripts/jquery.scrolleffects.js?3860644955" type="text/javascript"></script>
<script src="scripts/jquery.musemenu.js?3957776250" type="text/javascript"></script>
<script src="scripts/jquery.watch.js?71412426" type="text/javascript"></script>
<script src="scripts/jquery.musepolyfill.bgsize.js?4004268962" type="text/javascript"></script>
<!-- Other scripts -->
<script type="text/javascript">
$(document).ready(function() { try {
(function(){var a={},b=function(a){if(a.match(/^rgb/))return a=a.replace(/\s+/g,"").match(/([\d\,]+)/gi)[0].split(","),(parseInt(a[0])<<16)+(parseInt(a[1])<<8)+parseInt(a[2]);if(a.match(/^\#/))return parseInt(a.substr(1),16);return 0};(function(){$('link[type="text/css"]').each(function(){var b=($(this).attr("href")||"").match(/\/?css\/([\w\-]+\.css)\?(\d+)/);b&&b[1]&&b[2]&&(a[b[1]]=b[2])})})();(function(){$("body").append('<div class="version" style="display:none; width:1px; height:1px;"></div>');
for(var c=$(".version"),d=0;d<Muse.assets.required.length;){var f=Muse.assets.required[d],g=f.match(/([\w\-\.]+)\.(\w+)$/),k=g&&g[1]?g[1]:null,g=g&&g[2]?g[2]:null;switch(g.toLowerCase()){case "css":k=k.replace(/\W/gi,"_").replace(/^([^a-z])/gi,"_$1");c.addClass(k);var g=b(c.css("color")),h=b(c.css("background-color"));g!=0||h!=0?(Muse.assets.required.splice(d,1),"undefined"!=typeof a[f]&&(g!=a[f]>>>24||h!=(a[f]&16777215))&&Muse.assets.outOfDate.push(f)):d++;c.removeClass(k);break;case "js":k.match(/^jquery-[\d\.]+/gi)&&
typeof $!="undefined"?Muse.assets.required.splice(d,1):d++;break;default:throw Error("Unsupported file type: "+g);}}c.remove();if(Muse.assets.outOfDate.length||Muse.assets.required.length)c="Some files on the server may be missing or incorrect. Clear browser cache and try again. If the problem persists please contact website author.",(d=location&&location.search&&location.search.match&&location.search.match(/muse_debug/gi))&&Muse.assets.outOfDate.length&&(c+="\nOut of date: "+Muse.assets.outOfDate.join(",")),d&&Muse.assets.required.length&&(c+="\nMissing: "+Muse.assets.required.join(",")),alert(c)})()})();
/* body */
Muse.Utils.transformMarkupToFixBrowserProblemsPreInit();/* body */
Muse.Utils.prepHyperlinks(true);/* body */
Muse.Utils.initWidget('#slideshowu444', function(elem) { $(elem).data('widget', new WebPro.Widget.ContentSlideShow(elem, {heroFitting:'fillFrameProportionally',autoPlay:false,displayInterval:3500,slideLinkStopsSlideShow:false,transitionStyle:'fading',lightboxEnabled_runtime:false,shuffle:false,transitionDuration:500,enableSwipe:true,elastic:'fullScreen',resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false})); });/* #slideshowu444 */
$('#slideshowu444').registerSlideshowScrollEffect([{"in":[-Infinity,-70],"play":false},{"in":[-70,Infinity],"play":900}]);/* scroll effect */
Muse.Utils.initWidget('.MenuBar', function(elem) { return $(elem).museMenu(); });/* unifiedNavBar */
Muse.Utils.resizeHeight()/* resize height */
Muse.Utils.initWidget('#pamphletu2850', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'click',deactivationEvent:'',autoPlay:true,displayInterval:6000,transitionStyle:'fading',transitionDuration:3000,hideAllContentsFirst:true,shuffle:false,enableSwipe:false,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu2850 */
$('#u129-bw').registerPositionScrollEffect([{"speed":[null,-0.5],"in":[-Infinity,323]},{"speed":[null,0],"in":[323,Infinity]}]);/* scroll effect */
$('#menuu688').registerPositionScrollEffect([{"speed":[0,-1],"in":[-Infinity,322.9]},{"speed":[0,0],"in":[322.9,Infinity]}]);/* scroll effect */
$('#u2789-4').registerPositionScrollEffect([{"speed":[0,0],"in":[-Infinity,-0.05]},{"speed":[2,0],"in":[-0.05,Infinity]}]);/* scroll effect */
$('#u786-4').registerPositionScrollEffect([{"speed":[2,0],"in":[-Infinity,843]},{"speed":[0,1],"in":[843,Infinity]}]);/* scroll effect */
Muse.Utils.initWidget('#pamphletu883', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_both',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:true,resumeAutoplay:true,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu883 */
$('#pamphletu883').registerPositionScrollEffect([{"speed":[0,2],"in":[-Infinity,843]},{"speed":[0,1],"in":[843,Infinity]}]);/* scroll effect */
$('#u795-5').registerPositionScrollEffect([{"speed":[-2,0],"in":[-Infinity,843]},{"speed":[0,1],"in":[843,Infinity]}]);/* scroll effect */
$('#u1296').registerPositionScrollEffect([{"speed":[-2,0],"in":[-Infinity,1768]},{"speed":[0,1],"in":[1768,Infinity]}]);/* scroll effect */
$('#u1300-5').registerPositionScrollEffect([{"speed":[2,0],"in":[-Infinity,1768]},{"speed":[0,1],"in":[1768,Infinity]}]);/* scroll effect */
Muse.Utils.initWidget('#pamphletu1408', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_trigger',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:false,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu1408 */
Muse.Utils.initWidget('#pamphletu1459', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_trigger',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:false,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu1459 */
Muse.Utils.initWidget('#pamphletu1582', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_trigger',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:false,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu1582 */
Muse.Utils.initWidget('#pamphletu1628', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_trigger',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:false,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu1628 */
Muse.Utils.initWidget('#pamphletu1302', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_both',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:true,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu1302 */
$('#pamphletu1302').registerPositionScrollEffect([{"speed":[0,2],"in":[-Infinity,1768]},{"speed":[0,1],"in":[1768,Infinity]}]);/* scroll effect */
Muse.Utils.initWidget('#pamphletu1706', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_both',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:true,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu1706 */
Muse.Utils.initWidget('#slideshowu2582', function(elem) { $(elem).data('widget', new WebPro.Widget.ContentSlideShow(elem, {heroFitting:'fillFrameProportionally',autoPlay:true,displayInterval:5000,slideLinkStopsSlideShow:false,transitionStyle:'fading',lightboxEnabled_runtime:false,shuffle:false,transitionDuration:500,enableSwipe:true,elastic:'fullWidth',resumeAutoplay:true,resumeAutoplayInterval:5000,playOnce:false,autoActivate_runtime:false})); });/* #slideshowu2582 */
$('#u2575-4').registerPositionScrollEffect([{"speed":[0,2],"in":[-Infinity,3558]},{"speed":[0,1],"in":[3558,Infinity]}]);/* scroll effect */
$('#u2576-18').registerPositionScrollEffect([{"speed":[2,0],"in":[-Infinity,3558]},{"speed":[0,1],"in":[3558,Infinity]}]);/* scroll effect */
$('#u2173-4').registerPositionScrollEffect([{"speed":[2,0],"in":[-Infinity,4476]},{"speed":[0,1],"in":[4476,Infinity]}]);/* scroll effect */
$('#u2173-4').registerOpacityScrollEffect([{"in":[-Infinity,4476],"fade":134,"opacity":100},{"opacity":100,"in":[4476,4476]},{"in":[4476,Infinity],"fade":50,"opacity":0}]);/* scroll effect */
$('#buttonu1941').registerPositionScrollEffect([{"speed":[2,-2],"in":[-Infinity,4455]},{"speed":[0,1],"in":[4455,Infinity]}]);/* scroll effect */
$('#buttonu1941').registerOpacityScrollEffect([{"in":[-Infinity,4455],"fade":113,"opacity":100},{"opacity":100,"in":[4455,4455]},{"in":[4455,Infinity],"fade":487,"opacity":0}]);/* scroll effect */
$('#u2176-4').registerPositionScrollEffect([{"speed":[2,2],"in":[-Infinity,4476]},{"speed":[0,1],"in":[4476,Infinity]}]);/* scroll effect */
$('#u2176-4').registerOpacityScrollEffect([{"in":[-Infinity,4476],"fade":134,"opacity":100},{"opacity":100,"in":[4476,4476]},{"in":[4476,Infinity],"fade":50,"opacity":0}]);/* scroll effect */
$('#buttonu2030').registerPositionScrollEffect([{"speed":[2,2],"in":[-Infinity,4455]},{"speed":[0,1],"in":[4455,Infinity]}]);/* scroll effect */
$('#buttonu2030').registerOpacityScrollEffect([{"in":[-Infinity,4455],"fade":113,"opacity":100},{"opacity":100,"in":[4455,4455]},{"in":[4455,Infinity],"fade":487,"opacity":0}]);/* scroll effect */
$('#buttonu1985').registerPositionScrollEffect([{"speed":[0,-2],"in":[-Infinity,4455]},{"speed":[0,1],"in":[4455,Infinity]}]);/* scroll effect */
$('#buttonu1985').registerOpacityScrollEffect([{"in":[-Infinity,4455],"fade":113,"opacity":100},{"opacity":100,"in":[4455,4455]},{"in":[4455,Infinity],"fade":487,"opacity":0}]);/* scroll effect */
$('#u2175-4').registerPositionScrollEffect([{"speed":[0,2],"in":[-Infinity,4476]},{"speed":[0,1],"in":[4476,Infinity]}]);/* scroll effect */
$('#u2175-4').registerOpacityScrollEffect([{"in":[-Infinity,4476],"fade":134,"opacity":100},{"opacity":100,"in":[4476,4476]},{"in":[4476,Infinity],"fade":50,"opacity":0}]);/* scroll effect */
$('#buttonu2045').registerPositionScrollEffect([{"speed":[0,2],"in":[-Infinity,4455]},{"speed":[0,1],"in":[4455,Infinity]}]);/* scroll effect */
$('#buttonu2045').registerOpacityScrollEffect([{"in":[-Infinity,4455],"fade":113,"opacity":100},{"opacity":100,"in":[4455,4455]},{"in":[4455,Infinity],"fade":487,"opacity":0}]);/* scroll effect */
$('#u2177-4').registerPositionScrollEffect([{"speed":[-2,2],"in":[-Infinity,4476.05]},{"speed":[0,1],"in":[4476.05,Infinity]}]);/* scroll effect */
$('#u2177-4').registerOpacityScrollEffect([{"in":[-Infinity,4476.05],"fade":134.05,"opacity":100},{"opacity":100,"in":[4476.05,4476.05]},{"in":[4476.05,Infinity],"fade":50,"opacity":0}]);/* scroll effect */
$('#buttonu2000').registerPositionScrollEffect([{"speed":[0,-2],"in":[-Infinity,4455]},{"speed":[0,1],"in":[4455,Infinity]}]);/* scroll effect */
$('#buttonu2000').registerOpacityScrollEffect([{"in":[-Infinity,4455],"fade":113,"opacity":100},{"opacity":100,"in":[4455,4455]},{"in":[4455,Infinity],"fade":487,"opacity":0}]);/* scroll effect */
$('#u2174-4').registerPositionScrollEffect([{"speed":[-2,0],"in":[-Infinity,4476]},{"speed":[0,1],"in":[4476,Infinity]}]);/* scroll effect */
$('#u2174-4').registerOpacityScrollEffect([{"in":[-Infinity,4476],"fade":134,"opacity":100},{"opacity":100,"in":[4476,4476]},{"in":[4476,Infinity],"fade":50,"opacity":0}]);/* scroll effect */
$('#buttonu2060').registerPositionScrollEffect([{"speed":[-2,2],"in":[-Infinity,4455]},{"speed":[0,1],"in":[4455,Infinity]}]);/* scroll effect */
$('#buttonu2060').registerOpacityScrollEffect([{"in":[-Infinity,4455],"fade":113,"opacity":100},{"opacity":100,"in":[4455,4455]},{"in":[4455,Infinity],"fade":487,"opacity":0}]);/* scroll effect */
$('#buttonu2015').registerPositionScrollEffect([{"speed":[-2,-2],"in":[-Infinity,4455]},{"speed":[0,1],"in":[4455,Infinity]}]);/* scroll effect */
$('#buttonu2015').registerOpacityScrollEffect([{"in":[-Infinity,4455],"fade":113,"opacity":100},{"opacity":100,"in":[4455,4455]},{"in":[4455,Infinity],"fade":487,"opacity":0}]);/* scroll effect */
Muse.Utils.initWidget('#pamphletu2144', function(elem) { new WebPro.Widget.ContentSlideShow(elem, {contentLayout_runtime:'stack',event:'mouseover',deactivationEvent:'mouseout_trigger',autoPlay:false,displayInterval:3000,transitionStyle:'fading',transitionDuration:500,hideAllContentsFirst:true,shuffle:false,enableSwipe:true,resumeAutoplay:false,resumeAutoplayInterval:3000,playOnce:false,autoActivate_runtime:false}); });/* #pamphletu2144 */
Muse.Utils.fullPage('#page');/* 100% height page */
Muse.Utils.showWidgetsWhenReady();/* body */