-
Notifications
You must be signed in to change notification settings - Fork 153
/
firebug-detector.html
1544 lines (1368 loc) · 141 KB
/
firebug-detector.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 lang="en" class="no-js">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Firearm Pros - Premier Source for Your Gun Needs</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="We are your premier firearm source for all of your gun needs with over 15,000 products from over 300 different manufacturers." />
<meta name="keywords" content="gun holsters, gun magazines, scopes and mounts, ammunition, knives, flashlights" />
<meta name="robots" content="INDEX,FOLLOW" />
<link rel="icon" href="https://firearmpros.com/media/favicon/default/favicon_1.ico" type="image/x-icon" />
<link rel="shortcut icon" href="https://firearmpros.com/media/favicon/default/favicon_1.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:200,300,300italic,400,500,700&subset=latin" /><link rel="stylesheet" type="text/css" href="https://firearmpros.com/skin/frontend/base/default/css/widgets.css" media="all" />
<link rel="stylesheet" type="text/css" href="https://firearmpros.com/skin/frontend/intenso/default/css/foundation.css" media="all" />
<link rel="stylesheet" type="text/css" href="https://firearmpros.com/skin/frontend/intenso/default/css/chosen.css" media="all" />
<link rel="stylesheet" type="text/css" href="https://firearmpros.com/skin/frontend/intenso/default/css/icomoon.css" media="all" />
<link rel="stylesheet" type="text/css" href="https://firearmpros.com/skin/frontend/intenso/firearmpros/css/styles.css" media="all" />
<link rel="stylesheet" type="text/css" href="https://firearmpros.com/skin/frontend/intenso/firearmpros/css/config/settings-default.css" media="all" />
<script type="text/javascript" src="https://firearmpros.com/js/prototype/prototype.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/lib/ccard.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/prototype/validation.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/scriptaculous/builder.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/scriptaculous/effects.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/scriptaculous/dragdrop.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/scriptaculous/controls.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/varien/js.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/varien/form.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/mage/translate.js"></script>
<script type="text/javascript" src="https://firearmpros.com/js/mage/cookies.js"></script>
<script type="text/javascript" src="https://firearmpros.com/skin/frontend/intenso/default/js/lib/jquery.js"></script>
<script type="text/javascript" src="https://firearmpros.com/skin/frontend/intenso/default/js/lib/noconflict.js"></script>
<script type="text/javascript" src="https://firearmpros.com/skin/frontend/intenso/default/js/configurableswatches/product-media.js"></script>
<script type="text/javascript" src="https://firearmpros.com/skin/frontend/intenso/default/js/configurableswatches/swatches-list.js"></script>
<script type="text/javascript" src="https://firearmpros.com/skin/frontend/intenso/default/js/lib/modernizr.js"></script>
<script type="text/javascript" src="https://firearmpros.com/skin/frontend/intenso/default/js/lib/slider.js"></script>
<link rel="canonical" href="https://firearmpros.com/" />
<!--[if IE 9]>
<link rel="stylesheet" type="text/css" href="https://firearmpros.com/skin/frontend/intenso/default/css/styles-ie9.css" media="all" />
<![endif]-->
<script type="text/javascript">
//<![CDATA[
Mage.Cookies.path = '/';
Mage.Cookies.domain = '.firearmpros.com';
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
optionalZipCountries = ["HK","IE","MO","PA"];
//]]>
</script>
<!--Tatvic Enhanced eCommerce Section end -->
<script type="text/javascript">
if (typeof(jQuery) == 'undefined') {
document.write("<script type='text/javascript' src='//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js'></scr" + "ipt>");
}
</script>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-T55T8X"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({'gtm.start':
new Date().getTime(), event: 'gtm.js'});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'//www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-T55T8X');
</script>
<!-- End Google Tag Manager -->
<script type="text/javascript">
(function(i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, "script", "//www.google-analytics.com/analytics.js", "ga");
ga('create', 'UA-55411085-1', 'firearmpros.com');
ga("require", "displayfeatures");
ga('send', 'pageview');
ga("require", "ec", "ec.js");
var $t_jQuery = jQuery.noConflict();
//tvc_threshold = '';
//exec_tvc_t_sth = true;
</script>
<!--Tatvic Enhanced eCommerce Section end -->
<script type="text/javascript">//<![CDATA[
var Translator = new Translate([]);
//]]></script><!--<style>
.add-to-links li a:hover{ background-color:#f00;}
body {background: #333 !important;}
.header .container-inner {
background: #000 !important;
}
a:hover {color: #f00 !important;}
.pt_custommenu div.pt_menu .parentMenu a, .pt_custommenu div.pt_menu .parentMenu span.block-title {color: #fff !important;}
.top-link ul.links li a:hover { color: #f00 !important;}
.products-grid .item .box-item .product-name {min-height:74px !important;}
.regular-price .price {
font-size: 18px;}
.product-name a:hover { color: #f00 !important;}
button.btn-cart:hover span { background-color: #f00 !important;}
.sorter .view-mode strong.grid, .sorter .view-mode a.grid:hover {
width: 30px;
height: 30px;
float: left;
text-indent: -9999px;
background: url(/skin/frontend/default/ma_sahara_sport9/images/bg-grid.png) #ff0000 0 0 no-repeat !important;
}
.sorter .view-mode strong.list, .sorter .view-mode a.list:hover {
width: 30px;
height: 30px;
float: left;
text-indent: -9999px;
background: url(/skin/frontend/default/ma_sahara_sport9/images/bg-list.png) #ff0000 0 0 no-repeat !important;
}
.top-cart-title >a {color:#fff !important;}
.footer-static-container .container-inner {
background: #000;
}
.ma-featured-sldier-title h2 .word1 {
color: #f00 !important;
}
.featured-title a {background-color: #f00 !important; border-bottom: 3px solid #A00000 !important;}
.block-home-content .staitc-box:hover {
background: #000 !important;
}
.ma-tabs-title li.active a, .ma-tabs-title a:hover {
border-bottom: 3px solid #f00 !important;
}
.ma-brand-slider-contain .bx-wrapper .bx-controls a.bx-next:hover, .ma-brand-slider-contain .bx-wrapper .bx-controls a.bx-prev:hover{ background-color: #f00 !important;}
.ma-featuredproductslider-container .bx-wrapper .bx-controls a.bx-prev:hover,
.ma-featuredproductslider-container .bx-wrapper .bx-controls a.bx-next:hover{ background-color: #f00 !important;}
button.button:hover span { background-color: #f00 !important; color: #fff !important;}
.product-tabs li.active a {
border-bottom: 2px solid #f00 !important;}
.product-view .add-to-links li a:hover{ background-position: 0 100%; color:#000 !important;}
.email-friend a:hover {color:#000 !important;}
.footer-static-content ul li a:hover { color: #f00 !important;}
.pager li > a:hover, .pager li > span:hover{ background-color:#d3d3d3 !important; color:#f00 !important;}
.block-verticalmenu .block-title {
background: #3e3e3e !important;
}
.ma-featured-sldier-title {
padding: 8px 0 10px !important;
margin-bottom: 0px !important;
background: none !important;
}
.nivo-directionNav a:hover { background-color: #f00 !important;}
.ma-banner7-container .flex-control-paging li a:hover, .ma-banner7-container .flex-control-paging li a.flex-active, .nivo-controlNav a:hover, .nivo-controlNav a.active {
background: #f00 !important;
}
#back-top:hover {
background-color: #f00 !important;
}
/*.add-to-links li a:hover{ background-color:#f00 !important;}*/
.breadcrumbs li a:hover{ color:#f00 !important;}
.block-verticalmenu .block-content li.active >a {
color: #f00 !important;
}
.page-popup {
background: #fff !important;
}
.ma-featuredproductslider-container {margin-bottom:20px;}
.ma-brand-slider-contain .container-inner {
background: #fff !important;
}
.featured-brands-title {font-size: 22px;
line-height: 25px;
font-family: HELVETICAROUNDEDLTSTD;
text-transform: uppercase; border-bottom: 3px solid #f00 !important; width: 166px;}
.product-name a {
font-size: 15px !important;
text-transform: uppercase !important;
font-weight: bold;
}
.opc .active .step-title .number {background: #f00 !important;
border-color: #f00 !important;}
.block-account .block-title {background:#3e3e3e !important;}
.block-account .block-content li a:hover { color:#f00 !important; }
.block-layered-nav dd li:hover{ color:#f00 !important;}
.block-layered-nav dd li:hover a{ color:#f00 !important;}
.mobilemenu a:hover {color: #f00 !important;}
.mobilemenu ul a:hover, .mobilemenu ul li.active a {
color: #f00 !important;
}
.mobilemenu li.active a, .mobilemenu a:hover {
color: #f00;
}
.sorter .sort-by {
padding-left: 20px !important;
}
.pager .limiter {
padding-right: 20px !important;
}
.ma-thumbnail-container .bx-wrapper .bx-controls-direction a.bx-prev:hover {
background-color:#f00 !important;
}
.ma-thumbnail-container .bx-wrapper .bx-controls-direction a.bx-next:hover {
background-color:#f00 !important;
}
.pt_custommenu div.popup a.act, .pt_custommenu div.popup a.actParent {
color: #f00;
}
.product-shop .regular-price .price {
font-size: 22px !important;
}
.regular-price .price {color: #339900 !important;}
.product-view button.btn-cart span {
background-color: #f9c700;
color: #000;}
@media (max-width: 767px) {
/*.banner-contain .static-banner7-left {
margin-top:10px !important;
display:block !important;
}*/
}
.promo-banner {background: #ff0000;padding: 10px;text-align: center;color: #fff;font-size: 20px;margin-bottom: 10px;}
.promo-banner p {margin:0px; font-size:12px;}
</style>-->
<meta name="p:domain_verify" content="af413a9108519c1f67085acd0a3fddf0"/>
<script type="text/javascript">
var _learnq = _learnq || [];
_learnq.push(['account', 'jnMPtX']);
(function () {
var b = document.createElement('script'); b.type = 'text/javascript'; b.async = true;
b.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'a.klaviyo.com/media/js/analytics/analytics.js';
var a = document.getElementsByTagName('script')[0]; a.parentNode.insertBefore(b, a);
})();
</script>
</head>
<body class=" cms-index-index cms-fap-home-itenso default en_us mdformfields">
<div class="off-canvas-wrap">
<div class="inner-wrap">
<noscript>
<div class="global-site-notice noscript">
<div class="notice-inner">
<p>
<strong>JavaScript seems to be disabled in your browser.</strong><br />
You must have JavaScript enabled in your browser to utilize the functionality of this website. </p>
</div>
</div>
</noscript>
<header class="main-header sticky-menu">
<div class="row header-ribbon show-for-medium-up">
<div class="small-12 columns">
<span class="welcome-message"><span class="header-text">$10.95 Flat Rate Standard Shipping On ALL Orders!</span><span class="header-text" style="float: right">30 Day Easy Returns / Free Return Shipping</span></span>
</div>
</div>
<div class="row top-header">
<div class="small-6 medium-3 large-3 logo-container columns">
<a href="https://firearmpros.com/">
<img class="main-logo" src="https://firearmpros.com/skin/frontend/base/default/images/firearm-pros-logo.png" alt="Firearm Pros" title="Firearm Pros" />
<img class="main-logo-small" src="https://firearmpros.com/skin/frontend/base/default/images/firearm-pros-logo.png" alt="Firearm Pros" title="Firearm Pros" />
<img class="main-logo-sticky" src="https://firearmpros.com/skin/frontend/intenso/firearmpros/images/firearmpros-small-logo.jpg" alt="Firearm Pros" title="Firearm Pros" />
</a>
</div>
<div class="small-6 medium-3 medium-push-6 large-3 large-push-6 icons-for-small columns text-right">
<a href="#" class="right-off-canvas-toggle show-for-small-only icon-main-menu"></a> <a href="https://firearmpros.com/checkout/cart/" class="hide-for-large-up icon-cart"></a> <a href="https://firearmpros.com/customer/account/" class="show-for-medium-only icon-user"></a>
</div>
<div class="medium-6 large-6 medium-pull-3 large-pull-3 columns">
<form method="get" action="https://firearmpros.com/catalogsearch/result/" id="search_mini_form">
<div class="form-search">
<div class="action">
<button class="button" title="Search" type="submit"><span aria-hidden="true" class="icon-search"></span></button>
</div>
<div class="search-box">
<input type="text" class="input-text placeholder" value="" name="q" id="search" maxlength="128" />
<label for="search">Search entire store here...</label>
<div class="left"></div>
<div class="right"></div>
<div class="bottom"></div>
<div class="search-autocomplete" id="search_autocomplete"></div>
<script type="text/javascript">
//<![CDATA[
var searchForm = new Varien.searchForm('search_mini_form', 'search', '');
searchForm.initAutocomplete('https://firearmpros.com/catalogsearch/ajax/suggest/', 'search_autocomplete');
//]]>
</script>
</div>
</div>
</form>
</div>
</div>
<nav class="top-bar right-off-canvas-menu expanded main-nav horizontal" data-topbar>
<ul class="title-area">
<li class="name show-for-small-only">
<form method="get" action="https://firearmpros.com/catalogsearch/result/" id="search_nav_form">
<div class="form-search">
<div class="action">
<button class="button" title="Search" type="submit"><span aria-hidden="true" class="icon-search"></span></button>
</div>
<div class="search-box">
<input type="text" class="input-text placeholder" value="" name="q" id="search2" maxlength="128" />
<label for="search2">Search</label>
<div class="left"></div>
<div class="right"></div>
<div class="bottom"></div>
<div class="search-autocomplete" id="search_autocomplete2"></div>
<script type="text/javascript">
//<![CDATA[
var searchForm = new Varien.searchForm('search_nav_form', 'search2', '');
searchForm.initAutocomplete('https://firearmpros.com/catalogsearch/ajax/suggest/', 'search_autocomplete2');
//]]>
</script>
</div>
</div>
</form>
</li>
<li class="toggle-topbar menu-icon"><a href="#">Menu</a></li>
</ul>
<section class="top-bar-section clearfix">
<!-- Right Nav Section -->
<ul class="right show-for-large-up">
<li class="has-dropdown hide-for-small-only">
<a href="https://firearmpros.com/customer/account/login/"><span class="sup truncate">Hello. Sign in</span>Your Account</a>
<ul class="dropdown account-dropdown">
<li class="arrow-box">
<div class="bg-box">
<a href="https://firearmpros.com/customer/account/login/" class="button sign-in">Sign in</a>
<p class="small">New customer? <a href="https://firearmpros.com/customer/account/create/" >Start here</a>.</p>
</div>
<ul class="links-list">
<li class="first" ><a href="https://firearmpros.com/customer/account/" title="Your Account" >Your Account</a></li>
<li ><a href="https://firearmpros.com/sales/order/history/" title="Your Orders" >Your Orders</a></li>
<li ><a href="https://firearmpros.com/wishlist/" title="Your Wish List" >Your Wish List</a></li>
<li class=" last" ><a href="https://firearmpros.com/wishlist/" title="Your Wish List" >Your Wish List</a></li>
</ul>
</li>
</ul>
</li>
<li class="has-dropdown hide-for-small-only">
<a href="https://firearmpros.com/checkout/cart/"><span aria-hidden="true" class="icon-cart"></span><span class="sup">0 items</span>Cart</a>
<ul class="dropdown cart-dropdown">
<li class="arrow-box">
<div class="dropdown-title">Your Cart (0)<a href="https://firearmpros.com/checkout/cart/" class="icon-edit" title="Edit your Cart"><span class="hide">Edit Cart</span></a></div>
<p class="small cart-empty">Your shopping cart is currently empty.</p>
<div class="bg-box">
<p class="subtotal">
Subtotal:
<span class="price">
<span class="price">$0.00</span> </span>
</p>
<a href="https://firearmpros.com/checkout/onepage/" class="button sign-in">Checkout</a>
</div>
<div class="sb-cart-dropdown">
</div>
</li>
</ul>
</li>
</ul>
<!-- Left Nav Section -->
<ul class="left">
<li class="show-for-small-only group-title">Shop</li>
<li class="level0 nav-1 first has-dropdown "><a href="https://firearmpros.com/ammunition.html" class="level0 has-children">Ammunition</a><ul class="level0 dropdown arrow-box"><li class="level1"><a class="level1" href="https://firearmpros.com/ammunition.html">View All Ammunition</a></li><li class="level1 nav-1-1 first"><a href="https://firearmpros.com/ammunition/handgun-ammo.html" class="level1 ">Handgun Ammo</a></li><li class="level1 nav-1-2 "><a href="https://firearmpros.com/ammunition/reloading-equipment.html" class="level1 ">Reloading Equipment</a></li></ul></li><li class="level0 nav-2"><a href="https://firearmpros.com/clothing.html" class="level0 ">Clothing</a></li><li class="level0 nav-3"><a href="https://firearmpros.com/flashlights-batteries.html" class="level0 ">Flashlights</a></li><li class="level0 nav-4"><a href="https://firearmpros.com/holsters-pouches.html" class="level0 ">Holsters</a></li><li class="level0 nav-5"><a href="https://firearmpros.com/knives-tools.html" class="level0 ">Knives</a></li><li class="level0 nav-6"><a href="https://firearmpros.com/magazines.html" class="level0 ">Magazines</a></li><li class="level0 nav-7 has-dropdown "><a href="https://firearmpros.com/miscellaneous-accessories.html" class="level0 has-children">Accessories</a><ul class="level0 dropdown arrow-box"><li class="level1"><a class="level1" href="https://firearmpros.com/miscellaneous-accessories.html">View All Accessories</a></li><li class="level1 nav-7-1 first"><a href="https://firearmpros.com/miscellaneous-accessories/airguns.html" class="level1 ">Airguns</a></li><li class="level1 nav-7-2"><a href="https://firearmpros.com/miscellaneous-accessories/books-software.html" class="level1 ">Books & Software</a></li><li class="level1 nav-7-3"><a href="https://firearmpros.com/miscellaneous-accessories/cleaning-equipment.html" class="level1 ">Cleaning Equipment</a></li><li class="level1 nav-7-4"><a href="https://firearmpros.com/miscellaneous-accessories/electronics.html" class="level1 ">Electronics</a></li><li class="level1 nav-7-5"><a href="https://firearmpros.com/miscellaneous-accessories/non-lethal-defense.html" class="level1 ">Non-Lethal Defense</a></li><li class="level1 nav-7-6"><a href="https://firearmpros.com/miscellaneous-accessories/safety-protection.html" class="level1 ">Safety & Protection</a></li><li class="level1 nav-7-7"><a href="https://firearmpros.com/miscellaneous-accessories/survival-supplies.html" class="level1 ">Survival Supplies</a></li><li class="level1 nav-7-8"><a href="https://firearmpros.com/miscellaneous-accessories/targets.html" class="level1 ">Targets</a></li><li class="level1 nav-7-9 "><a href="https://firearmpros.com/miscellaneous-accessories/tasers.html" class="level1 ">Tasers</a></li></ul></li><li class="level0 nav-8 has-dropdown "><a href="https://firearmpros.com/parts.html" class="level0 has-children">Parts</a><ul class="level0 dropdown arrow-box"><li class="level1"><a class="level1" href="https://firearmpros.com/parts.html">View All Parts</a></li><li class="level1 nav-8-1 first has-dropdown "><a href="https://firearmpros.com/parts/barrels-choke-tubes.html" class="level1 has-children">Barrels / Choke Tubes</a><ul class="level1 dropdown"><li class="level2"><a class="level2" href="https://firearmpros.com/parts/barrels-choke-tubes.html">View All Barrels / Choke Tubes</a></li><li class="level2 nav-8-1-1 first"><a href="https://firearmpros.com/parts/barrels-choke-tubes/pistol-barrels.html" class="level2 ">Pistol Barrels</a></li><li class="level2 nav-8-1-2"><a href="https://firearmpros.com/parts/barrels-choke-tubes/rifle-barrels.html" class="level2 ">Rifle Barrels</a></li><li class="level2 nav-8-1-3 "><a href="https://firearmpros.com/parts/barrels-choke-tubes/shotgun-barrels-choke-tubes.html" class="level2 ">Shotgun Barrels & Choke Tubes</a></li></ul></li><li class="level1 nav-8-2"><a href="https://firearmpros.com/parts/grips-pads-stocks-bipods.html" class="level1 ">Grips, Pads, Stocks, Bipods</a></li><li class="level1 nav-8-3"><a href="https://firearmpros.com/parts/slings-swivels.html" class="level1 ">Slings & Swivels</a></li><li class="level1 nav-8-4 has-dropdown "><a href="https://firearmpros.com/parts/upper-receivers-conv-kits.html" class="level1 has-children">Upper Receivers & Conversion Kits</a><ul class="level1 dropdown"><li class="level2"><a class="level2" href="https://firearmpros.com/parts/upper-receivers-conv-kits.html">View All Upper Receivers & Conversion Kits</a></li><li class="level2 nav-8-4-1 first "><a href="https://firearmpros.com/parts/upper-receivers-conv-kits/stripped-uppers.html" class="level2 ">Stripped Uppers</a></li></ul></li></ul></li><li class="level0 nav-9 has-dropdown "><a href="https://firearmpros.com/safes-security.html" class="level0 has-children">Safes & Security</a><ul class="level0 dropdown arrow-box"><li class="level1"><a class="level1" href="https://firearmpros.com/safes-security.html">View All Safes & Security</a></li><li class="level1 nav-9-1 first"><a href="https://firearmpros.com/safes-security/hard-gun-cases.html" class="level1 ">Hard Gun Cases</a></li><li class="level1 nav-9-2 "><a href="https://firearmpros.com/safes-security/soft-gun-cases-packs.html" class="level1 ">Soft Gun Cases/Packs</a></li></ul></li><li class="level0 nav-10 has-dropdown "><a href="https://firearmpros.com/scopes-mounts.html" class="level0 has-children">Scopes & Mounts</a><ul class="level0 dropdown arrow-box"><li class="level1"><a class="level1" href="https://firearmpros.com/scopes-mounts.html">View All Scopes & Mounts</a></li><li class="level1 nav-10-1 first"><a href="https://firearmpros.com/scopes-mounts/binoculars.html" class="level1 ">Binoculars</a></li><li class="level1 nav-10-2"><a href="https://firearmpros.com/scopes-mounts/sights-lasers-lights.html" class="level1 ">Sights, Lasers & Lights</a></li><li class="level1 nav-10-3 "><a href="https://firearmpros.com/scopes-mounts/optical-accessories.html" class="level1 ">Optical Accessories</a></li></ul></li><li class="level0 nav-11 "><a href="https://firearmpros.com/clearance.html" class="level0 ">Clearance</a></li> <li class="show-for-small-only group-title">Pages</li>
<li class="show-for-small-only"><a href="https://firearmpros.com/checkout/cart/">Cart</a></li>
<li class="show-for-small-only"><a href="https://firearmpros.com/customer/account/">Your Account</a></li>
<li class="show-for-small-only"><a href="https://firearmpros.com/wishlist/">Your Wish List</a></li>
</ul>
</section>
</nav>
</header> <div class="block-compare">
</div>
<div class="cms-wrapper"> <div class="orbit-wrapper spinner clearfix">
<ul class="hero orbit-container" data-orbit data-options="animation:slide; animation_speed:600; timer_speed:7000; pause_on_hover:0; circular:1; swipe:1; slide_number:0; variable_height:1;">
<li class="item">
<img alt="" data-interchange="[https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-hunting-slide_1.jpg, (default)], [https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-hunting-slide-mobile.jpg, (small)], [https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-hunting-slide_1.jpg, (medium)], [https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-hunting-slide.jpg, (large)]" width="1920" height="800" onclick="location.href='https://firearmpros.com/catalogsearch/result/?q=hunting'" class="pointer" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png">
<noscript><img alt="Remarkably Crisp and Clear" src="https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-hunting-slide.jpg" width="1920" height="800"></noscript>
<div style="background: none repeat scroll 0% 0% rgb(217, 223, 226);" class="hero-text hide-for-small-only right">
</div>
</li>
<li class="item dark">
<img alt="" data-interchange="[https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-military-slide_1.jpg, (default)], [https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-military-slide-mobile.jpg, (small)], [https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-military-slide_1.jpg, (medium)], [https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-military-slide.jpg, (large)]" width="1920" height="800" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png">
<noscript><img alt="Remarkably Crisp and Clear" src="https://firearmpros.com/media/orbitslider/image/f/i/firearm-pros-military-slide.jpg" width="1920" height="800"></noscript>
<div style="background: none repeat scroll 0% 0% rgb(217, 223, 226);" class="hero-text hide-for-small-only left">
</div>
</li>
</ul>
<script>
jQuery('.hero .button').hover(
function() { jQuery(this).attr('style', 'color: '+jQuery(this).data('colorover')+' !important; background-color: '+jQuery(this).data('bgover')+'; border-color: '+jQuery(this).data('bgover')+' !important;'); },
function() { jQuery(this).attr('style', 'color: '+jQuery(this).data('colorout')+' !important; background-color: '+jQuery(this).data('bgout')+'; border-color: '+jQuery(this).data('bgout')+' !important;'); }
);
</script>
</div>
<div class="orbit-container" style="height: 1090px;"><ul class="hero orbit-container orbit-slides-container" data-orbit="" data-options="animation:fade; animation_speed:600; timer_speed:7000; pause_on_hover:0; circular:1; swipe:1; slide_number:0; variable_height:1;" style="height: 1090px;">
<li class="item active" style="z-index: 4;">
<img alt="" data-interchange="[/media/wysiwyg/big-image-ad.png, (default)], [/media/wysiwyg/big-image-ad.png, (small)], [/media/wysiwyg/big-image-ad.png, (medium)], [/media/wysiwyg/big-image-ad.png, (large)]" width="1920" height="800" src="/media/wysiwyg/big-image-ad.png" data-uuid="IJe1WyWg4bTP-hZOuNI-eocM8l-AZyAUn-e8DShigRGQPeGN20Y9">
<noscript><img alt="Remarkably Crisp and Clear" src="/media/wysiwyg/big-image-ad.png" width="1920" height="800"></noscript>
<div style="margin-left: 5%; transform: translateY(0px); top: 23%; visibility: visible; background: none 0% 0% repeat scroll rgb(255, 255, 255);" class="hero-text ">
<h1 style="color: #000000; font-size: 62px; font-style: normal; font-weight: 300" class="show-for-medium-up" data-size="62">The premier source for all of your gun needs.</h1>
<h1 style="color: #000000; font-size: 24px; font-style: normal; font-weight: normal" class="show-for-small-only">The premier source for all of your gun needs.</h1>
<h5 style="color: #555555; font-size: 22px; font-style: normal; font-weight: 300" class="show-for-medium-up" data-size="22">Same day shipping on all of our in-stock products.</h5>
<h5 style="color: #555555; font-size: 14px; font-style: normal; font-weight: 300" class="show-for-small-only">Same day shipping on all of our in-stock products.</h5>
<a class="button ghost " href="/" style="color: #5787f5 !important; border-color: #5787f5 !important" data-colorover="#3570b7" data-colorout="#5787f5" data-bgover="#3570b7" data-bgout="#5787f5">Shop Now</a>
</div>
</li>
</ul><a href="#" class="orbit-prev"><span></span></a><a href="#" class="orbit-next"><span></span></a><div class="orbit-timer paused"><span></span></div><div class="orbit-bullets-container" style="display: none;"><ol class="orbit-bullets"><li data-orbit-slide="0" class=""></li></ol></div></div>
<div id="billboard-57b1d4f082a18" class="billboard row flushrow" style="background: #ffffff; padding-top: 0px; padding-bottom: 0px; ">
<div class="small-12 medium-6 large-6 columns">
<img alt="Ammunition - Bullets & Magazines" data-interchange="[/media/wysiwyg/firearm-pros-ammunition-and-magazines-ad.jpg, (default)], [/media/wysiwyg/firearm-pros-ammunition-and-magazines-ad.jpg, (small)], [/media/wysiwyg/firearm-pros-ammunition-and-magazines-ad.jpg, (medium)], [/media/wysiwyg/firearm-pros-ammunition-and-magazines-ad.jpg, (large)], [/media/wysiwyg/firearm-pros-ammunition-and-magazines-ad.jpg, (retina)]" src="/media/wysiwyg/firearm-pros-ammunition-and-magazines-ad.jpg" data-uuid="PJsJyzQMjBlp-EzvSAd-GA7sfq-b9DUwI-FQIyuvwz3LbQyPqzoV">
<noscript><img alt="Ammunition - Bullets & Magazines" src="/media/wysiwyg/firearm-pros-ammunition-and-magazines-ad.jpg" > </noscript>
<a class="mask" href="/ammunition.html"></a>
</div>
<div class="small-12 medium-6 large-6 end columns">
<img alt="Optics - Scopes & Mounts" data-interchange="[/media/wysiwyg/firearm-pros-scopes-and-mounts-ad.jpg, (default)], [/media/wysiwyg/firearm-pros-scopes-and-mounts-ad.jpg, (small)], [/media/wysiwyg/firearm-pros-scopes-and-mounts-ad.jpg, (medium)], [/media/wysiwyg/firearm-pros-scopes-and-mounts-ad.jpg, (large)], [/media/wysiwyg/firearm-pros-scopes-and-mounts-ad.jpg, (retina)]" src="/media/wysiwyg/firearm-pros-scopes-and-mounts-ad.jpg" data-uuid="In8R0bZb6s2Q-0bICrM-xeuFlm-0teU1N-yrPmk9oeQAB8v2a0SR">
<noscript><img alt="Ammunition - Bullets & Magazines" src="/media/wysiwyg/firearm-pros-scopes-and-mounts-ad.jpg"></noscript>
<a class="mask" href="/scopes-mounts.html"></a>
</div>
</div>
<div id="billboard-57b1d4f084591" class="billboard row flushrow" style="background: #ffffff; padding-top: 0px; padding-bottom: 0px; ">
<div class="small-12 medium-4 large-4 columns">
<img alt="Knives - Tactical & Folding" data-interchange="[/media/wysiwyg/firearm-pros-knives-ad.jpg, (default)], [/media/wysiwyg/firearm-pros-knives-ad.jpg, (small)], [/media/wysiwyg/firearm-pros-knives-ad.jpg, (medium)], [/media/wysiwyg/firearm-pros-knives-ad.jpg, (large)], [/media/wysiwyg/firearm-pros-knives-ad.jpg, (retina)]" src="/media/wysiwyg/firearm-pros-knives-ad.jpg" data-uuid="xd1M1zm2fhlU-4XrKqR-pSqlnA-jnhmIq-NxUAopIQNOWh5Mv2ln">
<noscript><img alt="Knives - Tactical & Folding" src="/media/wysiwyg/firearm-pros-knives-ad.jpg"></noscript>
<a class="mask" href="/knives-tools.html"></a>
</div>
<div class="small-12 medium-4 large-4 columns">
<img alt="Clothing & Hats" data-interchange="[/media/wysiwyg/firearm-pros-clothing-ad.jpg, (default)], [/media/wysiwyg/firearm-pros-clothing-ad.jpg, (small)], [/media/wysiwyg/firearm-pros-clothing-ad.jpg, (medium)], [firearm-pros-clothing-ad.jpg, (large)], [/media/wysiwyg/firearm-pros-clothing-ad.jpg, (retina)]" src="/media/wysiwyg/firearm-pros-clothing-ad.jpg" data-uuid="yId1ag6bhVXi-vomb3h-zDtRn2-IeLN42-YnXDg3JnNNV0NJoocx">
<noscript><img alt="Clothing & Hats" src="/media/wysiwyg/firearm-pros-clothing-ad.jpg"></noscript>
<a class="mask" href="/clothing.html"></a>
</div>
<div class="small-12 medium-4 large-4 end columns">
<img alt="Survival Gear - Supplies and Clothing" data-interchange="[/media/wysiwyg/firearm-pros-survival-gear-ad.jpg, (default)], [/media/wysiwyg/firearm-pros-survival-gear-ad.jpg, (small)], [/media/wysiwyg/firearm-pros-survival-gear-ad.jpg, (medium)], [/media/wysiwyg/firearm-pros-survival-gear-ad.jpg, (large)], [/media/wysiwyg/firearm-pros-survival-gear-ad.jpg, (retina)]" src="/media/wysiwyg/firearm-pros-survival-gear-ad.jpg" data-uuid="RJJkvScSUEA4-yGCvMw-jhO3ku-obF7TT-fPk3FGtFRTa8wMigtB">
<noscript><img alt="New Laptops" src="/media/wysiwyg/firearm-pros-survival-gear-ad.jpg"></noscript>
<a class="mask" href="/miscellaneous-accessories/survival-supplies.html"></a>
</div>
</div>
<section class="row brand-slider lazy-loading" data-options="animation_speed:300; min_item_width:120; swipe:1; bullets:1; navigation_arrows:1">
<h3>Popular Brands</h3>
<ol class="logos-container">
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=100">
<img alt="" title="Federal" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/f/e/federal.png"><span class="a11y">Federal</span>
</a>
</li>
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=122">
<img alt="" title="Hornady" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/h/o/hornady.jpg"><span class="a11y">Hornady</span>
</a>
</li>
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=191">
<img alt="" title="Remington" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/r/e/remington.jpg"><span class="a11y">Remington</span>
</a>
</li>
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=300">
<img alt="" title="Winchester" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/w/i/winchester.png"><span class="a11y">Winchester</span>
</a>
</li>
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=181">
<img alt="" title="Magpul" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/m/a/magpul.jpg"><span class="a11y">Magpul</span>
</a>
</li>
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=49">
<img alt="" title="Bushnell" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/b/u/bushnell.jpg"><span class="a11y">Bushnell</span>
</a>
</li>
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=244">
<img alt="" title="Redfield" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/r/e/redfield.jpg"><span class="a11y">Redfield</span>
</a>
</li>
<li class="brand">
<a href="/catalogsearch/advanced/result/?manufacturer=221">
<img alt="" title="Nikon" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/logo/image/n/i/nikon.png"><span class="a11y">Nikon</span>
</a>
</li>
</ol>
</section>
<section class="row featured-slider featured-slider-section" data-options="animation_speed:300; min_item_width:220; swipe:1">
<h3>Featured Products</h3>
<ol class="clearfix" >
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/bh-serpa-cqc-bl-pdl-for-glk43-rh-blk.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-164229" class="item-image" alt="Bh Serpa Cqc Bl/pdl For Glk43 Rh Blk" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/b/h/bh_410500bk_r_holster_front_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/bh-serpa-cqc-bl-pdl-for-glk43-rh-blk.html" class="truncate"><span>Bh Serpa Cqc Bl/pdl For Glk43 Rh Blk</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-164229">
<span class="price">$31.83</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/164229/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/164229/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-164229" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/164229/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/bh-serpa-level-2-duty-tsr-lh-mblk.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-70524" class="item-image" alt="Blackhawk Serpa Taser X-26 Level 2 Duty Holster - Left Hand" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/b/h/bh_44h015bk_holsters_anglel_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/bh-serpa-level-2-duty-tsr-lh-mblk.html" class="truncate"><span>Blackhawk Serpa Taser X-26 Level 2 Duty Holster - Left Hand</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-70524">
<span class="price">$35.83</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/70524/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/70524/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-70524" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/70524/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/bh-serpa-level-2-duty-tsr-rh-mblk.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-70525" class="item-image" alt="Blackhawk Serpa Taser X-26 Level 2 Duty Holster - Right Hand" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/b/h/bh_44h015bk_holsters_anglel.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/bh-serpa-level-2-duty-tsr-rh-mblk.html" class="truncate"><span>Blackhawk Serpa Taser X-26 Level 2 Duty Holster - Right Hand</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-70525">
<span class="price">$35.83</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/70525/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/70525/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-70525" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/70525/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/utg-dlx-univ-horz-shldr-hlstr-blk.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-77033" class="item-image" alt="Utg Dlx Univ Horz Shldr Hlstr Blk" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/U/T/UTGPVC-H170B_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/utg-dlx-univ-horz-shldr-hlstr-blk.html" class="truncate"><span>Utg Dlx Univ Horz Shldr Hlstr Blk</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-77033">
<span class="price">$17.97</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/77033/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/77033/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-77033" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/77033/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/utg-elite-tact-leg-holster-blk.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-77032" class="item-image" alt="Utg Elite Tact Leg Holster Blk" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/U/T/UTGPVC-H168ET_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/utg-elite-tact-leg-holster-blk.html" class="truncate"><span>Utg Elite Tact Leg Holster Blk</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-77032">
<span class="price">$11.97</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/77032/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/77032/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-77032" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/77032/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/ps-undercover-concealment-holster.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-184520" class="item-image" alt="Ps Undercover Concealment Holster" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/0/3/037uc-hanging.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/ps-undercover-concealment-holster.html" class="truncate"><span>Ps Undercover Concealment Holster</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-184520">
<span class="price">$21.25</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/184520/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/184520/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-184520" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/184520/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/techna-clip-ruger-lcp-rh-blk.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-76505" class="item-image" alt="Techna Clip Ruger Lcp Rh Blk" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/T/E/TECLCP-BR_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/techna-clip-ruger-lcp-rh-blk.html" class="truncate"><span>Techna Clip Ruger Lcp Rh Blk</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-76505">
<span class="price">$29.95</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/76505/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/76505/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-76505" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/76505/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/bt-rev-klipt-app-lc9-blk-rh.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-71077" class="item-image" alt="Bt Rev Klipt App Lc9 Blk Rh" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/k/r/krglc9-klipt-appendix-ruger-lc9.png" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/bt-rev-klipt-app-lc9-blk-rh.html" class="truncate"><span>Bt Rev Klipt App Lc9 Blk Rh</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-71077">
<span class="price">$21.24</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/71077/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/71077/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-71077" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/71077/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/bh-arc-iwb-for-glk-43-ambi-gry.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-164230" class="item-image" alt="Bh Arc Iwb For Glk 43 Ambi Gry" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/b/h/bh_417567ug_arc_iwbholster_c1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/bh-arc-iwb-for-glk-43-ambi-gry.html" class="truncate"><span>Bh Arc Iwb For Glk 43 Ambi Gry</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-164230">
<span class="price">$15.71</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/164230/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/164230/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-164230" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/164230/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/bh-mod-u-lok-screws.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-70463" class="item-image" alt="Blackhawk Mod-U-Lok Platform w/Screws" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/b/h/bh_410904_holsters.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/bh-mod-u-lok-screws.html" class="truncate"><span>Blackhawk Mod-U-Lok Platform w/Screws</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-70463">
<span class="price">$13.61</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/70463/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/70463/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-70463" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/70463/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/fobus-pdl-hlstr-cz75.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-73327" class="item-image" alt="Fobus Pdl Hlstr Cz75" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/I/A/IAICZ75_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/fobus-pdl-hlstr-cz75.html" class="truncate"><span>Fobus Pdl Hlstr Cz75</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-73327">
<span class="price">$24.99</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/73327/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/73327/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-73327" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/73327/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/ps-homeland-holster-boot-n-belt.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-83245" class="item-image" alt="Ps Homeland Holster Boot N Belt" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/P/S/PSHLM037BB_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/ps-homeland-holster-boot-n-belt.html" class="truncate"><span>Ps Homeland Holster Boot N Belt</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-83245">
<span class="price">$21.25</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/83245/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/83245/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-83245" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/83245/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/fobus-e2-pdl-s-w-bodyguard-380.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-94319" class="item-image" alt="Fobus E2 Pdl S&w Bodyguard 380" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/s/w/swbg.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/fobus-e2-pdl-s-w-bodyguard-380.html" class="truncate"><span>Fobus E2 Pdl S&w Bodyguard 380</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-94319">
<span class="price">$26.99</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/94319/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/94319/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-94319" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/94319/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/bt-paddle-w-hardware.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-70913" class="item-image" alt="Bt Paddle W/ Hardware" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/B/T/BTACCX0072AA0027AM_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/bt-paddle-w-hardware.html" class="truncate"><span>Bt Paddle W/ Hardware</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-70913">
<span class="price">$11.04</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/70913/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/70913/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-70913" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/70913/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/u-m-reflex-hlstr-for-glk-17-19-rhb.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-76836" class="item-image" alt="Uncle Mike's Reflex Hlstr For Glk 17/19/ Rhb" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/U/M/UM74211_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/u-m-reflex-hlstr-for-glk-17-19-rhb.html" class="truncate"><span>Uncle Mike's Reflex Hlstr For Glk 17/19/ Rhb</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-76836">
<span class="price">$21.50</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/76836/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/76836/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-76836" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/76836/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/fobus-blt-hlstr-bersa-380.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-73316" class="item-image" alt="Fobus Blt Hlstr Bersa 380" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/I/A/IAIBS2BH_1.jpg" width="430" height="404">
</a>
</div>
<div class="item-info">
<h6 class="item-title">
<a href="https://firearmpros.com/fobus-blt-hlstr-bersa-380.html" class="truncate"><span>Fobus Blt Hlstr Bersa 380</span></a>
</h6>
<div class="price-box">
<span class="regular-price" id="product-price-73316">
<span class="price">$25.99</span> </span>
</div>
</div>
<div class="actions clearfix">
<button class="btn-cart" title="Add to Cart" type="button" onclick="setLocation('https://firearmpros.com/checkout/cart/add/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/product/73316/form_key/1vkK1nkxgvurHaFv/')">Add to Cart</button>
<ul class="add-to-links">
<li><a class="link-wishlist" href="https://firearmpros.com/wishlist/index/add/product/73316/form_key/1vkK1nkxgvurHaFv/" title="Add to Wishlist">Add to Wishlist</a></li>
<li><a id="compare-id-73316" class="link-compare" href="https://firearmpros.com/catalog/product_compare/add/product/73316/uenc/aHR0cHM6Ly9maXJlYXJtcHJvcy5jb20v/form_key/1vkK1nkxgvurHaFv/" title="Add to Compare">Add to Compare</a></li>
</ul>
</div>
</div>
</li>
<li class="item">
<div class="item-content">
<div class="item-images">
<a class="product-image" href="https://firearmpros.com/u-m-reflex-hlstr-m-p-sd-9-40-rh-blk.html" style="padding-top: 93.95%;">
<img id ="product-collection-image-76832" class="item-image" alt="Uncle Mike's Reflex Hlstr M&p/sd 9/40 Rh Blk" src="https://firearmpros.com/skin/frontend/intenso/default/images/clear.png" data-echo="https://firearmpros.com/media/catalog/product/cache/1/small_image/430x404/9df78eab33525d08d6e5fb8d27136e95/U/M/UM74091_1.jpg" width="430" height="404">
</a>