Codebase list kali-defaults / 2d75a77
Update browser home page Daniel Ruiz de Alegría 2 years ago
43 changed file(s) with 5130 addition(s) and 4192 deletion(s). Raw diff Collapse all Expand all
44 "OverrideFirstRunPage": "",
55 "OverridePostUpdatePage": "",
66 "Homepage": {
7 "URL": "file:///usr/share/kali-defaults/web/homepage.html",
7 "URL": "file:///usr/share/kali-defaults/web/browser-home-page/homepage.html",
88 "Locked": false,
99 "StartPage": "homepage"
1010 },
0 <!DOCTYPE html>
1 <html lang="en-us">
2 <head itemscope itemtype="http://www.kali.org/">
3 <!-- ** Encoding ** -->
4 <meta charset="utf-8">
5
6 <!-- ** Responsive Layout ** -->
7 <meta name="viewport" content="width=device-width">
8
9 <!-- ** Title ** -->
10 <title itemprop="name"> | Kali Linux</title>
11
12 <!-- ** Favicons ** -->
13 <link rel="icon" class="js-site-favicon" type="image/svg+xml" href="../images/favicon.svg">
14
15 <!-- Main Stylesheet -->
16
17 <link href="../style.min.css" rel="stylesheet"/>
18 <style>
19 :root {
20 --primary-color:#367BF0;
21 --body-color:#f9f9f9;
22 --text-color:#636363;
23 --text-color-dark:#242738;
24 --white-color:#ffffff;
25 --light-color:#f8f9fa;
26 --font-family:Noto Sans;
27 }
28
29 body.dark-theme {
30 --body-color:black;
31 --text-color:#e1e1e1;
32 --text-color-dark:white;
33 --white-color:#121212;
34 --light-color:#1A1A1A;
35 }
36 </style>
37
38 <!-- Custom Fonts -->
39 <link rel="stylesheet" href="../plugins/themify-icons/themify-icons.css">
40 <link rel="stylesheet" href="../fonts.googleapis.com/css%3Ffamily=Noto%20Sans:400,700&display=swap">
41
42 <script>
43 const $ = document.querySelector.bind(document)
44 const $$ = document.querySelectorAll.bind(document)
45 </script>
46 </head>
47
48 <body>
49 <header class="bg-cover">
50 <nav class="container">
51 <a id="logo" href="http://www.kali.org/" style="background-image:url(../images/kali-logo.svg)"></a>
52 <ul id="navigation">
53
54
55 <li>
56 <a href="http://www.kali.org/get-kali/">Get Kali</a>
57 </li>
58
59
60
61 <li>
62 <a href="http://www.kali.org/blog/">Blog</a>
63 </li>
64
65
66
67 <li class="dropdown-menu">
68 <span>Documentation <i class="ti-angle-down"></i></span>
69 <div>
70
71
72 <a href="http://www.kali.org/docs/">Kali Linux Documentation</a>
73
74
75 <a href="http://www.kali.org/tools/">Kali Tools Documentation</a>
76
77
78 <a href="https://bugs.kali.org/search.php?project_id=1&category_id[]=General%20Bug&category_id[]=Kali%20Package%20Bug&category_id[]=Kali%20Package%20Improvement&status[]=30&status[]=40&status[]=50&sticky=on&sort=id%2Clast_updated&dir=DESC%2CDESC&hide_status=-2&match_type=0">Known Issues</a>
79
80 </div>
81 </li>
82
83
84
85 <li class="dropdown-menu">
86 <span>Community <i class="ti-angle-down"></i></span>
87 <div>
88
89
90 <a href="http://www.kali.org/community/">Community Support</a>
91
92
93 <a href="https://forums.kali.org/">Kali Linux Forums</a>
94
95
96 <a href="ircs://irc.oftc.net:6697/#Kali-Linux">Real Time Chat</a>
97
98
99 <a href="http://www.kali.org/newsletter/">Join Newsletter</a>
100
101
102 <a href="https://http.kali.org/README.mirrorlist">Mirror Location</a>
103
104
105 <a href="http://www.kali.org/docs/community/contribute/">Get Involved</a>
106
107 </div>
108 </li>
109
110
111
112 <li class="dropdown-menu">
113 <span>Courses <i class="ti-angle-down"></i></span>
114 <div>
115
116
117 <a href="https://portal.offensive-security.com/courses/pen-103">Kali Linux Revealed (KLCP/PEN-103)</a>
118
119
120 <a href="https://www.offensive-security.com/pwk-oscp/">PEN-200 (PWK/OSCP)</a>
121
122
123 <a href="https://www.offensive-security.com/wifu-oswp/">PEN-210 (WiFu/OSWP)</a>
124
125
126 <a href="https://www.offensive-security.com/pen300-osep/">PEN-300 (ETBD/OSEP)</a>
127
128
129 <a href="https://www.offensive-security.com/web200-oswa/">WEB-200 (WAWK/OSWA)</a>
130
131
132 <a href="https://www.offensive-security.com/awae-oswe/">WEB-300 (AWAE/OSWE)</a>
133
134
135 <a href="https://www.offensive-security.com/exp301-osed/">EXP-301 (WUMED/OSED)</a>
136
137
138 <a href="https://www.offensive-security.com/exp312-osmr/">EXP-312 (MCB/OSMR)</a>
139
140
141 <a href="https://www.offensive-security.com/awe-osee/">EXP-401 (AWE/OSEE)</a>
142
143
144 <a href="https://www.offensive-security.com/soc200-osda/">SOC-200 (AWE/OSDA)</a>
145
146 </div>
147 </li>
148
149
150
151 <li class="dropdown-menu">
152 <span>Developers <i class="ti-angle-down"></i></span>
153 <div>
154
155
156 <a href="https://gitlab.com/kalilinux">Git Repositories</a>
157
158
159 <a href="https://pkg.kali.org/">Packages</a>
160
161
162 <a href="https://autopkgtest.kali.org/">Auto Package Test</a>
163
164
165 <a href="https://bugs.kali.org/">Bug Tracker</a>
166
167
168 <a href="https://stats.nethunter.com/">Kali NetHunter Stats</a>
169
170 </div>
171 </li>
172
173
174
175 <li class="dropdown-menu">
176 <span>About <i class="ti-angle-down"></i></span>
177 <div>
178
179
180 <a href="http://www.kali.org/features/">Kali Linux Overview</a>
181
182
183 <a href="https://gitlab.com/kalilinux/documentation/graphic-resources">Gallery &amp; Press Pack</a>
184
185
186 <a href="http://www.kali.org/about-us/">Meet The Kali Team</a>
187
188
189 <a href="http://www.kali.org/partnerships-sponsorships/">Partnerships &amp; Friends</a>
190
191
192 <a href="http://www.kali.org/contact/">Contact Us</a>
193
194 </div>
195 </li>
196
197
198 </ul>
199 <button title="show menu">
200 <div></div>
201 <div></div>
202 <div></div>
203 </button>
204 </nav>
205
206
207
208 <div class="container" id="banner">
209 <h1> </h1>
210 <p></p>
211 <div id="searchbar">
212 <input placeholder="Want to know more about Kali? Search it here!" autofocus>
213 <i class="ti-search"></i>
214 <ul id="search-result"></ul>
215 </div>
216 </div>
217
218 <style>
219 header {
220 background-image: url("../images/browser-home-page-banner.jpg");
221 }
222
223 #banner {
224 color: white;
225 text-align: center;
226 padding: 80px 0;
227 position: relative;
228 }
229
230 #banner h1 {
231 color: white;
232 text-shadow: 0 2px 5px rgba(0, 0, 0, .2);
233 }
234
235 #banner p {
236 color: white;
237 font-size: 20px;
238 opacity: .8;
239 }
240
241 #searchbar {
242 --input-height: 50px;
243 position: relative;
244 width: 90%;
245 max-width: 500px;
246 margin: auto;
247 }
248
249 #searchbar input {
250 width: 100%;
251 height: var(--input-height);
252 border-radius: calc(var(--input-height) / 2);
253 border: 0;
254 padding: 0 50px 0 20px;
255 font-size: 16px;
256 line-height: 1.5;
257 color: #495057;
258 outline: 0;
259 box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
260 }
261
262 #searchbar input.expanded {
263 border-bottom-left-radius: 0;
264 border-bottom-right-radius: 0;
265 }
266
267 #searchbar i {
268 position: absolute;
269 right: 20px;
270 top: 18px;
271 font-size: 14px;
272 color: black;
273 }
274
275 #search-result {
276 position: absolute;
277 max-height: 220px;
278 width: 100%;
279 border-radius: 0 0 calc(var(--input-height) / 2) calc(var(--input-height) / 2);
280 z-index: 1;
281 overflow: auto;
282 text-align: left;
283 line-height: 2em;
284 box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
285 -ms-overflow-style: none;
286 scrollbar-width: none;
287 }
288
289 #search-result::-webkit-scrollbar { display: none; }
290
291 #search-result li {
292 border-bottom: 1px solid #e8e8e8;
293 background: white;
294 padding: 0;
295 }
296
297 #search-result li a {
298 display: block;
299 padding: 4px 20px;
300 }
301
302 #search-result li a:focus { background: rgba(0, 0, 0, .05); }
303
304 #search-result li::before { display: none; }
305
306 #search-result li:last-child {
307 padding: 10px 20px;
308 background: #1A1A1A;
309 box-shadow: inset 0 7px 3px -5px rgba(0, 0, 0, .1);
310 border-bottom: 0;
311 font-weight: bold;
312 }
313
314 #search-result li:last-child a { color: white; }
315 </style>
316
317 <script>
318 {
319 const PAGES = [
320
321
322
323 {
324 value: "Kali Linux Metapackages",
325 url:"http:\/\/www.kali.org\/docs\/general-use\/metapackages\/"
326 },
327
328 {
329 value: "All about sudo",
330 url:"http:\/\/www.kali.org\/docs\/general-use\/sudo\/"
331 },
332
333 {
334 value: "Introduction",
335 url:"http:\/\/www.kali.org\/docs\/introduction\/"
336 },
337
338 {
339 value: "Kali Linux Xfce FAQ",
340 url:"http:\/\/www.kali.org\/docs\/general-use\/xfce-faq\/"
341 },
342
343 {
344 value: "Setting Up A System For Packaging",
345 url:"http:\/\/www.kali.org\/docs\/development\/setting-up-packaging-system\/"
346 },
347
348 {
349 value: "What is Kali Linux?",
350 url:"http:\/\/www.kali.org\/docs\/introduction\/what-is-kali-linux\/"
351 },
352
353 {
354 value: "Common Cloud Based Setup Information",
355 url:"http:\/\/www.kali.org\/docs\/troubleshooting\/common-cloud-setup\/"
356 },
357
358 {
359 value: "Introduction to packaging step-by-step example",
360 url:"http:\/\/www.kali.org\/docs\/development\/intro-to-packaging-example\/"
361 },
362
363 {
364 value: "Minimum Install Setup Information",
365 url:"http:\/\/www.kali.org\/docs\/troubleshooting\/common-minimum-setup\/"
366 },
367
368 {
369 value: "Intermediate packaging step-by-step example",
370 url:"http:\/\/www.kali.org\/docs\/development\/intermediate-packaging-example\/"
371 },
372
373 {
374 value: "Advanced Packaging Step-By-Step Example (FinalRecon \u0026 Python-icmplib)",
375 url:"http:\/\/www.kali.org\/docs\/development\/advanced-packaging-example\/"
376 },
377
378 {
379 value: "Everything you need to know about the switch to Python 3",
380 url:"http:\/\/www.kali.org\/docs\/general-use\/python3-transition\/"
381 },
382
383 {
384 value: "Installation",
385 url:"http:\/\/www.kali.org\/docs\/installation\/"
386 },
387
388 {
389 value: "Using EoL Python Versions on Kali",
390 url:"http:\/\/www.kali.org\/docs\/general-use\/using-eol-python-versions\/"
391 },
392
393 {
394 value: "Should I Use Kali Linux?",
395 url:"http:\/\/www.kali.org\/docs\/introduction\/should-i-use-kali-linux\/"
396 },
397
398 {
399 value: "Virtualization",
400 url:"http:\/\/www.kali.org\/docs\/virtualization\/"
401 },
402
403 {
404 value: "Getting the best out of the Kali Bot",
405 url:"http:\/\/www.kali.org\/docs\/development\/leveraging-the-kali-bot\/"
406 },
407
408 {
409 value: "USB",
410 url:"http:\/\/www.kali.org\/docs\/usb\/"
411 },
412
413 {
414 value: "Kali On ARM",
415 url:"http:\/\/www.kali.org\/docs\/arm\/"
416 },
417
418 {
419 value: "Containers",
420 url:"http:\/\/www.kali.org\/docs\/containers\/"
421 },
422
423 {
424 value: "Win-KeX ESM",
425 url:"http:\/\/www.kali.org\/docs\/wsl\/win-kex-esm\/"
426 },
427
428 {
429 value: "WSL",
430 url:"http:\/\/www.kali.org\/docs\/wsl\/"
431 },
432
433 {
434 value: "Cloud",
435 url:"http:\/\/www.kali.org\/docs\/cloud\/"
436 },
437
438 {
439 value: "Fixing DPI (Dots Per Inch) \/ Large Fonts",
440 url:"http:\/\/www.kali.org\/docs\/general-use\/fixing-dpi\/"
441 },
442
443 {
444 value: "HiDPI (High Dots Per Inch) Display",
445 url:"http:\/\/www.kali.org\/docs\/general-use\/hidpi\/"
446 },
447
448 {
449 value: "Which Image Should I Download?",
450 url:"http:\/\/www.kali.org\/docs\/introduction\/what-image-to-download\/"
451 },
452
453 {
454 value: "Kali NetHunter",
455 url:"http:\/\/www.kali.org\/docs\/nethunter\/"
456 },
457
458 {
459 value: "General Use",
460 url:"http:\/\/www.kali.org\/docs\/general-use\/"
461 },
462
463 {
464 value: "Downloading Kali Linux",
465 url:"http:\/\/www.kali.org\/docs\/introduction\/download-official-kali-linux-images\/"
466 },
467
468 {
469 value: "Generate an Updated Kali ISO",
470 url:"http:\/\/www.kali.org\/docs\/development\/generate-updated-kali-iso\/"
471 },
472
473 {
474 value: "Install NVIDIA GPU Drivers",
475 url:"http:\/\/www.kali.org\/docs\/general-use\/install-nvidia-drivers-on-kali-linux\/"
476 },
477
478 {
479 value: "Making a Kali Bootable USB Drive (Linux)",
480 url:"http:\/\/www.kali.org\/docs\/usb\/live-usb-install-with-linux\/"
481 },
482
483 {
484 value: "Making a Kali Bootable USB Drive (macOS\/OS X)",
485 url:"http:\/\/www.kali.org\/docs\/usb\/live-usb-install-with-mac\/"
486 },
487
488 {
489 value: "Making a Kali Bootable USB Drive on Windows",
490 url:"http:\/\/www.kali.org\/docs\/usb\/live-usb-install-with-windows\/"
491 },
492
493 {
494 value: "Creating A Custom Kali ISO",
495 url:"http:\/\/www.kali.org\/docs\/development\/live-build-a-custom-kali-iso\/"
496 },
497
498 {
499 value: "Download Kali Linux Images Securely",
500 url:"http:\/\/www.kali.org\/docs\/introduction\/download-images-securely\/"
501 },
502
503 {
504 value: "Building Custom Kali ISOs",
505 url:"http:\/\/www.kali.org\/docs\/development\/dojo-mastering-live-build\/"
506 },
507
508 {
509 value: "Tools",
510 url:"http:\/\/www.kali.org\/docs\/tools\/"
511 },
512
513 {
514 value: "Kali Branches",
515 url:"http:\/\/www.kali.org\/docs\/general-use\/kali-branches\/"
516 },
517
518 {
519 value: "Kali\u0027s Default Credentials",
520 url:"http:\/\/www.kali.org\/docs\/introduction\/default-credentials\/"
521 },
522
523 {
524 value: "Rebuilding a Source Package",
525 url:"http:\/\/www.kali.org\/docs\/development\/rebuilding-a-package-from-source\/"
526 },
527
528 {
529 value: "Troubleshooting",
530 url:"http:\/\/www.kali.org\/docs\/troubleshooting\/"
531 },
532
533 {
534 value: "Kali Network Repositories (\/etc\/apt\/sources.list)",
535 url:"http:\/\/www.kali.org\/docs\/general-use\/kali-linux-sources-list-repositories\/"
536 },
537
538 {
539 value: "Recompiling the Kali Linux Kernel",
540 url:"http:\/\/www.kali.org\/docs\/development\/recompiling-the-kali-linux-kernel\/"
541 },
542
543 {
544 value: "Get the latest unreleased features and bug fixes with Kali Bleeding Edge",
545 url:"http:\/\/www.kali.org\/docs\/general-use\/kali-bleeding-edge\/"
546 },
547
548 {
549 value: "Kali Development",
550 url:"http:\/\/www.kali.org\/docs\/development\/"
551 },
552
553 {
554 value: "Community",
555 url:"http:\/\/www.kali.org\/docs\/community\/"
556 },
557
558 {
559 value: "Preparing a Kali Linux ARM chroot",
560 url:"http:\/\/www.kali.org\/docs\/development\/kali-linux-arm-chroot\/"
561 },
562
563 {
564 value: "ARM Cross-Compilation",
565 url:"http:\/\/www.kali.org\/docs\/development\/arm-cross-compilation-environment\/"
566 },
567
568 {
569 value: "Policy",
570 url:"http:\/\/www.kali.org\/docs\/policy\/"
571 },
572
573 {
574 value: "Standalone Kali Linux 2021.4 Installation on a USB Drive, Fully Encrypted",
575 url:"http:\/\/www.kali.org\/docs\/usb\/usb-standalone-encrypted\/"
576 },
577
578 {
579 value: "Updating Kali Linux on USB",
580 url:"http:\/\/www.kali.org\/docs\/usb\/updating-kali-on-usb\/"
581 },
582
583 {
584 value: "Adding Persistence to a Kali Linux Live USB Drive",
585 url:"http:\/\/www.kali.org\/docs\/usb\/usb-persistence\/"
586 },
587
588 {
589 value: "Installing Kali Linux",
590 url:"http:\/\/www.kali.org\/docs\/installation\/hard-disk-install\/"
591 },
592
593 {
594 value: "Installing VMware on Kali (Host)",
595 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-vmware-host\/"
596 },
597
598 {
599 value: "Kali Undercover",
600 url:"http:\/\/www.kali.org\/docs\/introduction\/kali-undercover\/"
601 },
602
603 {
604 value: "Packaging Applications with Kaboxer",
605 url:"http:\/\/www.kali.org\/docs\/development\/packaging-apps-with-kaboxer\/"
606 },
607
608 {
609 value: "Installing Kali on Mac Hardware",
610 url:"http:\/\/www.kali.org\/docs\/installation\/hard-disk-install-on-mac\/"
611 },
612
613 {
614 value: "Installing VirtualBox on Kali (Host)",
615 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-virtualbox-host\/"
616 },
617
618 {
619 value: "Adding Encrypted Persistence to a Kali Linux Live USB Drive",
620 url:"http:\/\/www.kali.org\/docs\/usb\/usb-persistence-encryption\/"
621 },
622
623 {
624 value: "Dual Booting Kali with Linux",
625 url:"http:\/\/www.kali.org\/docs\/installation\/dual-boot-kali-with-linux\/"
626 },
627
628 {
629 value: "Kali inside Parallels (Guest VM)",
630 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-parallels-guest-vm\/"
631 },
632
633 {
634 value: "Kali inside VMware (Guest VM)",
635 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-vmware-guest-vm\/"
636 },
637
638 {
639 value: "USB Boot in a VM",
640 url:"http:\/\/www.kali.org\/docs\/usb\/boot-usb-in-a-vm\/"
641 },
642
643 {
644 value: "Dual Booting Kali with macOS\/OS X",
645 url:"http:\/\/www.kali.org\/docs\/installation\/dual-boot-kali-with-mac\/"
646 },
647
648 {
649 value: "Kali inside VirtualBox (Guest VM)",
650 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-virtualbox-guest-vm\/"
651 },
652
653 {
654 value: "NetHunter Bluetooth-Arsenal",
655 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-btarsenal\/"
656 },
657
658 {
659 value: "Dual Booting Kali with Windows",
660 url:"http:\/\/www.kali.org\/docs\/installation\/dual-boot-kali-with-windows\/"
661 },
662
663 {
664 value: "Installing VMware Tools (Guest Tools)",
665 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-vmware-guest-tools\/"
666 },
667
668 {
669 value: "BTRFS Install",
670 url:"http:\/\/www.kali.org\/docs\/installation\/btrfs\/"
671 },
672
673 {
674 value: "Installing VirtualBox Guest Addition (Guest Tools)",
675 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-virtualbox-guest-additions\/"
676 },
677
678 {
679 value: "Installing Hyper-V Enhanced Session Mode (Guest Tools)",
680 url:"http:\/\/www.kali.org\/docs\/virtualization\/install-hyper-v-guest-enhanced-session-mode\/"
681 },
682
683 {
684 value: "Converting VMX to an OVA",
685 url:"http:\/\/www.kali.org\/docs\/virtualization\/converting-vmx-to-ova\/"
686 },
687
688 {
689 value: "Deploying Kali over Network PXE\/iPXE Install",
690 url:"http:\/\/www.kali.org\/docs\/installation\/network-pxe\/"
691 },
692
693 {
694 value: "Kali Press Release",
695 url:"http:\/\/www.kali.org\/docs\/introduction\/press-release\/"
696 },
697
698 {
699 value: "Kali Linux History",
700 url:"http:\/\/www.kali.org\/docs\/introduction\/kali-linux-history\/"
701 },
702
703 {
704 value: "Kali ARM History",
705 url:"http:\/\/www.kali.org\/docs\/introduction\/kali-on-arm-a-bit-of-history\/"
706 },
707
708 {
709 value: "Kali NetHunter History",
710 url:"http:\/\/www.kali.org\/docs\/introduction\/kali-nethunter-history\/"
711 },
712
713 {
714 value: "Blogs",
715 url:"http:\/\/www.kali.org\/blog\/"
716 },
717
718 {
719 value: "Kali Linux",
720 url:"http:\/\/www.kali.org\/"
721 },
722
723 {
724 value: "Kali\u0027s stable Docker image is now named kali-last-release",
725 url:"http:\/\/www.kali.org\/blog\/renaming-kali-stable-docker-image\/"
726 },
727
728 {
729 value: "Kali Linux 2021.4 Release",
730 url:"http:\/\/www.kali.org\/blog\/kali-linux-2021-4-release\/"
731 },
732
733 {
734 value: "Kali Linux 2021.3 Release (OpenSSL, Kali-Tools, Kali Live VM Support, Kali NetHunter Smartwatch)",
735 url:"http:\/\/www.kali.org\/blog\/kali-linux-2021-3-release\/"
736 },
737
738 {
739 value: "Kali Linux 2021.2 Release (Kaboxer, Kali-Tweaks, Bleeding-Edge \u0026 Privileged Ports)",
740 url:"http:\/\/www.kali.org\/blog\/kali-linux-2021-2-release\/"
741 },
742
743 {
744 value: "Kaboxer - Kali Applications Boxer",
745 url:"http:\/\/www.kali.org\/blog\/introducing-kaboxer\/"
746 },
747
748 {
749 value: "Ampere Hardware \u0026 Kali Linux",
750 url:"http:\/\/www.kali.org\/blog\/ampere\/"
751 },
752
753 {
754 value: "Enabling Root",
755 url:"http:\/\/www.kali.org\/docs\/general-use\/enabling-root\/"
756 },
757
758 {
759 value: "Kali Docs",
760 url:"http:\/\/www.kali.org\/docs\/"
761 },
762
763 {
764 value: "Kali Linux 2021.1 Release (Command-Not-Found)",
765 url:"http:\/\/www.kali.org\/blog\/kali-linux-2021-1-release\/"
766 },
767
768 {
769 value: "BC Security\u0027s Empire\/Starkiller \u0026 Kali Linux",
770 url:"http:\/\/www.kali.org\/blog\/empire-starkiller\/"
771 },
772
773 {
774 value: "Kali Linux \u002b Mr. Robot ARG Society",
775 url:"http:\/\/www.kali.org\/blog\/mr-robot-arg-society\/"
776 },
777
778 {
779 value: "The last 12 Months (2019\/2020) \u0026 Looking Forwards (2021)",
780 url:"http:\/\/www.kali.org\/blog\/2019-2020-review-onwards-with-2021\/"
781 },
782
783 {
784 value: "Announcing Kali Linux Newsletter \u002b Keeping in Touch",
785 url:"http:\/\/www.kali.org\/blog\/kali-linux-newsletter-keeping-in-touch\/"
786 },
787
788 {
789 value: "Kali Linux 2020.4 Release (ZSH, Bash, CME, MOTD, AWS, Docs, Win-KeX \u0026 Vagrant)",
790 url:"http:\/\/www.kali.org\/blog\/kali-linux-2020-4-release\/"
791 },
792
793 {
794 value: "Win-KeX Version 2.0",
795 url:"http:\/\/www.kali.org\/blog\/win-kex-version-2-0\/"
796 },
797
798 {
799 value: "Kali Linux 2020.3 Release (ZSH, Win-Kex, HiDPI \u0026 Bluetooth Arsenal)",
800 url:"http:\/\/www.kali.org\/blog\/kali-linux-2020-3-release\/"
801 },
802
803 {
804 value: "Creating Kali i3-gaps",
805 url:"http:\/\/www.kali.org\/blog\/_offsec-blog\/2020-07-06-creating-kali-i3_gaps\/"
806 },
807
808 {
809 value: "Contributing run-time tests with autopkgtest",
810 url:"http:\/\/www.kali.org\/docs\/development\/contributing-runtime-tests\/"
811 },
812
813 {
814 value: "Kali Linux 2020.2 Release (KDE \u0026 PowerShell)",
815 url:"http:\/\/www.kali.org\/blog\/kali-linux-2020-2-release\/"
816 },
817
818 {
819 value: "Kali NetHunter Updates",
820 url:"http:\/\/www.kali.org\/blog\/kali-nethunter-updates\/"
821 },
822
823 {
824 value: "Kali Linux 2020.1a Release",
825 url:"http:\/\/www.kali.org\/blog\/kali-linux-2020-1a-release\/"
826 },
827
828 {
829 value: "Kali Everywhere!",
830 url:"http:\/\/www.kali.org\/blog\/kali-everywhere\/"
831 },
832
833 {
834 value: "Kali Linux 2020.1 Release (Non-Root, Single Installer \u0026 NetHunter Rootless)",
835 url:"http:\/\/www.kali.org\/blog\/kali-linux-2020-1-release\/"
836 },
837
838 {
839 value: "Kali Default Non-Root User",
840 url:"http:\/\/www.kali.org\/blog\/kali-default-non-root-user\/"
841 },
842
843 {
844 value: "How Kali deals with the upcoming Python 2 End-of-Life",
845 url:"http:\/\/www.kali.org\/blog\/python-2-end-of-life\/"
846 },
847
848 {
849 value: "Kali Linux 2019.4 Release (Xfce, Gnome, GTK3, Kali-Undercover, Kali-Docs, KeX, PowerShell \u0026 Public Packaging)",
850 url:"http:\/\/www.kali.org\/blog\/kali-linux-2019-4-release\/"
851 },
852
853 {
854 value: "Kali Linux 2019.3 Release (CloudFlare, Kali-status, metapackages, Helper-Scripts \u0026 LXD)",
855 url:"http:\/\/www.kali.org\/blog\/kali-linux-2019-3-release\/"
856 },
857
858 {
859 value: "Major Metapackage Makeover",
860 url:"http:\/\/www.kali.org\/blog\/major-metapackage-makeover\/"
861 },
862
863 {
864 value: "Kali NetHunter App Store - Public Beta",
865 url:"http:\/\/www.kali.org\/blog\/kali-nethunter-app-store\/"
866 },
867
868 {
869 value: "Raspberry Pi 4 and Kali",
870 url:"http:\/\/www.kali.org\/blog\/raspberry-pi-4-and-kali\/"
871 },
872
873 {
874 value: "Kali Linux in the DigitalOcean Cloud",
875 url:"http:\/\/www.kali.org\/blog\/kali-linux-in-the-digitalocean-cloud\/"
876 },
877
878 {
879 value: "Kali Linux Roadmap (2019\/2020)",
880 url:"http:\/\/www.kali.org\/blog\/kali-linux-roadmap-2019-2020\/"
881 },
882
883 {
884 value: "WSL2 and Kali",
885 url:"http:\/\/www.kali.org\/blog\/wsl2-and-kali\/"
886 },
887
888 {
889 value: "Cloudflare Repositories FTW",
890 url:"http:\/\/www.kali.org\/blog\/_external\/cloudflare\/"
891 },
892
893 {
894 value: "Kali Linux 2019.2 Release",
895 url:"http:\/\/www.kali.org\/blog\/kali-linux-2019-2-release\/"
896 },
897
898 {
899 value: "Kali Linux 2019.1 Release",
900 url:"http:\/\/www.kali.org\/blog\/kali-linux-2019-1-release\/"
901 },
902
903 {
904 value: "Kali Linux for the Gemini PDA",
905 url:"http:\/\/www.kali.org\/blog\/kali-linux-for-the-gemini-pda\/"
906 },
907
908 {
909 value: "Kali Linux 2018.4 Release",
910 url:"http:\/\/www.kali.org\/blog\/kali-linux-2018-4-release\/"
911 },
912
913 {
914 value: "Announcing Kali for Vagrant",
915 url:"http:\/\/www.kali.org\/blog\/announcing-kali-for-vagrant\/"
916 },
917
918 {
919 value: "Making your own Kali Linux Metapackages",
920 url:"http:\/\/www.kali.org\/blog\/making-your-own-kali-linux-metapackages\/"
921 },
922
923 {
924 value: "WireGuard on Kali",
925 url:"http:\/\/www.kali.org\/blog\/wireguard-on-kali\/"
926 },
927
928 {
929 value: "My Custom Kali Linux Distribution",
930 url:"http:\/\/www.kali.org\/blog\/my-custom-kali-linux-distribution\/"
931 },
932
933 {
934 value: "Kali Linux 2018.3 Release",
935 url:"http:\/\/www.kali.org\/blog\/kali-linux-2018-3-release\/"
936 },
937
938 {
939 value: "Build Kali with Live-Build on Debian Based Systems",
940 url:"http:\/\/www.kali.org\/blog\/build-kali-with-live-build-on-debian-based-systems\/"
941 },
942
943 {
944 value: "Secure Kali Pi 2018",
945 url:"http:\/\/www.kali.org\/blog\/secure-kali-pi-2018\/"
946 },
947
948 {
949 value: "Installing PowerShell on Kali Linux",
950 url:"http:\/\/www.kali.org\/blog\/installing-powershell-on-kali-linux\/"
951 },
952
953 {
954 value: "Kali Linux 2018.2 Release",
955 url:"http:\/\/www.kali.org\/blog\/kali-linux-2018-2-release\/"
956 },
957
958 {
959 value: "Finding Packages for Kali Linux",
960 url:"http:\/\/www.kali.org\/blog\/finding-packages-for-kali-linux\/"
961 },
962
963 {
964 value: "Kali Linux in the Windows App Store",
965 url:"http:\/\/www.kali.org\/blog\/kali-linux-in-the-windows-app-store\/"
966 },
967
968 {
969 value: "Kali Linux 2018.1 Release",
970 url:"http:\/\/www.kali.org\/blog\/kali-linux-2018-1-release\/"
971 },
972
973 {
974 value: "Your Journey Starts Here",
975 url:"http:\/\/www.kali.org\/blog\/your-kali-training-journey-starts-here\/"
976 },
977
978 {
979 value: "Kali on the Windows Subsystem for Linux",
980 url:"http:\/\/www.kali.org\/blog\/kali-on-the-windows-subsystem-for-linux\/"
981 },
982
983 {
984 value: "Kali Linux 2017.3 Release",
985 url:"http:\/\/www.kali.org\/blog\/kali-linux-2017-3-release\/"
986 },
987
988 {
989 value: "Configuring and Tuning OpenVAS in Kali Linux",
990 url:"http:\/\/www.kali.org\/blog\/configuring-and-tuning-openvas-in-kali-linux\/"
991 },
992
993 {
994 value: "Kali on KRACK",
995 url:"http:\/\/www.kali.org\/blog\/kali-on-krack\/"
996 },
997
998 {
999 value: "Advanced Package Management in Kali Linux",
1000 url:"http:\/\/www.kali.org\/blog\/advanced-package-management-in-kali-linux\/"
1001 },
1002
1003 {
1004 value: "Kali Linux 2017.2 Release",
1005 url:"http:\/\/www.kali.org\/blog\/kali-linux-2017-2-release\/"
1006 },
1007
1008 {
1009 value: "VMware Fusion Kali USB Boot",
1010 url:"http:\/\/www.kali.org\/blog\/vmware-fusion-kali-usb-boot\/"
1011 },
1012
1013 {
1014 value: "Kali Drones, Portable CTF Builds, Raspberry Pi Craziness and More!",
1015 url:"http:\/\/www.kali.org\/blog\/kali-drones-portable-ctf-builds-raspberry-pi-craziness-and-more\/"
1016 },
1017
1018 {
1019 value: "Kali Linux 2017.1 Release",
1020 url:"http:\/\/www.kali.org\/blog\/kali-linux-2017-1-release\/"
1021 },
1022
1023 {
1024 value: "Kali Linux Repository HTTPS Support",
1025 url:"http:\/\/www.kali.org\/blog\/kali-linux-repository-https-support\/"
1026 },
1027
1028 {
1029 value: "Cracking in the Cloud with CUDA GPUs",
1030 url:"http:\/\/www.kali.org\/blog\/cloud-cracking-with-cuda-gpu\/"
1031 },
1032
1033 {
1034 value: "The Kali Linux Certified Professional",
1035 url:"http:\/\/www.kali.org\/blog\/introducing-kali-linux-certified-professional\/"
1036 },
1037
1038 {
1039 value: "Kali Linux in the AWS cloud, again",
1040 url:"http:\/\/www.kali.org\/blog\/kali-linux-aws-cloud\/"
1041 },
1042
1043 {
1044 value: "Azure Marketplace, Weekly ISO Builds",
1045 url:"http:\/\/www.kali.org\/blog\/azure-marketplace-weekly-iso-builds\/"
1046 },
1047
1048 {
1049 value: "Kali Linux 2016.2 Release",
1050 url:"http:\/\/www.kali.org\/blog\/kali-linux-2016-2-release\/"
1051 },
1052
1053 {
1054 value: "Hacking with Kali at Black Hat USA 2016",
1055 url:"http:\/\/www.kali.org\/blog\/hacking-kali-black-hat\/"
1056 },
1057
1058 {
1059 value: "Kali Linux Dojo at Black Hat Vegas 2016",
1060 url:"http:\/\/www.kali.org\/blog\/kali-dojo-black-hat-vegas-2016\/"
1061 },
1062
1063 {
1064 value: "Kali Linux 2016.1 Release - Rolling Edition",
1065 url:"http:\/\/www.kali.org\/blog\/kali-linux-2016-1-release\/"
1066 },
1067
1068 {
1069 value: "Kali Moto End of Life \u0026 Kali Dojo Slides",
1070 url:"http:\/\/www.kali.org\/blog\/kali-moto-eol\/"
1071 },
1072
1073 {
1074 value: "Kali Linux 2.0 Release - Sana",
1075 url:"http:\/\/www.kali.org\/blog\/kali-linux-2-0-release\/"
1076 },
1077
1078 {
1079 value: "Kali Linux 2.0 Release Day Scheduled",
1080 url:"http:\/\/www.kali.org\/blog\/kali-linux-2-release-day-scheduled\/"
1081 },
1082
1083 {
1084 value: "Official Kali Linux Docker Images Released",
1085 url:"http:\/\/www.kali.org\/blog\/official-kali-linux-docker-images\/"
1086 },
1087
1088 {
1089 value: "Pixiewps, Reaver \u0026 Aircrack-ng Wireless Penetration Testing Tool Updates",
1090 url:"http:\/\/www.kali.org\/blog\/pixiewps-reaver-aircrack-ng-updates\/"
1091 },
1092
1093 {
1094 value: "OpenVAS 8.0 Vulnerability Scanning",
1095 url:"http:\/\/www.kali.org\/blog\/openvas-vulnerability-scanning\/"
1096 },
1097
1098 {
1099 value: "Kali Linux 1.1.0 Release",
1100 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-1-0-release\/"
1101 },
1102
1103 {
1104 value: "Kali \u0026 NetHunter Security Release Fixes",
1105 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-9a-release\/"
1106 },
1107
1108 {
1109 value: "Kali Tools Website Launched, 1.0.9 Release",
1110 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-9-release\/"
1111 },
1112
1113 {
1114 value: "Kali Linux 1.0.8 Release with EFI Boot Support",
1115 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-8-release\/"
1116 },
1117
1118 {
1119 value: "Kali Linux 1.0.7 Release",
1120 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-7-release\/"
1121 },
1122
1123 {
1124 value: "Kali Linux Metapackages",
1125 url:"http:\/\/www.kali.org\/blog\/kali-linux-metapackages\/"
1126 },
1127
1128 {
1129 value: "Kali Linux Amazon EC2 AMI",
1130 url:"http:\/\/www.kali.org\/blog\/kali-linux-amazon-ec2-ami\/"
1131 },
1132
1133 {
1134 value: "Passing the Hash with Remote Desktop",
1135 url:"http:\/\/www.kali.org\/blog\/passing-hash-remote-desktop\/"
1136 },
1137
1138 {
1139 value: "How to Nuke your Encrypted Kali Installation",
1140 url:"http:\/\/www.kali.org\/blog\/nuke-kali-linux-luks\/"
1141 },
1142
1143 {
1144 value: "Kali Linux 1.0.6 Release",
1145 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-6-release\/"
1146 },
1147
1148 {
1149 value: "Emergency Self Destruction of LUKS in Kali",
1150 url:"http:\/\/www.kali.org\/blog\/emergency-self-destruction-luks-kali\/"
1151 },
1152
1153 {
1154 value: "Ultimate Pentesting PwnBox (2013) - Utilite Pro",
1155 url:"http:\/\/www.kali.org\/blog\/ultimate-pentesting-pwnbox-2013-utilite\/"
1156 },
1157
1158 {
1159 value: "Kali Linux 1.0.5 and Software Defined Radio",
1160 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-5-release\/"
1161 },
1162
1163 {
1164 value: "Kali Linux on Android using Linux Deploy",
1165 url:"http:\/\/www.kali.org\/blog\/kali-linux-android-linux-deploy\/"
1166 },
1167
1168 {
1169 value: "Tracking and Fixing an Installer Bug",
1170 url:"http:\/\/www.kali.org\/blog\/tracking-fixing-installer-bugs\/"
1171 },
1172
1173 {
1174 value: "Kali Linux - Penetration Testing Platform",
1175 url:"http:\/\/www.kali.org\/blog\/kali-linux-penetration-testing-platform\/"
1176 },
1177
1178 {
1179 value: "Kali Linux 1.0.4 Summer Update Release",
1180 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-4-release\/"
1181 },
1182
1183 {
1184 value: "Pass the Hash toolkit, Winexe and more.",
1185 url:"http:\/\/www.kali.org\/blog\/pass-the-hash-toolkit-winexe-updates\/"
1186 },
1187
1188 {
1189 value: "Kali Linux Accessibility Improvements",
1190 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-3-release\/"
1191 },
1192
1193 {
1194 value: "Bleeding Edge Kali Linux",
1195 url:"http:\/\/www.kali.org\/blog\/bleeding-edge-kali-repositories\/"
1196 },
1197
1198 {
1199 value: "Kali Linux Release Aftermath",
1200 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-1-release\/"
1201 },
1202
1203 {
1204 value: "Kali Linux 1.0 Release - Moto - The Birth of Kali Linux",
1205 url:"http:\/\/www.kali.org\/blog\/kali-linux-1-0-0-release\/"
1206 },
1207
1208 {
1209 value: "Whats New in Kali Linux?",
1210 url:"http:\/\/www.kali.org\/blog\/kali-linux-whats-new\/"
1211 },
1212
1213 {
1214 value: "",
1215 url:"http:\/\/www.kali.org\/blog\/_drafts\/kali-linux-2022.1-release\/"
1216 },
1217
1218 {
1219 value: "",
1220 url:"http:\/\/www.kali.org\/blog\/_offsec-blog\/2020-03-27-kali-customisation\/"
1221 },
1222
1223 {
1224 value: "",
1225 url:"http:\/\/www.kali.org\/blog\/_offsec-blog\/2020-05-01-searchsploit-update\/"
1226 },
1227
1228 {
1229 value: "",
1230 url:"http:\/\/www.kali.org\/blog\/_template\/kali-release\/"
1231 },
1232
1233 {
1234 value: " ",
1235 url:"http:\/\/www.kali.org\/browser-home-page\/"
1236 },
1237
1238 {
1239 value: "0trace",
1240 url:"http:\/\/www.kali.org\/tools\/0trace\/"
1241 },
1242
1243 {
1244 value: "abootimg",
1245 url:"http:\/\/www.kali.org\/tools\/abootimg\/"
1246 },
1247
1248 {
1249 value: "Acer Tegra Chromebook 13\u0022 (Nyan)",
1250 url:"http:\/\/www.kali.org\/docs\/arm\/acer-tegra-chromebook-13\/"
1251 },
1252
1253 {
1254 value: "aesfix",
1255 url:"http:\/\/www.kali.org\/tools\/aesfix\/"
1256 },
1257
1258 {
1259 value: "aeskeyfind",
1260 url:"http:\/\/www.kali.org\/tools\/aeskeyfind\/"
1261 },
1262
1263 {
1264 value: "afflib",
1265 url:"http:\/\/www.kali.org\/tools\/afflib\/"
1266 },
1267
1268 {
1269 value: "aflplusplus",
1270 url:"http:\/\/www.kali.org\/tools\/aflplusplus\/"
1271 },
1272
1273 {
1274 value: "aircrack-ng",
1275 url:"http:\/\/www.kali.org\/tools\/aircrack-ng\/"
1276 },
1277
1278 {
1279 value: "airgeddon",
1280 url:"http:\/\/www.kali.org\/tools\/airgeddon\/"
1281 },
1282
1283 {
1284 value: "altdns",
1285 url:"http:\/\/www.kali.org\/tools\/altdns\/"
1286 },
1287
1288 {
1289 value: "amap",
1290 url:"http:\/\/www.kali.org\/tools\/amap\/"
1291 },
1292
1293 {
1294 value: "amass",
1295 url:"http:\/\/www.kali.org\/tools\/amass\/"
1296 },
1297
1298 {
1299 value: "android-sdk",
1300 url:"http:\/\/www.kali.org\/tools\/android-sdk\/"
1301 },
1302
1303 {
1304 value: "apache-users",
1305 url:"http:\/\/www.kali.org\/tools\/apache-users\/"
1306 },
1307
1308 {
1309 value: "apache2",
1310 url:"http:\/\/www.kali.org\/tools\/apache2\/"
1311 },
1312
1313 {
1314 value: "apktool",
1315 url:"http:\/\/www.kali.org\/tools\/apktool\/"
1316 },
1317
1318 {
1319 value: "arjun",
1320 url:"http:\/\/www.kali.org\/tools\/arjun\/"
1321 },
1322
1323 {
1324 value: "armitage",
1325 url:"http:\/\/www.kali.org\/tools\/armitage\/"
1326 },
1327
1328 {
1329 value: "arp-scan",
1330 url:"http:\/\/www.kali.org\/tools\/arp-scan\/"
1331 },
1332
1333 {
1334 value: "arping",
1335 url:"http:\/\/www.kali.org\/tools\/arping\/"
1336 },
1337
1338 {
1339 value: "arpwatch",
1340 url:"http:\/\/www.kali.org\/tools\/arpwatch\/"
1341 },
1342
1343 {
1344 value: "asleap",
1345 url:"http:\/\/www.kali.org\/tools\/asleap\/"
1346 },
1347
1348 {
1349 value: "assetfinder",
1350 url:"http:\/\/www.kali.org\/tools\/assetfinder\/"
1351 },
1352
1353 {
1354 value: "ASUS Chromebook Flip (Veyron)",
1355 url:"http:\/\/www.kali.org\/docs\/arm\/asus-chromebook-flip\/"
1356 },
1357
1358 {
1359 value: "atftp",
1360 url:"http:\/\/www.kali.org\/tools\/atftp\/"
1361 },
1362
1363 {
1364 value: "autopsy",
1365 url:"http:\/\/www.kali.org\/tools\/autopsy\/"
1366 },
1367
1368 {
1369 value: "AWS",
1370 url:"http:\/\/www.kali.org\/docs\/cloud\/aws\/"
1371 },
1372
1373 {
1374 value: "axel",
1375 url:"http:\/\/www.kali.org\/tools\/axel\/"
1376 },
1377
1378 {
1379 value: "backdoor-factory",
1380 url:"http:\/\/www.kali.org\/tools\/backdoor-factory\/"
1381 },
1382
1383 {
1384 value: "Banana Pi",
1385 url:"http:\/\/www.kali.org\/docs\/arm\/banana-pi\/"
1386 },
1387
1388 {
1389 value: "Banana Pro",
1390 url:"http:\/\/www.kali.org\/docs\/arm\/banana-pro\/"
1391 },
1392
1393 {
1394 value: "BeagleBone Black",
1395 url:"http:\/\/www.kali.org\/docs\/arm\/beaglebone-black\/"
1396 },
1397
1398 {
1399 value: "bed",
1400 url:"http:\/\/www.kali.org\/tools\/bed\/"
1401 },
1402
1403 {
1404 value: "beef-xss",
1405 url:"http:\/\/www.kali.org\/tools\/beef-xss\/"
1406 },
1407
1408 {
1409 value: "berate-ap",
1410 url:"http:\/\/www.kali.org\/tools\/berate-ap\/"
1411 },
1412
1413 {
1414 value: "bettercap",
1415 url:"http:\/\/www.kali.org\/tools\/bettercap\/"
1416 },
1417
1418 {
1419 value: "bind9",
1420 url:"http:\/\/www.kali.org\/tools\/bind9\/"
1421 },
1422
1423 {
1424 value: "bing-ip2hosts",
1425 url:"http:\/\/www.kali.org\/tools\/bing-ip2hosts\/"
1426 },
1427
1428 {
1429 value: "binwalk",
1430 url:"http:\/\/www.kali.org\/tools\/binwalk\/"
1431 },
1432
1433 {
1434 value: "bloodhound",
1435 url:"http:\/\/www.kali.org\/tools\/bloodhound\/"
1436 },
1437
1438 {
1439 value: "bluelog",
1440 url:"http:\/\/www.kali.org\/tools\/bluelog\/"
1441 },
1442
1443 {
1444 value: "blueranger",
1445 url:"http:\/\/www.kali.org\/tools\/blueranger\/"
1446 },
1447
1448 {
1449 value: "bluesnarfer",
1450 url:"http:\/\/www.kali.org\/tools\/bluesnarfer\/"
1451 },
1452
1453 {
1454 value: "bluez",
1455 url:"http:\/\/www.kali.org\/tools\/bluez\/"
1456 },
1457
1458 {
1459 value: "braa",
1460 url:"http:\/\/www.kali.org\/tools\/braa\/"
1461 },
1462
1463 {
1464 value: "bruteforce-salted-openssl",
1465 url:"http:\/\/www.kali.org\/tools\/bruteforce-salted-openssl\/"
1466 },
1467
1468 {
1469 value: "brutespray",
1470 url:"http:\/\/www.kali.org\/tools\/brutespray\/"
1471 },
1472
1473 {
1474 value: "btscanner",
1475 url:"http:\/\/www.kali.org\/tools\/btscanner\/"
1476 },
1477
1478 {
1479 value: "Building NetHunter",
1480 url:"http:\/\/www.kali.org\/docs\/nethunter\/building-nethunter\/"
1481 },
1482
1483 {
1484 value: "bulk-extractor",
1485 url:"http:\/\/www.kali.org\/tools\/bulk-extractor\/"
1486 },
1487
1488 {
1489 value: "bully",
1490 url:"http:\/\/www.kali.org\/tools\/bully\/"
1491 },
1492
1493 {
1494 value: "burpsuite",
1495 url:"http:\/\/www.kali.org\/tools\/burpsuite\/"
1496 },
1497
1498 {
1499 value: "bytecode-viewer",
1500 url:"http:\/\/www.kali.org\/tools\/bytecode-viewer\/"
1501 },
1502
1503 {
1504 value: "cabextract",
1505 url:"http:\/\/www.kali.org\/tools\/cabextract\/"
1506 },
1507
1508 {
1509 value: "cadaver",
1510 url:"http:\/\/www.kali.org\/tools\/cadaver\/"
1511 },
1512
1513 {
1514 value: "caldera",
1515 url:"http:\/\/www.kali.org\/tools\/caldera\/"
1516 },
1517
1518 {
1519 value: "capstone",
1520 url:"http:\/\/www.kali.org\/tools\/capstone\/"
1521 },
1522
1523 {
1524 value: "ccrypt",
1525 url:"http:\/\/www.kali.org\/tools\/ccrypt\/"
1526 },
1527
1528 {
1529 value: "certgraph",
1530 url:"http:\/\/www.kali.org\/tools\/certgraph\/"
1531 },
1532
1533 {
1534 value: "cewl",
1535 url:"http:\/\/www.kali.org\/tools\/cewl\/"
1536 },
1537
1538 {
1539 value: "changeme",
1540 url:"http:\/\/www.kali.org\/tools\/changeme\/"
1541 },
1542
1543 {
1544 value: "chaosreader",
1545 url:"http:\/\/www.kali.org\/tools\/chaosreader\/"
1546 },
1547
1548 {
1549 value: "cherrytree",
1550 url:"http:\/\/www.kali.org\/tools\/cherrytree\/"
1551 },
1552
1553 {
1554 value: "chirp",
1555 url:"http:\/\/www.kali.org\/tools\/chirp\/"
1556 },
1557
1558 {
1559 value: "chisel",
1560 url:"http:\/\/www.kali.org\/tools\/chisel\/"
1561 },
1562
1563 {
1564 value: "chkrootkit",
1565 url:"http:\/\/www.kali.org\/tools\/chkrootkit\/"
1566 },
1567
1568 {
1569 value: "chntpw",
1570 url:"http:\/\/www.kali.org\/tools\/chntpw\/"
1571 },
1572
1573 {
1574 value: "chromium",
1575 url:"http:\/\/www.kali.org\/tools\/chromium\/"
1576 },
1577
1578 {
1579 value: "cifs-utils",
1580 url:"http:\/\/www.kali.org\/tools\/cifs-utils\/"
1581 },
1582
1583 {
1584 value: "cisco-auditing-tool",
1585 url:"http:\/\/www.kali.org\/tools\/cisco-auditing-tool\/"
1586 },
1587
1588 {
1589 value: "cisco-global-exploiter",
1590 url:"http:\/\/www.kali.org\/tools\/cisco-global-exploiter\/"
1591 },
1592
1593 {
1594 value: "cisco-ocs",
1595 url:"http:\/\/www.kali.org\/tools\/cisco-ocs\/"
1596 },
1597
1598 {
1599 value: "cisco-torch",
1600 url:"http:\/\/www.kali.org\/tools\/cisco-torch\/"
1601 },
1602
1603 {
1604 value: "cloud-enum",
1605 url:"http:\/\/www.kali.org\/tools\/cloud-enum\/"
1606 },
1607
1608 {
1609 value: "cloudbrute",
1610 url:"http:\/\/www.kali.org\/tools\/cloudbrute\/"
1611 },
1612
1613 {
1614 value: "cmospwd",
1615 url:"http:\/\/www.kali.org\/tools\/cmospwd\/"
1616 },
1617
1618 {
1619 value: "cmseek",
1620 url:"http:\/\/www.kali.org\/tools\/cmseek\/"
1621 },
1622
1623 {
1624 value: "code-oss",
1625 url:"http:\/\/www.kali.org\/tools\/code-oss\/"
1626 },
1627
1628 {
1629 value: "command-not-found",
1630 url:"http:\/\/www.kali.org\/tools\/command-not-found\/"
1631 },
1632
1633 {
1634 value: "commix",
1635 url:"http:\/\/www.kali.org\/tools\/commix\/"
1636 },
1637
1638 {
1639 value: "Community and Support",
1640 url:"http:\/\/www.kali.org\/community\/"
1641 },
1642
1643 {
1644 value: "Configuring the Kernel - General",
1645 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kernel-2-config-1\/"
1646 },
1647
1648 {
1649 value: "Configuring the Kernel - Network",
1650 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kernel-3-config-2\/"
1651 },
1652
1653 {
1654 value: "Configuring the Kernel - SDR",
1655 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kernel-5-config-4\/"
1656 },
1657
1658 {
1659 value: "Configuring the Kernel - USB",
1660 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kernel-6-config-5\/"
1661 },
1662
1663 {
1664 value: "Configuring the Kernel - Wifi",
1665 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kernel-4-config-3\/"
1666 },
1667
1668 {
1669 value: "Configuring Yubikeys for SSH Authentication",
1670 url:"http:\/\/www.kali.org\/docs\/general-use\/configuring-yubikeys-for-ssh-authentication\/"
1671 },
1672
1673 {
1674 value: "Contact Us",
1675 url:"http:\/\/www.kali.org\/contact\/"
1676 },
1677
1678 {
1679 value: "Contribute to Kali",
1680 url:"http:\/\/www.kali.org\/docs\/community\/contribute\/"
1681 },
1682
1683 {
1684 value: "Cookie Policy",
1685 url:"http:\/\/www.kali.org\/docs\/policy\/cookie\/"
1686 },
1687
1688 {
1689 value: "copy-router-config",
1690 url:"http:\/\/www.kali.org\/tools\/copy-router-config\/"
1691 },
1692
1693 {
1694 value: "covenant-kbx",
1695 url:"http:\/\/www.kali.org\/tools\/covenant-kbx\/"
1696 },
1697
1698 {
1699 value: "cowpatty",
1700 url:"http:\/\/www.kali.org\/tools\/cowpatty\/"
1701 },
1702
1703 {
1704 value: "crack",
1705 url:"http:\/\/www.kali.org\/tools\/crack\/"
1706 },
1707
1708 {
1709 value: "crackle",
1710 url:"http:\/\/www.kali.org\/tools\/crackle\/"
1711 },
1712
1713 {
1714 value: "crackmapexec",
1715 url:"http:\/\/www.kali.org\/tools\/crackmapexec\/"
1716 },
1717
1718 {
1719 value: "creddump7",
1720 url:"http:\/\/www.kali.org\/tools\/creddump7\/"
1721 },
1722
1723 {
1724 value: "crowbar",
1725 url:"http:\/\/www.kali.org\/tools\/crowbar\/"
1726 },
1727
1728 {
1729 value: "crunch",
1730 url:"http:\/\/www.kali.org\/tools\/crunch\/"
1731 },
1732
1733 {
1734 value: "cryptcat",
1735 url:"http:\/\/www.kali.org\/tools\/cryptcat\/"
1736 },
1737
1738 {
1739 value: "cryptsetup",
1740 url:"http:\/\/www.kali.org\/tools\/cryptsetup\/"
1741 },
1742
1743 {
1744 value: "cryptsetup-nuke-password",
1745 url:"http:\/\/www.kali.org\/tools\/cryptsetup-nuke-password\/"
1746 },
1747
1748 {
1749 value: "CubieBoard2",
1750 url:"http:\/\/www.kali.org\/docs\/arm\/cubieboard2\/"
1751 },
1752
1753 {
1754 value: "CubieTruck (CubieBoard3)",
1755 url:"http:\/\/www.kali.org\/docs\/arm\/cubietruck\/"
1756 },
1757
1758 {
1759 value: "CuBox",
1760 url:"http:\/\/www.kali.org\/docs\/arm\/cubox\/"
1761 },
1762
1763 {
1764 value: "CuBox-i4Pro",
1765 url:"http:\/\/www.kali.org\/docs\/arm\/cubox-i4pro\/"
1766 },
1767
1768 {
1769 value: "curlftpfs",
1770 url:"http:\/\/www.kali.org\/tools\/curlftpfs\/"
1771 },
1772
1773 {
1774 value: "Custom Beaglebone Black Image",
1775 url:"http:\/\/www.kali.org\/docs\/development\/custom-beaglebone-black-image\/"
1776 },
1777
1778 {
1779 value: "Custom Chromebook Image",
1780 url:"http:\/\/www.kali.org\/docs\/development\/custom-chromebook-kernel-image\/"
1781 },
1782
1783 {
1784 value: "Custom CuBox Image",
1785 url:"http:\/\/www.kali.org\/docs\/development\/custom-cubox-image\/"
1786 },
1787
1788 {
1789 value: "Custom EfikaMX Image",
1790 url:"http:\/\/www.kali.org\/docs\/development\/custom-efikamx-image\/"
1791 },
1792
1793 {
1794 value: "Custom MK\/SS808 Image",
1795 url:"http:\/\/www.kali.org\/docs\/development\/custom-kali-arm-ss808-image\/"
1796 },
1797
1798 {
1799 value: "Custom ODROID X2 U2 Image",
1800 url:"http:\/\/www.kali.org\/docs\/development\/custom-odroid-kernel-image\/"
1801 },
1802
1803 {
1804 value: "Custom Raspberry Pi Image",
1805 url:"http:\/\/www.kali.org\/docs\/development\/custom-raspberry-pi-image\/"
1806 },
1807
1808 {
1809 value: "cutecom",
1810 url:"http:\/\/www.kali.org\/tools\/cutecom\/"
1811 },
1812
1813 {
1814 value: "cutycapt",
1815 url:"http:\/\/www.kali.org\/tools\/cutycapt\/"
1816 },
1817
1818 {
1819 value: "cymothoa",
1820 url:"http:\/\/www.kali.org\/tools\/cymothoa\/"
1821 },
1822
1823 {
1824 value: "darkstat",
1825 url:"http:\/\/www.kali.org\/tools\/darkstat\/"
1826 },
1827
1828 {
1829 value: "davtest",
1830 url:"http:\/\/www.kali.org\/tools\/davtest\/"
1831 },
1832
1833 {
1834 value: "dbd",
1835 url:"http:\/\/www.kali.org\/tools\/dbd\/"
1836 },
1837
1838 {
1839 value: "dbeaver",
1840 url:"http:\/\/www.kali.org\/tools\/dbeaver\/"
1841 },
1842
1843 {
1844 value: "dc3dd",
1845 url:"http:\/\/www.kali.org\/tools\/dc3dd\/"
1846 },
1847
1848 {
1849 value: "dcfldd",
1850 url:"http:\/\/www.kali.org\/tools\/dcfldd\/"
1851 },
1852
1853 {
1854 value: "ddrescue",
1855 url:"http:\/\/www.kali.org\/tools\/ddrescue\/"
1856 },
1857
1858 {
1859 value: "de4dot",
1860 url:"http:\/\/www.kali.org\/tools\/de4dot\/"
1861 },
1862
1863 {
1864 value: "dex2jar",
1865 url:"http:\/\/www.kali.org\/tools\/dex2jar\/"
1866 },
1867
1868 {
1869 value: "dfdatetime",
1870 url:"http:\/\/www.kali.org\/tools\/dfdatetime\/"
1871 },
1872
1873 {
1874 value: "dfvfs",
1875 url:"http:\/\/www.kali.org\/tools\/dfvfs\/"
1876 },
1877
1878 {
1879 value: "dfwinreg",
1880 url:"http:\/\/www.kali.org\/tools\/dfwinreg\/"
1881 },
1882
1883 {
1884 value: "dhcpig",
1885 url:"http:\/\/www.kali.org\/tools\/dhcpig\/"
1886 },
1887
1888 {
1889 value: "Digital Ocean",
1890 url:"http:\/\/www.kali.org\/docs\/cloud\/digitalocean\/"
1891 },
1892
1893 {
1894 value: "dirb",
1895 url:"http:\/\/www.kali.org\/tools\/dirb\/"
1896 },
1897
1898 {
1899 value: "dirbuster",
1900 url:"http:\/\/www.kali.org\/tools\/dirbuster\/"
1901 },
1902
1903 {
1904 value: "dirsearch",
1905 url:"http:\/\/www.kali.org\/tools\/dirsearch\/"
1906 },
1907
1908 {
1909 value: "dislocker",
1910 url:"http:\/\/www.kali.org\/tools\/dislocker\/"
1911 },
1912
1913 {
1914 value: "distorm3",
1915 url:"http:\/\/www.kali.org\/tools\/distorm3\/"
1916 },
1917
1918 {
1919 value: "dmitry",
1920 url:"http:\/\/www.kali.org\/tools\/dmitry\/"
1921 },
1922
1923 {
1924 value: "dns2tcp",
1925 url:"http:\/\/www.kali.org\/tools\/dns2tcp\/"
1926 },
1927
1928 {
1929 value: "dnscat2",
1930 url:"http:\/\/www.kali.org\/tools\/dnscat2\/"
1931 },
1932
1933 {
1934 value: "dnschef",
1935 url:"http:\/\/www.kali.org\/tools\/dnschef\/"
1936 },
1937
1938 {
1939 value: "dnsenum",
1940 url:"http:\/\/www.kali.org\/tools\/dnsenum\/"
1941 },
1942
1943 {
1944 value: "dnsgen",
1945 url:"http:\/\/www.kali.org\/tools\/dnsgen\/"
1946 },
1947
1948 {
1949 value: "dnsmap",
1950 url:"http:\/\/www.kali.org\/tools\/dnsmap\/"
1951 },
1952
1953 {
1954 value: "dnsrecon",
1955 url:"http:\/\/www.kali.org\/tools\/dnsrecon\/"
1956 },
1957
1958 {
1959 value: "dnstracer",
1960 url:"http:\/\/www.kali.org\/tools\/dnstracer\/"
1961 },
1962
1963 {
1964 value: "dnstwist",
1965 url:"http:\/\/www.kali.org\/tools\/dnstwist\/"
1966 },
1967
1968 {
1969 value: "dnswalk",
1970 url:"http:\/\/www.kali.org\/tools\/dnswalk\/"
1971 },
1972
1973 {
1974 value: "doona",
1975 url:"http:\/\/www.kali.org\/tools\/doona\/"
1976 },
1977
1978 {
1979 value: "dos2unix",
1980 url:"http:\/\/www.kali.org\/tools\/dos2unix\/"
1981 },
1982
1983 {
1984 value: "dotdotpwn",
1985 url:"http:\/\/www.kali.org\/tools\/dotdotpwn\/"
1986 },
1987
1988 {
1989 value: "dradis",
1990 url:"http:\/\/www.kali.org\/tools\/dradis\/"
1991 },
1992
1993 {
1994 value: "driftnet",
1995 url:"http:\/\/www.kali.org\/tools\/driftnet\/"
1996 },
1997
1998 {
1999 value: "dsniff",
2000 url:"http:\/\/www.kali.org\/tools\/dsniff\/"
2001 },
2002
2003 {
2004 value: "dumpsterdiver",
2005 url:"http:\/\/www.kali.org\/tools\/dumpsterdiver\/"
2006 },
2007
2008 {
2009 value: "dumpzilla",
2010 url:"http:\/\/www.kali.org\/tools\/dumpzilla\/"
2011 },
2012
2013 {
2014 value: "eaphammer",
2015 url:"http:\/\/www.kali.org\/tools\/eaphammer\/"
2016 },
2017
2018 {
2019 value: "eapmd5pass",
2020 url:"http:\/\/www.kali.org\/tools\/eapmd5pass\/"
2021 },
2022
2023 {
2024 value: "edb-debugger",
2025 url:"http:\/\/www.kali.org\/tools\/edb-debugger\/"
2026 },
2027
2028 {
2029 value: "emailharvester",
2030 url:"http:\/\/www.kali.org\/tools\/emailharvester\/"
2031 },
2032
2033 {
2034 value: "enum4linux",
2035 url:"http:\/\/www.kali.org\/tools\/enum4linux\/"
2036 },
2037
2038 {
2039 value: "enumiax",
2040 url:"http:\/\/www.kali.org\/tools\/enumiax\/"
2041 },
2042
2043 {
2044 value: "ethtool",
2045 url:"http:\/\/www.kali.org\/tools\/ethtool\/"
2046 },
2047
2048 {
2049 value: "ettercap",
2050 url:"http:\/\/www.kali.org\/tools\/ettercap\/"
2051 },
2052
2053 {
2054 value: "evil-ssdp",
2055 url:"http:\/\/www.kali.org\/tools\/evil-ssdp\/"
2056 },
2057
2058 {
2059 value: "exe2hexbat",
2060 url:"http:\/\/www.kali.org\/tools\/exe2hexbat\/"
2061 },
2062
2063 {
2064 value: "exifprobe",
2065 url:"http:\/\/www.kali.org\/tools\/exifprobe\/"
2066 },
2067
2068 {
2069 value: "exiv2",
2070 url:"http:\/\/www.kali.org\/tools\/exiv2\/"
2071 },
2072
2073 {
2074 value: "expect",
2075 url:"http:\/\/www.kali.org\/tools\/expect\/"
2076 },
2077
2078 {
2079 value: "exploitdb",
2080 url:"http:\/\/www.kali.org\/tools\/exploitdb\/"
2081 },
2082
2083 {
2084 value: "exploitdb-bin-sploits",
2085 url:"http:\/\/www.kali.org\/tools\/exploitdb-bin-sploits\/"
2086 },
2087
2088 {
2089 value: "exploitdb-papers",
2090 url:"http:\/\/www.kali.org\/tools\/exploitdb-papers\/"
2091 },
2092
2093 {
2094 value: "ext3grep",
2095 url:"http:\/\/www.kali.org\/tools\/ext3grep\/"
2096 },
2097
2098 {
2099 value: "ext4magic",
2100 url:"http:\/\/www.kali.org\/tools\/ext4magic\/"
2101 },
2102
2103 {
2104 value: "extundelete",
2105 url:"http:\/\/www.kali.org\/tools\/extundelete\/"
2106 },
2107
2108 {
2109 value: "eyewitness",
2110 url:"http:\/\/www.kali.org\/tools\/eyewitness\/"
2111 },
2112
2113 {
2114 value: "fake-hwclock",
2115 url:"http:\/\/www.kali.org\/tools\/fake-hwclock\/"
2116 },
2117
2118 {
2119 value: "fcrackzip",
2120 url:"http:\/\/www.kali.org\/tools\/fcrackzip\/"
2121 },
2122
2123 {
2124 value: "Features",
2125 url:"http:\/\/www.kali.org\/features\/"
2126 },
2127
2128 {
2129 value: "fern-wifi-cracker",
2130 url:"http:\/\/www.kali.org\/tools\/fern-wifi-cracker\/"
2131 },
2132
2133 {
2134 value: "feroxbuster",
2135 url:"http:\/\/www.kali.org\/tools\/feroxbuster\/"
2136 },
2137
2138 {
2139 value: "ffuf",
2140 url:"http:\/\/www.kali.org\/tools\/ffuf\/"
2141 },
2142
2143 {
2144 value: "fierce",
2145 url:"http:\/\/www.kali.org\/tools\/fierce\/"
2146 },
2147
2148 {
2149 value: "fiked",
2150 url:"http:\/\/www.kali.org\/tools\/fiked\/"
2151 },
2152
2153 {
2154 value: "finalrecon",
2155 url:"http:\/\/www.kali.org\/tools\/finalrecon\/"
2156 },
2157
2158 {
2159 value: "firefox-developer-edition-kbx",
2160 url:"http:\/\/www.kali.org\/tools\/firefox-developer-edition-kbx\/"
2161 },
2162
2163 {
2164 value: "firewalk",
2165 url:"http:\/\/www.kali.org\/tools\/firewalk\/"
2166 },
2167
2168 {
2169 value: "firmware-mod-kit",
2170 url:"http:\/\/www.kali.org\/tools\/firmware-mod-kit\/"
2171 },
2172
2173 {
2174 value: "firmware-sof",
2175 url:"http:\/\/www.kali.org\/tools\/firmware-sof\/"
2176 },
2177
2178 {
2179 value: "flashrom",
2180 url:"http:\/\/www.kali.org\/tools\/flashrom\/"
2181 },
2182
2183 {
2184 value: "foremost",
2185 url:"http:\/\/www.kali.org\/tools\/foremost\/"
2186 },
2187
2188 {
2189 value: "forensic-artifacts",
2190 url:"http:\/\/www.kali.org\/tools\/forensic-artifacts\/"
2191 },
2192
2193 {
2194 value: "forensics-colorize",
2195 url:"http:\/\/www.kali.org\/tools\/forensics-colorize\/"
2196 },
2197
2198 {
2199 value: "fping",
2200 url:"http:\/\/www.kali.org\/tools\/fping\/"
2201 },
2202
2203 {
2204 value: "fragrouter",
2205 url:"http:\/\/www.kali.org\/tools\/fragrouter\/"
2206 },
2207
2208 {
2209 value: "framework2",
2210 url:"http:\/\/www.kali.org\/tools\/framework2\/"
2211 },
2212
2213 {
2214 value: "freeradius",
2215 url:"http:\/\/www.kali.org\/tools\/freeradius\/"
2216 },
2217
2218 {
2219 value: "freeradius-wpe",
2220 url:"http:\/\/www.kali.org\/tools\/freeradius-wpe\/"
2221 },
2222
2223 {
2224 value: "freerdp2",
2225 url:"http:\/\/www.kali.org\/tools\/freerdp2\/"
2226 },
2227
2228 {
2229 value: "ftester",
2230 url:"http:\/\/www.kali.org\/tools\/ftester\/"
2231 },
2232
2233 {
2234 value: "galleta",
2235 url:"http:\/\/www.kali.org\/tools\/galleta\/"
2236 },
2237
2238 {
2239 value: "Gateworks Newport",
2240 url:"http:\/\/www.kali.org\/docs\/arm\/gateworks-newport\/"
2241 },
2242
2243 {
2244 value: "Gateworks Ventana",
2245 url:"http:\/\/www.kali.org\/docs\/arm\/gateworks-ventana\/"
2246 },
2247
2248 {
2249 value: "gdb",
2250 url:"http:\/\/www.kali.org\/tools\/gdb\/"
2251 },
2252
2253 {
2254 value: "gdisk",
2255 url:"http:\/\/www.kali.org\/tools\/gdisk\/"
2256 },
2257
2258 {
2259 value: "Get Kali",
2260 url:"http:\/\/www.kali.org\/get-kali\/"
2261 },
2262
2263 {
2264 value: "Get Kali",
2265 url:"http:\/\/www.kali.org\/kali-nethunter\/"
2266 },
2267
2268 {
2269 value: "getallurls",
2270 url:"http:\/\/www.kali.org\/tools\/getallurls\/"
2271 },
2272
2273 {
2274 value: "ghidra",
2275 url:"http:\/\/www.kali.org\/tools\/ghidra\/"
2276 },
2277
2278 {
2279 value: "git",
2280 url:"http:\/\/www.kali.org\/tools\/git\/"
2281 },
2282
2283 {
2284 value: "gitleaks",
2285 url:"http:\/\/www.kali.org\/tools\/gitleaks\/"
2286 },
2287
2288 {
2289 value: "gnuradio",
2290 url:"http:\/\/www.kali.org\/tools\/gnuradio\/"
2291 },
2292
2293 {
2294 value: "gobuster",
2295 url:"http:\/\/www.kali.org\/tools\/gobuster\/"
2296 },
2297
2298 {
2299 value: "godoh",
2300 url:"http:\/\/www.kali.org\/tools\/godoh\/"
2301 },
2302
2303 {
2304 value: "golang-github-binject-go-donut",
2305 url:"http:\/\/www.kali.org\/tools\/golang-github-binject-go-donut\/"
2306 },
2307
2308 {
2309 value: "goldeneye",
2310 url:"http:\/\/www.kali.org\/tools\/goldeneye\/"
2311 },
2312
2313 {
2314 value: "goofile",
2315 url:"http:\/\/www.kali.org\/tools\/goofile\/"
2316 },
2317
2318 {
2319 value: "gospider",
2320 url:"http:\/\/www.kali.org\/tools\/gospider\/"
2321 },
2322
2323 {
2324 value: "gpart",
2325 url:"http:\/\/www.kali.org\/tools\/gpart\/"
2326 },
2327
2328 {
2329 value: "gparted",
2330 url:"http:\/\/www.kali.org\/tools\/gparted\/"
2331 },
2332
2333 {
2334 value: "gpp-decrypt",
2335 url:"http:\/\/www.kali.org\/tools\/gpp-decrypt\/"
2336 },
2337
2338 {
2339 value: "gqrx-sdr",
2340 url:"http:\/\/www.kali.org\/tools\/gqrx-sdr\/"
2341 },
2342
2343 {
2344 value: "gr-air-modes",
2345 url:"http:\/\/www.kali.org\/tools\/gr-air-modes\/"
2346 },
2347
2348 {
2349 value: "gr-iqbal",
2350 url:"http:\/\/www.kali.org\/tools\/gr-iqbal\/"
2351 },
2352
2353 {
2354 value: "gr-osmosdr",
2355 url:"http:\/\/www.kali.org\/tools\/gr-osmosdr\/"
2356 },
2357
2358 {
2359 value: "grokevt",
2360 url:"http:\/\/www.kali.org\/tools\/grokevt\/"
2361 },
2362
2363 {
2364 value: "gss-ntlmssp",
2365 url:"http:\/\/www.kali.org\/tools\/gss-ntlmssp\/"
2366 },
2367
2368 {
2369 value: "guymager",
2370 url:"http:\/\/www.kali.org\/tools\/guymager\/"
2371 },
2372
2373 {
2374 value: "gvm",
2375 url:"http:\/\/www.kali.org\/tools\/gvm\/"
2376 },
2377
2378 {
2379 value: "hackrf",
2380 url:"http:\/\/www.kali.org\/tools\/hackrf\/"
2381 },
2382
2383 {
2384 value: "hamster-sidejack",
2385 url:"http:\/\/www.kali.org\/tools\/hamster-sidejack\/"
2386 },
2387
2388 {
2389 value: "hash-identifier",
2390 url:"http:\/\/www.kali.org\/tools\/hash-identifier\/"
2391 },
2392
2393 {
2394 value: "hashcat",
2395 url:"http:\/\/www.kali.org\/tools\/hashcat\/"
2396 },
2397
2398 {
2399 value: "hashcat-utils",
2400 url:"http:\/\/www.kali.org\/tools\/hashcat-utils\/"
2401 },
2402
2403 {
2404 value: "hashdeep",
2405 url:"http:\/\/www.kali.org\/tools\/hashdeep\/"
2406 },
2407
2408 {
2409 value: "hashid",
2410 url:"http:\/\/www.kali.org\/tools\/hashid\/"
2411 },
2412
2413 {
2414 value: "hashrat",
2415 url:"http:\/\/www.kali.org\/tools\/hashrat\/"
2416 },
2417
2418 {
2419 value: "hb-honeypot",
2420 url:"http:\/\/www.kali.org\/tools\/hb-honeypot\/"
2421 },
2422
2423 {
2424 value: "hcxtools",
2425 url:"http:\/\/www.kali.org\/tools\/hcxtools\/"
2426 },
2427
2428 {
2429 value: "heartleech",
2430 url:"http:\/\/www.kali.org\/tools\/heartleech\/"
2431 },
2432
2433 {
2434 value: "hexinject",
2435 url:"http:\/\/www.kali.org\/tools\/hexinject\/"
2436 },
2437
2438 {
2439 value: "hivex",
2440 url:"http:\/\/www.kali.org\/tools\/hivex\/"
2441 },
2442
2443 {
2444 value: "hostapd-mana",
2445 url:"http:\/\/www.kali.org\/tools\/hostapd-mana\/"
2446 },
2447
2448 {
2449 value: "hostapd-wpe",
2450 url:"http:\/\/www.kali.org\/tools\/hostapd-wpe\/"
2451 },
2452
2453 {
2454 value: "hosthunter",
2455 url:"http:\/\/www.kali.org\/tools\/hosthunter\/"
2456 },
2457
2458 {
2459 value: "hotpatch",
2460 url:"http:\/\/www.kali.org\/tools\/hotpatch\/"
2461 },
2462
2463 {
2464 value: "How And Where To Get Help",
2465 url:"http:\/\/www.kali.org\/docs\/community\/getting-help\/"
2466 },
2467
2468 {
2469 value: "How GitLab helped Kali Linux attract a growing number of community contributions",
2470 url:"http:\/\/www.kali.org\/blog\/_external\/gitlab\/"
2471 },
2472
2473 {
2474 value: "HP ARM Chromebook (daisy_spring)",
2475 url:"http:\/\/www.kali.org\/docs\/arm\/hp-chromebook\/"
2476 },
2477
2478 {
2479 value: "hping3",
2480 url:"http:\/\/www.kali.org\/tools\/hping3\/"
2481 },
2482
2483 {
2484 value: "htshells",
2485 url:"http:\/\/www.kali.org\/tools\/htshells\/"
2486 },
2487
2488 {
2489 value: "httprint",
2490 url:"http:\/\/www.kali.org\/tools\/httprint\/"
2491 },
2492
2493 {
2494 value: "httprobe",
2495 url:"http:\/\/www.kali.org\/tools\/httprobe\/"
2496 },
2497
2498 {
2499 value: "httrack",
2500 url:"http:\/\/www.kali.org\/tools\/httrack\/"
2501 },
2502
2503 {
2504 value: "hurl",
2505 url:"http:\/\/www.kali.org\/tools\/hurl\/"
2506 },
2507
2508 {
2509 value: "hydra",
2510 url:"http:\/\/www.kali.org\/tools\/hydra\/"
2511 },
2512
2513 {
2514 value: "hyperion",
2515 url:"http:\/\/www.kali.org\/tools\/hyperion\/"
2516 },
2517
2518 {
2519 value: "i.MX 6ULL EVK",
2520 url:"http:\/\/www.kali.org\/docs\/arm\/imx-6ull-evk\/"
2521 },
2522
2523 {
2524 value: "i2c-tools",
2525 url:"http:\/\/www.kali.org\/tools\/i2c-tools\/"
2526 },
2527
2528 {
2529 value: "iaxflood",
2530 url:"http:\/\/www.kali.org\/tools\/iaxflood\/"
2531 },
2532
2533 {
2534 value: "ibombshell",
2535 url:"http:\/\/www.kali.org\/tools\/ibombshell\/"
2536 },
2537
2538 {
2539 value: "ident-user-enum",
2540 url:"http:\/\/www.kali.org\/tools\/ident-user-enum\/"
2541 },
2542
2543 {
2544 value: "ifenslave",
2545 url:"http:\/\/www.kali.org\/tools\/ifenslave\/"
2546 },
2547
2548 {
2549 value: "ike-scan",
2550 url:"http:\/\/www.kali.org\/tools\/ike-scan\/"
2551 },
2552
2553 {
2554 value: "impacket",
2555 url:"http:\/\/www.kali.org\/tools\/impacket\/"
2556 },
2557
2558 {
2559 value: "impacket-scripts",
2560 url:"http:\/\/www.kali.org\/tools\/impacket-scripts\/"
2561 },
2562
2563 {
2564 value: "inetsim",
2565 url:"http:\/\/www.kali.org\/tools\/inetsim\/"
2566 },
2567
2568 {
2569 value: "initramfs-tools",
2570 url:"http:\/\/www.kali.org\/tools\/initramfs-tools\/"
2571 },
2572
2573 {
2574 value: "inspectrum",
2575 url:"http:\/\/www.kali.org\/tools\/inspectrum\/"
2576 },
2577
2578 {
2579 value: "inspy",
2580 url:"http:\/\/www.kali.org\/tools\/inspy\/"
2581 },
2582
2583 {
2584 value: "Installing Docker on Kali Linux",
2585 url:"http:\/\/www.kali.org\/docs\/containers\/installing-docker-on-kali\/"
2586 },
2587
2588 {
2589 value: "Installing Flatpak on Kali Linux",
2590 url:"http:\/\/www.kali.org\/docs\/tools\/flatpak\/"
2591 },
2592
2593 {
2594 value: "Installing NetHunter",
2595 url:"http:\/\/www.kali.org\/docs\/nethunter\/installing-nethunter\/"
2596 },
2597
2598 {
2599 value: "Installing NetHunter On the Gemini PDA",
2600 url:"http:\/\/www.kali.org\/docs\/nethunter\/installing-nethunter-on-the-gemini-pda\/"
2601 },
2602
2603 {
2604 value: "Installing NetHunter On the OnePlus 7",
2605 url:"http:\/\/www.kali.org\/docs\/nethunter\/installing-nethunter-on-the-oneplus-7\/"
2606 },
2607
2608 {
2609 value: "Installing NetHunter On the TicWatch Pro",
2610 url:"http:\/\/www.kali.org\/docs\/nethunter\/installing-nethunter-on-the-ticwatch-pro\/"
2611 },
2612
2613 {
2614 value: "Installing snapd on Kali Linux",
2615 url:"http:\/\/www.kali.org\/docs\/tools\/snap\/"
2616 },
2617
2618 {
2619 value: "Installing Tor Browser on Kali Linux",
2620 url:"http:\/\/www.kali.org\/docs\/tools\/tor\/"
2621 },
2622
2623 {
2624 value: "instaloader",
2625 url:"http:\/\/www.kali.org\/tools\/instaloader\/"
2626 },
2627
2628 {
2629 value: "intrace",
2630 url:"http:\/\/www.kali.org\/tools\/intrace\/"
2631 },
2632
2633 {
2634 value: "inviteflood",
2635 url:"http:\/\/www.kali.org\/tools\/inviteflood\/"
2636 },
2637
2638 {
2639 value: "iodine",
2640 url:"http:\/\/www.kali.org\/tools\/iodine\/"
2641 },
2642
2643 {
2644 value: "ipv6-toolkit",
2645 url:"http:\/\/www.kali.org\/tools\/ipv6-toolkit\/"
2646 },
2647
2648 {
2649 value: "irpas",
2650 url:"http:\/\/www.kali.org\/tools\/irpas\/"
2651 },
2652
2653 {
2654 value: "ismtp",
2655 url:"http:\/\/www.kali.org\/tools\/ismtp\/"
2656 },
2657
2658 {
2659 value: "isr-evilgrade",
2660 url:"http:\/\/www.kali.org\/tools\/isr-evilgrade\/"
2661 },
2662
2663 {
2664 value: "ivre",
2665 url:"http:\/\/www.kali.org\/tools\/ivre\/"
2666 },
2667
2668 {
2669 value: "iw",
2670 url:"http:\/\/www.kali.org\/tools\/iw\/"
2671 },
2672
2673 {
2674 value: "jadx",
2675 url:"http:\/\/www.kali.org\/tools\/jadx\/"
2676 },
2677
2678 {
2679 value: "javasnoop",
2680 url:"http:\/\/www.kali.org\/tools\/javasnoop\/"
2681 },
2682
2683 {
2684 value: "jboss-autopwn",
2685 url:"http:\/\/www.kali.org\/tools\/jboss-autopwn\/"
2686 },
2687
2688 {
2689 value: "jd-gui",
2690 url:"http:\/\/www.kali.org\/tools\/jd-gui\/"
2691 },
2692
2693 {
2694 value: "john",
2695 url:"http:\/\/www.kali.org\/tools\/john\/"
2696 },
2697
2698 {
2699 value: "johnny",
2700 url:"http:\/\/www.kali.org\/tools\/johnny\/"
2701 },
2702
2703 {
2704 value: "joomscan",
2705 url:"http:\/\/www.kali.org\/tools\/joomscan\/"
2706 },
2707
2708 {
2709 value: "joplin",
2710 url:"http:\/\/www.kali.org\/tools\/joplin\/"
2711 },
2712
2713 {
2714 value: "jsql",
2715 url:"http:\/\/www.kali.org\/tools\/jsql\/"
2716 },
2717
2718 {
2719 value: "Kali In The Browser (Guacamole)",
2720 url:"http:\/\/www.kali.org\/docs\/general-use\/guacamole-kali-in-browser\/"
2721 },
2722
2723 {
2724 value: "Kali In The Browser (noVNC)",
2725 url:"http:\/\/www.kali.org\/docs\/general-use\/novnc-kali-in-browser\/"
2726 },
2727
2728 {
2729 value: "Kali Linux Community Forums",
2730 url:"http:\/\/www.kali.org\/docs\/community\/kali-linux-community-forums\/"
2731 },
2732
2733 {
2734 value: "Kali Linux EULA",
2735 url:"http:\/\/www.kali.org\/docs\/policy\/eula\/"
2736 },
2737
2738 {
2739 value: "Kali Linux Forensics Mode",
2740 url:"http:\/\/www.kali.org\/docs\/general-use\/kali-linux-forensics-mode\/"
2741 },
2742
2743 {
2744 value: "Kali Linux IRC Channel",
2745 url:"http:\/\/www.kali.org\/docs\/community\/kali-linux-irc-channel\/"
2746 },
2747
2748 {
2749 value: "Kali Linux LXC\/LXD Images",
2750 url:"http:\/\/www.kali.org\/docs\/containers\/kalilinux-lxc-images\/"
2751 },
2752
2753 {
2754 value: "Kali Linux Network Service Policy",
2755 url:"http:\/\/www.kali.org\/docs\/policy\/kali-linux-network-service-policy\/"
2756 },
2757
2758 {
2759 value: "Kali Linux Open Source Policy",
2760 url:"http:\/\/www.kali.org\/docs\/policy\/kali-linux-open-source-policy\/"
2761 },
2762
2763 {
2764 value: "Kali Linux Trademark Policy",
2765 url:"http:\/\/www.kali.org\/docs\/policy\/trademark\/"
2766 },
2767
2768 {
2769 value: "Kali Linux Update Policies",
2770 url:"http:\/\/www.kali.org\/docs\/policy\/kali-linux-security-update-policies\/"
2771 },
2772
2773 {
2774 value: "Kali Linux User Policy",
2775 url:"http:\/\/www.kali.org\/docs\/policy\/kali-linux-user-policy\/"
2776 },
2777
2778 {
2779 value: "Kali Newsletter",
2780 url:"http:\/\/www.kali.org\/newsletter\/"
2781 },
2782
2783 {
2784 value: "Kali Tools",
2785 url:"http:\/\/www.kali.org\/docs\/tools\/kali-tools\/"
2786 },
2787
2788 {
2789 value: "Kali Tools",
2790 url:"http:\/\/www.kali.org\/tools\/"
2791 },
2792
2793 {
2794 value: "Kali Training",
2795 url:"http:\/\/www.kali.org\/docs\/general-use\/kali-training\/"
2796 },
2797
2798 {
2799 value: "Kali\u0027s Domains",
2800 url:"http:\/\/www.kali.org\/docs\/general-use\/kali-domains\/"
2801 },
2802
2803 {
2804 value: "Kali\u0027s Relationship With Debian",
2805 url:"http:\/\/www.kali.org\/docs\/policy\/kali-linux-relationship-with-debian\/"
2806 },
2807
2808 {
2809 value: "kali-community-wallpapers",
2810 url:"http:\/\/www.kali.org\/tools\/kali-community-wallpapers\/"
2811 },
2812
2813 {
2814 value: "kali-defaults",
2815 url:"http:\/\/www.kali.org\/tools\/kali-defaults\/"
2816 },
2817
2818 {
2819 value: "kali-meta",
2820 url:"http:\/\/www.kali.org\/tools\/kali-meta\/"
2821 },
2822
2823 {
2824 value: "kali-tweaks",
2825 url:"http:\/\/www.kali.org\/tools\/kali-tweaks\/"
2826 },
2827
2828 {
2829 value: "kali-wallpapers",
2830 url:"http:\/\/www.kali.org\/tools\/kali-wallpapers\/"
2831 },
2832
2833 {
2834 value: "kalibrate-rtl",
2835 url:"http:\/\/www.kali.org\/tools\/kalibrate-rtl\/"
2836 },
2837
2838 {
2839 value: "king-phisher",
2840 url:"http:\/\/www.kali.org\/tools\/king-phisher\/"
2841 },
2842
2843 {
2844 value: "kismet",
2845 url:"http:\/\/www.kali.org\/tools\/kismet\/"
2846 },
2847
2848 {
2849 value: "knocker",
2850 url:"http:\/\/www.kali.org\/tools\/knocker\/"
2851 },
2852
2853 {
2854 value: "koadic",
2855 url:"http:\/\/www.kali.org\/tools\/koadic\/"
2856 },
2857
2858 {
2859 value: "laudanum",
2860 url:"http:\/\/www.kali.org\/tools\/laudanum\/"
2861 },
2862
2863 {
2864 value: "lbd",
2865 url:"http:\/\/www.kali.org\/tools\/lbd\/"
2866 },
2867
2868 {
2869 value: "legion",
2870 url:"http:\/\/www.kali.org\/tools\/legion\/"
2871 },
2872
2873 {
2874 value: "libewf",
2875 url:"http:\/\/www.kali.org\/tools\/libewf\/"
2876 },
2877
2878 {
2879 value: "libfindrtp",
2880 url:"http:\/\/www.kali.org\/tools\/libfindrtp\/"
2881 },
2882
2883 {
2884 value: "libfreefare",
2885 url:"http:\/\/www.kali.org\/tools\/libfreefare\/"
2886 },
2887
2888 {
2889 value: "libnfc",
2890 url:"http:\/\/www.kali.org\/tools\/libnfc\/"
2891 },
2892
2893 {
2894 value: "libpst",
2895 url:"http:\/\/www.kali.org\/tools\/libpst\/"
2896 },
2897
2898 {
2899 value: "linux-exploit-suggester",
2900 url:"http:\/\/www.kali.org\/tools\/linux-exploit-suggester\/"
2901 },
2902
2903 {
2904 value: "llvm-defaults",
2905 url:"http:\/\/www.kali.org\/tools\/llvm-defaults\/"
2906 },
2907
2908 {
2909 value: "lvm2",
2910 url:"http:\/\/www.kali.org\/tools\/lvm2\/"
2911 },
2912
2913 {
2914 value: "lynis",
2915 url:"http:\/\/www.kali.org\/tools\/lynis\/"
2916 },
2917
2918 {
2919 value: "mac-robber",
2920 url:"http:\/\/www.kali.org\/tools\/mac-robber\/"
2921 },
2922
2923 {
2924 value: "macchanger",
2925 url:"http:\/\/www.kali.org\/tools\/macchanger\/"
2926 },
2927
2928 {
2929 value: "magicrescue",
2930 url:"http:\/\/www.kali.org\/tools\/magicrescue\/"
2931 },
2932
2933 {
2934 value: "maltego",
2935 url:"http:\/\/www.kali.org\/tools\/maltego\/"
2936 },
2937
2938 {
2939 value: "maskprocessor",
2940 url:"http:\/\/www.kali.org\/tools\/maskprocessor\/"
2941 },
2942
2943 {
2944 value: "masscan",
2945 url:"http:\/\/www.kali.org\/tools\/masscan\/"
2946 },
2947
2948 {
2949 value: "massdns",
2950 url:"http:\/\/www.kali.org\/tools\/massdns\/"
2951 },
2952
2953 {
2954 value: "mc",
2955 url:"http:\/\/www.kali.org\/tools\/mc\/"
2956 },
2957
2958 {
2959 value: "mdbtools",
2960 url:"http:\/\/www.kali.org\/tools\/mdbtools\/"
2961 },
2962
2963 {
2964 value: "mdk3",
2965 url:"http:\/\/www.kali.org\/tools\/mdk3\/"
2966 },
2967
2968 {
2969 value: "mdk4",
2970 url:"http:\/\/www.kali.org\/tools\/mdk4\/"
2971 },
2972
2973 {
2974 value: "medusa",
2975 url:"http:\/\/www.kali.org\/tools\/medusa\/"
2976 },
2977
2978 {
2979 value: "Meet The Kali Team",
2980 url:"http:\/\/www.kali.org\/about-us\/"
2981 },
2982
2983 {
2984 value: "memdump",
2985 url:"http:\/\/www.kali.org\/tools\/memdump\/"
2986 },
2987
2988 {
2989 value: "mercurial",
2990 url:"http:\/\/www.kali.org\/tools\/mercurial\/"
2991 },
2992
2993 {
2994 value: "metacam",
2995 url:"http:\/\/www.kali.org\/tools\/metacam\/"
2996 },
2997
2998 {
2999 value: "metagoofil",
3000 url:"http:\/\/www.kali.org\/tools\/metagoofil\/"
3001 },
3002
3003 {
3004 value: "Metasploit Framework",
3005 url:"http:\/\/www.kali.org\/docs\/tools\/starting-metasploit-framework-in-kali\/"
3006 },
3007
3008 {
3009 value: "metasploit-framework",
3010 url:"http:\/\/www.kali.org\/tools\/metasploit-framework\/"
3011 },
3012
3013 {
3014 value: "mfcuk",
3015 url:"http:\/\/www.kali.org\/tools\/mfcuk\/"
3016 },
3017
3018 {
3019 value: "mfoc",
3020 url:"http:\/\/www.kali.org\/tools\/mfoc\/"
3021 },
3022
3023 {
3024 value: "mfterm",
3025 url:"http:\/\/www.kali.org\/tools\/mfterm\/"
3026 },
3027
3028 {
3029 value: "mimikatz",
3030 url:"http:\/\/www.kali.org\/tools\/mimikatz\/"
3031 },
3032
3033 {
3034 value: "Mini-X",
3035 url:"http:\/\/www.kali.org\/docs\/arm\/mini-x\/"
3036 },
3037
3038 {
3039 value: "minicom",
3040 url:"http:\/\/www.kali.org\/tools\/minicom\/"
3041 },
3042
3043 {
3044 value: "miredo",
3045 url:"http:\/\/www.kali.org\/tools\/miredo\/"
3046 },
3047
3048 {
3049 value: "missidentify",
3050 url:"http:\/\/www.kali.org\/tools\/missidentify\/"
3051 },
3052
3053 {
3054 value: "mitmproxy",
3055 url:"http:\/\/www.kali.org\/tools\/mitmproxy\/"
3056 },
3057
3058 {
3059 value: "msfpc",
3060 url:"http:\/\/www.kali.org\/tools\/msfpc\/"
3061 },
3062
3063 {
3064 value: "multimac",
3065 url:"http:\/\/www.kali.org\/tools\/multimac\/"
3066 },
3067
3068 {
3069 value: "multimon-ng",
3070 url:"http:\/\/www.kali.org\/tools\/multimon-ng\/"
3071 },
3072
3073 {
3074 value: "myrescue",
3075 url:"http:\/\/www.kali.org\/tools\/myrescue\/"
3076 },
3077
3078 {
3079 value: "mysql-defaults",
3080 url:"http:\/\/www.kali.org\/tools\/mysql-defaults\/"
3081 },
3082
3083 {
3084 value: "NanoPC-T3",
3085 url:"http:\/\/www.kali.org\/docs\/arm\/nanopc-t3\/"
3086 },
3087
3088 {
3089 value: "NanoPi NEO Plus2",
3090 url:"http:\/\/www.kali.org\/docs\/arm\/nanopi-neo-plus2\/"
3091 },
3092
3093 {
3094 value: "NanoPi2",
3095 url:"http:\/\/www.kali.org\/docs\/arm\/nanopi2\/"
3096 },
3097
3098 {
3099 value: "nasm",
3100 url:"http:\/\/www.kali.org\/tools\/nasm\/"
3101 },
3102
3103 {
3104 value: "nasty",
3105 url:"http:\/\/www.kali.org\/tools\/nasty\/"
3106 },
3107
3108 {
3109 value: "nbtscan",
3110 url:"http:\/\/www.kali.org\/tools\/nbtscan\/"
3111 },
3112
3113 {
3114 value: "nbtscan-unixwiz",
3115 url:"http:\/\/www.kali.org\/tools\/nbtscan-unixwiz\/"
3116 },
3117
3118 {
3119 value: "ncat-w32",
3120 url:"http:\/\/www.kali.org\/tools\/ncat-w32\/"
3121 },
3122
3123 {
3124 value: "ncrack",
3125 url:"http:\/\/www.kali.org\/tools\/ncrack\/"
3126 },
3127
3128 {
3129 value: "ncurses-hexedit",
3130 url:"http:\/\/www.kali.org\/tools\/ncurses-hexedit\/"
3131 },
3132
3133 {
3134 value: "net-snmp",
3135 url:"http:\/\/www.kali.org\/tools\/net-snmp\/"
3136 },
3137
3138 {
3139 value: "netbase",
3140 url:"http:\/\/www.kali.org\/tools\/netbase\/"
3141 },
3142
3143 {
3144 value: "netcat",
3145 url:"http:\/\/www.kali.org\/tools\/netcat\/"
3146 },
3147
3148 {
3149 value: "netdiscover",
3150 url:"http:\/\/www.kali.org\/tools\/netdiscover\/"
3151 },
3152
3153 {
3154 value: "NetHunter Application - Terminal",
3155 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-terminal\/"
3156 },
3157
3158 {
3159 value: "NetHunter BadUSB Attack",
3160 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-badusb\/"
3161 },
3162
3163 {
3164 value: "NetHunter Chroot Manager",
3165 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-chroot-manager\/"
3166 },
3167
3168 {
3169 value: "NetHunter Components",
3170 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-components\/"
3171 },
3172
3173 {
3174 value: "NetHunter Custom Commands",
3175 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-custom-commands\/"
3176 },
3177
3178 {
3179 value: "NetHunter DuckHunter Attacks",
3180 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-duckhunter\/"
3181 },
3182
3183 {
3184 value: "NetHunter Exploit Database SearchSploit",
3185 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-searchsploit\/"
3186 },
3187
3188 {
3189 value: "NetHunter HID Keyboard Attacks",
3190 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-hid-attacks\/"
3191 },
3192
3193 {
3194 value: "NetHunter Home Screen",
3195 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-home-screen\/"
3196 },
3197
3198 {
3199 value: "NetHunter Kali Services",
3200 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kali-services\/"
3201 },
3202
3203 {
3204 value: "NetHunter KeX Manager",
3205 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kex-manager\/"
3206 },
3207
3208 {
3209 value: "NetHunter MAC Changer",
3210 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-mac-changer\/"
3211 },
3212
3213 {
3214 value: "NetHunter Man In The Middle Framework",
3215 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-mitmf\/"
3216 },
3217
3218 {
3219 value: "NetHunter MANA Evil Access Point",
3220 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-mana-wireless\/"
3221 },
3222
3223 {
3224 value: "NetHunter Metasploit Payload Generator",
3225 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-mpg\/"
3226 },
3227
3228 {
3229 value: "NetHunter Nmap Scan",
3230 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-nmap\/"
3231 },
3232
3233 {
3234 value: "NetHunter Rootless",
3235 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-rootless\/"
3236 },
3237
3238 {
3239 value: "NetHunter USB-Arsenal",
3240 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-usbarsenal\/"
3241 },
3242
3243 {
3244 value: "netkit-ftp",
3245 url:"http:\/\/www.kali.org\/tools\/netkit-ftp\/"
3246 },
3247
3248 {
3249 value: "netkit-telnet",
3250 url:"http:\/\/www.kali.org\/tools\/netkit-telnet\/"
3251 },
3252
3253 {
3254 value: "netkit-tftp",
3255 url:"http:\/\/www.kali.org\/tools\/netkit-tftp\/"
3256 },
3257
3258 {
3259 value: "netmask",
3260 url:"http:\/\/www.kali.org\/tools\/netmask\/"
3261 },
3262
3263 {
3264 value: "netsed",
3265 url:"http:\/\/www.kali.org\/tools\/netsed\/"
3266 },
3267
3268 {
3269 value: "netsniff-ng",
3270 url:"http:\/\/www.kali.org\/tools\/netsniff-ng\/"
3271 },
3272
3273 {
3274 value: "netw-ib-ox-ag",
3275 url:"http:\/\/www.kali.org\/tools\/netw-ib-ox-ag\/"
3276 },
3277
3278 {
3279 value: "nextnet",
3280 url:"http:\/\/www.kali.org\/tools\/nextnet\/"
3281 },
3282
3283 {
3284 value: "nfs-utils",
3285 url:"http:\/\/www.kali.org\/tools\/nfs-utils\/"
3286 },
3287
3288 {
3289 value: "ngrep",
3290 url:"http:\/\/www.kali.org\/tools\/ngrep\/"
3291 },
3292
3293 {
3294 value: "nikto",
3295 url:"http:\/\/www.kali.org\/tools\/nikto\/"
3296 },
3297
3298 {
3299 value: "nipper-ng",
3300 url:"http:\/\/www.kali.org\/tools\/nipper-ng\/"
3301 },
3302
3303 {
3304 value: "nishang",
3305 url:"http:\/\/www.kali.org\/tools\/nishang\/"
3306 },
3307
3308 {
3309 value: "nmap",
3310 url:"http:\/\/www.kali.org\/tools\/nmap\/"
3311 },
3312
3313 {
3314 value: "nmapsi4",
3315 url:"http:\/\/www.kali.org\/tools\/nmapsi4\/"
3316 },
3317
3318 {
3319 value: "o-saft",
3320 url:"http:\/\/www.kali.org\/tools\/o-saft\/"
3321 },
3322
3323 {
3324 value: "oclgausscrack",
3325 url:"http:\/\/www.kali.org\/tools\/oclgausscrack\/"
3326 },
3327
3328 {
3329 value: "odat",
3330 url:"http:\/\/www.kali.org\/tools\/odat\/"
3331 },
3332
3333 {
3334 value: "ODROID-C0\/C1\/C1\u002b",
3335 url:"http:\/\/www.kali.org\/docs\/arm\/odroid-c\/"
3336 },
3337
3338 {
3339 value: "ODROID-C2",
3340 url:"http:\/\/www.kali.org\/docs\/arm\/odroid-c2\/"
3341 },
3342
3343 {
3344 value: "ODROID-U2\/U3",
3345 url:"http:\/\/www.kali.org\/docs\/arm\/odroid-u\/"
3346 },
3347
3348 {
3349 value: "ODROID-XU3",
3350 url:"http:\/\/www.kali.org\/docs\/arm\/odroid-xu3\/"
3351 },
3352
3353 {
3354 value: "Official Kali Linux Docker Images",
3355 url:"http:\/\/www.kali.org\/docs\/containers\/official-kalilinux-docker-images\/"
3356 },
3357
3358 {
3359 value: "Official Kali Linux Mirrors",
3360 url:"http:\/\/www.kali.org\/docs\/community\/kali-linux-mirrors\/"
3361 },
3362
3363 {
3364 value: "Official Kali Linux Sites",
3365 url:"http:\/\/www.kali.org\/docs\/community\/list-of-official-kali-sites\/"
3366 },
3367
3368 {
3369 value: "offsec-courses",
3370 url:"http:\/\/www.kali.org\/tools\/offsec-courses\/"
3371 },
3372
3373 {
3374 value: "ohrwurm",
3375 url:"http:\/\/www.kali.org\/tools\/ohrwurm\/"
3376 },
3377
3378 {
3379 value: "ollydbg",
3380 url:"http:\/\/www.kali.org\/tools\/ollydbg\/"
3381 },
3382
3383 {
3384 value: "onesixtyone",
3385 url:"http:\/\/www.kali.org\/tools\/onesixtyone\/"
3386 },
3387
3388 {
3389 value: "openocd",
3390 url:"http:\/\/www.kali.org\/tools\/openocd\/"
3391 },
3392
3393 {
3394 value: "openssh",
3395 url:"http:\/\/www.kali.org\/tools\/openssh\/"
3396 },
3397
3398 {
3399 value: "OpenSSL Configuration",
3400 url:"http:\/\/www.kali.org\/docs\/general-use\/openssl-configuration\/"
3401 },
3402
3403 {
3404 value: "openvpn",
3405 url:"http:\/\/www.kali.org\/tools\/openvpn\/"
3406 },
3407
3408 {
3409 value: "ophcrack",
3410 url:"http:\/\/www.kali.org\/tools\/ophcrack\/"
3411 },
3412
3413 {
3414 value: "oscanner",
3415 url:"http:\/\/www.kali.org\/tools\/oscanner\/"
3416 },
3417
3418 {
3419 value: "osrframework",
3420 url:"http:\/\/www.kali.org\/tools\/osrframework\/"
3421 },
3422
3423 {
3424 value: "outguess",
3425 url:"http:\/\/www.kali.org\/tools\/outguess\/"
3426 },
3427
3428 {
3429 value: "owasp-mantra-ff",
3430 url:"http:\/\/www.kali.org\/tools\/owasp-mantra-ff\/"
3431 },
3432
3433 {
3434 value: "owl",
3435 url:"http:\/\/www.kali.org\/tools\/owl\/"
3436 },
3437
3438 {
3439 value: "p0f",
3440 url:"http:\/\/www.kali.org\/tools\/p0f\/"
3441 },
3442
3443 {
3444 value: "p7zip",
3445 url:"http:\/\/www.kali.org\/tools\/p7zip\/"
3446 },
3447
3448 {
3449 value: "pack",
3450 url:"http:\/\/www.kali.org\/tools\/pack\/"
3451 },
3452
3453 {
3454 value: "Packages That Behave Differently With Non-root",
3455 url:"http:\/\/www.kali.org\/docs\/general-use\/nonroot-behavioral-differences-in-packages\/"
3456 },
3457
3458 {
3459 value: "pacu",
3460 url:"http:\/\/www.kali.org\/tools\/pacu\/"
3461 },
3462
3463 {
3464 value: "padbuster",
3465 url:"http:\/\/www.kali.org\/tools\/padbuster\/"
3466 },
3467
3468 {
3469 value: "paros",
3470 url:"http:\/\/www.kali.org\/tools\/paros\/"
3471 },
3472
3473 {
3474 value: "parsero",
3475 url:"http:\/\/www.kali.org\/tools\/parsero\/"
3476 },
3477
3478 {
3479 value: "parted",
3480 url:"http:\/\/www.kali.org\/tools\/parted\/"
3481 },
3482
3483 {
3484 value: "Partnerships \u0026 Sponsorships",
3485 url:"http:\/\/www.kali.org\/partnerships-sponsorships\/"
3486 },
3487
3488 {
3489 value: "pasco",
3490 url:"http:\/\/www.kali.org\/tools\/pasco\/"
3491 },
3492
3493 {
3494 value: "passing-the-hash",
3495 url:"http:\/\/www.kali.org\/tools\/passing-the-hash\/"
3496 },
3497
3498 {
3499 value: "patator",
3500 url:"http:\/\/www.kali.org\/tools\/patator\/"
3501 },
3502
3503 {
3504 value: "Patching the Kernel",
3505 url:"http:\/\/www.kali.org\/docs\/nethunter\/nethunter-kernel-1-patching\/"
3506 },
3507
3508 {
3509 value: "payloadsallthethings",
3510 url:"http:\/\/www.kali.org\/tools\/payloadsallthethings\/"
3511 },
3512
3513 {
3514 value: "pdf-parser",
3515 url:"http:\/\/www.kali.org\/tools\/pdf-parser\/"
3516 },
3517
3518 {
3519 value: "pdfcrack",
3520 url:"http:\/\/www.kali.org\/tools\/pdfcrack\/"
3521 },
3522
3523 {
3524 value: "pdfid",
3525 url:"http:\/\/www.kali.org\/tools\/pdfid\/"
3526 },
3527
3528 {
3529 value: "peirates",
3530 url:"http:\/\/www.kali.org\/tools\/peirates\/"
3531 },
3532
3533 {
3534 value: "Penetration Testing Tools Policy",
3535 url:"http:\/\/www.kali.org\/docs\/policy\/penetration-testing-tools-policy\/"
3536 },
3537
3538 {
3539 value: "perl-cisco-copyconfig",
3540 url:"http:\/\/www.kali.org\/tools\/perl-cisco-copyconfig\/"
3541 },
3542
3543 {
3544 value: "pev",
3545 url:"http:\/\/www.kali.org\/tools\/pev\/"
3546 },
3547
3548 {
3549 value: "phishery",
3550 url:"http:\/\/www.kali.org\/tools\/phishery\/"
3551 },
3552
3553 {
3554 value: "photon",
3555 url:"http:\/\/www.kali.org\/tools\/photon\/"
3556 },
3557
3558 {
3559 value: "php-defaults",
3560 url:"http:\/\/www.kali.org\/tools\/php-defaults\/"
3561 },
3562
3563 {
3564 value: "phpggc",
3565 url:"http:\/\/www.kali.org\/tools\/phpggc\/"
3566 },
3567
3568 {
3569 value: "Pi-Tail",
3570 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-zero-w-pi-tail\/"
3571 },
3572
3573 {
3574 value: "Pinebook",
3575 url:"http:\/\/www.kali.org\/docs\/arm\/pinebook\/"
3576 },
3577
3578 {
3579 value: "Pinebook Pro",
3580 url:"http:\/\/www.kali.org\/docs\/arm\/pinebook-pro\/"
3581 },
3582
3583 {
3584 value: "pipal",
3585 url:"http:\/\/www.kali.org\/tools\/pipal\/"
3586 },
3587
3588 {
3589 value: "pixiewps",
3590 url:"http:\/\/www.kali.org\/tools\/pixiewps\/"
3591 },
3592
3593 {
3594 value: "plaso",
3595 url:"http:\/\/www.kali.org\/tools\/plaso\/"
3596 },
3597
3598 {
3599 value: "plecost",
3600 url:"http:\/\/www.kali.org\/tools\/plecost\/"
3601 },
3602
3603 {
3604 value: "plocate",
3605 url:"http:\/\/www.kali.org\/tools\/plocate\/"
3606 },
3607
3608 {
3609 value: "pnscan",
3610 url:"http:\/\/www.kali.org\/tools\/pnscan\/"
3611 },
3612
3613 {
3614 value: "polenum",
3615 url:"http:\/\/www.kali.org\/tools\/polenum\/"
3616 },
3617
3618 {
3619 value: "pompem",
3620 url:"http:\/\/www.kali.org\/tools\/pompem\/"
3621 },
3622
3623 {
3624 value: "Porting NetHunter to New Devices",
3625 url:"http:\/\/www.kali.org\/docs\/nethunter\/porting-nethunter\/"
3626 },
3627
3628 {
3629 value: "powercat",
3630 url:"http:\/\/www.kali.org\/tools\/powercat\/"
3631 },
3632
3633 {
3634 value: "powershell",
3635 url:"http:\/\/www.kali.org\/tools\/powershell\/"
3636 },
3637
3638 {
3639 value: "powershell-empire",
3640 url:"http:\/\/www.kali.org\/tools\/powershell-empire\/"
3641 },
3642
3643 {
3644 value: "powersploit",
3645 url:"http:\/\/www.kali.org\/tools\/powersploit\/"
3646 },
3647
3648 {
3649 value: "princeprocessor",
3650 url:"http:\/\/www.kali.org\/tools\/princeprocessor\/"
3651 },
3652
3653 {
3654 value: "Privacy Policy",
3655 url:"http:\/\/www.kali.org\/docs\/policy\/privacy\/"
3656 },
3657
3658 {
3659 value: "protos-sip",
3660 url:"http:\/\/www.kali.org\/tools\/protos-sip\/"
3661 },
3662
3663 {
3664 value: "proxychains-ng",
3665 url:"http:\/\/www.kali.org\/tools\/proxychains-ng\/"
3666 },
3667
3668 {
3669 value: "proxytunnel",
3670 url:"http:\/\/www.kali.org\/tools\/proxytunnel\/"
3671 },
3672
3673 {
3674 value: "pskracker",
3675 url:"http:\/\/www.kali.org\/tools\/pskracker\/"
3676 },
3677
3678 {
3679 value: "ptunnel",
3680 url:"http:\/\/www.kali.org\/tools\/ptunnel\/"
3681 },
3682
3683 {
3684 value: "pwnat",
3685 url:"http:\/\/www.kali.org\/tools\/pwnat\/"
3686 },
3687
3688 {
3689 value: "pwncat",
3690 url:"http:\/\/www.kali.org\/tools\/pwncat\/"
3691 },
3692
3693 {
3694 value: "python-defaults",
3695 url:"http:\/\/www.kali.org\/tools\/python-defaults\/"
3696 },
3697
3698 {
3699 value: "python-faraday",
3700 url:"http:\/\/www.kali.org\/tools\/python-faraday\/"
3701 },
3702
3703 {
3704 value: "qemu",
3705 url:"http:\/\/www.kali.org\/tools\/qemu\/"
3706 },
3707
3708 {
3709 value: "qsslcaudit",
3710 url:"http:\/\/www.kali.org\/tools\/qsslcaudit\/"
3711 },
3712
3713 {
3714 value: "quark-engine",
3715 url:"http:\/\/www.kali.org\/tools\/quark-engine\/"
3716 },
3717
3718 {
3719 value: "radare2",
3720 url:"http:\/\/www.kali.org\/tools\/radare2\/"
3721 },
3722
3723 {
3724 value: "radare2-cutter",
3725 url:"http:\/\/www.kali.org\/tools\/radare2-cutter\/"
3726 },
3727
3728 {
3729 value: "rainbowcrack",
3730 url:"http:\/\/www.kali.org\/tools\/rainbowcrack\/"
3731 },
3732
3733 {
3734 value: "rake",
3735 url:"http:\/\/www.kali.org\/tools\/rake\/"
3736 },
3737
3738 {
3739 value: "rarcrack",
3740 url:"http:\/\/www.kali.org\/tools\/rarcrack\/"
3741 },
3742
3743 {
3744 value: "Raspberry Pi",
3745 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi\/"
3746 },
3747
3748 {
3749 value: "Raspberry Pi 2",
3750 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-2\/"
3751 },
3752
3753 {
3754 value: "Raspberry Pi 2 v1.2",
3755 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-2-1.2\/"
3756 },
3757
3758 {
3759 value: "Raspberry Pi 3",
3760 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-3\/"
3761 },
3762
3763 {
3764 value: "Raspberry Pi 4",
3765 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-4\/"
3766 },
3767
3768 {
3769 value: "Raspberry Pi 400",
3770 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-400\/"
3771 },
3772
3773 {
3774 value: "Raspberry Pi Zero",
3775 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-zero\/"
3776 },
3777
3778 {
3779 value: "Raspberry Pi Zero 2 W",
3780 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-zero-2-w\/"
3781 },
3782
3783 {
3784 value: "Raspberry Pi Zero W",
3785 url:"http:\/\/www.kali.org\/docs\/arm\/raspberry-pi-zero-w\/"
3786 },
3787
3788 {
3789 value: "rcracki-mt",
3790 url:"http:\/\/www.kali.org\/tools\/rcracki-mt\/"
3791 },
3792
3793 {
3794 value: "rdesktop",
3795 url:"http:\/\/www.kali.org\/tools\/rdesktop\/"
3796 },
3797
3798 {
3799 value: "reaver",
3800 url:"http:\/\/www.kali.org\/tools\/reaver\/"
3801 },
3802
3803 {
3804 value: "rebind",
3805 url:"http:\/\/www.kali.org\/tools\/rebind\/"
3806 },
3807
3808 {
3809 value: "recon-ng",
3810 url:"http:\/\/www.kali.org\/tools\/recon-ng\/"
3811 },
3812
3813 {
3814 value: "recordmydesktop",
3815 url:"http:\/\/www.kali.org\/tools\/recordmydesktop\/"
3816 },
3817
3818 {
3819 value: "recoverdm",
3820 url:"http:\/\/www.kali.org\/tools\/recoverdm\/"
3821 },
3822
3823 {
3824 value: "recoverjpeg",
3825 url:"http:\/\/www.kali.org\/tools\/recoverjpeg\/"
3826 },
3827
3828 {
3829 value: "redfang",
3830 url:"http:\/\/www.kali.org\/tools\/redfang\/"
3831 },
3832
3833 {
3834 value: "redsnarf",
3835 url:"http:\/\/www.kali.org\/tools\/redsnarf\/"
3836 },
3837
3838 {
3839 value: "redsocks",
3840 url:"http:\/\/www.kali.org\/tools\/redsocks\/"
3841 },
3842
3843 {
3844 value: "reglookup",
3845 url:"http:\/\/www.kali.org\/tools\/reglookup\/"
3846 },
3847
3848 {
3849 value: "regripper",
3850 url:"http:\/\/www.kali.org\/tools\/regripper\/"
3851 },
3852
3853 {
3854 value: "Releases History",
3855 url:"http:\/\/www.kali.org\/releases\/"
3856 },
3857
3858 {
3859 value: "Removed Tools From Kali",
3860 url:"http:\/\/www.kali.org\/docs\/tools\/removed-tools\/"
3861 },
3862
3863 {
3864 value: "rephrase",
3865 url:"http:\/\/www.kali.org\/tools\/rephrase\/"
3866 },
3867
3868 {
3869 value: "requests",
3870 url:"http:\/\/www.kali.org\/tools\/requests\/"
3871 },
3872
3873 {
3874 value: "responder",
3875 url:"http:\/\/www.kali.org\/tools\/responder\/"
3876 },
3877
3878 {
3879 value: "rfcat",
3880 url:"http:\/\/www.kali.org\/tools\/rfcat\/"
3881 },
3882
3883 {
3884 value: "rfdump",
3885 url:"http:\/\/www.kali.org\/tools\/rfdump\/"
3886 },
3887
3888 {
3889 value: "ridenum",
3890 url:"http:\/\/www.kali.org\/tools\/ridenum\/"
3891 },
3892
3893 {
3894 value: "rifiuti",
3895 url:"http:\/\/www.kali.org\/tools\/rifiuti\/"
3896 },
3897
3898 {
3899 value: "rifiuti2",
3900 url:"http:\/\/www.kali.org\/tools\/rifiuti2\/"
3901 },
3902
3903 {
3904 value: "RIoTboard",
3905 url:"http:\/\/www.kali.org\/docs\/arm\/riotboard\/"
3906 },
3907
3908 {
3909 value: "rkhunter",
3910 url:"http:\/\/www.kali.org\/tools\/rkhunter\/"
3911 },
3912
3913 {
3914 value: "robotstxt",
3915 url:"http:\/\/www.kali.org\/tools\/robotstxt\/"
3916 },
3917
3918 {
3919 value: "ropper",
3920 url:"http:\/\/www.kali.org\/tools\/ropper\/"
3921 },
3922
3923 {
3924 value: "routerkeygenpc",
3925 url:"http:\/\/www.kali.org\/tools\/routerkeygenpc\/"
3926 },
3927
3928 {
3929 value: "routersploit",
3930 url:"http:\/\/www.kali.org\/tools\/routersploit\/"
3931 },
3932
3933 {
3934 value: "rsakeyfind",
3935 url:"http:\/\/www.kali.org\/tools\/rsakeyfind\/"
3936 },
3937
3938 {
3939 value: "rsmangler",
3940 url:"http:\/\/www.kali.org\/tools\/rsmangler\/"
3941 },
3942
3943 {
3944 value: "rtlsdr-scanner",
3945 url:"http:\/\/www.kali.org\/tools\/rtlsdr-scanner\/"
3946 },
3947
3948 {
3949 value: "rtpbreak",
3950 url:"http:\/\/www.kali.org\/tools\/rtpbreak\/"
3951 },
3952
3953 {
3954 value: "rtpflood",
3955 url:"http:\/\/www.kali.org\/tools\/rtpflood\/"
3956 },
3957
3958 {
3959 value: "rtpinsertsound",
3960 url:"http:\/\/www.kali.org\/tools\/rtpinsertsound\/"
3961 },
3962
3963 {
3964 value: "rtpmixsound",
3965 url:"http:\/\/www.kali.org\/tools\/rtpmixsound\/"
3966 },
3967
3968 {
3969 value: "safecopy",
3970 url:"http:\/\/www.kali.org\/tools\/safecopy\/"
3971 },
3972
3973 {
3974 value: "sakis3g",
3975 url:"http:\/\/www.kali.org\/tools\/sakis3g\/"
3976 },
3977
3978 {
3979 value: "samba",
3980 url:"http:\/\/www.kali.org\/tools\/samba\/"
3981 },
3982
3983 {
3984 value: "Samba Configuration",
3985 url:"http:\/\/www.kali.org\/docs\/general-use\/samba-configuration\/"
3986 },
3987
3988 {
3989 value: "samdump2",
3990 url:"http:\/\/www.kali.org\/tools\/samdump2\/"
3991 },
3992
3993 {
3994 value: "Samsung Chromebook (daisy_snow)",
3995 url:"http:\/\/www.kali.org\/docs\/arm\/samsung-chromebook\/"
3996 },
3997
3998 {
3999 value: "Samsung Chromebook 2 (peach_pi)",
4000 url:"http:\/\/www.kali.org\/docs\/arm\/samsung-chromebook-2\/"
4001 },
4002
4003 {
4004 value: "sbd",
4005 url:"http:\/\/www.kali.org\/tools\/sbd\/"
4006 },
4007
4008 {
4009 value: "scalpel",
4010 url:"http:\/\/www.kali.org\/tools\/scalpel\/"
4011 },
4012
4013 {
4014 value: "scapy",
4015 url:"http:\/\/www.kali.org\/tools\/scapy\/"
4016 },
4017
4018 {
4019 value: "screen",
4020 url:"http:\/\/www.kali.org\/tools\/screen\/"
4021 },
4022
4023 {
4024 value: "scrounge-ntfs",
4025 url:"http:\/\/www.kali.org\/tools\/scrounge-ntfs\/"
4026 },
4027
4028 {
4029 value: "sctpscan",
4030 url:"http:\/\/www.kali.org\/tools\/sctpscan\/"
4031 },
4032
4033 {
4034 value: "seclists",
4035 url:"http:\/\/www.kali.org\/tools\/seclists\/"
4036 },
4037
4038 {
4039 value: "secure-socket-funneling",
4040 url:"http:\/\/www.kali.org\/tools\/secure-socket-funneling\/"
4041 },
4042
4043 {
4044 value: "sendemail",
4045 url:"http:\/\/www.kali.org\/tools\/sendemail\/"
4046 },
4047
4048 {
4049 value: "set",
4050 url:"http:\/\/www.kali.org\/tools\/set\/"
4051 },
4052
4053 {
4054 value: "Setting Up a Kali Linux Mirror",
4055 url:"http:\/\/www.kali.org\/docs\/community\/setting-up-a-kali-linux-mirror\/"
4056 },
4057
4058 {
4059 value: "Setting up RDP with Xfce",
4060 url:"http:\/\/www.kali.org\/docs\/general-use\/xfce-with-rdp\/"
4061 },
4062
4063 {
4064 value: "sfuzz",
4065 url:"http:\/\/www.kali.org\/tools\/sfuzz\/"
4066 },
4067
4068 {
4069 value: "shed",
4070 url:"http:\/\/www.kali.org\/tools\/shed\/"
4071 },
4072
4073 {
4074 value: "shellnoob",
4075 url:"http:\/\/www.kali.org\/tools\/shellnoob\/"
4076 },
4077
4078 {
4079 value: "shellter",
4080 url:"http:\/\/www.kali.org\/tools\/shellter\/"
4081 },
4082
4083 {
4084 value: "sherlock",
4085 url:"http:\/\/www.kali.org\/tools\/sherlock\/"
4086 },
4087
4088 {
4089 value: "sidguesser",
4090 url:"http:\/\/www.kali.org\/tools\/sidguesser\/"
4091 },
4092
4093 {
4094 value: "siege",
4095 url:"http:\/\/www.kali.org\/tools\/siege\/"
4096 },
4097
4098 {
4099 value: "silenttrinity",
4100 url:"http:\/\/www.kali.org\/tools\/silenttrinity\/"
4101 },
4102
4103 {
4104 value: "siparmyknife",
4105 url:"http:\/\/www.kali.org\/tools\/siparmyknife\/"
4106 },
4107
4108 {
4109 value: "sipcrack",
4110 url:"http:\/\/www.kali.org\/tools\/sipcrack\/"
4111 },
4112
4113 {
4114 value: "sipp",
4115 url:"http:\/\/www.kali.org\/tools\/sipp\/"
4116 },
4117
4118 {
4119 value: "sipsak",
4120 url:"http:\/\/www.kali.org\/tools\/sipsak\/"
4121 },
4122
4123 {
4124 value: "sipvicious",
4125 url:"http:\/\/www.kali.org\/tools\/sipvicious\/"
4126 },
4127
4128 {
4129 value: "skipfish",
4130 url:"http:\/\/www.kali.org\/tools\/skipfish\/"
4131 },
4132
4133 {
4134 value: "sleuthkit",
4135 url:"http:\/\/www.kali.org\/tools\/sleuthkit\/"
4136 },
4137
4138 {
4139 value: "sliver",
4140 url:"http:\/\/www.kali.org\/tools\/sliver\/"
4141 },
4142
4143 {
4144 value: "slowhttptest",
4145 url:"http:\/\/www.kali.org\/tools\/slowhttptest\/"
4146 },
4147
4148 {
4149 value: "smali",
4150 url:"http:\/\/www.kali.org\/tools\/smali\/"
4151 },
4152
4153 {
4154 value: "smbmap",
4155 url:"http:\/\/www.kali.org\/tools\/smbmap\/"
4156 },
4157
4158 {
4159 value: "smtp-user-enum",
4160 url:"http:\/\/www.kali.org\/tools\/smtp-user-enum\/"
4161 },
4162
4163 {
4164 value: "sniffjoke",
4165 url:"http:\/\/www.kali.org\/tools\/sniffjoke\/"
4166 },
4167
4168 {
4169 value: "snmpcheck",
4170 url:"http:\/\/www.kali.org\/tools\/snmpcheck\/"
4171 },
4172
4173 {
4174 value: "snmpenum",
4175 url:"http:\/\/www.kali.org\/tools\/snmpenum\/"
4176 },
4177
4178 {
4179 value: "snowdrop",
4180 url:"http:\/\/www.kali.org\/tools\/snowdrop\/"
4181 },
4182
4183 {
4184 value: "socat",
4185 url:"http:\/\/www.kali.org\/tools\/socat\/"
4186 },
4187
4188 {
4189 value: "spectools",
4190 url:"http:\/\/www.kali.org\/tools\/spectools\/"
4191 },
4192
4193 {
4194 value: "spiderfoot",
4195 url:"http:\/\/www.kali.org\/tools\/spiderfoot\/"
4196 },
4197
4198 {
4199 value: "spike",
4200 url:"http:\/\/www.kali.org\/tools\/spike\/"
4201 },
4202
4203 {
4204 value: "spooftooph",
4205 url:"http:\/\/www.kali.org\/tools\/spooftooph\/"
4206 },
4207
4208 {
4209 value: "spraykatz",
4210 url:"http:\/\/www.kali.org\/tools\/spraykatz\/"
4211 },
4212
4213 {
4214 value: "sqldict",
4215 url:"http:\/\/www.kali.org\/tools\/sqldict\/"
4216 },
4217
4218 {
4219 value: "sqlitebrowser",
4220 url:"http:\/\/www.kali.org\/tools\/sqlitebrowser\/"
4221 },
4222
4223 {
4224 value: "sqlmap",
4225 url:"http:\/\/www.kali.org\/tools\/sqlmap\/"
4226 },
4227
4228 {
4229 value: "sqlninja",
4230 url:"http:\/\/www.kali.org\/tools\/sqlninja\/"
4231 },
4232
4233 {
4234 value: "sqlsus",
4235 url:"http:\/\/www.kali.org\/tools\/sqlsus\/"
4236 },
4237
4238 {
4239 value: "ssdeep",
4240 url:"http:\/\/www.kali.org\/tools\/ssdeep\/"
4241 },
4242
4243 {
4244 value: "SSH Configuration",
4245 url:"http:\/\/www.kali.org\/docs\/general-use\/ssh-configuration\/"
4246 },
4247
4248 {
4249 value: "ssldump",
4250 url:"http:\/\/www.kali.org\/tools\/ssldump\/"
4251 },
4252
4253 {
4254 value: "sslh",
4255 url:"http:\/\/www.kali.org\/tools\/sslh\/"
4256 },
4257
4258 {
4259 value: "sslscan",
4260 url:"http:\/\/www.kali.org\/tools\/sslscan\/"
4261 },
4262
4263 {
4264 value: "sslsniff",
4265 url:"http:\/\/www.kali.org\/tools\/sslsniff\/"
4266 },
4267
4268 {
4269 value: "sslsplit",
4270 url:"http:\/\/www.kali.org\/tools\/sslsplit\/"
4271 },
4272
4273 {
4274 value: "sslyze",
4275 url:"http:\/\/www.kali.org\/tools\/sslyze\/"
4276 },
4277
4278 {
4279 value: "starkiller",
4280 url:"http:\/\/www.kali.org\/tools\/starkiller\/"
4281 },
4282
4283 {
4284 value: "statsprocessor",
4285 url:"http:\/\/www.kali.org\/tools\/statsprocessor\/"
4286 },
4287
4288 {
4289 value: "stegcracker",
4290 url:"http:\/\/www.kali.org\/tools\/stegcracker\/"
4291 },
4292
4293 {
4294 value: "steghide",
4295 url:"http:\/\/www.kali.org\/tools\/steghide\/"
4296 },
4297
4298 {
4299 value: "stegsnow",
4300 url:"http:\/\/www.kali.org\/tools\/stegsnow\/"
4301 },
4302
4303 {
4304 value: "stunnel4",
4305 url:"http:\/\/www.kali.org\/tools\/stunnel4\/"
4306 },
4307
4308 {
4309 value: "subfinder",
4310 url:"http:\/\/www.kali.org\/tools\/subfinder\/"
4311 },
4312
4313 {
4314 value: "subjack",
4315 url:"http:\/\/www.kali.org\/tools\/subjack\/"
4316 },
4317
4318 {
4319 value: "sublist3r",
4320 url:"http:\/\/www.kali.org\/tools\/sublist3r\/"
4321 },
4322
4323 {
4324 value: "Submitting Bugs for Kali Linux",
4325 url:"http:\/\/www.kali.org\/docs\/community\/submitting-issues-kali-bug-tracker\/"
4326 },
4327
4328 {
4329 value: "Submitting tools to Kali",
4330 url:"http:\/\/www.kali.org\/docs\/tools\/submitting-tools\/"
4331 },
4332
4333 {
4334 value: "subversion",
4335 url:"http:\/\/www.kali.org\/tools\/subversion\/"
4336 },
4337
4338 {
4339 value: "sucrack",
4340 url:"http:\/\/www.kali.org\/tools\/sucrack\/"
4341 },
4342
4343 {
4344 value: "sudo",
4345 url:"http:\/\/www.kali.org\/tools\/sudo\/"
4346 },
4347
4348 {
4349 value: "swaks",
4350 url:"http:\/\/www.kali.org\/tools\/swaks\/"
4351 },
4352
4353 {
4354 value: "Switching Desktop Environments",
4355 url:"http:\/\/www.kali.org\/docs\/general-use\/switching-desktop-environments\/"
4356 },
4357
4358 {
4359 value: "t50",
4360 url:"http:\/\/www.kali.org\/tools\/t50\/"
4361 },
4362
4363 {
4364 value: "tcpdump",
4365 url:"http:\/\/www.kali.org\/tools\/tcpdump\/"
4366 },
4367
4368 {
4369 value: "tcpflow",
4370 url:"http:\/\/www.kali.org\/tools\/tcpflow\/"
4371 },
4372
4373 {
4374 value: "tcpick",
4375 url:"http:\/\/www.kali.org\/tools\/tcpick\/"
4376 },
4377
4378 {
4379 value: "tcpreplay",
4380 url:"http:\/\/www.kali.org\/tools\/tcpreplay\/"
4381 },
4382
4383 {
4384 value: "teamsploit",
4385 url:"http:\/\/www.kali.org\/tools\/teamsploit\/"
4386 },
4387
4388 {
4389 value: "termineter",
4390 url:"http:\/\/www.kali.org\/tools\/termineter\/"
4391 },
4392
4393 {
4394 value: "testdisk",
4395 url:"http:\/\/www.kali.org\/tools\/testdisk\/"
4396 },
4397
4398 {
4399 value: "Testing Checklist",
4400 url:"http:\/\/www.kali.org\/docs\/nethunter\/testing-checklist\/"
4401 },
4402
4403 {
4404 value: "testssl.sh",
4405 url:"http:\/\/www.kali.org\/tools\/testssl.sh\/"
4406 },
4407
4408 {
4409 value: "tftpd32",
4410 url:"http:\/\/www.kali.org\/tools\/tftpd32\/"
4411 },
4412
4413 {
4414 value: "thc-ipv6",
4415 url:"http:\/\/www.kali.org\/tools\/thc-ipv6\/"
4416 },
4417
4418 {
4419 value: "thc-pptp-bruter",
4420 url:"http:\/\/www.kali.org\/tools\/thc-pptp-bruter\/"
4421 },
4422
4423 {
4424 value: "thc-ssl-dos",
4425 url:"http:\/\/www.kali.org\/tools\/thc-ssl-dos\/"
4426 },
4427
4428 {
4429 value: "The Basics of Troubleshooting",
4430 url:"http:\/\/www.kali.org\/docs\/troubleshooting\/basic-troubleshooting\/"
4431 },
4432
4433 {
4434 value: "theharvester",
4435 url:"http:\/\/www.kali.org\/tools\/theharvester\/"
4436 },
4437
4438 {
4439 value: "tightvnc",
4440 url:"http:\/\/www.kali.org\/tools\/tightvnc\/"
4441 },
4442
4443 {
4444 value: "tlssled",
4445 url:"http:\/\/www.kali.org\/tools\/tlssled\/"
4446 },
4447
4448 {
4449 value: "tmux",
4450 url:"http:\/\/www.kali.org\/tools\/tmux\/"
4451 },
4452
4453 {
4454 value: "tnscmd10g",
4455 url:"http:\/\/www.kali.org\/tools\/tnscmd10g\/"
4456 },
4457
4458 {
4459 value: "traceroute",
4460 url:"http:\/\/www.kali.org\/tools\/traceroute\/"
4461 },
4462
4463 {
4464 value: "Trimslice",
4465 url:"http:\/\/www.kali.org\/docs\/arm\/trimslice\/"
4466 },
4467
4468 {
4469 value: "Troubleshooting Installations Failures",
4470 url:"http:\/\/www.kali.org\/docs\/troubleshooting\/troubleshooting-a-kali-linux-install\/"
4471 },
4472
4473 {
4474 value: "Troubleshooting Wireless Drivers",
4475 url:"http:\/\/www.kali.org\/docs\/troubleshooting\/troubleshooting-wireless-driver-issues\/"
4476 },
4477
4478 {
4479 value: "truecrack",
4480 url:"http:\/\/www.kali.org\/tools\/truecrack\/"
4481 },
4482
4483 {
4484 value: "tundeep",
4485 url:"http:\/\/www.kali.org\/tools\/tundeep\/"
4486 },
4487
4488 {
4489 value: "twofi",
4490 url:"http:\/\/www.kali.org\/tools\/twofi\/"
4491 },
4492
4493 {
4494 value: "u-boot",
4495 url:"http:\/\/www.kali.org\/tools\/u-boot\/"
4496 },
4497
4498 {
4499 value: "ubertooth",
4500 url:"http:\/\/www.kali.org\/tools\/ubertooth\/"
4501 },
4502
4503 {
4504 value: "udptunnel",
4505 url:"http:\/\/www.kali.org\/tools\/udptunnel\/"
4506 },
4507
4508 {
4509 value: "uhd",
4510 url:"http:\/\/www.kali.org\/tools\/uhd\/"
4511 },
4512
4513 {
4514 value: "uhd-images",
4515 url:"http:\/\/www.kali.org\/tools\/uhd-images\/"
4516 },
4517
4518 {
4519 value: "undbx",
4520 url:"http:\/\/www.kali.org\/tools\/undbx\/"
4521 },
4522
4523 {
4524 value: "unhide",
4525 url:"http:\/\/www.kali.org\/tools\/unhide\/"
4526 },
4527
4528 {
4529 value: "unhide.rb",
4530 url:"http:\/\/www.kali.org\/tools\/unhide.rb\/"
4531 },
4532
4533 {
4534 value: "unicornscan",
4535 url:"http:\/\/www.kali.org\/tools\/unicornscan\/"
4536 },
4537
4538 {
4539 value: "uniscan",
4540 url:"http:\/\/www.kali.org\/tools\/uniscan\/"
4541 },
4542
4543 {
4544 value: "unix-privesc-check",
4545 url:"http:\/\/www.kali.org\/tools\/unix-privesc-check\/"
4546 },
4547
4548 {
4549 value: "unrar-nonfree",
4550 url:"http:\/\/www.kali.org\/tools\/unrar-nonfree\/"
4551 },
4552
4553 {
4554 value: "Updating Kali",
4555 url:"http:\/\/www.kali.org\/docs\/general-use\/updating-kali\/"
4556 },
4557
4558 {
4559 value: "upx-ucl",
4560 url:"http:\/\/www.kali.org\/tools\/upx-ucl\/"
4561 },
4562
4563 {
4564 value: "urlcrazy",
4565 url:"http:\/\/www.kali.org\/tools\/urlcrazy\/"
4566 },
4567
4568 {
4569 value: "USB Armory MKI",
4570 url:"http:\/\/www.kali.org\/docs\/arm\/usb-armory-mki\/"
4571 },
4572
4573 {
4574 value: "USB Armory MKII",
4575 url:"http:\/\/www.kali.org\/docs\/arm\/usb-armory-mkii\/"
4576 },
4577
4578 {
4579 value: "usbutils",
4580 url:"http:\/\/www.kali.org\/tools\/usbutils\/"
4581 },
4582
4583 {
4584 value: "Using Kali Linux Docker Images",
4585 url:"http:\/\/www.kali.org\/docs\/containers\/using-kali-docker-images\/"
4586 },
4587
4588 {
4589 value: "util-linux",
4590 url:"http:\/\/www.kali.org\/tools\/util-linux\/"
4591 },
4592
4593 {
4594 value: "Utilite Pro",
4595 url:"http:\/\/www.kali.org\/docs\/arm\/utilite-pro\/"
4596 },
4597
4598 {
4599 value: "vboot-utils",
4600 url:"http:\/\/www.kali.org\/tools\/vboot-utils\/"
4601 },
4602
4603 {
4604 value: "veil",
4605 url:"http:\/\/www.kali.org\/tools\/veil\/"
4606 },
4607
4608 {
4609 value: "vim",
4610 url:"http:\/\/www.kali.org\/tools\/vim\/"
4611 },
4612
4613 {
4614 value: "vinetto",
4615 url:"http:\/\/www.kali.org\/tools\/vinetto\/"
4616 },
4617
4618 {
4619 value: "vlan",
4620 url:"http:\/\/www.kali.org\/tools\/vlan\/"
4621 },
4622
4623 {
4624 value: "voiphopper",
4625 url:"http:\/\/www.kali.org\/tools\/voiphopper\/"
4626 },
4627
4628 {
4629 value: "vpnc",
4630 url:"http:\/\/www.kali.org\/tools\/vpnc\/"
4631 },
4632
4633 {
4634 value: "wafw00f",
4635 url:"http:\/\/www.kali.org\/tools\/wafw00f\/"
4636 },
4637
4638 {
4639 value: "wapiti",
4640 url:"http:\/\/www.kali.org\/tools\/wapiti\/"
4641 },
4642
4643 {
4644 value: "watobo",
4645 url:"http:\/\/www.kali.org\/tools\/watobo\/"
4646 },
4647
4648 {
4649 value: "wce",
4650 url:"http:\/\/www.kali.org\/tools\/wce\/"
4651 },
4652
4653 {
4654 value: "webacoo",
4655 url:"http:\/\/www.kali.org\/tools\/webacoo\/"
4656 },
4657
4658 {
4659 value: "webscarab",
4660 url:"http:\/\/www.kali.org\/tools\/webscarab\/"
4661 },
4662
4663 {
4664 value: "webshells",
4665 url:"http:\/\/www.kali.org\/tools\/webshells\/"
4666 },
4667
4668 {
4669 value: "websploit",
4670 url:"http:\/\/www.kali.org\/tools\/websploit\/"
4671 },
4672
4673 {
4674 value: "weevely",
4675 url:"http:\/\/www.kali.org\/tools\/weevely\/"
4676 },
4677
4678 {
4679 value: "wfuzz",
4680 url:"http:\/\/www.kali.org\/tools\/wfuzz\/"
4681 },
4682
4683 {
4684 value: "wgetpaste",
4685 url:"http:\/\/www.kali.org\/tools\/wgetpaste\/"
4686 },
4687
4688 {
4689 value: "whatweb",
4690 url:"http:\/\/www.kali.org\/tools\/whatweb\/"
4691 },
4692
4693 {
4694 value: "whois",
4695 url:"http:\/\/www.kali.org\/tools\/whois\/"
4696 },
4697
4698 {
4699 value: "wifi-honey",
4700 url:"http:\/\/www.kali.org\/tools\/wifi-honey\/"
4701 },
4702
4703 {
4704 value: "wifiphisher",
4705 url:"http:\/\/www.kali.org\/tools\/wifiphisher\/"
4706 },
4707
4708 {
4709 value: "wifite",
4710 url:"http:\/\/www.kali.org\/tools\/wifite\/"
4711 },
4712
4713 {
4714 value: "wig",
4715 url:"http:\/\/www.kali.org\/tools\/wig\/"
4716 },
4717
4718 {
4719 value: "wig-ng",
4720 url:"http:\/\/www.kali.org\/tools\/wig-ng\/"
4721 },
4722
4723 {
4724 value: "Win-KeX",
4725 url:"http:\/\/www.kali.org\/docs\/wsl\/win-kex\/"
4726 },
4727
4728 {
4729 value: "Win-KeX SL",
4730 url:"http:\/\/www.kali.org\/docs\/wsl\/win-kex-sl\/"
4731 },
4732
4733 {
4734 value: "Win-KeX Win",
4735 url:"http:\/\/www.kali.org\/docs\/wsl\/win-kex-win\/"
4736 },
4737
4738 {
4739 value: "windows-binaries",
4740 url:"http:\/\/www.kali.org\/tools\/windows-binaries\/"
4741 },
4742
4743 {
4744 value: "windows-privesc-check",
4745 url:"http:\/\/www.kali.org\/tools\/windows-privesc-check\/"
4746 },
4747
4748 {
4749 value: "winexe",
4750 url:"http:\/\/www.kali.org\/tools\/winexe\/"
4751 },
4752
4753 {
4754 value: "winregfs",
4755 url:"http:\/\/www.kali.org\/tools\/winregfs\/"
4756 },
4757
4758 {
4759 value: "Wireless Cards and NetHunter",
4760 url:"http:\/\/www.kali.org\/docs\/nethunter\/wireless-cards\/"
4761 },
4762
4763 {
4764 value: "wireshark",
4765 url:"http:\/\/www.kali.org\/tools\/wireshark\/"
4766 },
4767
4768 {
4769 value: "witnessme",
4770 url:"http:\/\/www.kali.org\/tools\/witnessme\/"
4771 },
4772
4773 {
4774 value: "wordlistraider",
4775 url:"http:\/\/www.kali.org\/tools\/wordlistraider\/"
4776 },
4777
4778 {
4779 value: "wordlists",
4780 url:"http:\/\/www.kali.org\/tools\/wordlists\/"
4781 },
4782
4783 {
4784 value: "wotmate",
4785 url:"http:\/\/www.kali.org\/tools\/wotmate\/"
4786 },
4787
4788 {
4789 value: "wpa-sycophant",
4790 url:"http:\/\/www.kali.org\/tools\/wpa-sycophant\/"
4791 },
4792
4793 {
4794 value: "wpscan",
4795 url:"http:\/\/www.kali.org\/tools\/wpscan\/"
4796 },
4797
4798 {
4799 value: "xmount",
4800 url:"http:\/\/www.kali.org\/tools\/xmount\/"
4801 },
4802
4803 {
4804 value: "xplico",
4805 url:"http:\/\/www.kali.org\/tools\/xplico\/"
4806 },
4807
4808 {
4809 value: "xprobe",
4810 url:"http:\/\/www.kali.org\/tools\/xprobe\/"
4811 },
4812
4813 {
4814 value: "xspy",
4815 url:"http:\/\/www.kali.org\/tools\/xspy\/"
4816 },
4817
4818 {
4819 value: "xsser",
4820 url:"http:\/\/www.kali.org\/tools\/xsser\/"
4821 },
4822
4823 {
4824 value: "yara",
4825 url:"http:\/\/www.kali.org\/tools\/yara\/"
4826 },
4827
4828 {
4829 value: "yersinia",
4830 url:"http:\/\/www.kali.org\/tools\/yersinia\/"
4831 },
4832
4833 {
4834 value: "zaproxy",
4835 url:"http:\/\/www.kali.org\/tools\/zaproxy\/"
4836 },
4837
4838 {
4839 value: "zenmap-kbx",
4840 url:"http:\/\/www.kali.org\/tools\/zenmap-kbx\/"
4841 },
4842
4843 {
4844 value: "zerofree",
4845 url:"http:\/\/www.kali.org\/tools\/zerofree\/"
4846 },
4847
4848 {
4849 value: "zim",
4850 url:"http:\/\/www.kali.org\/tools\/zim\/"
4851 },
4852
4853 {
4854 value: "zonedb",
4855 url:"http:\/\/www.kali.org\/tools\/zonedb\/"
4856 },
4857
4858 {
4859 value: "zsh",
4860 url:"http:\/\/www.kali.org\/tools\/zsh\/"
4861 },
4862
4863 {
4864 value: "zsh-autosuggestions",
4865 url:"http:\/\/www.kali.org\/tools\/zsh-autosuggestions\/"
4866 },
4867
4868 {
4869 value: "zsh-syntax-highlighting",
4870 url:"http:\/\/www.kali.org\/tools\/zsh-syntax-highlighting\/"
4871 },
4872
4873 ]
4874
4875 const searchInput = $('#searchbar input')
4876
4877
4878 searchInput.oninput = () => {
4879 const resultContainer = $('#search-result')
4880 resultContainer.innerHTML = ''
4881 searchInput.classList.remove('expanded')
4882 if (!searchInput.value.trim())
4883 return
4884
4885 const keywords = searchInput.value.toUpperCase().split(' ')
4886 const searchResult = PAGES.filter(item =>
4887 keywords.reduce((isCorrect, word) =>
4888 isCorrect && item.value.toUpperCase().indexOf(word) !== -1, true))
4889 searchInput.classList.add('expanded')
4890 searchResult.push({
4891 value: "Didn't find an answer to your question? Use the forums",
4892 url: 'https://forums.kali.org/'
4893 })
4894 searchResult.forEach(item => {
4895 resultContainer.appendChild(Object.assign(document.createElement('LI'), {
4896 innerHTML: "<a href=" + item.url + `>${item.value}</a>` // Use "+" to avoid `wget -p` modifying href (for browser-home-page)
4897 }))
4898 })
4899 }
4900
4901 $('#search-result').onmousemove = ({ target }) => searchInput.value = target.innerText
4902
4903
4904 document.body.addEventListener('click', () => {
4905 const input = $('#searchbar input')
4906 input.classList.remove('expanded')
4907 input.value = ''
4908 $('#search-result').innerHTML = ''
4909 })
4910 $('#search-result').onclick = e => e.stopPropagation()
4911 }
4912 </script>
4913
4914
4915 <div id="link-buttons">
4916 <a id="documentation-link" href="http://www.kali.org/docs/"><i class="ti-book"></i> Documentation</a>
4917 <a id="documentation-link" href="http://www.kali.org/tools/"><i class="ti-settings"></i> Kali Tools</a>
4918 </div>
4919
4920
4921 </header>
4922
4923
4924
4925
4926 <style>
4927 .darkmode-switch { display: none; }
4928
4929 header {
4930 height: 100vh;
4931 min-height: 650px;
4932 display: flex;
4933 }
4934
4935 header.bg-cover::before { display: none; }
4936
4937 #banner {
4938 flex: 1;
4939 display: flex;
4940 padding: 20px;
4941 }
4942
4943 #banner > h1, #banner > p { display: none; }
4944
4945 #searchbar { margin-bottom: 0; }
4946
4947 #searchbar::before {
4948 top: -230px;
4949 content: '';
4950 position: absolute;
4951 background: url('../images/kali-dragon-icon.svg') no-repeat;
4952 background-size: 81% auto;
4953 width: 100%;
4954 height: 332px;
4955 background-position: left center;
4956 }
4957
4958 #searchbar input, #link-buttons { position: relative; }
4959
4960 #searchbar > *, #link-buttons { z-index: 1; }
4961
4962 #search-result { z-index: 2; }
4963
4964 #searchbar input { box-shadow: 0 5px 20px rgba(0, 0, 0, .5); }
4965
4966 #link-buttons {
4967 text-align: center;
4968 flex: 1;
4969 }
4970
4971 #link-buttons a {
4972 display: inline-block;
4973 font-size: 14px;
4974 border-radius: var(--border-radius);
4975 text-align: center;
4976 width: 180px;
4977 padding: 0.75em 1em;
4978 margin: 0 5px;
4979 opacity: 0.9;
4980 background: white;
4981 color: #444;
4982 transition: opacity .2s;
4983 }
4984
4985 #link-buttons a:hover { opacity: 1; }
4986
4987 #link-buttons a i {
4988 vertical-align: middle;
4989 margin-right: 5px;
4990 }
4991
4992 footer { margin-top: 0; }
4993
4994 </style>
4995
4996
4997 <!-- footer -->
4998 <footer>
4999 <div class="darkmode-switch">
5000 <span>LIGHT</span><label class="switch">
5001 <input type="checkbox" name="toggle-darkmode">
5002 <div></div>
5003 </label><span>DARK</span>
5004 </div>
5005 <div class="container">
5006 <div>
5007 <h4>Downloads</h4>
5008 <a href="http://www.kali.org/get-kali/" rel="noopener" target="_blank">Kali Linux</a>
5009 <a href="http://www.kali.org/get-kali/#kali-mobile" rel="noopener" target="_blank">Kali NetHunter</a>
5010 <h4>Links</h4>
5011 <a href="http://www.kali.org/" rel="noopener" target="_blank">Home</a>
5012 <a href="http://www.kali.org/blog/" rel="noopener" target="_blank">Blog</a>
5013 <a href="http://www.kali.org/docs/" rel="noopener" target="_blank">Documentation</a>
5014 <a href="http://www.kali.org/tools" rel="noopener" target="_blank">Tools</a>
5015 <a href="https://forums.kali.org/" rel="noopener" target="_blank">Support Forum</a>
5016 <a href="https://bugs.kali.org/" rel="noopener" target="_blank">Bug Tracker</a>
5017 <a href="https://status.kali.org/" rel="noopener" target="_blank">System Status</a>
5018 </div>
5019 <div>
5020 <h4>Policies</h4>
5021 <a href="http://www.kali.org/docs/policy/cookie/">Cookie Policy</a>
5022 <a href="http://www.kali.org/docs/policy/privacy/">Privacy Policy</a>
5023 <a href="http://www.kali.org/docs/policy/trademark/">Trademark Policy</a>
5024 <h4>Follow Us</h4>
5025 <a href="https://twitter.com/kalilinux" title="Twitter" rel="noopener" target="_blank">
5026 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5027 <path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/>
5028 </svg>
5029 Twitter
5030 </a>
5031 <a href="https://www.facebook.com/kalilinux" title="Facebook" rel="noopener" target="_blank">
5032 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5033 <path d="M23.9981 11.9991C23.9981 5.37216 18.626 0 11.9991 0C5.37216 0 0 5.37216 0 11.9991C0 17.9882 4.38789 22.9522 10.1242 23.8524V15.4676H7.07758V11.9991H10.1242V9.35553C10.1242 6.34826 11.9156 4.68714 14.6564 4.68714C15.9692 4.68714 17.3424 4.92149 17.3424 4.92149V7.87439H15.8294C14.3388 7.87439 13.8739 8.79933 13.8739 9.74824V11.9991H17.2018L16.6698 15.4676H13.8739V23.8524C19.6103 22.9522 23.9981 17.9882 23.9981 11.9991Z"/>
5034 </svg>
5035 Facebook
5036 </a>
5037 <a href="https://gitlab.com/kalilinux" title="GitLab" rel="noopener" target="_blank">
5038 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5039 <path d="M23.955 13.587l-1.342-4.135-2.664-8.189c-.135-.423-.73-.423-.867 0L16.418 9.45H7.582L4.919 1.263C4.783.84 4.185.84 4.05 1.26L1.386 9.449.044 13.587c-.121.375.014.789.331 1.023L12 23.054l11.625-8.443c.318-.235.453-.647.33-1.024"/>
5040 </svg>
5041 GitLab
5042 </a>
5043 <a href="https://github.com/kalilinux" title="GitHub" rel="noopener" target="_blank">
5044 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5045 <path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/>
5046 </svg>
5047 GitHub
5048 </a>
5049 <a href="https://www.microsoft.com/en-us/p/kali-linux/9pkr34tncv07" title="Microsoft Store" rel="noopener" target="_blank">
5050 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5051 <path d="M11.4 24H0V12.6h11.4V24zM24 24H12.6V12.6H24V24zM11.4 11.4H0V0h11.4v11.4zm12.6 0H12.6V0H24v11.4z"/>
5052 </svg>
5053 Microsoft Store
5054 </a>
5055 <a href="https://hub.docker.com/u/kalilinux" title="Docker" rel="noopener" target="_blank">
5056 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5057 <path d="M4.82 17.275c-.684 0-1.304-.56-1.304-1.24s.56-1.243 1.305-1.243c.748 0 1.31.56 1.31 1.242s-.622 1.24-1.305 1.24zm16.012-6.763c-.135-.992-.75-1.8-1.56-2.42l-.315-.25-.254.31c-.494.56-.69 1.553-.63 2.295.06.562.24 1.12.554 1.554-.254.13-.568.25-.81.377-.57.187-1.124.25-1.68.25H.097l-.06.37c-.12 1.182.06 2.42.562 3.54l.244.435v.06c1.5 2.483 4.17 3.6 7.078 3.6 5.594 0 10.182-2.42 12.357-7.633 1.425.062 2.864-.31 3.54-1.676l.18-.31-.3-.187c-.81-.494-1.92-.56-2.85-.31l-.018.002zm-8.008-.992h-2.428v2.42h2.43V9.518l-.002.003zm0-3.043h-2.428v2.42h2.43V6.48l-.002-.003zm0-3.104h-2.428v2.42h2.43v-2.42h-.002zm2.97 6.147H13.38v2.42h2.42V9.518l-.007.003zm-8.998 0H4.383v2.42h2.422V9.518l-.01.003zm3.03 0h-2.4v2.42H9.84V9.518l-.015.003zm-6.03 0H1.4v2.42h2.428V9.518l-.03.003zm6.03-3.043h-2.4v2.42H9.84V6.48l-.015-.003zm-3.045 0H4.387v2.42H6.8V6.48l-.016-.003z"/>
5058 </svg>
5059 Docker
5060 </a>
5061 <a href="https://app.vagrantup.com/kalilinux" title="Vagrant" rel="noopener" target="_blank">
5062 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5063 <path d="M5.672 6.774V4.917l3.164-1.822L3.56.005.397 1.852v2.263L7.52 21.41 12 23.995v-6.496l2.107-1.224-.024-.015 4.245-9.486V4.917l5.275-3.065L20.439.005l-5.272 3.087h-.003V5.202L12 12.584v2.467l-2.11 1.224zm3.164-3.66L8.814 3.1 5.672 4.917v1.857l4.218 9.501L12 15.234v-2.65L8.836 5.202zm9.492 1.803v1.857l-4.22 9.101L12 17.332v6.663l4.521-2.607L23.603 4.05V1.852z"/>
5064 </svg>
5065 Vagrant
5066 </a>
5067 <a href="https://aws.amazon.com/marketplace/pp/B08LL91KKB" title="Amazon AWS" rel="noopener" target="_blank">
5068 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5069 <path d="M6.763 10.036c0 .296.032.535.088.71.064.176.144.368.256.576.04.063.056.127.056.183 0 .08-.048.16-.152.24l-.503.335a.383.383 0 0 1-.208.072c-.08 0-.16-.04-.239-.112a2.47 2.47 0 0 1-.287-.375 6.18 6.18 0 0 1-.248-.471c-.622.734-1.405 1.101-2.347 1.101-.67 0-1.205-.191-1.596-.574-.391-.384-.59-.894-.59-1.533 0-.678.239-1.23.726-1.644.487-.415 1.133-.623 1.955-.623.272 0 .551.024.846.064.296.04.6.104.918.176v-.583c0-.607-.127-1.03-.375-1.277-.255-.248-.686-.367-1.3-.367-.28 0-.568.031-.863.103-.295.072-.583.16-.862.272a2.287 2.287 0 0 1-.28.104.488.488 0 0 1-.127.023c-.112 0-.168-.08-.168-.247v-.391c0-.128.016-.224.056-.28a.597.597 0 0 1 .224-.167c.279-.144.614-.264 1.005-.36a4.84 4.84 0 0 1 1.246-.151c.95 0 1.644.216 2.091.647.439.43.662 1.085.662 1.963v2.586zm-3.24 1.214c.263 0 .534-.048.822-.144.287-.096.543-.271.758-.51.128-.152.224-.32.272-.512.047-.191.08-.423.08-.694v-.335a6.66 6.66 0 0 0-.735-.136 6.02 6.02 0 0 0-.75-.048c-.535 0-.926.104-1.19.32-.263.215-.39.518-.39.917 0 .375.095.655.295.846.191.2.47.296.838.296zm6.41.862c-.144 0-.24-.024-.304-.08-.064-.048-.12-.16-.168-.311L7.586 5.55a1.398 1.398 0 0 1-.072-.32c0-.128.064-.2.191-.2h.783c.151 0 .255.025.31.08.065.048.113.16.16.312l1.342 5.284 1.245-5.284c.04-.16.088-.264.151-.312a.549.549 0 0 1 .32-.08h.638c.152 0 .256.025.32.08.063.048.12.16.151.312l1.261 5.348 1.381-5.348c.048-.16.104-.264.16-.312a.52.52 0 0 1 .311-.08h.743c.127 0 .2.065.2.2 0 .04-.009.08-.017.128a1.137 1.137 0 0 1-.056.2l-1.923 6.17c-.048.16-.104.263-.168.311a.51.51 0 0 1-.303.08h-.687c-.151 0-.255-.024-.32-.08-.063-.056-.119-.16-.15-.32l-1.238-5.148-1.23 5.14c-.04.16-.087.264-.15.32-.065.056-.177.08-.32.08zm10.256.215c-.415 0-.83-.048-1.229-.143-.399-.096-.71-.2-.918-.32-.128-.071-.215-.151-.247-.223a.563.563 0 0 1-.048-.224v-.407c0-.167.064-.247.183-.247.048 0 .096.008.144.024.048.016.12.048.2.08.271.12.566.215.878.279.319.064.63.096.95.096.502 0 .894-.088 1.165-.264a.86.86 0 0 0 .415-.758.777.777 0 0 0-.215-.559c-.144-.151-.416-.287-.807-.415l-1.157-.36c-.583-.183-1.014-.454-1.277-.813a1.902 1.902 0 0 1-.4-1.158c0-.335.073-.63.216-.886.144-.255.335-.479.575-.654.24-.184.51-.32.83-.415.32-.096.655-.136 1.006-.136.175 0 .359.008.535.032.183.024.35.056.518.088.16.04.312.08.455.127.144.048.256.096.336.144a.69.69 0 0 1 .24.2.43.43 0 0 1 .071.263v.375c0 .168-.064.256-.184.256a.83.83 0 0 1-.303-.096 3.652 3.652 0 0 0-1.532-.311c-.455 0-.815.071-1.062.223-.248.152-.375.383-.375.71 0 .224.08.416.24.567.159.152.454.304.877.44l1.134.358c.574.184.99.44 1.237.767.247.327.367.702.367 1.117 0 .343-.072.655-.207.926-.144.272-.336.511-.583.703-.248.2-.543.343-.886.447-.36.111-.734.167-1.142.167zM21.698 16.207c-2.626 1.94-6.442 2.969-9.722 2.969-4.598 0-8.74-1.7-11.87-4.526-.247-.223-.024-.527.272-.351 3.384 1.963 7.559 3.153 11.877 3.153 2.914 0 6.114-.607 9.06-1.852.439-.2.814.287.383.607zM22.792 14.961c-.336-.43-2.22-.207-3.074-.103-.255.032-.295-.192-.063-.36 1.5-1.053 3.967-.75 4.254-.399.287.36-.08 2.826-1.485 4.007-.215.184-.423.088-.327-.151.32-.79 1.03-2.57.695-2.994z"/>
5070 </svg>
5071 Amazon AWS
5072 </a>
5073 <a href="https://azuremarketplace.microsoft.com/en/marketplace/apps/kali-linux.kali-linux" title="Microsoft Azure" rel="noopener" target="_blank">
5074 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5075 <path d="M5.483 21.3H24L14.025 4.013l-3.038 8.347 5.836 6.938L5.483 21.3zM13.23 2.7L6.105 8.677 0 19.253h5.505v.014L13.23 2.7z"/>
5076 </svg>
5077 Microsoft Azure
5078 </a>
5079 <a href="http://www.kali.org/rss.xml" title="RSS" rel="noopener" target="_blank">
5080 <svg viewBox="0 0 24 24" fill="currentColor" width="24" height="24">
5081 <path d="M19.199 24C19.199 13.467 10.533 4.8 0 4.8V0c13.165 0 24 10.835 24 24h-4.801zM3.291 17.415c1.814 0 3.293 1.479 3.293 3.295 0 1.813-1.485 3.29-3.301 3.29C1.47 24 0 22.526 0 20.71s1.475-3.294 3.291-3.295zM15.909 24h-4.665c0-6.169-5.075-11.245-11.244-11.245V8.09c8.727 0 15.909 7.184 15.909 15.91z"/>
5082 </svg>
5083 RSS
5084 </a>
5085 </div>
5086 <div>
5087 <svg id="footer-logo" viewBox="0 0 135.47 135.47">
5088 <path fill="currentColor" d="m71.766 36.352s-10.212-0.6795-27.602 4.7619c-17.722 5.5452-27.773 13.405-27.773 13.405s26.414-14.748 56.228-15.586zm38.09 16.035 1.3276-0.08664s-7.6062-9.2286-22.165-13.724c8.1839 3.3267 15.307 7.7345 20.837 13.81zm2.1727 3.8344c0.20411-0.3539 0.86302 1.1243 1.3634 1.7453 0.0212 0.124 0.0564 0.19967-0.23373 0.13998-0.0244-0.12747-0.0665-0.16444-0.0665-0.16444s-0.70029-0.41667-0.91499-0.71224c-0.21487-0.29556-0.253-0.81255-0.14825-1.0086zm17.867 43.93s1.6147-18.538-27.511-22.812c-3.6915-0.54163-8.3599-0.9585-13.082-0.97044-23.344 0.30865-24.195-26.924-6.6044-28.299 7.2901-0.60152 15.995 3.3311 24.505 7.2941-0.0316 1.0569 0.0121 1.9961 0.70646 2.864 0.69414 0.86762 3.3607 1.8142 4.2128 2.3031 0.85203 0.48907 3.5816 2.2245 5.2543 4.4017 0.36275-0.67854 3.3921-2.6504 3.3921-2.6504s-0.72571 0.01579-2.414-0.61519c-1.6885-0.63098-3.6921-2.5401-3.7395-2.6504-0.0473-0.11052-0.0788-0.28401 0.31578-0.36295 0.2996-0.25224-0.37893-1.0727-0.67874-1.3723-0.2996-0.2998-2.3036-3.7073-2.3508-3.7863-0.0473-0.07894-0.0632-0.1577-0.20507-0.25243-0.4419-0.1421-2.3826 0.20506-2.3826 0.20506s-2.9847-1.4659-4.0135-4.6264c0.015 0.55358-0.5118 1.158 0 2.4298-1.5562-0.65832-2.8929-1.7811-3.9472-4.5557-0.62751 1.5781 0 2.5815 0 2.5815s-3.6646-1.024-4.2509-4.4036c-0.6435 1.5171 0 2.4296 0 2.4296s-5.9742-3.1172-15.901-3.1624c-6.646-0.60961-8.0296-12.301-7.4139-14.269 0 0-9.586-5.0521-28.456-7.2841-18.87-2.2322-34.346-0.33638-34.346-0.33638s33.421-1.6039 60.195 9.2356c0.91018 4.0709 3.6482 10.851 5.1229 14.11-4.2197 2.9175-8.9781 5.6609-9.7191 15.391-0.74074 9.7297 7.6245 18.288 17.998 18.552 9.8502 0.52469 16.656 0.59921 24.905 4.8759 7.8739 4.3537 14.33 17.62 14.969 29.551 0.69008-8.8524-2.632-27.889-18.134-33.669 21.667 3.7917 23.573 19.854 23.573 19.854zm-58.64-65.253-0.77963-2.5147s-12.864-2.2844-30.16-1.055c-17.296 1.2294-34.759 7.2839-34.759 7.2839s35.732-8.991 65.698-3.7143"/>
5089 </svg>
5090 © OffSec Services Limited 2022. All rights reserved.
5091 </div>
5092 </div>
5093 </footer>
5094
5095 <!-- /footer -->
5096
5097
5098 <script src="../script.min.js"></script>
5099 </body>
5100 </html>
+0
-14
firefox/web/css/bootstrap.min.css less more
0 /*!
1 * Bootstrap v3.1.0 (http://getbootstrap.com)
2 * Copyright 2011-2014 Twitter, Inc.
3 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
4 */
5
6 /*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none!important;color:#000!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.428571429;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}
7
8 /* caused weird overflow-y scroll bars - removed, DigiP */
9 /*.row{margin-left:-15px;margin-right:-15px}*/
10
11
12
13 .col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.428571429;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.428571429;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group .list-group-item:first-child{border-top:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel>.list-group:first-child .list-group-item:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tfoot>tr:first-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tfoot>tr:first-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:first-child>td{border-top:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.428571429px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top .arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right .arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom .arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom .arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left .arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}@media print{.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}}
+0
-5
firefox/web/css/font-awesome.css less more
0 /*!
1 * Font Awesome Pro 5.5.0 by @fontawesome - https://fontawesome.com
2 * License - https://fontawesome.com/license (Commercial License)
3 */
4 .fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-abacus:before{content:"\f640"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acorn:before{content:"\f6ae"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-alarm-clock:before{content:"\f34e"}.fa-algolia:before{content:"\f36c"}.fa-alicorn:before{content:"\f6b0"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-analytics:before{content:"\f643"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-crate:before{content:"\f6b1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-alt-down:before{content:"\f354"}.fa-arrow-alt-from-bottom:before{content:"\f346"}.fa-arrow-alt-from-left:before{content:"\f347"}.fa-arrow-alt-from-right:before{content:"\f348"}.fa-arrow-alt-from-top:before{content:"\f349"}.fa-arrow-alt-left:before{content:"\f355"}.fa-arrow-alt-right:before{content:"\f356"}.fa-arrow-alt-square-down:before{content:"\f350"}.fa-arrow-alt-square-left:before{content:"\f351"}.fa-arrow-alt-square-right:before{content:"\f352"}.fa-arrow-alt-square-up:before{content:"\f353"}.fa-arrow-alt-to-bottom:before{content:"\f34a"}.fa-arrow-alt-to-left:before{content:"\f34b"}.fa-arrow-alt-to-right:before{content:"\f34c"}.fa-arrow-alt-to-top:before{content:"\f34d"}.fa-arrow-alt-up:before{content:"\f357"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-from-bottom:before{content:"\f342"}.fa-arrow-from-left:before{content:"\f343"}.fa-arrow-from-right:before{content:"\f344"}.fa-arrow-from-top:before{content:"\f345"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-square-down:before{content:"\f339"}.fa-arrow-square-left:before{content:"\f33a"}.fa-arrow-square-right:before{content:"\f33b"}.fa-arrow-square-up:before{content:"\f33c"}.fa-arrow-to-bottom:before{content:"\f33d"}.fa-arrow-to-left:before{content:"\f33e"}.fa-arrow-to-right:before{content:"\f340"}.fa-arrow-to-top:before{content:"\f341"}.fa-arrow-up:before{content:"\f062"}.fa-arrows:before{content:"\f047"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-arrows-h:before{content:"\f07e"}.fa-arrows-v:before{content:"\f07d"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atom:before{content:"\f5d2"}.fa-atom-alt:before{content:"\f5d3"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-axe:before{content:"\f6b2"}.fa-axe-battle:before{content:"\f6b3"}.fa-backpack:before{content:"\f5d4"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-badge:before{content:"\f335"}.fa-badge-check:before{content:"\f336"}.fa-badge-dollar:before{content:"\f645"}.fa-badge-percent:before{content:"\f646"}.fa-badger-honey:before{content:"\f6b4"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ballot:before{content:"\f732"}.fa-ballot-check:before{content:"\f733"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-barcode-alt:before{content:"\f463"}.fa-barcode-read:before{content:"\f464"}.fa-barcode-scan:before{content:"\f465"}.fa-bars:before{content:"\f0c9"}.fa-baseball:before{content:"\f432"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-basketball-hoop:before{content:"\f435"}.fa-bat:before{content:"\f6b5"}.fa-bath:before{content:"\f2cd"}.fa-battery-bolt:before{content:"\f376"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-slash:before{content:"\f377"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-school:before{content:"\f5d5"}.fa-bell-school-slash:before{content:"\f5d6"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blanket:before{content:"\f498"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bone-break:before{content:"\f5d8"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-alt:before{content:"\f5d9"}.fa-book-dead:before{content:"\f6b7"}.fa-book-heart:before{content:"\f499"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-book-spells:before{content:"\f6b8"}.fa-bookmark:before{content:"\f02e"}.fa-books:before{content:"\f5db"}.fa-booth-curtain:before{content:"\f734"}.fa-bow-arrow:before{content:"\f6b9"}.fa-bowling-ball:before{content:"\f436"}.fa-bowling-pins:before{content:"\f437"}.fa-box:before{content:"\f466"}.fa-box-alt:before{content:"\f49a"}.fa-box-ballot:before{content:"\f735"}.fa-box-check:before{content:"\f467"}.fa-box-fragile:before{content:"\f49b"}.fa-box-full:before{content:"\f49c"}.fa-box-heart:before{content:"\f49d"}.fa-box-open:before{content:"\f49e"}.fa-box-up:before{content:"\f49f"}.fa-box-usd:before{content:"\f4a0"}.fa-boxes:before{content:"\f468"}.fa-boxes-alt:before{content:"\f4a1"}.fa-boxing-glove:before{content:"\f438"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-browser:before{content:"\f37e"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-bullseye-arrow:before{content:"\f648"}.fa-bullseye-pointer:before{content:"\f649"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-bus-school:before{content:"\f5dd"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-cabinet-filing:before{content:"\f64b"}.fa-calculator:before{content:"\f1ec"}.fa-calculator-alt:before{content:"\f64c"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-edit:before{content:"\f333"}.fa-calendar-exclamation:before{content:"\f334"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-star:before{content:"\f736"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-alt:before{content:"\f332"}.fa-camera-retro:before{content:"\f083"}.fa-campfire:before{content:"\f6ba"}.fa-campground:before{content:"\f6bb"}.fa-candle-holder:before{content:"\f6bc"}.fa-candy-corn:before{content:"\f6bd"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-bump:before{content:"\f5e0"}.fa-car-crash:before{content:"\f5e1"}.fa-car-garage:before{content:"\f5e2"}.fa-car-mechanic:before{content:"\f5e3"}.fa-car-side:before{content:"\f5e4"}.fa-car-tilt:before{content:"\f5e5"}.fa-car-wash:before{content:"\f5e6"}.fa-caret-circle-down:before{content:"\f32d"}.fa-caret-circle-left:before{content:"\f32e"}.fa-caret-circle-right:before{content:"\f330"}.fa-caret-circle-up:before{content:"\f331"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cat:before{content:"\f6be"}.fa-cauldron:before{content:"\f6bf"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chair-office:before{content:"\f6c1"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-line-down:before{content:"\f64d"}.fa-chart-pie:before{content:"\f200"}.fa-chart-pie-alt:before{content:"\f64e"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-bishop-alt:before{content:"\f43b"}.fa-chess-board:before{content:"\f43c"}.fa-chess-clock:before{content:"\f43d"}.fa-chess-clock-alt:before{content:"\f43e"}.fa-chess-king:before{content:"\f43f"}.fa-chess-king-alt:before{content:"\f440"}.fa-chess-knight:before{content:"\f441"}.fa-chess-knight-alt:before{content:"\f442"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-pawn-alt:before{content:"\f444"}.fa-chess-queen:before{content:"\f445"}.fa-chess-queen-alt:before{content:"\f446"}.fa-chess-rook:before{content:"\f447"}.fa-chess-rook-alt:before{content:"\f448"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-double-down:before{content:"\f322"}.fa-chevron-double-left:before{content:"\f323"}.fa-chevron-double-right:before{content:"\f324"}.fa-chevron-double-up:before{content:"\f325"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-square-down:before{content:"\f329"}.fa-chevron-square-left:before{content:"\f32a"}.fa-chevron-square-right:before{content:"\f32b"}.fa-chevron-square-up:before{content:"\f32c"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-claw-marks:before{content:"\f6c2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clipboard-list-check:before{content:"\f737"}.fa-clipboard-prescription:before{content:"\f5e8"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-drizzle:before{content:"\f738"}.fa-cloud-hail:before{content:"\f739"}.fa-cloud-hail-mixed:before{content:"\f73a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-rainbow:before{content:"\f73e"}.fa-cloud-showers:before{content:"\f73f"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sleet:before{content:"\f741"}.fa-cloud-snow:before{content:"\f742"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload:before{content:"\f0ee"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-clouds:before{content:"\f744"}.fa-clouds-moon:before{content:"\f745"}.fa-clouds-sun:before{content:"\f746"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-club:before{content:"\f327"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-code-commit:before{content:"\f386"}.fa-code-merge:before{content:"\f387"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-coffee-togo:before{content:"\f6c5"}.fa-coffin:before{content:"\f6c6"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-alt-check:before{content:"\f4a2"}.fa-comment-alt-dollar:before{content:"\f650"}.fa-comment-alt-dots:before{content:"\f4a3"}.fa-comment-alt-edit:before{content:"\f4a4"}.fa-comment-alt-exclamation:before{content:"\f4a5"}.fa-comment-alt-lines:before{content:"\f4a6"}.fa-comment-alt-minus:before{content:"\f4a7"}.fa-comment-alt-plus:before{content:"\f4a8"}.fa-comment-alt-slash:before{content:"\f4a9"}.fa-comment-alt-smile:before{content:"\f4aa"}.fa-comment-alt-times:before{content:"\f4ab"}.fa-comment-check:before{content:"\f4ac"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-edit:before{content:"\f4ae"}.fa-comment-exclamation:before{content:"\f4af"}.fa-comment-lines:before{content:"\f4b0"}.fa-comment-minus:before{content:"\f4b1"}.fa-comment-plus:before{content:"\f4b2"}.fa-comment-slash:before{content:"\f4b3"}.fa-comment-smile:before{content:"\f4b4"}.fa-comment-times:before{content:"\f4b5"}.fa-comments:before{content:"\f086"}.fa-comments-alt:before{content:"\f4b6"}.fa-comments-alt-dollar:before{content:"\f652"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compass-slash:before{content:"\f5e9"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-wide:before{content:"\f326"}.fa-concierge-bell:before{content:"\f562"}.fa-connectdevelop:before{content:"\f20e"}.fa-container-storage:before{content:"\f4b7"}.fa-contao:before{content:"\f26d"}.fa-conveyor-belt:before{content:"\f46e"}.fa-conveyor-belt-alt:before{content:"\f46f"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-corn:before{content:"\f6c7"}.fa-couch:before{content:"\f4b8"}.fa-cow:before{content:"\f6c8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-credit-card-blank:before{content:"\f389"}.fa-credit-card-front:before{content:"\f38a"}.fa-cricket:before{content:"\f449"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-curling:before{content:"\f44a"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dagger:before{content:"\f6cb"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-desktop-alt:before{content:"\f390"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dewpoint:before{content:"\f748"}.fa-dharmachakra:before{content:"\f655"}.fa-diagnoses:before{content:"\f470"}.fa-diamond:before{content:"\f219"}.fa-dice:before{content:"\f522"}.fa-dice-d10:before{content:"\f6cd"}.fa-dice-d12:before{content:"\f6ce"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d4:before{content:"\f6d0"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-d8:before{content:"\f6d2"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-diploma:before{content:"\f5ea"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-do-not-enter:before{content:"\f5ec"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dog-leashed:before{content:"\f6d4"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-empty:before{content:"\f473"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dolly-flatbed-alt:before{content:"\f475"}.fa-dolly-flatbed-empty:before{content:"\f476"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-circle:before{content:"\f5ed"}.fa-draw-polygon:before{content:"\f5ee"}.fa-draw-square:before{content:"\f5ef"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick:before{content:"\f6d6"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-duck:before{content:"\f6d8"}.fa-dumbbell:before{content:"\f44b"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-ear:before{content:"\f5f0"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-eclipse:before{content:"\f749"}.fa-eclipse-alt:before{content:"\f74a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-elephant:before{content:"\f6da"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-h-alt:before{content:"\f39b"}.fa-ellipsis-v:before{content:"\f142"}.fa-ellipsis-v-alt:before{content:"\f39c"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-empty-set:before{content:"\f656"}.fa-engine-warning:before{content:"\f5f2"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-dollar:before{content:"\f657"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange:before{content:"\f0ec"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-square:before{content:"\f321"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows:before{content:"\f31d"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expand-wide:before{content:"\f320"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link:before{content:"\f08e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square:before{content:"\f14c"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-evil:before{content:"\f6db"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-female:before{content:"\f182"}.fa-field-hockey:before{content:"\f44c"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-certificate:before{content:"\f5f3"}.fa-file-chart-line:before{content:"\f659"}.fa-file-chart-pie:before{content:"\f65a"}.fa-file-check:before{content:"\f316"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-edit:before{content:"\f31c"}.fa-file-excel:before{content:"\f1c3"}.fa-file-exclamation:before{content:"\f31a"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-minus:before{content:"\f318"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-plus:before{content:"\f319"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-spreadsheet:before{content:"\f65b"}.fa-file-times:before{content:"\f317"}.fa-file-upload:before{content:"\f574"}.fa-file-user:before{content:"\f65c"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-film-alt:before{content:"\f3a0"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-fire-smoke:before{content:"\f74b"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-alt:before{content:"\f74c"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flame:before{content:"\f6df"}.fa-flask:before{content:"\f0c3"}.fa-flask-poison:before{content:"\f6e0"}.fa-flask-potion:before{content:"\f6e1"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-fog:before{content:"\f74e"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-folder-times:before{content:"\f65f"}.fa-folders:before{content:"\f660"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-football-helmet:before{content:"\f44f"}.fa-forklift:before{content:"\f47a"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-fragile:before{content:"\f4bb"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-function:before{content:"\f661"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gas-pump-slash:before{content:"\f5f4"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gift-card:before{content:"\f663"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glasses:before{content:"\f530"}.fa-glasses-alt:before{content:"\f5f5"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-stand:before{content:"\f5f6"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-golf-club:before{content:"\f451"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-h1:before{content:"\f313"}.fa-h2:before{content:"\f314"}.fa-h3:before{content:"\f315"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hammer-war:before{content:"\f6e4"}.fa-hamsa:before{content:"\f665"}.fa-hand-heart:before{content:"\f4bc"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-box:before{content:"\f47b"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-magic:before{content:"\f6e5"}.fa-hand-holding-seedling:before{content:"\f4bf"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-receiving:before{content:"\f47c"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-heart:before{content:"\f4c3"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-usd:before{content:"\f4c5"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt:before{content:"\f4c6"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-witch:before{content:"\f6e7"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-head-side:before{content:"\f6e9"}.fa-head-vr:before{content:"\f6ea"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-circle:before{content:"\f4c7"}.fa-heart-rate:before{content:"\f5f8"}.fa-heart-square:before{content:"\f4c8"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-helmet-battle:before{content:"\f6eb"}.fa-hexagon:before{content:"\f312"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-mask:before{content:"\f6ee"}.fa-hockey-puck:before{content:"\f453"}.fa-hockey-sticks:before{content:"\f454"}.fa-home:before{content:"\f015"}.fa-home-heart:before{content:"\f4c9"}.fa-hood-cloak:before{content:"\f6ef"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-flood:before{content:"\f74f"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-humidity:before{content:"\f750"}.fa-hurricane:before{content:"\f751"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-inbox-in:before{content:"\f310"}.fa-inbox-out:before{content:"\f311"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-industry-alt:before{content:"\f3b3"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-info-square:before{content:"\f30f"}.fa-inhaler:before{content:"\f5f9"}.fa-instagram:before{content:"\f16d"}.fa-integral:before{content:"\f667"}.fa-internet-explorer:before{content:"\f26b"}.fa-intersection:before{content:"\f668"}.fa-inventory:before{content:"\f480"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jack-o-lantern:before{content:"\f30e"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-key-skeleton:before{content:"\f6f3"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-keynote:before{content:"\f66c"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kidneys:before{content:"\f5fb"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kite:before{content:"\f6f4"}.fa-kiwi-bird:before{content:"\f535"}.fa-knife-kitchen:before{content:"\f6f5"}.fa-korvue:before{content:"\f42f"}.fa-lambda:before{content:"\f66e"}.fa-lamp:before{content:"\f4ca"}.fa-landmark:before{content:"\f66f"}.fa-landmark-alt:before{content:"\f752"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-layer-minus:before{content:"\f5fe"}.fa-layer-plus:before{content:"\f5ff"}.fa-leaf:before{content:"\f06c"}.fa-leaf-heart:before{content:"\f4cb"}.fa-leaf-maple:before{content:"\f6f6"}.fa-leaf-oak:before{content:"\f6f7"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down:before{content:"\f149"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up:before{content:"\f148"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-lightbulb-dollar:before{content:"\f670"}.fa-lightbulb-exclamation:before{content:"\f671"}.fa-lightbulb-on:before{content:"\f672"}.fa-lightbulb-slash:before{content:"\f673"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lips:before{content:"\f600"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location:before{content:"\f601"}.fa-location-arrow:before{content:"\f124"}.fa-location-circle:before{content:"\f602"}.fa-location-slash:before{content:"\f603"}.fa-lock:before{content:"\f023"}.fa-lock-alt:before{content:"\f30d"}.fa-lock-open:before{content:"\f3c1"}.fa-lock-open-alt:before{content:"\f3c2"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-long-arrow-up:before{content:"\f176"}.fa-loveseat:before{content:"\f4cc"}.fa-low-vision:before{content:"\f2a8"}.fa-luchador:before{content:"\f455"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lyft:before{content:"\f3c3"}.fa-mace:before{content:"\f6f8"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-mandolin:before{content:"\f6f9"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-marker-alt-slash:before{content:"\f605"}.fa-map-marker-check:before{content:"\f606"}.fa-map-marker-edit:before{content:"\f607"}.fa-map-marker-exclamation:before{content:"\f608"}.fa-map-marker-minus:before{content:"\f609"}.fa-map-marker-plus:before{content:"\f60a"}.fa-map-marker-question:before{content:"\f60b"}.fa-map-marker-slash:before{content:"\f60c"}.fa-map-marker-smile:before{content:"\f60d"}.fa-map-marker-times:before{content:"\f60e"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaphone:before{content:"\f675"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-mind-share:before{content:"\f677"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-hexagon:before{content:"\f307"}.fa-minus-octagon:before{content:"\f308"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-mobile-android:before{content:"\f3ce"}.fa-mobile-android-alt:before{content:"\f3cf"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monitor-heart-rate:before{content:"\f611"}.fa-monkey:before{content:"\f6fb"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-moon-cloud:before{content:"\f754"}.fa-moon-stars:before{content:"\f755"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mountains:before{content:"\f6fd"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-narwhal:before{content:"\f6fe"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octagon:before{content:"\f306"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-oil-temp:before{content:"\f614"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-omega:before{content:"\f67a"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-brush-alt:before{content:"\f5a9"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-pallet-alt:before{content:"\f483"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-parking-circle:before{content:"\f615"}.fa-parking-circle-slash:before{content:"\f616"}.fa-parking-slash:before{content:"\f617"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paw-alt:before{content:"\f701"}.fa-paw-claws:before{content:"\f702"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pegasus:before{content:"\f703"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil:before{content:"\f040"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-paintbrush:before{content:"\f618"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-pennant:before{content:"\f456"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-person-carry:before{content:"\f4cf"}.fa-person-dolly:before{content:"\f4d0"}.fa-person-dolly-empty:before{content:"\f4d1"}.fa-person-sign:before{content:"\f757"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-office:before{content:"\f67d"}.fa-phone-plus:before{content:"\f4d2"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pi:before{content:"\f67e"}.fa-pie:before{content:"\f705"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pig:before{content:"\f706"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-alt:before{content:"\f3de"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-hexagon:before{content:"\f300"}.fa-plus-octagon:before{content:"\f301"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-podium:before{content:"\f680"}.fa-podium-star:before{content:"\f758"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poll-people:before{content:"\f759"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-presentation:before{content:"\f685"}.fa-print:before{content:"\f02f"}.fa-print-slash:before{content:"\f686"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pumpkin:before{content:"\f707"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-question-square:before{content:"\f2fd"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-rabbit:before{content:"\f708"}.fa-rabbit-fast:before{content:"\f709"}.fa-racquet:before{content:"\f45a"}.fa-rainbow:before{content:"\f75b"}.fa-raindrops:before{content:"\f75c"}.fa-ram:before{content:"\f70a"}.fa-ramp-loading:before{content:"\f4d4"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-rectangle-landscape:before{content:"\f2fa"}.fa-rectangle-portrait:before{content:"\f2fb"}.fa-rectangle-wide:before{content:"\f2fc"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-repeat:before{content:"\f363"}.fa-repeat-1:before{content:"\f365"}.fa-repeat-1-alt:before{content:"\f366"}.fa-repeat-alt:before{content:"\f364"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-retweet-alt:before{content:"\f361"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-route-highway:before{content:"\f61a"}.fa-route-interstate:before{content:"\f61b"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-triangle:before{content:"\f61c"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-scalpel:before{content:"\f61d"}.fa-scalpel-path:before{content:"\f61e"}.fa-scanner:before{content:"\f488"}.fa-scanner-keyboard:before{content:"\f489"}.fa-scanner-touchscreen:before{content:"\f48a"}.fa-scarecrow:before{content:"\f70d"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-scroll-old:before{content:"\f70f"}.fa-scrubber:before{content:"\f2f8"}.fa-scythe:before{content:"\f710"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-all:before{content:"\f367"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-sheep:before{content:"\f711"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield:before{content:"\f132"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-check:before{content:"\f2f7"}.fa-shield-cross:before{content:"\f712"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shipping-timed:before{content:"\f48c"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shovel:before{content:"\f713"}.fa-shower:before{content:"\f2cc"}.fa-shredder:before{content:"\f68a"}.fa-shuttle-van:before{content:"\f5b6"}.fa-shuttlecock:before{content:"\f45b"}.fa-sigma:before{content:"\f68b"}.fa-sign:before{content:"\f4d9"}.fa-sign-in:before{content:"\f090"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out:before{content:"\f08b"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signal-1:before{content:"\f68c"}.fa-signal-2:before{content:"\f68d"}.fa-signal-3:before{content:"\f68e"}.fa-signal-4:before{content:"\f68f"}.fa-signal-alt:before{content:"\f690"}.fa-signal-alt-1:before{content:"\f691"}.fa-signal-alt-2:before{content:"\f692"}.fa-signal-alt-3:before{content:"\f693"}.fa-signal-alt-slash:before{content:"\f694"}.fa-signal-slash:before{content:"\f695"}.fa-signature:before{content:"\f5b7"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skeleton:before{content:"\f620"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sliders-h:before{content:"\f1de"}.fa-sliders-h-square:before{content:"\f3f0"}.fa-sliders-v:before{content:"\f3f1"}.fa-sliders-v-square:before{content:"\f3f2"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-plus:before{content:"\f5b9"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoke:before{content:"\f760"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-snake:before{content:"\f716"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snow-blowing:before{content:"\f761"}.fa-snowflake:before{content:"\f2dc"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-spade:before{content:"\f2f4"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spider-black-widow:before{content:"\f718"}.fa-spider-web:before{content:"\f719"}.fa-spinner:before{content:"\f110"}.fa-spinner-third:before{content:"\f3f4"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root:before{content:"\f697"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-squirrel:before{content:"\f71a"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-staff:before{content:"\f71b"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-exclamation:before{content:"\f2f3"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-stars:before{content:"\f762"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-steering-wheel:before{content:"\f622"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stomach:before{content:"\f623"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-sun-cloud:before{content:"\f763"}.fa-sun-dust:before{content:"\f764"}.fa-sun-haze:before{content:"\f765"}.fa-sunrise:before{content:"\f766"}.fa-sunset:before{content:"\f767"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-sword:before{content:"\f71c"}.fa-swords:before{content:"\f71d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablet-android:before{content:"\f3fb"}.fa-tablet-android-alt:before{content:"\f3fc"}.fa-tablet-rugged:before{content:"\f48f"}.fa-tablets:before{content:"\f490"}.fa-tachometer:before{content:"\f0e4"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tachometer-alt-average:before{content:"\f624"}.fa-tachometer-alt-fast:before{content:"\f625"}.fa-tachometer-alt-fastest:before{content:"\f626"}.fa-tachometer-alt-slow:before{content:"\f627"}.fa-tachometer-alt-slowest:before{content:"\f628"}.fa-tachometer-average:before{content:"\f629"}.fa-tachometer-fast:before{content:"\f62a"}.fa-tachometer-fastest:before{content:"\f62b"}.fa-tachometer-slow:before{content:"\f62c"}.fa-tachometer-slowest:before{content:"\f62d"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tally:before{content:"\f69c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-frigid:before{content:"\f768"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-hot:before{content:"\f76a"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tennis-ball:before{content:"\f45e"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-theta:before{content:"\f69e"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-thunderstorm:before{content:"\f76c"}.fa-thunderstorm-moon:before{content:"\f76d"}.fa-thunderstorm-sun:before{content:"\f76e"}.fa-ticket:before{content:"\f145"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tilde:before{content:"\f69f"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-times-hexagon:before{content:"\f2ee"}.fa-times-octagon:before{content:"\f2f0"}.fa-times-square:before{content:"\f2d3"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tire:before{content:"\f631"}.fa-tire-flat:before{content:"\f632"}.fa-tire-pressure-warning:before{content:"\f633"}.fa-tire-rugged:before{content:"\f634"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-alt:before{content:"\f71f"}.fa-tombstone:before{content:"\f720"}.fa-tombstone-alt:before{content:"\f721"}.fa-toolbox:before{content:"\f552"}.fa-tooth:before{content:"\f5c9"}.fa-toothbrush:before{content:"\f635"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tornado:before{content:"\f76f"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-cone:before{content:"\f636"}.fa-traffic-light:before{content:"\f637"}.fa-traffic-light-go:before{content:"\f638"}.fa-traffic-light-slow:before{content:"\f639"}.fa-traffic-light-stop:before{content:"\f63a"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-treasure-chest:before{content:"\f723"}.fa-tree:before{content:"\f1bb"}.fa-tree-alt:before{content:"\f400"}.fa-trees:before{content:"\f724"}.fa-trello:before{content:"\f181"}.fa-triangle:before{content:"\f2ec"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-trophy-alt:before{content:"\f2eb"}.fa-truck:before{content:"\f0d1"}.fa-truck-container:before{content:"\f4dc"}.fa-truck-couch:before{content:"\f4dd"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-truck-ramp:before{content:"\f4e0"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-turkey:before{content:"\f725"}.fa-turtle:before{content:"\f726"}.fa-tv:before{content:"\f26c"}.fa-tv-retro:before{content:"\f401"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-unicorn:before{content:"\f727"}.fa-union:before{content:"\f6a2"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-usd-circle:before{content:"\f2e8"}.fa-usd-square:before{content:"\f2e9"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-chart:before{content:"\f6a3"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-crown:before{content:"\f6a4"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-class:before{content:"\f63d"}.fa-users-cog:before{content:"\f509"}.fa-users-crown:before{content:"\f6a5"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-fork:before{content:"\f2e3"}.fa-utensil-knife:before{content:"\f2e4"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-utensils-alt:before{content:"\f2e6"}.fa-vaadin:before{content:"\f408"}.fa-value-absolute:before{content:"\f6a6"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-plus:before{content:"\f4e1"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volcano:before{content:"\f770"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume:before{content:"\f6a8"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-slash:before{content:"\f2e2"}.fa-volume-up:before{content:"\f028"}.fa-vote-nay:before{content:"\f771"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-wand:before{content:"\f72a"}.fa-wand-magic:before{content:"\f72b"}.fa-warehouse:before{content:"\f494"}.fa-warehouse-alt:before{content:"\f495"}.fa-watch:before{content:"\f2e1"}.fa-watch-fitness:before{content:"\f63e"}.fa-water:before{content:"\f773"}.fa-water-lower:before{content:"\f774"}.fa-water-rise:before{content:"\f775"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whale:before{content:"\f72c"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheat:before{content:"\f72d"}.fa-wheelchair:before{content:"\f193"}.fa-whistle:before{content:"\f460"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wifi-1:before{content:"\f6aa"}.fa-wifi-2:before{content:"\f6ab"}.fa-wifi-slash:before{content:"\f6ac"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-wind-warning:before{content:"\f776"}.fa-window:before{content:"\f40e"}.fa-window-alt:before{content:"\f40f"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-windsock:before{content:"\f777"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;src:url(../fonts/fa-brands-400.eot);src:url(../fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-brands-400.woff2) format("woff2"),url(../fonts/fa-brands-400.woff) format("woff"),url(../fonts/fa-brands-400.ttf) format("truetype"),url(../fonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;src:url(../fonts/fa-light-300.eot);src:url(../fonts/fa-light-300.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-light-300.woff2) format("woff2"),url(../fonts/fa-light-300.woff) format("woff"),url(../fonts/fa-light-300.ttf) format("truetype"),url(../fonts/fa-light-300.svg#fontawesome) format("svg")}.fal{font-weight:300}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;src:url(../fonts/fa-regular-400.eot);src:url(../fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-regular-400.woff2) format("woff2"),url(../fonts/fa-regular-400.woff) format("woff"),url(../fonts/fa-regular-400.ttf) format("truetype"),url(../fonts/fa-regular-400.svg#fontawesome) format("svg")}.fal,.far{font-family:"Font Awesome 5 Pro"}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;src:url(../fonts/fa-solid-900.eot);src:url(../fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../fonts/fa-solid-900.woff2) format("woff2"),url(../fonts/fa-solid-900.woff) format("woff"),url(../fonts/fa-solid-900.ttf) format("truetype"),url(../fonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.fas{font-family:"Font Awesome 5 Pro";font-weight:900}
+0
-1379
firefox/web/css/overwrite.css less more
0 .widget h4,.widget h5 {
1 font-weight:700;
2 margin-bottom:20px;
3 }
4
5
6 /* === Bootstrap style === */
7
8 .img-polaroid {
9 padding: 4px;
10 background-color: #fff;
11 border: 1px solid #e9e9e9;
12 -webkit-box-shadow: none;
13 -moz-box-shadow: none;
14 box-shadow: none;
15
16 }
17
18
19 .img-rounded {
20 -webkit-border-radius: 2px;
21 -moz-border-radius: 2px;
22 border-radius: 2px;
23 }
24
25 .img-circle.bordered {
26 -webkit-border-radius: 500px;
27 -moz-border-radius: 500px;
28 border-radius: 500px;
29 background-color: #fff;
30 border: 1px solid #e9e9e9;
31 }
32
33 code,
34 pre {
35 -webkit-border-radius: 2px;
36 -moz-border-radius: 2px;
37 border-radius: 2px;
38 }
39
40 pre {
41 -webkit-border-radius: 2px;
42 -moz-border-radius: 2px;
43 border-radius: 2px;
44 }
45
46 blockquote{
47 margin: 0 0 20px;
48 }
49
50
51
52 label,
53 input,
54 button,
55 select,
56 textarea {
57 font-size: 13px;
58 font-weight: normal;
59 }
60
61 label{
62 font-weight: bold;
63 color:#353535;
64 }
65
66 input,
67 button,
68 select,
69 textarea {
70 font-family:'Open Sans', Arial, sans-serif;
71 font-size: 13px;
72 }
73
74 select{
75 font-size: 13px;
76 line-height: 20px;
77 background:#fbfbfb;
78 border-color: #919191 #919191 #b3b3b3;
79 color: #999999;
80 -webkit-box-shadow: inset 0 1px 3px #cacaca;
81 -moz-box-shadow: inset 0 1px 3px #cacaca;
82 box-shadow: inset 0 1px 3px #cacaca;
83 -webkit-border-radius: 2px;
84 -moz-border-radius: 2px;
85 border-radius: 2px;
86 }
87
88 select,
89 textarea,
90 input[type="text"],
91 input[type="password"],
92 input[type="datetime"],
93 input[type="datetime-local"],
94 input[type="date"],
95 input[type="month"],
96 input[type="time"],
97 input[type="week"],
98 input[type="number"],
99 input[type="email"],
100 input[type="url"],
101 input[type="search"],
102 input[type="tel"],
103 input[type="color"],
104 .uneditable-input {
105 -webkit-border-radius: 0;
106 -moz-border-radius: 0;
107 border-radius: 0;
108 }
109
110
111 input.input-block-level{
112 padding:20px;
113 }
114
115 .input-append input,
116 .input-prepend input,
117 .input-append select,
118 .input-prepend select,
119 .input-append .uneditable-input,
120 .input-prepend .uneditable-input {
121 -webkit-border-radius: 0 0 0 0;
122 -moz-border-radius: 0 0 0 0;
123 border-radius: 0 0 0 0;
124 }
125
126 .input-prepend .add-on:first-child,
127 .input-prepend .btn:first-child {
128 -webkit-border-radius: 0 0 0 0;
129 -moz-border-radius: 0 0 0 0;
130 border-radius: 0 0 0 0;
131 }
132
133 .input-append input,
134 .input-append select,
135 .input-append .uneditable-input {
136 -webkit-border-radius: 0 0 0 0;
137 -moz-border-radius: 0 0 0 0;
138 border-radius: 0 0 0 0;
139 }
140
141 .input-append input + .btn-group .btn:last-child,
142 .input-append select + .btn-group .btn:last-child,
143 .input-append .uneditable-input + .btn-group .btn:last-child {
144 -webkit-border-radius: 0 0 0 0;
145 -moz-border-radius: 0 0 0 0;
146 border-radius: 0 0 0 0;
147 }
148
149
150 .input-append .add-on:last-child,
151 .input-append .btn:last-child,
152 .input-append .btn-group:last-child > .dropdown-toggle {
153 -webkit-border-radius: 0 0 0 0;
154 -moz-border-radius: 0 0 0 0;
155 border-radius: 0 0 0 0;
156 }
157
158 .input-prepend.input-append input,
159 .input-prepend.input-append select,
160 .input-prepend.input-append .uneditable-input {
161 -webkit-border-radius: 0;
162 -moz-border-radius: 0;
163 border-radius: 0;
164 }
165
166 .input-prepend.input-append input + .btn-group .btn,
167 .input-prepend.input-append select + .btn-group .btn,
168 .input-prepend.input-append .uneditable-input + .btn-group .btn {
169 -webkit-border-radius: 0 0 0 0;
170 -moz-border-radius: 0 0 0 0;
171 border-radius: 0 0 0 0;
172 }
173
174 .input-prepend.input-append .add-on:first-child,
175 .input-prepend.input-append .btn:first-child {
176 margin-right: -1px;
177 -webkit-border-radius: 0 0 0 0;
178 -moz-border-radius: 0 0 0 0;
179 border-radius: 0 0 0 0;
180 }
181
182 .input-prepend.input-append .add-on:last-child,
183 .input-prepend.input-append .btn:last-child {
184 margin-left: -1px;
185 -webkit-border-radius: 0 0 0 0;
186 -moz-border-radius: 0 0 0 0;
187 border-radius: 0 0 0 0;
188 }
189
190 textarea:focus,
191 input[type="text"]:focus,
192 input[type="password"]:focus,
193 input[type="datetime"]:focus,
194 input[type="datetime-local"]:focus,
195 input[type="date"]:focus,
196 input[type="month"]:focus,
197 input[type="time"]:focus,
198 input[type="week"]:focus,
199 input[type="number"]:focus,
200 input[type="email"]:focus,
201 input[type="url"]:focus,
202 input[type="search"]:focus,
203 input[type="tel"]:focus,
204 input[type="color"]:focus,
205 .uneditable-input:focus {
206 outline: 0;
207 outline: thin dotted \9;
208 /* IE6-9 */
209
210 }
211
212 input.search-query {
213 margin-bottom: 0;
214 -webkit-border-radius: 0 0 0 0;
215 -moz-border-radius: 0 0 0 0;
216 border-radius: 0 0 0 0;
217 }
218
219 .form-search .input-append .search-query {
220 -webkit-border-radius: 0 0 0 0;
221 -moz-border-radius: 0 0 0 0;
222 border-radius: 0 0 0 0;
223 }
224
225 .form-search .input-append .btn {
226 -webkit-border-radius: 0 0 0 0;
227 -moz-border-radius: 0 0 0 0;
228 border-radius: 0 0 0 0;
229 }
230
231 .form-search .input-prepend .search-query {
232 -webkit-border-radius: 0 0 0 0;
233 -moz-border-radius: 0 0 0 0;
234 border-radius: 0 0 0 0;
235 }
236
237 .form-search .input-prepend .btn {
238 -webkit-border-radius: 0 0 0 0;
239 -moz-border-radius: 0 0 0 0;
240 border-radius: 0 0 0 0;
241 }
242
243 .table-bordered {
244 -webkit-border-radius: 0 0 0 0;
245 -moz-border-radius: 0 0 0 0;
246 border-radius: 0 0 0 0;
247 }
248
249 .table-bordered thead:first-child tr:first-child > th:first-child,
250 .table-bordered tbody:first-child tr:first-child > td:first-child {
251 -webkit-border-top-left-radius: 2px;
252 border-top-left-radius: 2px;
253 -moz-border-radius-topleft: 2px;
254 }
255
256
257 .table-bordered thead:first-child tr:first-child > th:last-child,
258 .table-bordered tbody:first-child tr:first-child > td:last-child {
259 -webkit-border-top-right-radius: 2px;
260 border-top-right-radius: 2px;
261 -moz-border-radius-topright: 2px;
262 }
263
264 .table-bordered thead:last-child tr:last-child > th:first-child,
265 .table-bordered tbody:last-child tr:last-child > td:first-child,
266 .table-bordered tfoot:last-child tr:last-child > td:first-child {
267 -webkit-border-bottom-left-radius: 2px;
268 border-bottom-left-radius: 2px;
269 -moz-border-radius-bottomleft: 2px;
270 }
271
272 .table-bordered thead:last-child tr:last-child > th:last-child,
273 .table-bordered tbody:last-child tr:last-child > td:last-child,
274 .table-bordered tfoot:last-child tr:last-child > td:last-child {
275 -webkit-border-bottom-right-radius: 2px;
276 border-bottom-right-radius: 2px;
277 -moz-border-radius-bottomright: 2px;
278 }
279
280 .table-bordered caption + thead tr:first-child th:first-child,
281 .table-bordered caption + tbody tr:first-child td:first-child,
282 .table-bordered colgroup + thead tr:first-child th:first-child,
283 .table-bordered colgroup + tbody tr:first-child td:first-child {
284 -webkit-border-top-left-radius: 2px;
285 border-top-left-radius: 2px;
286 -moz-border-radius-topleft: 2px;
287 }
288
289 .table-bordered caption + thead tr:first-child th:last-child,
290 .table-bordered caption + tbody tr:first-child td:last-child,
291 .table-bordered colgroup + thead tr:first-child th:last-child,
292 .table-bordered colgroup + tbody tr:first-child td:last-child {
293 -webkit-border-top-right-radius: 2px;
294 border-top-right-radius: 2px;
295 -moz-border-radius-topright: 2px;
296 }
297
298 .dropdown-menu {
299 *border-right-width: 0;
300 *border-bottom-width: 0;
301 -webkit-border-radius: 0;
302 -moz-border-radius: 0;
303 border-radius: 0;
304
305 }
306
307 .dropdown-submenu > .dropdown-menu {
308 -webkit-border-radius: 0 0 0 0;
309 -moz-border-radius: 0 0 0 0;
310 border-radius: 0 0 0 0;
311 }
312
313 .dropup .dropdown-submenu > .dropdown-menu {
314 -webkit-border-radius: 0 0 0 0;
315 -moz-border-radius: 0 0 0 0;
316 border-radius: 0 0 0 0;
317 }
318
319 .dropdown-submenu.pull-left > .dropdown-menu {
320 left: -100%;
321 margin-left: 10px;
322 -webkit-border-radius: 0 0 0 0;
323 -moz-border-radius: 0 0 0 0;
324 border-radius: 0 0 0 0;
325 }
326
327 .typeahead {
328 z-index: 1051;
329 margin-top: 2px;
330 -webkit-border-radius: 2px;
331 -moz-border-radius: 2px;
332 border-radius: 2px;
333 }
334
335 /* --- lists --- */
336 ul,
337 ol {
338 padding: 0;
339 margin: 0 0 10px 25px;
340 }
341
342 ul ul,
343 ul ol,
344 ol ol,
345 ol ul {
346 margin-bottom: 0;
347 }
348
349 li {
350 line-height: 1.6em;
351 }
352
353 ul.unstyled,
354 ol.unstyled {
355 margin-left: 0;
356 list-style: none;
357 }
358
359 ul.inline,
360 ol.inline {
361 margin-left: 0;
362 list-style: none;
363 }
364
365 ul.inline > li,
366 ol.inline > li {
367 display: inline-block;
368 *display: inline;
369 padding-right: 5px;
370 padding-left: 5px;
371 *zoom: 1;
372 }
373
374 dl {
375 margin-bottom: 20px;
376 }
377
378 dt,
379 dd {
380 line-height: 1.6em;
381 }
382
383 dt {
384 font-weight: 700;
385 }
386
387 dd {
388 margin-left: 20px;
389 }
390
391 .dl-horizontal {
392 *zoom: 1;
393 }
394
395 .dl-horizontal:before,
396 .dl-horizontal:after {
397 display: table;
398 line-height: 0;
399 content: "";
400 }
401
402 .dl-horizontal:after {
403 clear: both;
404 }
405
406 .dl-horizontal dt {
407 float: left;
408 width: 160px;
409 overflow: hidden;
410 clear: left;
411 text-align: right;
412 text-overflow: ellipsis;
413 white-space: nowrap;
414 }
415
416 .dl-horizontal dd {
417 margin-left: 180px;
418 }
419
420 .media{
421 margin-top: 0;
422 margin-bottom: 30px;
423 }
424
425 .media .media {
426 margin-top: 30px;
427 margin-bottom: 0;
428 }
429
430 .media-body{
431 position:relative;
432 }
433
434 .well {
435 -webkit-border-radius: 2px;
436 -moz-border-radius: 2px;
437 border-radius: 2px;
438 }
439
440 .well-large {
441 -webkit-border-radius: 2px;
442 -moz-border-radius: 2px;
443 border-radius: 2px;
444 }
445
446 .well-small {
447 -webkit-border-radius: 2px;
448 -moz-border-radius: 2px;
449 border-radius: 2px;
450 }
451
452
453 /* === bootstrap button === */
454
455
456 .btn {
457 font-size: 12px;
458 text-transform:uppercase;
459 text-shadow: none;
460 background-image:none;
461 border-color: none;
462 border-bottom-color: none;
463 -webkit-box-shadow: none;
464 -moz-box-shadow: none;
465 box-shadow: none;
466 }
467
468 .btn {
469 outline:0;
470 -webkit-border-radius: 2px;
471 -moz-border-radius: 2px;
472 border-radius: 2px;
473 }
474
475
476 a.btn,.btn:focus {
477 outline:0;
478
479 }
480
481 .btn-medium {
482 padding: 6px 15px;
483 font-size: 13px;
484 -webkit-border-radius: 2px;
485 -moz-border-radius: 2px;
486 border-radius: 2px;
487 }
488
489 .btn-large {
490 font-size: 14px;
491 -webkit-border-radius: 2px;
492 -moz-border-radius: 2px;
493 border-radius: 2px;
494 }
495
496 .btn-small {
497 font-size: 11px;
498 -webkit-border-radius: 2px;
499 -moz-border-radius: 2px;
500 border-radius: 2px;
501 }
502
503 .btn-mini {
504 font-size: 10px;
505 -webkit-border-radius: 2px;
506 -moz-border-radius: 2px;
507 border-radius: 2px;
508 }
509
510 /* edges */
511 .btn-square {
512 -webkit-border-radius: 0;
513 -moz-border-radius: 0;
514 border-radius: 0;
515 }
516
517 .btn-medium.btn-mini {
518 -webkit-border-radius: 10px;
519 -moz-border-radius: 10px;
520 border-radius: 10px;
521 }
522
523 .btn-medium.btn-small {
524 -webkit-border-radius: 11px;
525 -moz-border-radius: 11px;
526 border-radius: 11px;
527 }
528
529 .btn-rounded {
530 -webkit-border-radius: 12px;
531 -moz-border-radius: 12px;
532 border-radius: 12px;
533 }
534
535 .btn-medium.btn-rounded {
536 -webkit-border-radius: 16px;
537 -moz-border-radius: 16px;
538 border-radius: 16px;
539 }
540
541
542 .btn-large.btn-rounded {
543 -webkit-border-radius: 24px;
544 -moz-border-radius: 24px;
545 border-radius: 24px;
546 }
547
548
549 .btn-group > .btn:first-child {
550 -webkit-border-bottom-left-radius: 2px;
551 border-bottom-left-radius: 2px;
552 -webkit-border-top-left-radius: 2px;
553 border-top-left-radius: 2px;
554 -moz-border-radius-bottomleft: 2px;
555 -moz-border-radius-topleft: 2px;
556 }
557
558 .btn-group > .btn:last-child,
559 .btn-group > .dropdown-toggle {
560 -webkit-border-top-right-radius: 2px;
561 border-top-right-radius: 2px;
562 -webkit-border-bottom-right-radius: 2px;
563 border-bottom-right-radius: 2px;
564 -moz-border-radius-topright: 2px;
565 -moz-border-radius-bottomright: 2px;
566 }
567
568 .btn-group > .btn.large:first-child {
569 margin-left: 0;
570 -webkit-border-bottom-left-radius: 2px;
571 border-bottom-left-radius: 2px;
572 -webkit-border-top-left-radius: 2px;
573 border-top-left-radius: 2px;
574 -moz-border-radius-bottomleft: 2px;
575 -moz-border-radius-topleft: 2px;
576 }
577
578 .btn-group > .btn.large:last-child,
579 .btn-group > .large.dropdown-toggle {
580 -webkit-border-top-right-radius: 2px;
581 border-top-right-radius: 2px;
582 -webkit-border-bottom-right-radius: 2px;
583 border-bottom-right-radius: 2px;
584 -moz-border-radius-topright: 2px;
585 -moz-border-radius-bottomright: 2px;
586 }
587
588 .btn-group-vertical > .btn:first-child {
589 -webkit-border-radius: 2px 2px 0 0;
590 -moz-border-radius: 2px 2px 0 0;
591 border-radius: 2px 2px 0 0;
592 }
593
594 .btn-group-vertical > .btn:last-child {
595 -webkit-border-radius: 0 0 2px 2px;
596 -moz-border-radius: 0 0 2px 2px;
597 border-radius: 0 0 2px 2px;
598 }
599
600 .btn-group-vertical > .btn-large:first-child {
601 -webkit-border-radius: 2px 2px 0 0;
602 -moz-border-radius: 2px 2px 0 0;
603 border-radius: 2px 2px 0 0;
604 }
605
606 .btn-group-vertical > .btn-large:last-child {
607 -webkit-border-radius: 0 0 2px 2px;
608 -moz-border-radius: 0 0 2px 2px;
609 border-radius: 0 0 2px 2px;
610 }
611
612
613 .btn-primary {
614 outline:0;
615 background: #1C0113;
616 }
617 .btn-primary:hover {
618 background: #170110;
619 }
620
621 .btn-info {
622 background: #5E9FA3;
623 }
624 .btn-info:hover {
625 background: #569498;
626 }
627
628 .btn-success {
629 background: #11766D;
630 }
631 .btn-success:hover {
632 background: #0e6a62;
633 }
634
635 .btn-warning {
636 background: #F0B300;
637 }
638 .btn-warning:hover {
639 background: #e2a900;
640 }
641
642 .btn-danger {
643 background: #a40b0b;
644 }
645 .btn-danger:hover {
646 background: #990909;
647 }
648
649 .btn-inverse {
650 background: #363636;
651 }
652 .btn-inverse:hover {
653 background: #505050;
654 }
655
656 .btn-blue {
657 border:1px solid #0a6d9b;
658 color:#fff;
659 background: #0a6d9b;
660 }
661 .btn-blue:hover,.btn-blue:focus,.btn-blue:active {
662 background: #085e86;
663 color:#fff;
664 }
665
666
667 .btn-yellow {
668 border:1px solid #efd70c;
669 color:#fff;
670 background: #efd70c;
671 }
672 .btn-yellow:hover,.btn-yellow:focus,.btn-yellow:active {
673 background: #e4ce11;
674 color:#fff;
675 }
676
677 .btn-red {
678 border:1px solid #cf1a07;
679 color:#fff;
680 background: #cf1a07;
681 }
682 .btn-red:hover,.btn-red:focus,.btn-red:active {
683 background: #c41a08;
684 color:#fff;
685 }
686
687 .btn-orange {
688 border:1px solid #ef5523;
689 color:#fff;
690 background: #ef5523;
691 }
692 .btn-orange:hover,.btn-orange:focus,.btn-orange:active {
693 background: #e45121;
694 color:#fff;
695 }
696 .btn-purple {
697 border:1px solid #c81dbe;
698 color:#fff;
699 background: #c81dbe;
700 }
701 .btn-purple:hover,.btn-purple:focus,.btn-purple:active {
702 background: #be1ab4;
703 color:#fff;
704 }
705 .btn-green {
706 border:1px solid #479c18;
707 color:#fff;
708 background: #479c18;
709 }
710 .btn-green:hover,.btn-green:focus,.btn-green:active {
711 background: #3f8d15;
712 color:#fff;
713 }
714
715 .btn-brown {
716 border:1px solid #5c2009;
717 color:#fff;
718 background: #5c2009;
719 }
720 .btn-brown:hover,.btn-brown:focus,.btn-brown:active {
721 background: #531d08;
722 color:#fff;
723 }
724
725 .btn-pink {
726 border:1px solid #f8127f;
727 color:#fff;
728 background: #f8127f;
729 }
730 .btn-pink:hover,.btn-pink:focus,.btn-pink:active {
731 background: #ef1179;
732 color:#fff;
733 }
734
735 .btn-dark {
736 border:1px solid #18191a;
737 color:#fff;
738 background: #18191a;
739 }
740 .btn-dark:hover,#content a.btn-dark:hover {
741 color:#fff;
742 }
743
744 .btn-theme {
745 color:#fff;
746 }
747
748 .btn-theme:hover,.btn-theme:focus,.btn-theme:active{
749 background: #18191a;
750 color:#fff;
751 border:1px solid #18191a;
752 }
753
754
755
756 /* ==== More buttons === */
757
758 /* plain buttons */
759
760 .btn.plain {
761 display: inline-block;
762 *display: inline;
763 padding: 4px 12px;
764 margin-bottom: 0;
765 *margin-left: .3em;
766 font-size: 13px;
767 line-height: 20px;
768 color: #333333;
769 text-align: center;
770 text-shadow: none;
771 vertical-align: middle;
772 cursor: pointer;
773 background-color: #f5f5f5;
774 *background-color: #e6e6e6;
775 background-image: none;
776 border: none;
777 *border: 0;
778 border-color: none;
779 -webkit-border-radius: 2px;
780 -moz-border-radius: 2px;
781 border-radius: 2px;
782 -webkit-box-shadow: none;
783 -moz-box-shadow: none;
784 box-shadow: none;
785 }
786
787
788
789 /* ==================================== */
790
791 .alert {
792 -webkit-border-radius: 2px;
793 -moz-border-radius: 2px;
794 border-radius: 2px;
795 }
796
797 .nav-tabs > li > a {
798 -webkit-border-radius: 2px 2px 0 0;
799 -moz-border-radius: 2px 2px 0 0;
800 border-radius: 2px 2px 0 0;
801 }
802
803 .nav-pills > li > a {
804 -webkit-border-radius: 2px;
805 -moz-border-radius: 2px;
806 border-radius: 2px;
807 }
808
809 .nav-tabs.nav-stacked > li:first-child > a {
810 -webkit-border-top-right-radius: 2px;
811 border-top-right-radius: 2px;
812 -webkit-border-top-left-radius: 2px;
813 border-top-left-radius: 2px;
814 -moz-border-radius-topright: 2px;
815 -moz-border-radius-topleft: 2px;
816 }
817
818 .nav-tabs.nav-stacked > li:last-child > a {
819 -webkit-border-bottom-right-radius: 2px;
820 border-bottom-right-radius: 2px;
821 -webkit-border-bottom-left-radius: 2px;
822 border-bottom-left-radius: 2px;
823 -moz-border-radius-bottomright: 2px;
824 -moz-border-radius-bottomleft: 2px;
825 }
826
827 .nav-tabs .dropdown-menu {
828 -webkit-border-radius: 0 0 2px 2px;
829 -moz-border-radius: 0 0 2px 2px;
830 border-radius: 0 0 2px 2px;
831 }
832
833 .nav-pills .dropdown-menu {
834 -webkit-border-radius: 2px;
835 -moz-border-radius: 2px;
836 border-radius: 2px;
837 }
838
839 .tabs-below > .nav-tabs > li > a {
840 -webkit-border-radius: 0 0 2px 2px;
841 -moz-border-radius: 0 0 2px 2px;
842 border-radius: 0 0 2px 2px;
843 }
844
845 .tabs-left > .nav-tabs > li > a {
846 -webkit-border-radius: 2px 0 0 2px;
847 -moz-border-radius: 2px 0 0 2px;
848 border-radius: 2px 0 0 2px;
849 }
850
851 .tabs-right > .nav-tabs > li > a {
852 margin-left: -1px;
853 -webkit-border-radius: 0 2px 2px 0;
854 -moz-border-radius: 0 2px 2px 0;
855 border-radius: 0 2px 2px 0;
856 }
857
858 .navbar-inner {
859 position:relative;
860 padding-right: 20px;
861 padding-left: 20px;
862 background-color:none;
863 background-image: none;
864 background-repeat: none;
865 border: none;
866 border-top:1px solid #2d2d2d;
867 -webkit-border-radius: 2px;
868 -moz-border-radius: 2px;
869 border-radius: 2px;
870 filter: none;
871 *zoom: 1;
872 -webkit-box-shadow: none;
873 -moz-box-shadow: none;
874 box-shadow: none;
875 }
876
877 .navbar-inverse .navbar-inner, .navbar-inner{
878 position:relative;
879 background-color: #0e0f0f;
880 background-image: none;
881 background-repeat: none;
882 border: none;
883 border-top:1px solid #2d2d2d;
884 border-bottom:1px solid #060606;
885 filter: none;
886 *zoom: 1;
887 -webkit-box-shadow: none;
888 -moz-box-shadow: none;
889 box-shadow: none;
890 }
891
892 .navbar .nav {
893 border-right:none;
894 border-left:none;
895 }
896
897 .navbar .nav > li > a {
898 float: none;
899 font-size:13px;
900 font-size:0.68em;
901 padding: 10px 0 10px;
902 margin-left:20px;
903 margin-right:0;
904 color: #999999; /* style.css supersedes this */
905 text-decoration: none;
906 text-shadow: none;
907 border-right:none;
908 border-left:none;
909 font-weight:600;
910 }
911
912 .navbar .nav > li > a:hover,
913 .navbar .nav > li > a:focus {
914 color: #dddddd;
915 background-color: none;
916 background-image: none;
917 background-repeat: repeat-x;
918 filter: none;
919 text-decoration: none;
920 -webkit-box-shadow: none;
921 -moz-box-shadow: none;
922 box-shadow: none;
923 }
924 .navbar .nav > .active > a,
925 .navbar .nav > .active > a:hover,
926 .navbar .nav > .active > a:focus {
927 color: #fff;
928 background-image: none;
929 background-image: none;
930 filter: none;
931 text-decoration: none;
932 -webkit-box-shadow: none;
933 -moz-box-shadow: none;
934 box-shadow: none;
935 }
936
937 .navbar-search .search-query {
938 -webkit-border-radius: 2px;
939 -moz-border-radius: 2px;
940 border-radius: 2px;
941 }
942
943 .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
944 .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
945 -webkit-border-radius: 2px 0 2px 2px;
946 -moz-border-radius: 2px 0 2px 2px;
947 border-radius: 2px 0 2px 2px;
948 }
949
950 .navbar .btn-navbar {
951 position:absolute;
952 z-index:99999;
953 left:0;
954 }
955
956 .dropdown-menu li {
957 margin:0;
958 padding:0;
959 }
960
961 .dropdown-menu li a {
962 font-size:12px;
963 padding:10px 15px 10px 15px;
964 margin:0;
965 text-shadow:none;
966 border-bottom:1px solid #303030;
967 }
968
969 .dropdown-menu li > a:hover,
970 .dropdown-menu li > a:focus,
971 .dropdown-submenu:hover > a,
972 .dropdown-menu .active > a,
973 .dropdown-menu .active > a:hover {
974 color: #ffffff;
975 text-decoration: none;
976 background-image: none;
977 background-image: none;
978 background-image: none;
979 background-image: none;
980 background-image: none;
981 background-repeat: none;
982 filter:none;
983 }
984 .dropdown-menu .sub-menu-level1, .dropdown-menu .sub-menu-level2 {left:100%;position:absolute;top:0;visibility:hidden;margin-top: 0;}
985 .dropdown-menu li:hover .sub-menu-level1 {visibility:visible;}
986 .dropdown-menu li li:hover .sub-menu-level2 {visibility:visible;}
987 .nav-header {
988 display: block;
989 padding: 5px 10px;
990 font-size:12px;
991 font-weight: normal;
992 line-height: 20px;
993 color: #fff;
994 text-shadow: none;
995 text-transform: uppercase;
996 }
997 .dropdown-menu .divider {
998 *width: 100%;
999 height: 1px;
1000 margin: 9px 1px;
1001 *margin: -5px 0 5px;
1002 overflow: hidden;
1003 background-color: #0b0b0b;
1004 border-bottom: 1px solid #303030;
1005 }
1006 .nav-collapse .nav > li > .dropdown-menu:before,
1007 .nav-collapse .nav > li > .dropdown-menu:after {
1008 display: none;
1009 }
1010
1011 .breadcrumb {
1012 float:left;
1013 padding:10px 20px;
1014 margin:0;
1015 list-style: none;
1016 background: none;
1017 -webkit-border-radius: 0;
1018 -moz-border-radius: 0;
1019 border-radius: 0;
1020 }
1021
1022 .breadcrumb > li {
1023 display: inline-block;
1024 *display: inline;
1025 text-shadow: none;
1026 font-size:12px;
1027 *zoom: 1;
1028 margin:0;
1029 }
1030
1031 .breadcrumb > .active {
1032 color: #797979;
1033 }
1034
1035 .pagination ul {
1036 -webkit-border-radius: 0;
1037 -moz-border-radius: 0;
1038 border-radius: 0;
1039 -webkit-box-shadow: none;
1040 -moz-box-shadow: none;
1041 box-shadow: none;
1042 }
1043
1044 .pagination ul > li > a,
1045 .pagination ul > li > span {
1046 float: left;
1047 padding: 4px 12px;
1048 line-height: 20px;
1049 text-decoration: none;
1050 background-color: #f4f4f4;
1051 border: 1px solid #cacaca;
1052 border-left-width: 0;
1053 }
1054 .pagination ul > li > a:hover{
1055 background:#ececec;
1056 }
1057 .pagination ul > .active > a,
1058 .pagination ul > .active > span {
1059 color: #fff;
1060 cursor: default;
1061 }
1062
1063 .pagination ul > li:first-child > a,
1064 .pagination ul > li:first-child > span {
1065 -webkit-border-bottom-left-radius: 2px;
1066 border-bottom-left-radius: 2px;
1067 -webkit-border-top-left-radius: 2px;
1068 border-top-left-radius: 2px;
1069 -moz-border-radius-bottomleft: 2px;
1070 -moz-border-radius-topleft: 2px;
1071 }
1072
1073 .pagination ul > li:last-child > a,
1074 .pagination ul > li:last-child > span {
1075 -webkit-border-top-right-radius: 2px;
1076 border-top-right-radius: 2px;
1077 -webkit-border-bottom-right-radius: 2px;
1078 border-bottom-right-radius: 2px;
1079 -moz-border-radius-topright: 2px;
1080 -moz-border-radius-bottomright: 2px;
1081 }
1082
1083
1084 .pagination-large ul > li:first-child > a,
1085 .pagination-large ul > li:first-child > span {
1086 -webkit-border-bottom-left-radius: 2px;
1087 border-bottom-left-radius: 2px;
1088 -webkit-border-top-left-radius: 2px;
1089 border-top-left-radius: 2px;
1090 -moz-border-radius-bottomleft: 2px;
1091 -moz-border-radius-topleft: 2px;
1092 }
1093
1094 .pagination-large ul > li:last-child > a,
1095 .pagination-large ul > li:last-child > span {
1096 -webkit-border-top-right-radius: 2px;
1097 border-top-right-radius: 2px;
1098 -webkit-border-bottom-right-radius: 2px;
1099 border-bottom-right-radius: 2px;
1100 -moz-border-radius-topright: 2px;
1101 -moz-border-radius-bottomright: 2px;
1102 }
1103
1104 .pagination-mini ul > li:first-child > a,
1105 .pagination-small ul > li:first-child > a,
1106 .pagination-mini ul > li:first-child > span,
1107 .pagination-small ul > li:first-child > span {
1108 -webkit-border-bottom-left-radius: 2px;
1109 border-bottom-left-radius: 2px;
1110 -webkit-border-top-left-radius: 2px;
1111 border-top-left-radius: 2px;
1112 -moz-border-radius-bottomleft: 2px;
1113 -moz-border-radius-topleft: 2px;
1114 }
1115
1116 .pagination-mini ul > li:last-child > a,
1117 .pagination-small ul > li:last-child > a,
1118 .pagination-mini ul > li:last-child > span,
1119 .pagination-small ul > li:last-child > span {
1120 -webkit-border-top-right-radius: 2px;
1121 border-top-right-radius: 2px;
1122 -webkit-border-bottom-right-radius: 2px;
1123 border-bottom-right-radius: 2px;
1124 -moz-border-radius-topright: 2px;
1125 -moz-border-radius-bottomright: 2px;
1126 }
1127 .pagination-right {
1128 float: right;
1129 }
1130 .pager li > a,
1131 .pager li > span {
1132 -webkit-border-radius: 2px;
1133 -moz-border-radius: 2px;
1134 border-radius: 2px;
1135 }
1136
1137 .modal {
1138 -webkit-border-radius: 2px;
1139 -moz-border-radius: 2px;
1140 border-radius: 2px;
1141 }
1142
1143 .modal-footer {
1144 -webkit-border-radius: 0 0 2px 2px;
1145 -moz-border-radius: 0 0 2px 2px;
1146 border-radius: 0 0 2px 2px;
1147 }
1148
1149 .tooltip-inner {
1150 -webkit-border-radius: 2px;
1151 -moz-border-radius: 2px;
1152 border-radius: 2px;
1153 }
1154
1155 .popover {
1156 -webkit-border-radius: 2px;
1157 -moz-border-radius: 2px;
1158 border-radius: 2px;
1159 }
1160
1161 .popover-title {
1162 -webkit-border-radius: 2px 2px 0 0;
1163 -moz-border-radius: 2px 2px 0 0;
1164 border-radius: 2px 2px 0 0;
1165 }
1166
1167 .thumbnail {
1168 background:#fbfbfb;
1169 border: 1px solid #d5d5d5;
1170 -webkit-border-radius: 2px;
1171 -moz-border-radius: 2px;
1172 border-radius: 2px;
1173 -webkit-box-shadow: none;
1174 -moz-box-shadow: none;
1175 box-shadow: none;
1176 }
1177
1178 .thumbnail p{
1179 padding:0 10px 0 10px;
1180 }
1181
1182 .thumbnail h1, .thumbnail h2, .thumbnail h3, .thumbnail h4, .thumbnail h5, .thumbnail h6{
1183 padding:0 10px 0 10px;
1184 margin:10px 0 10px 0;
1185 }
1186
1187 .label,
1188 .badge {
1189 padding: 5px 10px;
1190 }
1191
1192 .label {
1193 -webkit-border-radius: 2px;
1194 -moz-border-radius: 2px;
1195 border-radius: 2px;
1196 }
1197
1198 .badge {
1199 -webkit-border-radius: 2px;
1200 -moz-border-radius: 2px;
1201 border-radius: 2px;
1202 }
1203
1204 .progress {
1205 -webkit-border-radius: 2px;
1206 -moz-border-radius: 2px;
1207 border-radius: 2px;
1208 }
1209
1210
1211 /* progress bar */
1212 .bar.bar90 {
1213 width:90%;
1214 }
1215 .bar.bar85 {
1216 width:85%;
1217 }
1218 .bar.bar80 {
1219 width:80%;
1220 }
1221 .bar.bar75 {
1222 width:75%;
1223 }
1224 .bar.bar70 {
1225 width:70%;
1226 }
1227 .bar.bar65 {
1228 width:65%;
1229 }
1230 .bar.bar60 {
1231 width:60%;
1232 }
1233 .bar.bar55 {
1234 width:55%;
1235 }
1236 .bar.bar50 {
1237 width:50%;
1238 }
1239 .bar.bar45 {
1240 width:45%;
1241 }
1242 .bar.bar40 {
1243 width:40%;
1244 }
1245 .bar.bar40 {
1246 width:40%;
1247 }
1248 .bar.bar35 {
1249 width:35%;
1250 }
1251 .bar.bar30 {
1252 width:30%;
1253 }
1254 .bar.bar25 {
1255 width:25%;
1256 }
1257 .bar.bar20 {
1258 width:20%;
1259 }
1260 .bar.bar15 {
1261 width:15%;
1262 }
1263 .bar.bar10 {
1264 width:10%;
1265 }
1266
1267
1268
1269 .accordion-group {
1270 background:none;
1271 border:none;
1272 -webkit-border-radius: 0;
1273 -moz-border-radius: 0;
1274 border-radius: 0;
1275 margin-bottom:5px;
1276 }
1277
1278 .accordion-heading{
1279 font-size:13px;
1280 color:#333333;
1281 text-shadow: none;
1282 background-color: #fbfbfb;
1283 *background-color: #fbfbfb;
1284 background-image: none;
1285 background-repeat: repeat-x;
1286 border: 1px solid #e9e9e9;
1287 *border: 0;
1288 border-color: none;
1289 }
1290
1291 .accordion-heading a{
1292 color:#333333;
1293 font-weight:600;
1294 outline:0;
1295 }
1296
1297 .accordion-heading a:hover,.accordion-heading a.active:hover,.accordion-heading a.active{
1298 text-decoration:none;
1299 }
1300
1301 .accordion-inner{
1302 margin-top:1px;
1303 background:#fff;
1304 border: 1px solid #e9e9e9;
1305 border-bottom:1px solid #e9e9e9;
1306 }
1307
1308 .nav-tabs {
1309 border-bottom:none;
1310 margin:0;
1311 }
1312
1313 .nav-tabs > li > a {
1314 margin-right: -1px;
1315 outline:0;
1316 font-size:13px;
1317 font-weight:600;
1318 }
1319
1320 .tabs-left .nav-tabs {
1321 margin-right:0;
1322 border:none;
1323 }
1324
1325 .tabs-right .nav-tabs {
1326 margin-left:0;
1327 border:none;
1328 }
1329 .tabs-right .nav-tabs li a {
1330 display:block;
1331 margin:0;
1332 padding:15px 0 15px 20px;
1333 margin-left: -1px;
1334 }
1335
1336 .nav-tabs > .active > a,
1337 .nav-tabs > .active > a:hover,
1338 .nav-tabs > .active > a:focus {
1339 background:#fff;
1340 }
1341
1342 .tab-content > .tab-pane{
1343 background:#fff;
1344 border: 1px solid #e9e9e9;
1345 padding:20px;
1346 overflow:hidden;
1347
1348 }
1349
1350 .onsidebar > .tab-pane{
1351 background:none;
1352 border: none;
1353 border-bottom:none;
1354 padding:0;
1355 }
1356
1357 .carousel-control {
1358 -webkit-border-radius: 2px;
1359 -moz-border-radius: 2px;
1360 border-radius: 2px;
1361 }
1362
1363 .hero-unit {
1364 -moz-border-radius: 2px;
1365 border-radius: 2px;
1366 }
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
+0
-2289
firefox/web/css/style.css less more
0 /* === prettify css === */
1
2 /* @import url('../js/google-code-prettify/prettify.css'); */
3
4 /* === custom icon ===
5 @import url('custom-fonts.css');
6 */
7
8
9 /* ==== overwrite bootstrap standard ==== */
10
11 @import url('overwrite.css');
12 @import url('animate.css');
13
14 /* Fonts
15 @import url('roboto-font.css');
16 @import url('../fonts/open-sans/open-sans.css');
17 */
18
19
20 /* === fontawesome === */
21
22 @import url('font-awesome.css');
23
24 /* weights Source+Sans+Pro:400,400i,600,600i,700,700i,900,900i */
25
26 @import url('../fonts/source-sans/source-sans.css');
27
28 /* ===================================
29 1. General
30 ==================================== */
31
32 html {
33 font-size: 17px;
34 /* base smallest font size */
35 margin: 0 px;
36 }
37
38 body {
39 font-family: 'Source Sans Pro', Arial, sans-serif;
40 font-size: 1.3em;
41 line-height: 1.3em;
42 font-weight: 400;
43 /*color:#65 65 65;*/
44 color: #666;
45 margin: 0 px;
46 }
47
48 a:active {
49 outline: 0;
50 }
51
52 a:hover {
53 /* set in skins/default.css */
54 }
55
56 .clear {
57 clear: both;
58 }
59
60 h1,
61 h2,
62 h3,
63 h4,
64 h5,
65 h6 {
66 font-family: 'Source Sans Pro', Arial, sans-serif;
67 font-weight: 600;
68 line-height: 1.3em;
69 color: #333;
70 color: #656565;
71 margin-bottom: 1.3em;
72 }
73
74 h4 {
75 font-size: 1.2em;
76 }
77
78
79 /* ===================================
80 2. layout
81 ==================================== */
82
83 .container {
84 /*padding:0 20px 0 20px;*/
85 position: relative;
86 }
87
88 #wrapper {
89 width: 100%;
90 margin: 0 auto;
91 padding: 0;
92 }
93
94 .row,
95 .row-fluid {
96 margin-bottom: 20px;
97 }
98
99 .row .row,
100 .row-fluid .row-fluid {
101 margin-bottom: 20px;
102 }
103
104 .row.nomargin,
105 .row-fluid.nomargin {
106 margin-bottom: 0;
107 }
108
109
110 /* ===================================
111 3. Responsive media
112 ==================================== */
113
114 .video-container,
115 .map-container,
116 .embed-container {
117 position: relative;
118 margin: 0 0 15px 0;
119 padding-bottom: 51%;
120 padding-top: 30px;
121 height: 0;
122 overflow: hidden;
123 border: none;
124 }
125
126 .embed-container iframe,
127 .embed-container object,
128 .embed-container embed,
129 .video-container iframe,
130 .map-container iframe,
131 .map-container object,
132 .map-container embed,
133 .video-container object,
134 .video-container embed {
135 position: absolute;
136 top: 0;
137 left: 0;
138 width: 100%;
139 height: 100%;
140 }
141
142 iframe {
143 border: none;
144 }
145
146 img.img-polaroid {
147 margin: 0 0 20px 0;
148 }
149
150 .img-box {
151 max-width: 100%;
152 }
153
154
155 /* ===================================
156 4. Header
157 ==================================== */
158
159
160 /* --- header -- */
161
162 header .navbar {
163 margin-bottom: 0;
164 line-height: 3rem;
165 }
166
167 .navbar-default {
168 border: none;
169 }
170
171 .navbar-brand {
172 color: #222;
173 text-transform: uppercase;
174 font-size: 24px;
175 font-weight: 700;
176 line-height: 1em;
177 letter-spacing: -1px;
178 margin-top: 30px;
179 padding: 0 0 0 15px;
180 }
181
182 header .navbar-collapse ul.navbar-nav {
183 float: right;
184 margin-right: 0;
185 }
186
187 header .navbar-default {
188 background-color: #fff;
189 }
190
191 header .nav li a:hover,
192 header .nav li a:focus,
193 header .nav li.active a,
194 header .nav li.active a:hover,
195 header .nav li a.dropdown-toggle:hover,
196 header .nav li a.dropdown-toggle:focus,
197 header .nav li.active ul.dropdown-menu li a:hover,
198 header .nav li.active ul.dropdown-menu li.active a {
199 -webkit-transition: all .3s ease;
200 -moz-transition: all .3s ease;
201 -ms-transition: all .3s ease;
202 -o-transition: all .3s ease;
203 transition: all .3s ease;
204 }
205
206 header .navbar-default .navbar-nav>.open>a,
207 header .navbar-default .navbar-nav>.open>a:hover,
208 header .navbar-default .navbar-nav>.open>a:focus {
209 -webkit-transition: all .3s ease;
210 -moz-transition: all .3s ease;
211 -ms-transition: all .3s ease;
212 -o-transition: all .3s ease;
213 transition: all .3s ease;
214 }
215
216 header .navbar {
217 min-height: 100px;
218 }
219
220 header .navbar-nav>li {
221 padding-bottom: 30px;
222 padding-top: 30px;
223 }
224
225 header .navbar-nav>li>a {
226 padding-bottom: 6px;
227 padding-top: 5px;
228 margin-left: 2px;
229 font-weight: 700;
230 -webkit-transition: all .3s ease;
231 -moz-transition: all .3s ease;
232 -ms-transition: all .3s ease;
233 -o-transition: all .3s ease;
234 transition: all .3s ease;
235 }
236
237 .dropdown-menu li a:hover {
238 color: #fff !important;
239 }
240
241 header .nav .caret {
242 border-bottom-color: #f5f5f5;
243 border-top-color: #f5f5f5;
244 }
245
246 .navbar-default .navbar-nav>.active>a,
247 .navbar-default .navbar-nav>.active>a:hover,
248 .navbar-default .navbar-nav>.active>a:focus {
249 background-color: #fff;
250 }
251
252 .navbar-default .navbar-nav>.open>a,
253 .navbar-default .navbar-nav>.open>a:hover,
254 .navbar-default .navbar-nav>.open>a:focus {
255 background-color: #fff;
256 }
257
258 .dropdown-menu {
259 box-shadow: none;
260 border-radius: 0;
261 border: none;
262 }
263
264 .dropdown-menu li:last-child {
265 padding-bottom: 0 !important;
266 margin-bottom: 0;
267 }
268
269 header .nav li .dropdown-menu {
270 padding: 0;
271 }
272
273 header .nav li .dropdown-menu li a {
274 line-height: 28px;
275 padding: 3px 12px;
276 }
277
278
279 /* --- menu --- */
280
281 header .navigation {
282 float: right;
283 }
284
285 header ul.nav li {
286 border: none;
287 margin: 0;
288 }
289
290 header ul.nav li a {
291 font-size: 1em;
292 border: none;
293 font-weight: 400;
294 text-transform: uppercase;
295 }
296
297 header ul.nav li ul li a {
298 font-size: 0.9em;
299 border: none;
300 font-weight: 400;
301 text-transform: uppercase;
302 }
303
304 .navbar .nav>li>a {
305 color: #555;
306 text-shadow: none;
307 }
308
309 .navbar .nav a:hover {
310 background: none;
311 }
312
313 .navbar .nav>.active>a,
314 .navbar .nav>.active>a:hover {
315 background: none;
316 font-weight: 700;
317 }
318
319 .navbar .nav>.active>a:active,
320 .navbar .nav>.active>a:focus {
321 background: none;
322 outline: 0;
323 font-weight: 700;
324 }
325
326 .navbar .nav li .dropdown-menu {
327 z-index: 2000;
328 }
329
330 header ul.nav li ul {
331 margin-top: 1px;
332 }
333
334 header ul.nav li ul li ul {
335 margin: 1px 0 0 1px;
336 }
337
338 .dropdown-menu .dropdown i {
339 position: absolute;
340 right: 0;
341 margin-top: 3px;
342 padding-left: 20px;
343 }
344
345 .navbar .nav>li>.dropdown-menu:before {
346 display: inline-block;
347 border-right: none;
348 border-bottom: none;
349 border-left: none;
350 border-bottom-color: none;
351 content: none;
352 }
353
354 ul.nav li.dropdown a {
355 z-index: 1000;
356 display: block;
357 }
358
359 select.selectmenu {
360 display: none;
361 }
362
363
364 /* ===================================
365 5. Section: Featured
366 ==================================== */
367
368 #featured {
369 width: 100%;
370 /* background:#fcfcfc; */
371 position: relative;
372 margin: 0;
373 padding: 0;
374 }
375
376
377 /* ===================================
378 6. Sliders
379 ==================================== */
380
381
382 /* --- flexslider --- */
383
384 #featured .flexslider {
385 padding: 0;
386 /* margin: 20px 0 30px; */
387 background: #fff;
388 position: relative;
389 zoom: 1;
390 }
391
392 .flex-caption {
393 background: none;
394 -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000, endColorstr=#4C000000);
395 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000, endColorstr=#4C000000);
396 zoom: 1;
397 }
398
399 .flex-caption {
400 bottom: 35px;
401 background-color: rgba(0, 0, 0, 0.8);
402 color: #fff;
403 margin: 0;
404 padding: 25px 25px 25px 30px;
405 position: absolute;
406 right: 0;
407 width: 295px;
408 }
409
410 .flex-caption h3 {
411 color: #fff;
412 letter-spacing: 1px;
413 margin-bottom: 8px;
414 text-transform: uppercase;
415 }
416
417 .flex-caption p {
418 margin: 0 0 15px;
419 }
420
421
422 /* ===================================
423 7. Section: call action
424 ==================================== */
425
426 section.callaction {
427 background: #f9f9f9;
428 padding: 50px 0 0 0;
429 }
430
431
432 /* ===================================
433 8. Section: Content
434 ==================================== */
435
436 #content {
437 position: relative;
438 /* border: solid red 1px; */
439 background: #fff;
440 /*padding:50px 0 40px 0;*/
441 }
442
443 #content img {
444 max-width: 100%;
445 height: auto;
446 }
447
448
449 /* --- Call to action --- */
450
451 .cta-text {
452 text-align: center;
453 margin-top: 10px;
454 }
455
456 .big-cta .cta {
457 margin-top: 10px;
458 }
459
460
461 /* --- box --- */
462
463 .box {
464 width: 100%;
465 font-size: 0.82em;
466 line-height: 1.5em;
467 font-weight: 400;
468 font-family: 'Source Sans Pro', Arial, sans-serif;
469 }
470
471 .box-gray {
472 background: #f8f8f8;
473 padding: 20px 20px 30px;
474 }
475
476 .box-gray h4,
477 .box-gray i {
478 margin-bottom: 20px;
479 }
480
481 .box-bottom {
482 padding: 20px 0;
483 text-align: center;
484 }
485
486 .box-bottom a {
487 color: #fff;
488 font-weight: 700;
489 }
490
491 .box-bottom a:hover {
492 color: #eee;
493 text-decoration: none;
494 }
495
496
497 /* ===================================
498 9. Section: Bottom
499 ==================================== */
500
501 #bottom {
502 background: #fcfcfc;
503 padding: 50px 0 0;
504 }
505
506
507 /* twitter */
508
509 #twitter-wrapper {
510 text-align: center;
511 width: 70%;
512 margin: 0 auto;
513 }
514
515 #twitter em {
516 font-style: normal;
517 font-size: 13px;
518 }
519
520 #twitter em.twitterTime a {
521 font-weight: 600;
522 }
523
524 #twitter ul {
525 padding: 0;
526 list-style: none;
527 }
528
529 #twitter ul li {
530 font-size: 20px;
531 line-height: 1.6em;
532 font-weight: 300;
533 margin-bottom: 20px;
534 position: relative;
535 word-break: break-word;
536 }
537
538
539 /* ===================================
540 10. Inner - Section: page headline
541 ==================================== */
542
543 #inner-headline {
544 background: #252525;
545 position: relative;
546 margin: 0;
547 padding: 0;
548 color: #fefefe;
549 }
550
551 #inner-headline .inner-heading h2 {
552 color: #fff;
553 margin: 20px 0 0 0;
554 }
555
556
557 /* --- breadcrumbs --- */
558
559 #inner-headline ul.breadcrumb {
560 margin: 30px 0 0;
561 float: left;
562 }
563
564 #inner-headline ul.breadcrumb li {
565 margin-bottom: 0;
566 padding-bottom: 0;
567 }
568
569 #inner-headline ul.breadcrumb li {
570 font-size: 13px;
571 color: #fff;
572 }
573
574 #inner-headline ul.breadcrumb li i {
575 color: #dedede;
576 }
577
578 #inner-headline ul.breadcrumb li a {
579 color: #fff;
580 }
581
582 ul.breadcrumb li a:hover {
583 text-decoration: none;
584 }
585
586
587 /* ============================
588 11. Forms
589 ============================= */
590
591
592 /* --- contact form ---- */
593
594 form#contactform input[type="text"] {
595 width: 100%;
596 border: 1px solid #f5f5f5;
597 min-height: 40px;
598 padding-left: 20px;
599 font-size: 13px;
600 padding-right: 20px;
601 -webkit-box-sizing: border-box;
602 -moz-box-sizing: border-box;
603 box-sizing: border-box;
604 }
605
606 form#contactform textarea {
607 border: 1px solid #f5f5f5;
608 width: 100%;
609 padding-left: 20px;
610 padding-top: 10px;
611 font-size: 13px;
612 padding-right: 20px;
613 -webkit-box-sizing: border-box;
614 -moz-box-sizing: border-box;
615 box-sizing: border-box;
616 }
617
618 form#contactform .validation {
619 font-size: 11px;
620 }
621
622 #sendmessage {
623 border: 1px solid #e6e6e6;
624 background: #f6f6f6;
625 display: none;
626 text-align: center;
627 padding: 15px 12px 15px 65px;
628 margin: 10px 0;
629 font-weight: 600;
630 margin-bottom: 30px;
631 }
632
633 #sendmessage.show,
634 .show {
635 display: block;
636 }
637
638
639 /* --- comment form ---- */
640
641 form#commentform input[type="text"] {
642 width: 100%;
643 min-height: 40px;
644 padding-left: 20px;
645 font-size: 13px;
646 padding-right: 20px;
647 -webkit-box-sizing: border-box;
648 -moz-box-sizing: border-box;
649 box-sizing: border-box;
650 -webkit-border-radius: 2px 2px 2px 2px;
651 -moz-border-radius: 2px 2px 2px 2px;
652 border-radius: 2px 2px 2px 2px;
653 }
654
655 form#commentform textarea {
656 width: 100%;
657 padding-left: 20px;
658 padding-top: 10px;
659 font-size: 13px;
660 padding-right: 20px;
661 -webkit-box-sizing: border-box;
662 -moz-box-sizing: border-box;
663 box-sizing: border-box;
664 -webkit-border-radius: 2px 2px 2px 2px;
665 -moz-border-radius: 2px 2px 2px 2px;
666 border-radius: 2px 2px 2px 2px;
667 }
668
669
670 /* --- search form --- */
671
672 .search {
673 float: right;
674 margin: 35px 0 0;
675 padding-bottom: 0;
676 }
677
678 #inner-headline form.input-append {
679 margin: 0;
680 padding: 0;
681 }
682
683
684 /* ===============================
685 12. Portfolio
686 ================================ */
687
688 .work-nav #filters {
689 margin: 0;
690 padding: 0;
691 list-style: none;
692 }
693
694 .work-nav #filters li {
695 margin: 0 10px 30px 0;
696 padding: 0;
697 float: left;
698 }
699
700 .work-nav #filters li a {
701 color: #7F8289;
702 font-size: 16px;
703 display: block;
704 }
705
706 .work-nav #filters li a:hover {}
707
708 .work-nav #filters li a.selected {
709 color: #DE5E60;
710 }
711
712 #thumbs {
713 margin: 0;
714 padding: 0;
715 }
716
717 #thumbs li {
718 list-style-type: none;
719 }
720
721 .item-thumbs {
722 position: relative;
723 overflow: hidden;
724 margin-bottom: 30px;
725 cursor: pointer;
726 }
727
728 .item-thumbs a+img {
729 width: 100%;
730 }
731
732 .item-thumbs .hover-wrap {
733 position: absolute;
734 display: block;
735 width: 100%;
736 height: 100%;
737 opacity: 0;
738 filter: alpha(opacity=0);
739 -webkit-transition: all 450ms ease-out 0s;
740 -moz-transition: all 450ms ease-out 0s;
741 -o-transition: all 450ms ease-out 0s;
742 transition: all 450ms ease-out 0s;
743 -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
744 -moz-transform: rotateY(180deg) scale(0.5, 0.5);
745 -ms-transform: rotateY(180deg) scale(0.5, 0.5);
746 -o-transform: rotateY(180deg) scale(0.5, 0.5);
747 transform: rotateY(180deg) scale(0.5, 0.5);
748 }
749
750 .item-thumbs:hover .hover-wrap,
751 .item-thumbs.active .hover-wrap {
752 opacity: 1;
753 filter: alpha(opacity=100);
754 -webkit-transform: rotateY(0deg) scale(1, 1);
755 -moz-transform: rotateY(0deg) scale(1, 1);
756 -ms-transform: rotateY(0deg) scale(1, 1);
757 -o-transform: rotateY(0deg) scale(1, 1);
758 transform: rotateY(0deg) scale(1, 1);
759 }
760
761 .item-thumbs .hover-wrap .overlay-img {
762 position: absolute;
763 width: 50%;
764 height: 100%;
765 opacity: 0.80;
766 filter: alpha(opacity=80);
767 background: #000;
768 }
769
770 .item-thumbs .hover-wrap .overlay-img-thumb {
771 position: absolute;
772 border-radius: 60px;
773 top: 50%;
774 left: 50%;
775 margin: -16px 0 0 -16px;
776 color: #fff;
777 font-size: 32px;
778 line-height: 1em;
779 opacity: 1;
780 filter: alpha(opacity=100);
781 }
782
783
784 /* --- Portolio filter --- */
785
786 ul.portfolio-categ {
787 margin: 10px 0 30px 0;
788 padding: 0;
789 float: left;
790 list-style: none;
791 }
792
793 ul.portfolio-categ li {
794 margin: 0;
795 padding: 0 20px 0 0;
796 float: left;
797 list-style: none;
798 font-size: 13px;
799 font-weight: 600;
800 }
801
802 ul.portfolio-categ li a {
803 display: block;
804 padding: 35x 0 35x 0;
805 color: #353535;
806 }
807
808 ul.portfolio-categ li.active a:hover,
809 ul.portfolio-categ li a:hover,
810 ul.portfolio-categ li a:focus,
811 ul.portfolio-categ li a:active {
812 text-decoration: none;
813 outline: 0;
814 }
815
816
817 /* --- portfolio detail --- */
818
819 .top-wrapper {
820 margin-bottom: 20px;
821 }
822
823
824 /* ===============================
825 13. Elements
826 ================================ */
827
828
829 /* --- blockquote --- */
830
831 blockquote {
832 font-size: 16px;
833 font-weight: 400;
834 font-family: 'Noto Serif', serif;
835 font-style: italic;
836 padding-left: 0;
837 color: #a2a2a2;
838 line-height: 1.6em;
839 border: none;
840 }
841
842 blockquote cite {
843 display: block;
844 font-size: 12px;
845 color: #666;
846 margin-top: 10px;
847 }
848
849 blockquote cite:before {
850 content: "\2014 \0020";
851 }
852
853 blockquote cite a,
854 blockquote cite a:visited,
855 blockquote cite a:visited {
856 color: #555;
857 }
858
859
860 /* --- pullquotes --- */
861
862 .pullquote-left {
863 display: block;
864 color: #a2a2a2;
865 font-family: 'Noto Serif', serif;
866 font-size: 14px;
867 line-height: 1.6em;
868 padding-left: 20px;
869 }
870
871 .pullquote-right {
872 display: block;
873 color: #a2a2a2;
874 font-family: 'Noto Serif', serif;
875 font-size: 14px;
876 line-height: 1.6em;
877 padding-right: 20px;
878 }
879
880
881 /* --- button --- */
882
883 .btn-theme {
884 color: #fff;
885 }
886
887 .btn-theme:hover {
888 color: #eee;
889 }
890
891
892 /* --- list style --- */
893
894 ul.general {
895 list-style: none;
896 margin-left: 0;
897 }
898
899 ul.link-list {
900 margin: 0;
901 padding: 0;
902 list-style: none;
903 }
904
905 ul.link-list li {
906 margin: 0;
907 padding: 2px 0 2px 0;
908 list-style: none;
909 }
910
911 footer ul.link-list li a {
912 color: #fff;
913 }
914
915 footer ul.link-list li a:hover {
916 color: #eee;
917 }
918
919
920 /* --- Heading style --- */
921
922 h4.heading {
923 font-weight: 700;
924 }
925
926 .heading {
927 margin-bottom: 30px;
928 }
929
930 .heading {
931 position: relative;
932 }
933
934 .widgetheading {
935 width: 100%;
936 padding: 0;
937 }
938
939 #bottom .widgetheading {
940 position: relative;
941 border-bottom: #e6e6e6 1px solid;
942 padding-bottom: 9px;
943 }
944
945 aside .widgetheading {
946 position: relative;
947 border-bottom: #e9e9e9 1px solid;
948 padding-bottom: 9px;
949 }
950
951 footer .widgetheading {
952 position: relative;
953 }
954
955 footer .widget .social-network {
956 position: relative;
957 }
958
959 #bottom .widget .widgetheading span,
960 aside .widget .widgetheading span,
961 footer .widget .widgetheading span {
962 position: absolute;
963 width: 60px;
964 height: 1px;
965 bottom: -1px;
966 right: 0;
967 }
968
969
970 /* --- Map --- */
971
972 .map {
973 position: relative;
974 margin-top: -50px;
975 margin-bottom: 40px;
976 }
977
978 .map iframe {
979 width: 100%;
980 height: 450px;
981 border: none;
982 }
983
984 .map-grid iframe {
985 width: 100%;
986 height: 350px;
987 border: none;
988 margin: 0 0 -5px 0;
989 padding: 0;
990 }
991
992
993 /* --- our team --- */
994
995 ul.team-detail {
996 margin: -10px 0 0 0;
997 padding: 0;
998 list-style: none;
999 }
1000
1001 ul.team-detail li {
1002 border-bottom: 1px dotted #e9e9e9;
1003 margin: 0 0 15px 0;
1004 padding: 0 0 15px 0;
1005 list-style: none;
1006 }
1007
1008 ul.team-detail li label {
1009 font-size: 13px;
1010 }
1011
1012 ul.team-detail li h4,
1013 ul.team-detail li label {
1014 margin-bottom: 0;
1015 }
1016
1017 ul.team-detail li ul.social-network {
1018 border: none;
1019 margin: 0;
1020 padding: 0;
1021 }
1022
1023 ul.team-detail li ul.social-network li {
1024 border: none;
1025 margin: 0;
1026 }
1027
1028 ul.team-detail li ul.social-network li i {
1029 margin: 0;
1030 }
1031
1032
1033 /* --- Pricing box --- */
1034
1035 .pricing-title {
1036 background: #fff;
1037 text-align: center;
1038 padding: 10px 0 10px 0;
1039 }
1040
1041 .pricing-title h3 {
1042 font-weight: 600;
1043 margin-bottom: 0;
1044 }
1045
1046 .pricing-offer {
1047 background: #fcfcfc;
1048 text-align: center;
1049 padding: 40px 0 40px 0;
1050 font-size: 18px;
1051 border-top: 1px solid #e6e6e6;
1052 border-bottom: 1px solid #e6e6e6;
1053 }
1054
1055 .pricing-box.special .pricing-offer {
1056 color: #fff;
1057 }
1058
1059 .pricing-offer strong {
1060 font-size: 78px;
1061 line-height: 89px;
1062 }
1063
1064 .pricing-offer sup {
1065 font-size: 28px;
1066 }
1067
1068 .pricing-content {
1069 background: #fff;
1070 text-align: center;
1071 font-size: 14px;
1072 }
1073
1074 .pricing-content strong {
1075 color: #353535;
1076 }
1077
1078 .pricing-content ul {
1079 list-style: none;
1080 padding: 0;
1081 margin: 0;
1082 }
1083
1084 .pricing-content ul li {
1085 border-bottom: 1px solid #e9e9e9;
1086 list-style: none;
1087 padding: 15px 0 15px 0;
1088 margin: 0 0 0 0;
1089 color: #888;
1090 }
1091
1092 .pricing-action {
1093 margin: 0;
1094 background: #fcfcfc;
1095 text-align: center;
1096 padding: 20px 0 30px 0;
1097 }
1098
1099 .pricing-wrapp {
1100 margin: 0 auto;
1101 width: 100%;
1102 background: #fd0000;
1103 }
1104
1105
1106 /* --- pricing box alt 1 --- */
1107
1108 .pricing-box-alt {
1109 border: 1px solid #e6e6e6;
1110 background: #fcfcfc;
1111 position: relative;
1112 margin: 0 0 20px 0;
1113 padding: 0;
1114 -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
1115 -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
1116 box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
1117 -webkit-box-sizing: border-box;
1118 -moz-box-sizing: border-box;
1119 box-sizing: border-box;
1120 }
1121
1122 .pricing-box-alt .pricing-heading {
1123 background: #fcfcfc;
1124 text-align: center;
1125 padding: 40px 0 0px 0;
1126 display: block;
1127 }
1128
1129 .pricing-box-alt.special .pricing-heading {
1130 background: #fcfcfc;
1131 text-align: center;
1132 padding: 40px 0 1px 0;
1133 border-bottom: none;
1134 display: block;
1135 color: #fff;
1136 }
1137
1138 .pricing-box-alt.special .pricing-heading h3 {
1139 color: #fff;
1140 }
1141
1142 .pricing-box-alt .pricing-heading h3 strong {
1143 font-size: 32px;
1144 font-weight: 700;
1145 letter-spacing: -1px;
1146 }
1147
1148 .pricing-box-alt .pricing-heading h3 {
1149 font-size: 32px;
1150 font-weight: 300;
1151 letter-spacing: -1px;
1152 }
1153
1154 .pricing-box-alt .pricing-terms {
1155 text-align: center;
1156 background: #333;
1157 display: block;
1158 overflow: hidden;
1159 padding: 30px 0 20px;
1160 }
1161
1162 .pricing-box-alt .pricing-terms h6 {
1163 font-style: italic;
1164 margin-top: 10px;
1165 color: #fff;
1166 font-family: 'Noto Serif', serif;
1167 }
1168
1169 .pricing-box-alt .icon .price-circled {
1170 margin: 10px 10px 10px 0;
1171 display: inline-block !important;
1172 text-align: center !important;
1173 color: #fff;
1174 width: 68px;
1175 height: 68px;
1176 padding: 12px;
1177 font-size: 16px;
1178 font-weight: 700;
1179 line-height: 68px;
1180 text-shadow: none;
1181 cursor: pointer;
1182 background-color: #888;
1183 border-radius: 64px;
1184 -moz-border-radius: 64px;
1185 -webkit-border-radius: 64px;
1186 }
1187
1188 .pricing-box-alt .pricing-action {
1189 margin: 0;
1190 text-align: center;
1191 padding: 30px 0 30px 0;
1192 }
1193
1194
1195 /* ===============================
1196 14. Blog & article
1197 ================================ */
1198
1199 article {
1200 margin-bottom: 40px;
1201 }
1202
1203 article .post-heading h3 {
1204 margin-bottom: 20px;
1205 }
1206
1207 article .post-heading h3 a {
1208 font-weight: 700;
1209 color: #353535;
1210 }
1211
1212 article .post-heading h3 a:hover {
1213 text-decoration: none;
1214 }
1215
1216
1217 /* --- post meta --- */
1218
1219 .post-meta {
1220 background: #fcfcfc;
1221 border: 1px solid #e6e6e6;
1222 border-top: none;
1223 text-align: center;
1224 }
1225
1226 .post-meta .format {
1227 border-bottom: 1px solid #e6e6e6;
1228 padding: 10px 0 10px;
1229 }
1230
1231 .post-meta i {
1232 margin: 0;
1233 }
1234
1235 .post-meta .date {
1236 border-bottom: 1px solid #e6e6e6;
1237 padding: 10px 0 10px;
1238 }
1239
1240 .post-meta .date span {
1241 text-align: center;
1242 color: #999;
1243 font-size: 12px;
1244 font-weight: 600;
1245 }
1246
1247 .post-meta .comments {
1248 padding: 10px 0 10px;
1249 }
1250
1251 .post-meta .comments a {
1252 color: #999;
1253 font-size: 12px;
1254 font-weight: 700;
1255 }
1256
1257 .post-meta .comments a:hover {
1258 text-decoration: none;
1259 }
1260
1261
1262 /* --- post format --- */
1263
1264 .post-image {
1265 margin-bottom: 20px;
1266 }
1267
1268 .post-quote {
1269 margin-bottom: 20px;
1270 }
1271
1272 .post-video {
1273 margin-bottom: 20px;
1274 }
1275
1276 .post-audio {
1277 margin-bottom: 20px;
1278 }
1279
1280 .post-link {
1281 margin-bottom: 20px;
1282 }
1283
1284 .post-slider {
1285 margin-bottom: 20px;
1286 }
1287
1288 .post-quote blockquote {
1289 font-size: 16px;
1290 color: #999;
1291 font-family: 'Noto Serif', serif;
1292 font-style: italic;
1293 line-height: 1.6em;
1294 }
1295
1296 .post-image img:hover {
1297 -webkit-box-shadow: 0 0 2px #979797;
1298 -moz-box-shadow: 0 0 2px #979797;
1299 box-shadow: 0 0 2px #979797;
1300 -webkit-transition: all 1s ease-in-out;
1301 -moz-transition: all 1s ease-in-out;
1302 -o-transition: all 1s ease-in-out;
1303 transition: all 1s ease-in-out;
1304 }
1305
1306 ul.meta-post {
1307 float: left;
1308 margin: 0;
1309 padding: 0;
1310 list-style: none;
1311 }
1312
1313 ul.meta-post li {
1314 float: left;
1315 margin: 0 10px 0 0;
1316 padding: 0;
1317 list-style: none;
1318 border-right: 1px dotted #e9e9e9;
1319 padding-right: 10px;
1320 }
1321
1322 ul.meta-post li i {
1323 float: left;
1324 font-size: 12px;
1325 margin: 2px 5px 0 0;
1326 }
1327
1328 ul.meta-post li a {
1329 color: #999;
1330 float: left;
1331 font-size: 12px;
1332 font-weight: 600;
1333 }
1334
1335
1336 /* --- single post --- */
1337
1338 .bottom-article {
1339 overflow: hidden;
1340 border-top: 1px solid #f5f5f5;
1341 border-bottom: 1px solid #f5f5f5;
1342 padding: 10px 0 10px 0;
1343 margin-top: 20px;
1344 }
1345
1346
1347 /* --- author info --- */
1348
1349 .about-author {
1350 border: 1px solid #f5f5f5;
1351 padding: 20px;
1352 float: left;
1353 margin-bottom: 5px;
1354 }
1355
1356 .about-author h5 {
1357 margin-bottom: 10px;
1358 }
1359
1360
1361 /* --- Comment --- */
1362
1363 .comment-area {
1364 float: left;
1365 width: 100%;
1366 margin-top: 30px;
1367 }
1368
1369 .media-content {
1370 overflow: hidden;
1371 margin-left: 12px;
1372 border-bottom: 1px dotted #d5d5d5;
1373 padding-bottom: 20px;
1374 }
1375
1376 .media-content h6 {
1377 font-size: 14px;
1378 font-weight: 700;
1379 }
1380
1381 .media-content span {
1382 color: #a9a9a9;
1383 font-size: 14px;
1384 font-weight: 300;
1385 }
1386
1387 .comment-area .thumbnail>img {
1388 display: block;
1389 width: 60px;
1390 height: 60px;
1391 }
1392
1393 .filter-list {
1394 margin-top: 20px;
1395 }
1396
1397
1398 /* --- pagination --- */
1399
1400 #pagination a,
1401 #pagination span {
1402 display: block;
1403 float: left;
1404 margin: 0 7px 0 0;
1405 padding: 7px 10px 6px 10px;
1406 font-size: 12px;
1407 line-height: 12px;
1408 color: #888;
1409 font-weight: 600;
1410 }
1411
1412 #pagination a:hover {
1413 color: #fff;
1414 text-decoration: none;
1415 }
1416
1417 #pagination span.current {
1418 background: #333;
1419 color: #fff;
1420 font-weight: bold;
1421 }
1422
1423
1424 /* ===============================
1425 15. Aside, sidebar
1426 ================================ */
1427
1428 aside {
1429 position: relative;
1430 margin-bottom: 40px;
1431 }
1432
1433 .sidebar-nav {
1434 float: left;
1435 width: 100%;
1436 }
1437
1438 .right-sidebar {
1439 border-left: 1px solid #f5f5f5;
1440 padding: 0 0 0 30px;
1441 -webkit-box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
1442 box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
1443 }
1444
1445 .left-sidebar {
1446 border-right: 1px solid #f5f5f5;
1447 padding: 0 30px 0 0;
1448 -webkit-box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
1449 box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, .01);
1450 }
1451
1452 .left-sidebar .widget h3,
1453 .left-sidebar .widget .widget-content {
1454 padding-right: 20px;
1455 }
1456
1457 aside .widget {
1458 margin-bottom: 40px;
1459 }
1460
1461 ul.cat,
1462 ul.recent,
1463 ul.folio-detail,
1464 ul.contact-info {
1465 margin: 0;
1466 padding: 0;
1467 list-style: none;
1468 }
1469
1470 ul.cat li,
1471 ul.recent li,
1472 ul.folio-detail li,
1473 ul.contact-info li {
1474 margin: 0 0 15px 0;
1475 list-style: none;
1476 }
1477
1478 ul.cat li a,
1479 ul.folio-detail li a {
1480 color: #656565;
1481 }
1482
1483 ul.folio-detail li label {
1484 display: inline;
1485 cursor: default;
1486 color: #353535;
1487 font-weight: bold;
1488 }
1489
1490 .widget ul.recent li {
1491 margin-bottom: 20px;
1492 }
1493
1494 ul.recent li h6 {
1495 margin: 0 0 10px 0;
1496 }
1497
1498 ul.recent li h6 a {
1499 color: #353535;
1500 font-size: 16px;
1501 font-weight: 600;
1502 }
1503
1504 .widget ul.tags {
1505 list-style: none;
1506 margin: 0;
1507 margin-left: 0;
1508 padding-left: 0;
1509 }
1510
1511 .widget ul.tags li {
1512 margin: 0 5px 15px 0;
1513 display: inline-block;
1514 }
1515
1516 .widget ul.tags li a {
1517 background: #e6e6e6;
1518 color: #333;
1519 padding: 5px 10px;
1520 }
1521
1522 .widget ul.tags li a:hover {
1523 text-decoration: none;
1524 color: #fff;
1525 }
1526
1527
1528 /* ===== Widgets ===== */
1529
1530
1531 /* --- flickr --- */
1532
1533 .widget .flickr_badge {
1534 width: 100%;
1535 }
1536
1537 .widget .flickr_badge img {
1538 margin: 0 9px 20px 0;
1539 }
1540
1541 footer .widget .flickr_badge {
1542 width: 100%;
1543 }
1544
1545 footer .widget .flickr_badge img {
1546 margin: 0 9px 20px 0;
1547 }
1548
1549 .flickr_badge img {
1550 width: 50px;
1551 height: 50px;
1552 float: left;
1553 margin: 0 9px 20px 0;
1554 }
1555
1556
1557 /* --- latest tweet widget --- */
1558
1559 .twitter ul {
1560 margin-left: 0;
1561 list-style: none;
1562 }
1563
1564 .twitter img {
1565 float: left;
1566 margin-right: 15px;
1567 }
1568
1569 .twitter span.tweet_time {
1570 display: block;
1571 padding-bottom: 5px;
1572 }
1573
1574 .twitter li {
1575 border-bottom: 1px dashed #efefef;
1576 padding-bottom: 20px;
1577 margin-bottom: 20px;
1578 list-style: none;
1579 }
1580
1581 .twitter li:last-child {
1582 border: none;
1583 }
1584
1585
1586 /* --- Recent post widget --- */
1587
1588 .recent-post {
1589 margin: 20px 0 0 0;
1590 padding: 0;
1591 line-height: 18px;
1592 }
1593
1594 .recent-post h5 a:hover {
1595 text-decoration: none;
1596 }
1597
1598 .recent-post .text h5 a {
1599 color: #353535;
1600 }
1601
1602 ul.time-post {
1603 float: left;
1604 width: 120px;
1605 padding: 0;
1606 list-style: none;
1607 margin: 0 20px 0 0;
1608 text-align: center;
1609 color: #0e0f0f;
1610 }
1611
1612 ul.time-post li {
1613 float: none;
1614 background: #f8f8f8;
1615 list-style: none;
1616 margin: 0 0 2px 0;
1617 padding: 0;
1618 }
1619
1620 ul.time-post li a img:hover {
1621 opacity: 0.8;
1622 /* For IE 5-7 */
1623 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
1624 /* For IE 8 8 */
1625 -MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
1626 }
1627
1628 ul.time-post li.time {
1629 float: none;
1630 padding: 5px 0 5px 0;
1631 text-shadow: none;
1632 }
1633
1634 .recent-post ul.time-post li.time {
1635 color: #121214;
1636 }
1637
1638 .post-meta {
1639 margin-bottom: 20px;
1640 }
1641
1642 .post-meta span {
1643 padding: 0 10px 0 10px;
1644 margin-bottom: 10px;
1645 }
1646
1647 .post-meta span a {
1648 color: #919191;
1649 }
1650
1651 .post-meta strong {
1652 font-weight: 200px;
1653 color: #c7c7c7;
1654 }
1655
1656 .item .text {
1657 margin-left: 140px;
1658 margin-bottom: 20px;
1659 }
1660
1661
1662 /* ===============================
1663 16. Footer
1664 ================================ */
1665
1666 footer {
1667 padding: 10px 0 0 0;
1668 color: #f8f8f8;
1669 }
1670
1671 footer a {
1672 color: #fff;
1673 }
1674
1675 footer a:hover {
1676 color: #eee;
1677 }
1678
1679 footer h1,
1680 footer h2,
1681 footer h3,
1682 footer h4,
1683 footer h5,
1684 footer h6 {
1685 color: #fff;
1686 }
1687
1688 footer address {
1689 line-height: 1.6em;
1690 }
1691
1692 footer h5 a:hover,
1693 footer a:hover {
1694 text-decoration: none;
1695 }
1696
1697 ul.social-network {
1698 list-style: none;
1699 margin: 0;
1700 }
1701
1702 ul.social-network li {
1703 display: inline;
1704 margin: 0 5px;
1705 }
1706
1707 #sub-footer {
1708 text-shadow: none;
1709 color: #f5f5f5;
1710 padding: 0;
1711 padding-top: 10px;
1712 margin: 20px 0 0 0;
1713 }
1714
1715 #sub-footer p {
1716 margin: 0;
1717 padding: 0;
1718 }
1719
1720 #sub-footer span {
1721 color: #f5f5f5;
1722 }
1723
1724 .copyright {
1725 text-align: left;
1726 font-size: 0.8em;
1727 }
1728
1729 #sub-footer ul.social-network {
1730 float: right;
1731 }
1732
1733
1734 /* ===============================
1735 Live preview purpose
1736 ================================ */
1737
1738
1739 /* --- buttons --- */
1740
1741 .bs-docs-example {
1742 margin: 0 0 10px 0;
1743 }
1744
1745 .demobtn a.btn {
1746 margin: 0 10px 10px 0;
1747 }
1748
1749 section.demogrid .col-lg-1,
1750 section.demogrid .col-lg-2,
1751 section.demogrid .col-lg-3,
1752 section.demogrid .col-lg-4,
1753 section.demogrid .col-lg-5,
1754 section.demogrid .col-lg-6,
1755 section.demogrid .col-lg-7,
1756 section.demogrid .col-lg-8,
1757 section.demogrid .col-lg-9,
1758 section.demogrid .col-lg-10,
1759 section.demogrid .col-lg-11 {
1760 background: #f6f6f6;
1761 text-align: center;
1762 padding: 20px 0 20px;
1763 }
1764
1765 section.demogrid .show-grid .row,
1766 section.demogrid .show-grid .row-fluid {
1767 margin-bottom: 0;
1768 }
1769
1770 section.demogrid .show-grid .nest {
1771 background: #ddd;
1772 text-align: center;
1773 padding: 20px 0 20px;
1774 }
1775
1776 section.demogrid .col-lg-12.nest {
1777 background: #f6f6f6;
1778 text-align: center;
1779 padding: 20px 0 0;
1780 }
1781
1782 .demoinline p {
1783 display: inline;
1784 margin-right: 20px;
1785 }
1786
1787
1788 /* ===============================
1789 17. Divider, Line & Misc
1790 ================================ */
1791
1792 .solidline {
1793 border-top: solid 1px #dedede;
1794 margin: 0 0 10px;
1795 }
1796
1797 .dottedline {
1798 border-top: 1px dotted #f5f5f5;
1799 margin: 0 0 10px;
1800 }
1801
1802 .dashedline {
1803 border-top: 1px dashed #f5f5f5;
1804 margin: 0 0 10px;
1805 }
1806
1807 .blankline {
1808 height: 1px;
1809 margin: 0 0 10px;
1810 }
1811
1812
1813 /* scroll to top */
1814
1815 .scrollup {
1816 position: fixed;
1817 width: 32px;
1818 height: 32px;
1819 bottom: 2px;
1820 right: 32px;
1821 background: #222;
1822 margin-right: 20px;
1823 }
1824
1825 a.scrollup {
1826 outline: 0;
1827 text-align: center;
1828 }
1829
1830 a.scrollup:hover,
1831 a.scrollup:active,
1832 a.scrollup:focus {
1833 opacity: 1;
1834 text-decoration: none;
1835 }
1836
1837 a.scrollup i {
1838 margin-top: 10px;
1839 color: #fff;
1840 }
1841
1842 a.scrollup i:hover {
1843 text-decoration: none;
1844 }
1845
1846
1847 /* =============================
1848 18. Position & alignment
1849 ============================= */
1850
1851 .absolute {
1852 position: absolute;
1853 }
1854
1855 .relative {
1856 position: relative;
1857 }
1858
1859 .aligncenter {
1860 text-align: center;
1861 }
1862
1863 .aligncenter span {
1864 margin-left: 0;
1865 }
1866
1867 .floatright {
1868 float: right;
1869 }
1870
1871 .floatleft {
1872 float: left;
1873 }
1874
1875 .floatnone {
1876 float: none;
1877 }
1878
1879 .aligncenter {
1880 text-align: center;
1881 }
1882
1883
1884 /* --- Image allignment style --- */
1885
1886 img.pull-left,
1887 .align-left {
1888 float: left;
1889 margin: 0 15px 15px 0;
1890 }
1891
1892 .widget img.pull-left {
1893 float: left;
1894 margin: 0 15px 15px 0;
1895 }
1896
1897 img.pull-right,
1898 .align-right {
1899 float: right;
1900 margin: 0 0 15px 15px;
1901 }
1902
1903 article img.pull-left,
1904 article .align-left {
1905 float: left;
1906 margin: 5px 15px 15px 0;
1907 }
1908
1909 article img.pull-right,
1910 article .align-right {
1911 float: right;
1912 margin: 5px 0 15px 15px;
1913 }
1914
1915
1916 /* =============================
1917 20. Spacer, margin
1918 ============================= */
1919
1920 .clear-marginbot {
1921 margin-bottom: 0;
1922 }
1923
1924 .marginbot10 {
1925 margin-bottom: 10px;
1926 }
1927
1928 .marginbot20 {
1929 margin-bottom: 20px;
1930 }
1931
1932 .marginbot30 {
1933 margin-bottom: 30px;
1934 }
1935
1936 .marginbot40 {
1937 margin-bottom: 40px;
1938 }
1939
1940 .clear-margintop {
1941 margin-top: 0;
1942 }
1943
1944 .margintop10 {
1945 margin-top: 10px;
1946 }
1947
1948 .margintop20 {
1949 margin-top: 20px;
1950 }
1951
1952 .margintop30 {
1953 margin-top: 30px;
1954 }
1955
1956 .margintop40 {
1957 margin-top: 40px;
1958 }
1959
1960
1961 /* =============================
1962 21. Media queries
1963 ============================= */
1964
1965 @media (min-width: 768px) and (max-width: 979px) {
1966 a.detail {
1967 background: none;
1968 width: 100%;
1969 }
1970 footer .widget form input#appendedInputButton {
1971 display: block;
1972 width: 91%;
1973 -webkit-border-radius: 4px 4px 4px 4px;
1974 -moz-border-radius: 4px 4px 4px 4px;
1975 border-radius: 4px 4px 4px 4px;
1976 }
1977 footer .widget form .input-append .btn {
1978 display: block;
1979 width: 100%;
1980 padding-right: 0;
1981 padding-left: 0;
1982 -webkit-box-sizing: border-box;
1983 -moz-box-sizing: border-box;
1984 box-sizing: border-box;
1985 margin-top: 10px;
1986 }
1987 ul.related-folio li {
1988 width: 156px;
1989 margin: 0 20px 0 0;
1990 }
1991 }
1992
1993 @media (max-width: 767px) {
1994 body {
1995 padding-right: 0;
1996 padding-left: 0;
1997 }
1998 .navbar-brand {
1999 margin-top: 10px;
2000 border-bottom: none;
2001 }
2002 .navbar-header {
2003 margin-top: 20px;
2004 border-bottom: none;
2005 }
2006 .navbar-nav {
2007 border-top: none;
2008 float: none;
2009 width: 100%;
2010 }
2011 header .navbar-nav>li {
2012 padding-bottom: 0;
2013 padding-top: 0;
2014 }
2015 header .nav li .dropdown-menu {
2016 margin-top: 0;
2017 }
2018 .dropdown-menu {
2019 position: absolute;
2020 top: 0;
2021 left: 40px;
2022 z-index: 1000;
2023 display: none;
2024 float: left;
2025 min-width: 160px;
2026 padding: 5px 0;
2027 margin: 2px 0 0;
2028 font-size: 13px;
2029 list-style: none;
2030 background-color: #fff;
2031 background-clip: padding-box;
2032 border: 1px solid #f5f5f5;
2033 border: 1px solid rgba(0, 0, 0, .15);
2034 border-radius: 0;
2035 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
2036 box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
2037 }
2038 .navbar-collapse.collapse {
2039 border: none;
2040 overflow: hidden;
2041 }
2042 .box {
2043 border-bottom: 1px solid #e9e9e9;
2044 padding-bottom: 20px;
2045 }
2046 #featured .flexslider .slide-caption {
2047 width: 90%;
2048 padding: 2%;
2049 position: absolute;
2050 left: 0;
2051 bottom: -40px;
2052 }
2053 #inner-headline .breadcrumb {
2054 float: left;
2055 clear: both;
2056 width: 100%;
2057 }
2058 .breadcrumb>li {
2059 font-size: 13px;
2060 }
2061 ul.portfolio li article a i.icon-48 {
2062 width: 20px;
2063 height: 20px;
2064 font-size: 16px;
2065 line-height: 20px;
2066 }
2067 .left-sidebar {
2068 border-right: none;
2069 padding: 0 0 0 0;
2070 border-bottom: 1px dotted #e6e6e6;
2071 padding-bottom: 10px;
2072 margin-bottom: 40px;
2073 }
2074 .right-sidebar {
2075 margin-top: 30px;
2076 border-left: none;
2077 padding: 0 0 0 0;
2078 }
2079 footer .col-lg-1,
2080 footer .col-lg-2,
2081 footer .col-lg-3,
2082 footer .col-lg-4,
2083 footer .col-lg-5,
2084 footer .col-lg-6,
2085 footer .col-lg-7,
2086 footer .col-lg-8,
2087 footer .col-lg-9,
2088 footer .col-lg-10,
2089 footer .col-lg-11,
2090 footer .col-lg-12 {
2091 margin-bottom: 20px;
2092 }
2093 #sub-footer ul.social-network {
2094 float: left;
2095 }
2096 [class*="span"] {
2097 margin-bottom: 20px;
2098 }
2099 .slide2-text p {
2100 display: none;
2101 }
2102 .slide2-text .btn-lg {
2103 top: 20px;
2104 left: 30px;
2105 z-index: 9999;
2106 }
2107 }
2108
2109 @media (max-width: 480px) {
2110 .bottom-article a.pull-right {
2111 float: left;
2112 margin-top: 20px;
2113 }
2114 .search {
2115 float: left;
2116 }
2117 .flexslider .flex-caption {
2118 display: none;
2119 }
2120 .cta-text {
2121 margin: 0 auto;
2122 text-align: center;
2123 }
2124 ul.portfolio li article a i {
2125 width: 20px;
2126 height: 20px;
2127 font-size: 14px;
2128 }
2129 }
2130
2131 @media (max-width: 360px) {}
2132
2133 .circle-border {
2134 border: solid #4e94c5 1px;
2135 border-radius: 100%;
2136 border-width: 0.4em;
2137 margin: 0 auto;
2138 width: 100px;
2139 height: 100px;
2140 /*line-height:1.6em;
2141 vertical-align:middle;
2142 */
2143 }
2144
2145 #kali-logo .kali-logo {
2146 margin: 0 auto;
2147 width: 100%;
2148 max-width: 200px;
2149 }
2150
2151 .btn-link {
2152 color: #fff;
2153 border-color: #3f9fe2;
2154 background-color: #4e94c5;
2155 text-shadow: 1px 1px #555;
2156 padding: 12px 30px;
2157 text-align: center;
2158 }
2159
2160 .btn-link:hover {
2161 text-decoration: none;
2162 -o-transition: .5s;
2163 -ms-transition: .5s;
2164 -moz-transition: .5s;
2165 -webkit-transition: .5s;
2166 transition: .5s;
2167 background-color: #3f9fe2;
2168 color: #fff;
2169 border-color: #3f9fe2;
2170 }
2171
2172 .btn-enroll-scalled {
2173 transform: scale(0.7);
2174 /* blurry */
2175 transform: perspective(500px) scale3d(0.6, 0.6, 1) translateZ(50px);
2176 float: right;
2177 margin-right: -25px;
2178 }
2179
2180 .btn-enroll-scalled * {
2181 font-size: 1.3em;
2182 text-transform: uppercase;
2183 }
2184
2185 @media (min-width: 768px) and (max-width: 979px),
2186 (max-width: 767px),
2187 (max-width: 480px) {
2188 .btn-enroll-scalled {
2189 transform: scale(1);
2190 /* blurry */
2191 transform: perspective(500px) scale3d(0.8, 0.8, 1) translateZ(50px);
2192 display: table;
2193 float: none;
2194 margin: 20px auto;
2195 }
2196 .btn-enroll-scalled * {
2197 font-size: 1.3em;
2198 text-transform: uppercase;
2199 }
2200 }
2201
2202 a img,
2203 a img:hover {
2204 border: none;
2205 }
2206
2207 .btn-yellow {
2208 /*
2209 background: #D3A10D !important;
2210 background: #F0B323 !important;
2211 */
2212 border-color: #5caae2 !important;
2213 text-shadow: 1px 1px 1px #111, 0px 0px 5px #5caae2;
2214 color: #efefef;
2215 font-weight: 700;
2216 text-transform: uppercase !important;
2217 position: relative;
2218 -webkit-animation-duration: 0.5s ease-in-out;
2219 -moz-animation-duration: 0.5s ease-in-out;
2220 -o-animation-duration: 0.5s ease-in-out;
2221 animation-duration: 0.5s ease-in-out;
2222 -webkit-animation-fill-mode: both;
2223 -moz-animation-fill-mode: both;
2224 -o-animation-fill-mode: both;
2225 animation-fill-mode: both;
2226 margin: -10px 30px 0 0;
2227 transform: scale(0.88);
2228 }
2229
2230 .btn-yellow:hover {
2231 background: #EAB823 !important;
2232 background: #16636F !important;
2233 border-color: #D3A10D !important;
2234 color: #EAB823;
2235 text-shadow: 1px 1px 2px #111, 0px 0px 1px #000;
2236 }
2237
2238 .slides {
2239 position: relative !important;
2240 }
2241
2242 .slide2-text {
2243 position: absolute;
2244 top: 25%;
2245 left: 50%;
2246 color: #fff;
2247 /*max-height:115px;
2248 max-width: 500px;
2249 width:100%;
2250 clear:both;
2251 */
2252 font-size: 1.2vw;
2253 line-height: 145%;
2254 text-shadow: 0px 0px 1px #111, 0px 0px 3px #000;
2255 margin: 0 15px 0 0;
2256 }
2257
2258 @media (min-width: 1921px) {
2259 /* for screens larger than 1920, fix text size - DigiP */
2260 .slide2-text {
2261 font-size: 1.028vw;
2262 }
2263 }
2264
2265 @media (max-width: 500px) {
2266 .btn-yellow {
2267 font-weight: 600;
2268 font-size: 1.028vw;
2269 text-shadow: none;
2270 }
2271 }
2272
2273
2274 /* home page slider - remove this if adding slider functionality back in */
2275
2276 .flexslider .slides>li {
2277 display: block;
2278 /* override flex slider css that hid individual slides and loaded them dynamically via JavaScript - DigiP */
2279 }
2280
2281 .awae-new {
2282 color: #fff;
2283 background-color: #23b3a5;
2284 border-radius: 4px;
2285 display: block;
2286 max-width: 100px;
2287 margin: 20px auto 0;
2288 }
firefox/web/fonts/fa-brands-400.woff2 less more
Binary diff not shown
firefox/web/fonts/fa-regular-400.woff2 less more
Binary diff not shown
firefox/web/fonts/fa-solid-900.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18Q.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydi18Smxg.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklyds18Q.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdu.woff2 less more
Binary diff not shown
firefox/web/fonts/source-sans/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmRduz8A.woff2 less more
Binary diff not shown
+0
-128
firefox/web/fonts/source-sans/source-sans.css less more
0 /* latin-ext */
1 @font-face {
2 font-family: 'Source Sans Pro';
3 font-style: italic;
4 font-weight: 400;
5 src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2');
6 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
7 }
8 /* latin */
9 @font-face {
10 font-family: 'Source Sans Pro';
11 font-style: italic;
12 font-weight: 400;
13 src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2');
14 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
15 }
16 /* latin-ext */
17 @font-face {
18 font-family: 'Source Sans Pro';
19 font-style: italic;
20 font-weight: 600;
21 src: local('Source Sans Pro SemiBold Italic'), local('SourceSansPro-SemiBoldItalic'), url(6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2) format('woff2');
22 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
23 }
24 /* latin */
25 @font-face {
26 font-family: 'Source Sans Pro';
27 font-style: italic;
28 font-weight: 600;
29 src: local('Source Sans Pro SemiBold Italic'), local('SourceSansPro-SemiBoldItalic'), url(6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18Q.woff2) format('woff2');
30 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
31 }
32 /* latin-ext */
33 @font-face {
34 font-family: 'Source Sans Pro';
35 font-style: italic;
36 font-weight: 700;
37 src: local('Source Sans Pro Bold Italic'), local('SourceSansPro-BoldItalic'), url(6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2');
38 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
39 }
40 /* latin */
41 @font-face {
42 font-family: 'Source Sans Pro';
43 font-style: italic;
44 font-weight: 700;
45 src: local('Source Sans Pro Bold Italic'), local('SourceSansPro-BoldItalic'), url(6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2');
46 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
47 }
48 /* latin-ext */
49 @font-face {
50 font-family: 'Source Sans Pro';
51 font-style: italic;
52 font-weight: 900;
53 src: local('Source Sans Pro Black Italic'), local('SourceSansPro-BlackItalic'), url(6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklydi18Smxg.woff2) format('woff2');
54 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
55 }
56 /* latin */
57 @font-face {
58 font-family: 'Source Sans Pro';
59 font-style: italic;
60 font-weight: 900;
61 src: local('Source Sans Pro Black Italic'), local('SourceSansPro-BlackItalic'), url(6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklyds18Q.woff2) format('woff2');
62 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
63 }
64 /* latin-ext */
65 @font-face {
66 font-family: 'Source Sans Pro';
67 font-style: normal;
68 font-weight: 400;
69 src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2');
70 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
71 }
72 /* latin */
73 @font-face {
74 font-family: 'Source Sans Pro';
75 font-style: normal;
76 font-weight: 400;
77 src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');
78 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
79 }
80 /* latin-ext */
81 @font-face {
82 font-family: 'Source Sans Pro';
83 font-style: normal;
84 font-weight: 600;
85 src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format('woff2');
86 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
87 }
88 /* latin */
89 @font-face {
90 font-family: 'Source Sans Pro';
91 font-style: normal;
92 font-weight: 600;
93 src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format('woff2');
94 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
95 }
96 /* latin-ext */
97 @font-face {
98 font-family: 'Source Sans Pro';
99 font-style: normal;
100 font-weight: 700;
101 src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2');
102 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
103 }
104 /* latin */
105 @font-face {
106 font-family: 'Source Sans Pro';
107 font-style: normal;
108 font-weight: 700;
109 src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2');
110 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
111 }
112 /* latin-ext */
113 @font-face {
114 font-family: 'Source Sans Pro';
115 font-style: normal;
116 font-weight: 900;
117 src: local('Source Sans Pro Black'), local('SourceSansPro-Black'), url(6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwmRduz8A.woff2) format('woff2');
118 unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
119 }
120 /* latin */
121 @font-face {
122 font-family: 'Source Sans Pro';
123 font-style: normal;
124 font-weight: 900;
125 src: local('Source Sans Pro Black'), local('SourceSansPro-Black'), url(6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nwlxdu.woff2) format('woff2');
126 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
127 }
0 @font-face {
1 font-family: 'Noto Sans';
2 font-style: normal;
3 font-weight: 400;
4 font-display: swap;
5 src: url(../fonts.gstatic.com/s/notosans/v25/o-0IIpQlx3QUlC5A4PNr5TRF.ttf) format('truetype');
6 }
7 @font-face {
8 font-family: 'Noto Sans';
9 font-style: normal;
10 font-weight: 700;
11 font-display: swap;
12 src: url(../fonts.gstatic.com/s/notosans/v25/o-0NIpQlx3QUlC5A4PNjXhFVZNyE.ttf) format('truetype');
13 }
+0
-146
firefox/web/homepage.html less more
0 <!DOCTYPE html>
1 <html lang="en">
2 <head>
3 <meta charset="utf-8">
4 <title>Kali Linux</title>
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <meta name="description" content="Kali Linux is an Advanced Penetration Testing Linux distribution used for Penetration Testing, Ethical Hacking and network security assessments." />
7 <meta name="author" content="Kali Linux" />
8 <!-- based on template from http://bootstraptaste.com -->
9 <!-- css -->
10 <link href="css/bootstrap.min.css" rel="stylesheet" />
11 <link href="css/style.css" rel="stylesheet" />
12 <!-- Theme skin -->
13 <link href="skins/default.css" rel="stylesheet" />
14 </head>
15
16 <body>
17 <div id="wrapper">
18 <!-- start header -->
19 <header class="">
20 <div class="navbar navbar-default navbar-static-top">
21 <div class="container">
22 <div class="navbar-header">
23 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
24 <span class="icon-bar"></span>
25 <span class="icon-bar"></span>
26 <span class="icon-bar"></span>
27 </button>
28 <a id="kali-logo" href="https://www.kali.org/" target="_blank">
29 <img class="kali-logo" src="img/kali-site-logo.png" alt="Kali" />
30 </a>
31 </div>
32 <div class="navbar-collapse collapse ">
33 <ul class="nav navbar-nav">
34 <li><a href="https://www.kali.org/" target="_blank">Kali Linux</a></li>
35 <li><a href="https://www.kali.org/tools/" target="_blank">Tools</a></li>
36 <li><a href="https://www.kali.org/docs/" target="_blank">Documentation</a></li>
37 <li><a href="https://forums.kali.org/" target="_blank">Forums</a></li>
38 <li><a href="https://bugs.kali.org/" target="_blank">Bug Tracker</a></li>
39 <li><a href="https://www.offensive-security.com/" target="_blank">Offensive Security</a></li>
40 </ul>
41 </div>
42 </div>
43 </div>
44 </header>
45 <!-- end header -->
46
47 <section id="featured" class="">
48 <div class="cta-text">
49 <p style="font-size: 36px; color:#656565;">Welcome to Kali Linux</p>
50 <h1>The Industry's Most Advanced Penetration Testing Distribution</h1>
51 </div>
52 <!-- end slider container -->
53
54 </section>
55 <section id="content">
56 <div class="container">
57 <div class="row fadeInUpBig">
58 <div class="col-lg-12">
59 <div class="row">
60 <div class="col-lg-12">
61 <br />
62 <p style="text-align:center;">Now that you have successfully downloaded Kali Linux, here are some good resources to help you <b><i><a href="https://kali.Tracker ining/" target="_blank">get started.</a></i></b></p>
63 </div>
64 </div>
65 <div class="row">
66 <div class="col-lg-6">
67 <div class="box">
68 <div class="box aligncenter">
69 <h4>Official Kali Documentation</h4>
70 <div class="icon circle-border">
71 <br /><i class="fas fa-book fa-3x"></i><br /><br />
72 </div>
73 <br />
74 <p align="justify">Includes multiple scenarios and "recipes", enabling users to create custom complex images with ease. Designed to provide value to seasoned testers and novices alike.</p>
75 <br />
76 <p><a class="btn-lg btn-theme btn-block btn-link animated" href="https://www.kali.org/docs/" targt="_blank">Learn More</a></p>
77 </div>
78 </div>
79 </div>
80 <div class="col-lg-6">
81 <div class="box">
82 <div class="box aligncenter">
83 <h4>Community Support</h4>
84 <div class="icon circle-border">
85 <br /><i class="fas fa-users fa-3x"></i><br /><br />
86 </div>
87 <br />
88 <p align="justify">Engage with the highly active and passionate Kali community for support, tips, and recommendations. <a href="https://forums.kali.org/" target="_blank">Jump in today.</a></p>
89 <br />
90 <p><a class="btn-lg btn-theme btn-block btn-link animated" href="https://forums.kali.org/">Get Connected</a></p>
91 </div>
92 </div>
93 </div>
94 </div>
95 <div class="row">
96 <div class="col-lg-12">
97 <h2>About Kali Linux</h2>
98 <p style="text-align:justify;">Kali Linux was founded upon the belief that to arrive at the best defensive strategy requires testers to put themselves in the shoes of potential attackers. To make it easier and more accessible for security professionals to test the effectiveness of risk mitigation strategies, Kali Linux provides an all-in-one solution, combining <a href="https://tools.kali.org/tools-listing" target="_blank">400+</a> penetration testing and security auditing programs with a Linux operating system, including <a href="https://www.kali.org/tools/nmap/" target="_blank">Nmap</a> for port and vulnerability scanning, <a href="https://www.kali.org/tools/aircrack-ng/" target="_blank">Aircrack-ng</a> for testing the security of wireless networks, <a href="https://www.kali.org/tools/wireshark/" target="_blank">Wireshark</a> for monitoring network traffic, and <a href="https://www.kali.org/tools/metasploit-framework/" target="_blank">Metasploit</a> for network penetration testing. Like its predecessor <a href="https://www.backtrack-linux.org/" target="_blank">BackTrack Linux</a>, Kali Linux is completely free and always will be thanks to the support of <a href="https://www.offensive-security.com/" target="blank">Offensive Security</a>.</p>
99 </div>
100 </div>
101 </div>
102 </div>
103 </div>
104 </section>
105 <section style="background-color: #fafafa; border-top: solid #e1e1e1 1px; border-bottom: solid #e1e1e1 1px;">
106 <div class="container ">
107 <div class="row">
108 <div class="col-lg-12">
109 <div class="box">
110 <br />
111 <h4 class="aligncenter">Sponsored by Offensive Security</h4>
112 <div class="icon aligncenter">
113 <!-- <i class="fa fa-users fa-3x"></i> -->
114 <a href="https://www.offensive-security.com/" target="_blank"><img src="img/offsec-man-in-the-door.png" alt="Offensiv Security Logo" /></a>
115 </div>
116 <h5 class="aligncenter">About Offensive Security</h5>
117 <p align="justify"><a href="https://www.offensive-security.com/" target="_blank">Offensive Security</a> is one of the most respected and trusted names in the information security space. In addition to developing and supporting some of the most widely used penetration testing tools, like the Kali Linux distribution system, Offensive Security provides innovative, hands-on training and certification programs designed for info security professionals who want to take a serious and meaningful step deeper into the world of penetration testing.
118 <br />
119 </p>
120 <br />
121 </div>
122 </div>
123 </div>
124 </div>
125 </section>
126 <footer>
127 <div id="sub-footer">
128 <div class="container">
129 <div class="row">
130 <div class="col-lg-12">
131 <div class="floatright">
132 <a href="https://twitter.com/KaliLinux" title="Twitter" target="_blank"><i style="padding:4px; border-radius: 4px; color: #fff;" class="fab fa-twitter"></i></a>
133 &nbsp;&nbsp;&nbsp;
134 <a href="https://www.facebook.com/KaliLinux" title="Facebook" target="_blank"><i style="padding:4px; border-radius: 4px; color: #fff;" class="fab fa-facebook"></i></a>
135 </div>
136 <div class="copyright"><a href="https://www.kali.org/" target="_blank">&copy; Kali Linux</a></div>
137 <br />
138 </div>
139 </div>
140 </div>
141 </div>
142 </footer>
143 </div>
144 </body>
145 </html>
0 <svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="m.85064.33893c-.68445.022529-.89401.56436-.84345.97214.056812.45861.34593.67626.92457.75695 3.0669.33729 6.7851 1.1526 9.0714 1.7556-3.1969-.45322-6.1005.088932-9.022.65732-.60032.13029-.85651.58321-.81695 1.0084.061128.49391.51118.8447 1.0051.78357.00637-.000807.012664-.0017.019019-.0027 2.242-.28925 6.1135-.83745 9.4626-.57208-3.8533.47142-7.057 1.9003-8.9101 2.82-.40546.17221-.64763.59234-.59361 1.0296.20793.77595.89414.79657 1.5305.53606 3.6272-1.4843 7.1813-2.0256 9.6157-2.3921l.3465.74901c-.0076.0043-.01557.0085-.02318.01285v-.000125c-2.3397 1.6673-3.2609 4.2383-2.8012 6.5788.48184 2.4538 2.3708 4.6245 5.2629 5.1083.74088.12108 1.5767.19397 2.5281.23175 4.9112-.20098 7.617 4.0913 9.1507 7.8595.1797.49104.33524.96732.44159 1.3578.1053.3864.15719.74488.15731.78932.000375.21666.02483.42759.09106.62644.03073.09246.0846.21843.17672.33667.1073.13763.32011.32017.63744.32017.24888 0 .41371-.09122.55469-.2373.10226-.10597.16031-.22968.1849-.29535.05471-.14629.06674-.28263.07469-.39184.01695-.23628.0039-.50239-.02494-.80588-.05882-.60933-.19005-1.3757-.38088-2.1416-.46807-1.8787-1.5347-4.2869-2.8509-5.8866 2.104.60556 4.0087 2.8929 4.5398 4.4542.04941.14526.1283.3168.265.46363.05722.06133.20306.19156.39738.24283.151.03987.27054.02347.38919-.0079.11869-.03166.23587-.07883.34763-.19044.25879-.25879.24489-.6552.24019-.72576-.0093-.15611-.04064-.30442-.08011-.45544-.08014-.30625-.20433-.65632-.35871-1.0294-.30853-.74545-.72126-1.5638-1.1425-2.1362-1.5296-2.0778-4.6323-3.6859-8.1157-4.4018-.84382-.17341-2.6893-.45809-4.2639-.45809.04742 0-.11377-.0039-.27596-.0165-.16222-.01192-.37262-.03397-.5989-.05252-.45254-.03709-.95976-.0787-1.2281-.10215-2.5241-.22041-3.607-2.0677-3.5104-3.894.09657-1.8261 1.3737-3.5767 3.9602-3.5767.77676 0 1.197.03133 1.8931.23175.6937.19968 1.6646.58604 3.3475 1.2998.72982.30961 1.1416.51444 1.2889.6154.18485.12676.07411-.01801.13515.18767.05073.17078.03741.64245.42232 1.0018.24028.22442.50992.30691.82514.44159.3117.13319.6367.26897.80038.35884.69013.40419.96132.58138 1.551 1.3523.1592.20945.47381.21075.63476.0026.61926-.7992.7162-.72176 1.5068-.98526.41123-.13363.34738-.73413-.08275-.77826-.46126-.05153-1.1035-.3521-1.4738-.63201-.09657-.07312-.10185-.09041-.15178-.14623.12717-.16562.10563-.40127-.04962-.54096-.27587-.24736-.47471-.62776-.64032-.99632-.03947-.08783-.07826-.16695-.11587-.25115-.000437-.0027-.0026-.0027-.0026-.0053-.02172-.0673-.04795-.12631-.07179-.17381-.0093-.01934-.02543-.03886-.0359-.05806-.0066-.01192-.01067-.02662-.01663-.03867-.03722-.0706-.08061-.1423-.1296-.20971-.000437-.0011-.0026-.0014-.0026-.0028l-.0026-.0053c-.01324-.02609-.02357-.05244-.03867-.07721-.04782-.07869-.10793-.16383-.18225-.25933-.08412-.10225-.18376-.1922-.27042-.29258-1.4893-1.9568-3.3698-3.6423-5.4343-4.8901-.17287-.10385-.32415-.18895-.48302-.25115-.05987-.023445-.18515-.070057-.3339-.074563-.07007-.00265-.23024.0092-.3781.091064-.20343.11326-.29947.25096-.34498.46917-.0066.03219.004.06085.0026.09384-.0027.0106-.01531.01805-.0165.02758-.008.06067.0092.07102.01927.10203.01643.10942.04133.19752.0359.1849l.0026.0028c.02371.05351.05671.10474.06625.11865.0302.04385.06145.07952.07456.09384h.0026c.03841.04212.07507.08024.116.11865.08412.07855.1916.17284.32282.28427l.0081.0053.0052.0053c1.4355 1.0964 2.974 2.4523 4.0294 3.5767-1.7951-1.2641-3.3925-1.786-4.7527-2.0805-.39774-.10657-.82157-.18465-1.2571-.23326l.001-.00025c-1.2916-.19492-3.5722-.14438-3.7905-3.2515l.0029-1.4164c.0005-.14954-.09083-.28418-.22999-.33906l-1.2253-.48367c-4.4643-1.4695-7.7895-1.836-11.115-1.872z" stroke-width=".065038"/></svg>
0 <svg version="1.1" viewBox="0 0 451.14 367.25" xmlns="http://www.w3.org/2000/svg"><defs><filter id="g" x="-.15324" y="-.15324" width="1.3065" height="1.3065" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="16.015677"/></filter></defs><filter id="a" x="-.041716" y="-.056514" width="1.0834" height="1.113" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="7.088655"/></filter><filter id="b" x="-.009083" y="-.017677" width="1.0182" height="1.0354" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation=".94932635"/></filter><filter id="c" x="-.009083" y="-.017678" width="1.0182" height="1.0354" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation=".94930265"/></filter><filter id="d" x="-.192" y="-.192" width="1.384" height="1.384" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="20.067549"/></filter><linearGradient id="e" x1="165.32" x2="320.01" y1="151.05" y2="300.71" gradientUnits="userSpaceOnUse"><stop stop-color="#23bac2" offset="0"/><stop stop-color="#2777ff" offset="1"/></linearGradient><filter id="f" x="-.010418" y="-.014149" width="1.0208" height="1.0283" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="1.7572093"/></filter><path d="m88.955 49.197c-29.422.0336-48.857 2.4022-49.018 2.4219-.00066.00008-.11132.01-.11132.01-1.9208.22095-1.6766 3.0824.2539 2.9746 0 0 106.98-5.0542 192.73 29.41 3.0595 13.089 11.139 33.152 15.912 43.816-6.4977 4.4595-13.468 8.9863-19.203 16.17-6.0198 7.5407-10.569 17.947-11.781 33.859-2.4573 32.277 25.225 60.533 59.463 61.404 31.749 1.6903 53.335 1.9234 79.613 15.543 12.272 6.7936 23.702 20.759 32.238 37.818 8.5411 17.068 14.208 37.205 15.225 56.195.0953 1.8662 2.8387 1.9003 2.9805.0371.005-.0578-.002-.13723.002-.19531 1.1026-14.541-1.0448-37.049-9.7617-58.461-7.3013-17.935-19.364-35.01-37.91-45.719 26.655 7.2789 41.914 20.807 50.686 33.168 10.065 14.183 11.551 26.806 11.543 26.736.21183 1.7846 2.8153 1.7434 2.9707-.0469 0 0 1.3231-15.473-9.3535-32.521-10.677-17.048-33.342-35.683-80.594-42.617-11.969-1.7561-27.074-3.1058-42.381-3.1445-.008-.00006-.0156-.00006-.0234 0-37.042.48976-55.716-20.623-58.623-42.279-1.4537-10.828 1.0887-21.796 7.3789-30.295 6.2903-8.4988 16.301-14.584 30.094-15.662h.006c22.647-1.8687 50.269 10.379 77.432 23.018-.027 3.1387.25112 6.3048 2.5449 9.1719 1.5359 1.9198 4.3068 3.2538 7.127 4.5859 2.8195 1.3318 5.7216 2.5388 6.873 3.1992 2.6176 1.5025 11.349 7.1032 16.496 13.803.66067.86123 1.9903.75224 2.502-.20508.0267-.05.80919-.9524 1.8418-1.8164 1.0326-.86401 2.3429-1.8488 3.6191-2.7676 2.5524-1.8375 4.9688-3.4121 4.9688-3.4121 1.2578-.81978.65535-2.7746-.8457-2.7441 0 0-.36678.0207-1.5391-.20313-1.1723-.22385-3.0361-.69459-5.6875-1.6855-2.4401-.91186-5.355-2.8865-7.6035-4.6719-1.1243-.89269-2.0919-1.7367-2.7754-2.3691-.0817-.0756-.11608-.11241-.18945-.18164.71444-.64282.81228-1.6703.66797-2.3164-.14752-.66029-.4352-1.1955-.75782-1.7168-.64468-1.0417-1.4644-1.9704-2.0312-2.5371l-.002-.002c.0821.0819-.16776-.20989-.41992-.57812-.25313-.36964-.57883-.86898-.94532-1.4453-.73297-1.1527-1.6317-2.6184-2.5058-4.0625-1.7483-2.8882-3.3259-5.5727-3.4785-5.8281-.002-.004-.37979-.7993-1.1133-1.2891-.1154-.0769-.24096-.13741-.37305-.17969-.82802-.26627-1.4844-.20389-2.334-.16015-.84955.0437-1.7923.1437-2.6856.25781-1.4943.19089-2.4216.35926-2.8262.42969-1.0103-.53287-8.9072-4.9072-11.809-13.82-.53531-1.6348-2.955-1.2177-2.9121.50196.0158.58562-.87006 2.3306-.67774 4.9707-3.5086-2.1141-6.527-5.4732-9.1562-12.393-.48274-1.276-2.2828-1.2899-2.7852-.0215-1.0069 2.5321-1.0677 4.6507-.86329 6.293-3.3327-1.5671-8.7895-5.0153-9.9785-11.869-.25503-1.4664-2.2636-1.698-2.8457-.32812-.98011 2.3107-1.0671 4.2231-.90235 5.7637-6.2107-2.6638-23.316-8.893-48.844-9.0312-4.927-.4525-8.8427-2.918-12.059-6.6152-3.2163-3.6977-5.659-8.6263-7.3887-13.73-1.7297-5.1042-2.7521-10.38-3.2148-14.732-.46272-4.3524-.2681-7.9507.0547-8.9824.21555-.6878-.0909-1.4314-.72852-1.7676 0 0-31.217-16.422-92.244-23.641-22.882-2.7067-44.211-3.5339-61.938-3.5137zm71.268 32.521c-9.2988.0701-19.28.41666-29.768 1.1621-56.026 3.9823-112.43 23.557-112.43 23.557-1.8043.62272-.9969 3.3276.85352 2.8594 0 0 115.04-28.873 211.14-11.949.0851.0153.17136.0231.25781.0234h.004c1.0058-.00041 1.7236-.97485 1.4258-1.9356l-2.5117-8.1055c-.16523-.5344-.61525-.93165-1.166-1.0293 0 0-27.515-4.8845-67.803-4.582-.004-.00002-.008-.00002-.0117 0zm68.311 17.264c-9.8882-.0418-40.315 1.204-86.016 15.504-57.354 17.946-89.998 43.459-89.998 43.459-1.4384 1.1375.04323 3.3653 1.6484 2.4785 0 0 84.923-47.363 180.56-50.051.99906-.0288 1.6884-1.0119 1.375-1.9609l-2.748-8.3184c-.19067-.57703-.712-.98095-1.3184-1.0215 0 0-1.2177-.0802-3.5-.0899zm62.531-.13867c-1.4649.0214-2.0262 1.9197-.8086 2.7344h.002c.0877.0585.18128.10765.27929.14648 26.227 10.663 48.975 24.757 66.609 44.131.0159.0173.0321.0342.0488.0508l.002.002c.30389.30352.72375.4615 1.1523.43359l4.2793-.2793c1.214-.0799 1.8281-1.5003 1.0547-2.4394 0 0-24.778-30.028-72.021-44.662-.005-.002-.0101-.006-.0156-.008-.0239-.009-.048-.0175-.0723-.0254-.0136-.005-.0273-.009-.041-.0137-.15151-.0482-.30975-.072-.46875-.0703zm74.68 63.225c.858.17286 2.4764 3.3569 3.9629 5.6309.1305.18477.26337.38161.38867.53711 0 .0138.002.0235.0117.0371.1679.23967.33529.48794.49609.6875.081.47558.21622.76606-.89648.53711-.094-.48886-.25391-.63086-.25391-.63086s-2.6864-1.5969-3.5098-2.7305c-.8241-1.1335-.9681-3.1153-.5664-3.8672.0971-.16808.22119-.22899.36719-.20118z" filter="url(#a)" opacity=".2"/><g transform="translate(-4.7508 -89.176)" stroke-width=".55744"><circle cx="293.07" cy="275.87" r="125.42" fill="#153f86" filter="url(#g)"/><circle cx="282.31" cy="262.76" r="125.42" fill="url(#e)" filter="url(#d)" opacity=".59533"/><circle cx="282.31" cy="262.76" r="125.42" fill="url(#e)"/><path d="m407.61 259.3a125.42 125.42 0 0 1-125.3 122.97 125.42 125.42 0 0 1-125.3-121.96 125.42 125.42 0 0 0-0.1224 2.4536 125.42 125.42 0 0 0 125.42 125.42 125.42 125.42 0 0 0 125.42-125.42 125.42 125.42 0 0 0-0.12239-3.464z" filter="url(#b)" opacity=".1"/><path d="m282.31 137.34a125.42 125.42 0 0 0-125.42 125.42 125.42 125.42 0 0 0 0.1224 3.4582 125.42 125.42 0 0 1 125.3-122.97 125.42 125.42 0 0 1 125.3 121.96 125.42 125.42 0 0 0 0.12239-2.4479 125.42 125.42 0 0 0-125.42-125.42z" fill="#fff" filter="url(#c)" opacity=".1"/></g><path d="m88.955 49.197c-29.422.0336-48.857 2.4022-49.018 2.4219-.00066.00008-.11132.01-.11132.01-1.9208.22095-1.6766 3.0824.2539 2.9746 0 0 106.98-5.0542 192.73 29.41 3.0595 13.089 11.139 33.152 15.912 43.816-6.4977 4.4595-13.468 8.9863-19.203 16.17-6.0198 7.5407-10.569 17.947-11.781 33.859-2.4573 32.277 25.225 60.533 59.463 61.404 31.749 1.6903 53.335 1.9234 79.613 15.543 12.272 6.7936 23.702 20.759 32.238 37.818 8.5411 17.068 14.208 37.205 15.225 56.195.0953 1.8662 2.8387 1.9003 2.9805.0371.005-.0578-.002-.13723.002-.19531 1.1026-14.541-1.0448-37.049-9.7617-58.461-7.3013-17.935-19.364-35.01-37.91-45.719 26.655 7.2789 41.914 20.807 50.686 33.168 10.065 14.183 11.551 26.806 11.543 26.736.21183 1.7846 2.8153 1.7434 2.9707-.0469 0 0 1.3231-15.473-9.3535-32.521-10.677-17.048-33.342-35.683-80.594-42.617-11.969-1.7561-27.074-3.1058-42.381-3.1445-.008-.00006-.0156-.00006-.0234 0-37.042.48976-55.716-20.623-58.623-42.279-1.4537-10.828 1.0887-21.796 7.3789-30.295 6.2903-8.4988 16.301-14.584 30.094-15.662h.006c22.647-1.8687 50.269 10.379 77.432 23.018-.027 3.1387.25112 6.3048 2.5449 9.1719 1.5359 1.9198 4.3068 3.2538 7.127 4.5859 2.8195 1.3318 5.7216 2.5388 6.873 3.1992 2.6176 1.5025 11.349 7.1032 16.496 13.803.66067.86123 1.9903.75224 2.502-.20508.0267-.05.80919-.9524 1.8418-1.8164 1.0326-.86401 2.3429-1.8488 3.6191-2.7676 2.5524-1.8375 4.9688-3.4121 4.9688-3.4121 1.2578-.81978.65535-2.7746-.8457-2.7441 0 0-.36678.0207-1.5391-.20313-1.1723-.22385-3.0361-.69459-5.6875-1.6855-2.4401-.91186-5.355-2.8865-7.6035-4.6719-1.1243-.89269-2.0919-1.7367-2.7754-2.3691-.0817-.0756-.11608-.11241-.18945-.18164.71444-.64282.81228-1.6703.66797-2.3164-.14752-.66029-.4352-1.1955-.75782-1.7168-.64468-1.0417-1.4644-1.9704-2.0312-2.5371l-.002-.002c.0821.0819-.16776-.20989-.41992-.57812-.25313-.36964-.57883-.86898-.94532-1.4453-.73297-1.1527-1.6317-2.6184-2.5058-4.0625-1.7483-2.8882-3.3259-5.5727-3.4785-5.8281-.002-.004-.37979-.7993-1.1133-1.2891-.1154-.0769-.24096-.13741-.37305-.17969-.82802-.26627-1.4844-.20389-2.334-.16015-.84955.0437-1.7923.1437-2.6856.25781-1.4943.19089-2.4216.35926-2.8262.42969-1.0103-.53287-8.9072-4.9072-11.809-13.82-.53531-1.6348-2.955-1.2177-2.9121.50196.0158.58562-.87006 2.3306-.67774 4.9707-3.5086-2.1141-6.527-5.4732-9.1562-12.393-.48274-1.276-2.2828-1.2899-2.7852-.0215-1.0069 2.5321-1.0677 4.6507-.86329 6.293-3.3327-1.5671-8.7895-5.0153-9.9785-11.869-.25503-1.4664-2.2636-1.698-2.8457-.32812-.98011 2.3107-1.0671 4.2231-.90235 5.7637-6.2107-2.6638-23.316-8.893-48.844-9.0312-4.927-.4525-8.8427-2.918-12.059-6.6152-3.2163-3.6977-5.659-8.6263-7.3887-13.73-1.7297-5.1042-2.7521-10.38-3.2148-14.732-.46272-4.3524-.2681-7.9507.0547-8.9824.21555-.6878-.0909-1.4314-.72852-1.7676 0 0-31.217-16.422-92.244-23.641-22.882-2.7067-44.211-3.5339-61.938-3.5137zm71.268 32.521c-9.2988.0701-19.28.41666-29.768 1.1621-56.026 3.9823-112.43 23.557-112.43 23.557-1.8043.62272-.9969 3.3276.85352 2.8594 0 0 115.04-28.873 211.14-11.949.0851.0153.17136.0231.25781.0234h.004c1.0058-.00041 1.7236-.97485 1.4258-1.9356l-2.5117-8.1055c-.16523-.5344-.61525-.93165-1.166-1.0293 0 0-27.515-4.8845-67.803-4.582-.004-.00002-.008-.00002-.0117 0zm68.311 17.264c-9.8882-.0418-40.315 1.204-86.016 15.504-57.354 17.946-89.998 43.459-89.998 43.459-1.4384 1.1375.04323 3.3653 1.6484 2.4785 0 0 84.923-47.363 180.56-50.051.99906-.0288 1.6884-1.0119 1.375-1.9609l-2.748-8.3184c-.19067-.57703-.712-.98095-1.3184-1.0215 0 0-1.2177-.0802-3.5-.0899zm62.531-.13867c-1.4649.0214-2.0262 1.9197-.8086 2.7344h.002c.0877.0585.18128.10765.27929.14648 26.227 10.663 48.975 24.757 66.609 44.131.0159.0173.0321.0342.0488.0508l.002.002c.30389.30352.72375.4615 1.1523.43359l4.2793-.2793c1.214-.0799 1.8281-1.5003 1.0547-2.4394 0 0-24.778-30.028-72.021-44.662-.005-.002-.0101-.006-.0156-.008-.0239-.009-.048-.0175-.0723-.0254-.0136-.005-.0273-.009-.041-.0137-.15151-.0482-.30975-.072-.46875-.0703zm74.68 63.225c.858.17286 2.4764 3.3569 3.9629 5.6309.1305.18477.26337.38161.38867.53711 0 .0138.002.0235.0117.0371.1679.23967.33529.48794.49609.6875.081.47558.21622.76606-.89648.53711-.094-.48886-.25391-.63086-.25391-.63086s-2.6864-1.5969-3.5098-2.7305c-.8241-1.1335-.9681-3.1153-.5664-3.8672.0971-.16808.22119-.22899.36719-.20118z" filter="url(#a)" opacity=".2"/><g transform="translate(11.028 -89.023)" fill="#fff"><path d="m69.929 127.71c-29.464.0337-48.949 2.4206-48.949 2.4206s107.73-5.1706 194.03 29.769c2.9338 13.122 11.759 34.976 16.513 45.481-13.602 9.4041-28.94 18.249-31.328 49.612-2.3877 31.362 24.576 58.947 58.013 59.798 31.751 1.6913 53.688 1.9323 80.277 15.718 25.38 14.034 46.192 56.794 48.251 95.252 2.2244-28.534-8.4845-89.895-58.453-108.53 69.826 12.219 75.982 63.973 75.984 63.994 0 0 5.2056-59.754-88.677-73.531-11.899-1.7458-26.947-3.0899-42.168-3.1283-75.246.99487-77.989-86.786-21.288-91.218 23.499-1.9389 51.556 10.738 78.986 23.512-.10182 3.4068.0404 6.4339 2.2787 9.2314 2.2375 2.7966 10.832 5.8474 13.579 7.4233 2.7464 1.5764 11.545 7.1715 16.937 14.189 1.1692-2.1872 10.933-8.5432 10.933-8.5432s-2.3391.0507-7.781-1.9832c-5.4426-2.0339-11.9-8.1876-12.053-8.5432-.15246-.35625-.25501-.91601 1.0169-1.1705.96572-.81305-1.2209-3.4575-2.1873-4.4232-.96572-.96636-7.4247-11.95-7.5769-12.204-.15245-.25447-.20376-.50931-.66105-.81465-1.4244-.45805-7.6799.66106-7.6799.66106s-9.6211-4.7252-12.937-14.913c.0482 1.7844-1.6497 3.734 0 7.8335-5.0162-2.122-9.325-5.7416-12.723-14.685-2.0227 5.0868 0 8.3215 0 8.3215s-11.811-3.3016-13.701-14.195c-2.0742 4.8902 0 7.8316 0 7.8316s-19.258-10.048-51.255-10.194c-21.422-1.965-25.882-39.65-23.897-45.994 0 0-30.899-16.285-91.723-23.479-22.809-2.6982-44.081-3.5238-61.76-3.5036zm71.276 32.521c-9.2697.0699-19.22.41577-29.674 1.1588-55.751 3.9628-112.04 23.477-112.04 23.477s115.18-28.98 211.77-11.971h.002l-2.512-8.1057s-27.373-4.5594-67.542-4.5594zm68.293 17.263c-9.75-.0412-40.02 1.1848-85.564 15.436-57.124 17.874-89.522 43.21-89.522 43.21s85.141-47.539 181.24-50.24l-2.7492-8.3176s-1.1564-.0779-3.4064-.0875zm62.559-.13932c26.38 10.723 49.34 24.931 67.165 44.514l.002.002 4.2794-.27998s-24.518-29.746-71.446-44.236zm74.662 61.731c.85796.17286 2.4779 3.3567 3.9644 5.6306.13054.18477.26356.38112.38886.53662.002.0138.003.0234.006.037.16796.23967.33693.4887.49774.68826.0812.47558.21641.76558-.89631.53663-.0936-.48886-.25471-.62995-.25471-.62995s-2.686-1.5982-3.5094-2.7317c-.82408-1.1335-.96948-3.1153-.56774-3.8672.0978-.16967.2236-.23004.37137-.20027z" filter="url(#f)" opacity=".5"/><path d="m69.929 127.71c-29.464.0337-48.949 2.4206-48.949 2.4206s107.73-5.1706 194.03 29.769c2.9338 13.122 11.759 34.976 16.513 45.481-13.602 9.4041-28.94 18.249-31.328 49.612-2.3877 31.362 24.576 58.947 58.013 59.798 31.751 1.6913 53.688 1.9323 80.277 15.718 25.38 14.034 46.192 56.794 48.251 95.252 2.2244-28.534-8.4845-89.895-58.453-108.53 69.826 12.219 75.982 63.973 75.984 63.994 0 0 5.2056-59.754-88.677-73.531-11.899-1.7458-26.947-3.0899-42.168-3.1283-75.246.99487-77.989-86.786-21.288-91.218 23.499-1.9389 51.556 10.738 78.986 23.512-.10182 3.4068.0404 6.4339 2.2787 9.2314 2.2375 2.7966 10.832 5.8474 13.579 7.4233 2.7464 1.5764 11.545 7.1715 16.937 14.189 1.1692-2.1872 10.933-8.5432 10.933-8.5432s-2.3391.0507-7.781-1.9832c-5.4426-2.0339-11.9-8.1876-12.053-8.5432-.15246-.35625-.25501-.91601 1.0169-1.1705.96572-.81305-1.2209-3.4575-2.1873-4.4232-.96572-.96636-7.4247-11.95-7.5769-12.204-.15245-.25447-.20376-.50931-.66105-.81465-1.4244-.45805-7.6799.66106-7.6799.66106s-9.6211-4.7252-12.937-14.913c.0482 1.7844-1.6497 3.734 0 7.8335-5.0162-2.122-9.325-5.7416-12.723-14.685-2.0227 5.0868 0 8.3215 0 8.3215s-11.811-3.3016-13.701-14.195c-2.0742 4.8902 0 7.8316 0 7.8316s-19.258-10.048-51.255-10.194c-21.422-1.965-25.882-39.65-23.897-45.994 0 0-30.899-16.285-91.723-23.479-22.809-2.6982-44.081-3.5238-61.76-3.5036zm71.276 32.521c-9.2697.0699-19.22.41577-29.674 1.1588-55.751 3.9628-112.04 23.477-112.04 23.477s115.18-28.98 211.77-11.971h.002l-2.512-8.1057s-27.373-4.5594-67.542-4.5594zm68.293 17.263c-9.75-.0412-40.02 1.1848-85.564 15.436-57.124 17.874-89.522 43.21-89.522 43.21s85.141-47.539 181.24-50.24l-2.7492-8.3176s-1.1564-.0779-3.4064-.0875zm62.559-.13932c26.38 10.723 49.34 24.931 67.165 44.514l.002.002 4.2794-.27998s-24.518-29.746-71.446-44.236zm74.662 61.731c.85796.17286 2.4779 3.3567 3.9644 5.6306.13054.18477.26356.38112.38886.53662.002.0138.003.0234.006.037.16796.23967.33693.4887.49774.68826.0812.47558.21641.76558-.89631.53663-.0936-.48886-.25471-.62995-.25471-.62995s-2.686-1.5982-3.5094-2.7317c-.82408-1.1335-.96948-3.1153-.56774-3.8672.0978-.16967.2236-.23004.37137-.20027z"/></g></svg>
0 <svg viewBox="0 0 519.36 293.65" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m478.2 30.541c-1.708-.45694-3.4119-.54087-5.1767-.54087h-427.93c-6.4231.050078-12.061 4.1054-14.195 10.144-.69747 1.9633-.90029 3.9505-.90029 6.0098v202.42c.23751 8.4346 6.8365 15.012 15.194 15.033 17.519.0232 53.594-.0631 53.594-.0631l-.06358-15.665h-52.62c-.27926-1.6828-.20829-199.78.06358-200.69 1.6119-.225 425.79-.1438 426.72.07426.25653 1.5279.1824 199.65-.0982 200.69h-354.74v15.667s1.3845 0 2.0182.0232h354.25c6.3531-.0631 11.982-4.0483 14.147-10.038.69741-1.9079.89785-3.8747.89785-5.886v-202.8c-.13354-6.6996-4.6932-12.585-11.143-14.365zm-360.14 174.01v-40.513c0-.91374.25653-1.5554 1.0028-2.1347 3.129-2.4743 6.2158-5.019 9.3034-7.5448.30803-.22871.60752-.43189.99168-.71223.33308.4305.61322.78284.87185 1.1699 5.2486 7.5722 10.501 15.136 15.746 22.696 6.4361 9.3128 12.883 18.583 19.306 27.852.35674.53803.68407.94598 1.475.94598 6.7627-.0232 13.519-.0232 20.273-.0232.22361 0 .4537-.0743.80993-.15494-14.956-21.781-29.85-43.412-44.79-65.174 3.0057-3.4891 5.9134-6.8472 8.8178-10.288 2.912-3.3691 5.8136-6.7497 8.7208-10.142 2.9029-3.3839 5.7849-6.7734 8.6954-10.161 2.9045-3.3952 5.8136-6.7826 8.6851-10.168 2.8915-3.3601 5.7622-6.7219 8.8271-10.347h-1.704c-6.1202 0-12.237.03707-18.358-.0232-1.1253 0-1.835.32611-2.5775 1.1995-15.036 17.806-30.108 35.614-45.178 53.399-.19994.22776-.45973.43188-.89398.83223v-44.294c0-3.6662.0631-7.3435 0-11.012h-18.909v116.15c1.5011.2635 17.926.20969 18.939-.0631v-1.4778zm100.96 1.681c.15215-.43977.32612-.81748.45878-1.2267 3.0557-8.6814 6.1147-17.348 9.1787-26.037.50973-1.3965 1.0166-2.8008 1.4772-4.2031.18231-.58535.48083-.89161 1.0981-.81748.19994.0232.43236 0 .6355 0h43.136c3.8993 10.803 7.7716 21.529 11.629 32.255h20.193c-14.567-39.029-29.072-77.903-43.549-116.77h-20.649c-.1327.25469-.2301.44024-.28254.61435-14.377 38.551-28.737 77.119-43.109 115.66-.0631.0631-.0631.18231-.0631.25654v.1234c0 .0501.0631.0743.0743.1322h19.734zm17.457-50.036c3.9768-11.515 8.0101-22.979 11.885-34.526 1.5549-4.6404 2.7269-9.4269 4.0507-14.159.11181-.3586.18231-.7185.33309-1.2583.19994.30524.35627.49141.41055.69246 3.1587 11.794 7.4766 23.237 11.398 34.807 1.6288 4.8139 3.3157 9.5985 4.9739 14.415.12618.43097.25097.86203.40405 1.3949h-33.882c.15123-.50194.27927-.93364.42586-1.3654zm102.24-57.278c0-3.0077.11083-5.988-.0868-8.9671h-18.675c-.31545 1.4523-.23845 115.33.0631 116.29h68.021v-16.18h-32.812c-2.7584 0-5.5385.0232-8.2848 0-2.7069-.0232-5.4025.0993-8.2101-.0631v-91.058zm81.201-8.2513c0-.18045 0-.33029-.0626-.51752 0-.05008-.0626-.06309-.0626-.09881 0-.0232-.0749-.06309-.0749-.06309h-18.739v116.22h18.838c.0626-.19531.11047-.29922.11047-.43097v-115.11z" fill="#367bf0" fill-rule="evenodd" stroke-width="1.2274"/></svg>
firefox/web/img/kali-site-logo.png less more
Binary diff not shown
firefox/web/img/offsec-man-in-the-door.png less more
Binary diff not shown
0 @font-face{font-family:'themify';src:url('fonts/themify.woff')}[class^="ti-"],[class*=" ti-"]{font-family:'themify';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-wand:before{content:"\e600"}.ti-volume:before{content:"\e601"}.ti-user:before{content:"\e602"}.ti-unlock:before{content:"\e603"}.ti-unlink:before{content:"\e604"}.ti-trash:before{content:"\e605"}.ti-thought:before{content:"\e606"}.ti-target:before{content:"\e607"}.ti-tag:before{content:"\e608"}.ti-tablet:before{content:"\e609"}.ti-star:before{content:"\e60a"}.ti-spray:before{content:"\e60b"}.ti-signal:before{content:"\e60c"}.ti-shopping-cart:before{content:"\e60d"}.ti-shopping-cart-full:before{content:"\e60e"}.ti-settings:before{content:"\e60f"}.ti-search:before{content:"\e610"}.ti-zoom-in:before{content:"\e611"}.ti-zoom-out:before{content:"\e612"}.ti-cut:before{content:"\e613"}.ti-ruler:before{content:"\e614"}.ti-ruler-pencil:before{content:"\e615"}.ti-ruler-alt:before{content:"\e616"}.ti-bookmark:before{content:"\e617"}.ti-bookmark-alt:before{content:"\e618"}.ti-reload:before{content:"\e619"}.ti-plus:before{content:"\e61a"}.ti-pin:before{content:"\e61b"}.ti-pencil:before{content:"\e61c"}.ti-pencil-alt:before{content:"\e61d"}.ti-paint-roller:before{content:"\e61e"}.ti-paint-bucket:before{content:"\e61f"}.ti-na:before{content:"\e620"}.ti-mobile:before{content:"\e621"}.ti-minus:before{content:"\e622"}.ti-medall:before{content:"\e623"}.ti-medall-alt:before{content:"\e624"}.ti-marker:before{content:"\e625"}.ti-marker-alt:before{content:"\e626"}.ti-arrow-up:before{content:"\e627"}.ti-arrow-right:before{content:"\e628"}.ti-arrow-left:before{content:"\e629"}.ti-arrow-down:before{content:"\e62a"}.ti-lock:before{content:"\e62b"}.ti-location-arrow:before{content:"\e62c"}.ti-link:before{content:"\e62d"}.ti-layout:before{content:"\e62e"}.ti-layers:before{content:"\e62f"}.ti-layers-alt:before{content:"\e630"}.ti-key:before{content:"\e631"}.ti-import:before{content:"\e632"}.ti-image:before{content:"\e633"}.ti-heart:before{content:"\e634"}.ti-heart-broken:before{content:"\e635"}.ti-hand-stop:before{content:"\e636"}.ti-hand-open:before{content:"\e637"}.ti-hand-drag:before{content:"\e638"}.ti-folder:before{content:"\e639"}.ti-flag:before{content:"\e63a"}.ti-flag-alt:before{content:"\e63b"}.ti-flag-alt-2:before{content:"\e63c"}.ti-eye:before{content:"\e63d"}.ti-export:before{content:"\e63e"}.ti-exchange-vertical:before{content:"\e63f"}.ti-desktop:before{content:"\e640"}.ti-cup:before{content:"\e641"}.ti-crown:before{content:"\e642"}.ti-comments:before{content:"\e643"}.ti-comment:before{content:"\e644"}.ti-comment-alt:before{content:"\e645"}.ti-close:before{content:"\e646"}.ti-clip:before{content:"\e647"}.ti-angle-up:before{content:"\e648"}.ti-angle-right:before{content:"\e649"}.ti-angle-left:before{content:"\e64a"}.ti-angle-down:before{content:"\e64b"}.ti-check:before{content:"\e64c"}.ti-check-box:before{content:"\e64d"}.ti-camera:before{content:"\e64e"}.ti-announcement:before{content:"\e64f"}.ti-brush:before{content:"\e650"}.ti-briefcase:before{content:"\e651"}.ti-bolt:before{content:"\e652"}.ti-bolt-alt:before{content:"\e653"}.ti-blackboard:before{content:"\e654"}.ti-bag:before{content:"\e655"}.ti-move:before{content:"\e656"}.ti-arrows-vertical:before{content:"\e657"}.ti-arrows-horizontal:before{content:"\e658"}.ti-fullscreen:before{content:"\e659"}.ti-arrow-top-right:before{content:"\e65a"}.ti-arrow-top-left:before{content:"\e65b"}.ti-arrow-circle-up:before{content:"\e65c"}.ti-arrow-circle-right:before{content:"\e65d"}.ti-arrow-circle-left:before{content:"\e65e"}.ti-arrow-circle-down:before{content:"\e65f"}.ti-angle-double-up:before{content:"\e660"}.ti-angle-double-right:before{content:"\e661"}.ti-angle-double-left:before{content:"\e662"}.ti-angle-double-down:before{content:"\e663"}.ti-zip:before{content:"\e664"}.ti-world:before{content:"\e665"}.ti-wheelchair:before{content:"\e666"}.ti-view-list:before{content:"\e667"}.ti-view-list-alt:before{content:"\e668"}.ti-view-grid:before{content:"\e669"}.ti-uppercase:before{content:"\e66a"}.ti-upload:before{content:"\e66b"}.ti-underline:before{content:"\e66c"}.ti-truck:before{content:"\e66d"}.ti-timer:before{content:"\e66e"}.ti-ticket:before{content:"\e66f"}.ti-thumb-up:before{content:"\e670"}.ti-thumb-down:before{content:"\e671"}.ti-text:before{content:"\e672"}.ti-stats-up:before{content:"\e673"}.ti-stats-down:before{content:"\e674"}.ti-split-v:before{content:"\e675"}.ti-split-h:before{content:"\e676"}.ti-smallcap:before{content:"\e677"}.ti-shine:before{content:"\e678"}.ti-shift-right:before{content:"\e679"}.ti-shift-left:before{content:"\e67a"}.ti-shield:before{content:"\e67b"}.ti-notepad:before{content:"\e67c"}.ti-server:before{content:"\e67d"}.ti-quote-right:before{content:"\e67e"}.ti-quote-left:before{content:"\e67f"}.ti-pulse:before{content:"\e680"}.ti-printer:before{content:"\e681"}.ti-power-off:before{content:"\e682"}.ti-plug:before{content:"\e683"}.ti-pie-chart:before{content:"\e684"}.ti-paragraph:before{content:"\e685"}.ti-panel:before{content:"\e686"}.ti-package:before{content:"\e687"}.ti-music:before{content:"\e688"}.ti-music-alt:before{content:"\e689"}.ti-mouse:before{content:"\e68a"}.ti-mouse-alt:before{content:"\e68b"}.ti-money:before{content:"\e68c"}.ti-microphone:before{content:"\e68d"}.ti-menu:before{content:"\e68e"}.ti-menu-alt:before{content:"\e68f"}.ti-map:before{content:"\e690"}.ti-map-alt:before{content:"\e691"}.ti-loop:before{content:"\e692"}.ti-location-pin:before{content:"\e693"}.ti-list:before{content:"\e694"}.ti-light-bulb:before{content:"\e695"}.ti-Italic:before{content:"\e696"}.ti-info:before{content:"\e697"}.ti-infinite:before{content:"\e698"}.ti-id-badge:before{content:"\e699"}.ti-hummer:before{content:"\e69a"}.ti-home:before{content:"\e69b"}.ti-help:before{content:"\e69c"}.ti-headphone:before{content:"\e69d"}.ti-harddrives:before{content:"\e69e"}.ti-harddrive:before{content:"\e69f"}.ti-gift:before{content:"\e6a0"}.ti-game:before{content:"\e6a1"}.ti-filter:before{content:"\e6a2"}.ti-files:before{content:"\e6a3"}.ti-file:before{content:"\e6a4"}.ti-eraser:before{content:"\e6a5"}.ti-envelope:before{content:"\e6a6"}.ti-download:before{content:"\e6a7"}.ti-direction:before{content:"\e6a8"}.ti-direction-alt:before{content:"\e6a9"}.ti-dashboard:before{content:"\e6aa"}.ti-control-stop:before{content:"\e6ab"}.ti-control-shuffle:before{content:"\e6ac"}.ti-control-play:before{content:"\e6ad"}.ti-control-pause:before{content:"\e6ae"}.ti-control-forward:before{content:"\e6af"}.ti-control-backward:before{content:"\e6b0"}.ti-cloud:before{content:"\e6b1"}.ti-cloud-up:before{content:"\e6b2"}.ti-cloud-down:before{content:"\e6b3"}.ti-clipboard:before{content:"\e6b4"}.ti-car:before{content:"\e6b5"}.ti-calendar:before{content:"\e6b6"}.ti-book:before{content:"\e6b7"}.ti-bell:before{content:"\e6b8"}.ti-basketball:before{content:"\e6b9"}.ti-bar-chart:before{content:"\e6ba"}.ti-bar-chart-alt:before{content:"\e6bb"}.ti-back-right:before{content:"\e6bc"}.ti-back-left:before{content:"\e6bd"}.ti-arrows-corner:before{content:"\e6be"}.ti-archive:before{content:"\e6bf"}.ti-anchor:before{content:"\e6c0"}.ti-align-right:before{content:"\e6c1"}.ti-align-left:before{content:"\e6c2"}.ti-align-justify:before{content:"\e6c3"}.ti-align-center:before{content:"\e6c4"}.ti-alert:before{content:"\e6c5"}.ti-alarm-clock:before{content:"\e6c6"}.ti-agenda:before{content:"\e6c7"}.ti-write:before{content:"\e6c8"}.ti-window:before{content:"\e6c9"}.ti-widgetized:before{content:"\e6ca"}.ti-widget:before{content:"\e6cb"}.ti-widget-alt:before{content:"\e6cc"}.ti-wallet:before{content:"\e6cd"}.ti-video-clapper:before{content:"\e6ce"}.ti-video-camera:before{content:"\e6cf"}.ti-vector:before{content:"\e6d0"}.ti-themify-logo:before{content:"\e6d1"}.ti-themify-favicon:before{content:"\e6d2"}.ti-themify-favicon-alt:before{content:"\e6d3"}.ti-support:before{content:"\e6d4"}.ti-stamp:before{content:"\e6d5"}.ti-split-v-alt:before{content:"\e6d6"}.ti-slice:before{content:"\e6d7"}.ti-shortcode:before{content:"\e6d8"}.ti-shift-right-alt:before{content:"\e6d9"}.ti-shift-left-alt:before{content:"\e6da"}.ti-ruler-alt-2:before{content:"\e6db"}.ti-receipt:before{content:"\e6dc"}.ti-pin2:before{content:"\e6dd"}.ti-pin-alt:before{content:"\e6de"}.ti-pencil-alt2:before{content:"\e6df"}.ti-palette:before{content:"\e6e0"}.ti-more:before{content:"\e6e1"}.ti-more-alt:before{content:"\e6e2"}.ti-microphone-alt:before{content:"\e6e3"}.ti-magnet:before{content:"\e6e4"}.ti-line-double:before{content:"\e6e5"}.ti-line-dotted:before{content:"\e6e6"}.ti-line-dashed:before{content:"\e6e7"}.ti-layout-width-full:before{content:"\e6e8"}.ti-layout-width-default:before{content:"\e6e9"}.ti-layout-width-default-alt:before{content:"\e6ea"}.ti-layout-tab:before{content:"\e6eb"}.ti-layout-tab-window:before{content:"\e6ec"}.ti-layout-tab-v:before{content:"\e6ed"}.ti-layout-tab-min:before{content:"\e6ee"}.ti-layout-slider:before{content:"\e6ef"}.ti-layout-slider-alt:before{content:"\e6f0"}.ti-layout-sidebar-right:before{content:"\e6f1"}.ti-layout-sidebar-none:before{content:"\e6f2"}.ti-layout-sidebar-left:before{content:"\e6f3"}.ti-layout-placeholder:before{content:"\e6f4"}.ti-layout-menu:before{content:"\e6f5"}.ti-layout-menu-v:before{content:"\e6f6"}.ti-layout-menu-separated:before{content:"\e6f7"}.ti-layout-menu-full:before{content:"\e6f8"}.ti-layout-media-right-alt:before{content:"\e6f9"}.ti-layout-media-right:before{content:"\e6fa"}.ti-layout-media-overlay:before{content:"\e6fb"}.ti-layout-media-overlay-alt:before{content:"\e6fc"}.ti-layout-media-overlay-alt-2:before{content:"\e6fd"}.ti-layout-media-left-alt:before{content:"\e6fe"}.ti-layout-media-left:before{content:"\e6ff"}.ti-layout-media-center-alt:before{content:"\e700"}.ti-layout-media-center:before{content:"\e701"}.ti-layout-list-thumb:before{content:"\e702"}.ti-layout-list-thumb-alt:before{content:"\e703"}.ti-layout-list-post:before{content:"\e704"}.ti-layout-list-large-image:before{content:"\e705"}.ti-layout-line-solid:before{content:"\e706"}.ti-layout-grid4:before{content:"\e707"}.ti-layout-grid3:before{content:"\e708"}.ti-layout-grid2:before{content:"\e709"}.ti-layout-grid2-thumb:before{content:"\e70a"}.ti-layout-cta-right:before{content:"\e70b"}.ti-layout-cta-left:before{content:"\e70c"}.ti-layout-cta-center:before{content:"\e70d"}.ti-layout-cta-btn-right:before{content:"\e70e"}.ti-layout-cta-btn-left:before{content:"\e70f"}.ti-layout-column4:before{content:"\e710"}.ti-layout-column3:before{content:"\e711"}.ti-layout-column2:before{content:"\e712"}.ti-layout-accordion-separated:before{content:"\e713"}.ti-layout-accordion-merged:before{content:"\e714"}.ti-layout-accordion-list:before{content:"\e715"}.ti-ink-pen:before{content:"\e716"}.ti-info-alt:before{content:"\e717"}.ti-help-alt:before{content:"\e718"}.ti-headphone-alt:before{content:"\e719"}.ti-hand-point-up:before{content:"\e71a"}.ti-hand-point-right:before{content:"\e71b"}.ti-hand-point-left:before{content:"\e71c"}.ti-hand-point-down:before{content:"\e71d"}.ti-gallery:before{content:"\e71e"}.ti-face-smile:before{content:"\e71f"}.ti-face-sad:before{content:"\e720"}.ti-credit-card:before{content:"\e721"}.ti-control-skip-forward:before{content:"\e722"}.ti-control-skip-backward:before{content:"\e723"}.ti-control-record:before{content:"\e724"}.ti-control-eject:before{content:"\e725"}.ti-comments-smiley:before{content:"\e726"}.ti-brush-alt:before{content:"\e727"}.ti-youtube:before{content:"\e728"}.ti-vimeo:before{content:"\e729"}.ti-twitter:before{content:"\e72a"}.ti-time:before{content:"\e72b"}.ti-tumblr:before{content:"\e72c"}.ti-skype:before{content:"\e72d"}.ti-share:before{content:"\e72e"}.ti-share-alt:before{content:"\e72f"}.ti-rocket:before{content:"\e730"}.ti-pinterest:before{content:"\e731"}.ti-new-window:before{content:"\e732"}.ti-microsoft:before{content:"\e733"}.ti-list-ol:before{content:"\e734"}.ti-linkedin:before{content:"\e735"}.ti-layout-sidebar-2:before{content:"\e736"}.ti-layout-grid4-alt:before{content:"\e737"}.ti-layout-grid3-alt:before{content:"\e738"}.ti-layout-grid2-alt:before{content:"\e739"}.ti-layout-column4-alt:before{content:"\e73a"}.ti-layout-column3-alt:before{content:"\e73b"}.ti-layout-column2-alt:before{content:"\e73c"}.ti-instagram:before{content:"\e73d"}.ti-google:before{content:"\e73e"}.ti-github:before{content:"\e73f"}.ti-flickr:before{content:"\e740"}.ti-facebook:before{content:"\e741"}.ti-dropbox:before{content:"\e742"}.ti-dribbble:before{content:"\e743"}.ti-apple:before{content:"\e744"}.ti-android:before{content:"\e745"}.ti-save:before{content:"\e746"}.ti-save-alt:before{content:"\e747"}.ti-yahoo:before{content:"\e748"}.ti-wordpress:before{content:"\e749"}.ti-vimeo-alt:before{content:"\e74a"}.ti-twitter-alt:before{content:"\e74b"}.ti-tumblr-alt:before{content:"\e74c"}.ti-trello:before{content:"\e74d"}.ti-stack-overflow:before{content:"\e74e"}.ti-soundcloud:before{content:"\e74f"}.ti-sharethis:before{content:"\e750"}.ti-sharethis-alt:before{content:"\e751"}.ti-reddit:before{content:"\e752"}.ti-pinterest-alt:before{content:"\e753"}.ti-microsoft-alt:before{content:"\e754"}.ti-linux:before{content:"\e755"}.ti-jsfiddle:before{content:"\e756"}.ti-joomla:before{content:"\e757"}.ti-html5:before{content:"\e758"}.ti-flickr-alt:before{content:"\e759"}.ti-email:before{content:"\e75a"}.ti-drupal:before{content:"\e75b"}.ti-dropbox-alt:before{content:"\e75c"}.ti-css3:before{content:"\e75d"}.ti-rss:before{content:"\e75e"}.ti-rss-alt:before{content:"\e75f"}
0 # All robots allowed
1 User-agent: *
2 Allow: /
3
4 # Sitemap files
5 Sitemap: http://www.kali.org/sitemap.xml
0 {const a=window.matchMedia('(prefers-color-scheme:dark)'),b=()=>{$$('.js-site-favicon').forEach(b=>{b.href=b.href.replace(/-dark/,'').replace(/(\.\w+)$/,(a.matches?'-dark':'')+'$1')})};a.addListener(b),b()}{const a=$$('input[name=toggle-darkmode]'),b=()=>{const b=document.body.classList.toggle('dark-theme');a.forEach(a=>a.checked=b),localStorage.setItem('darkmode',b)};localStorage.getItem('darkmode')==='true'&&!document.body.classList.contains('dark-theme')&&b(),a.forEach(a=>a.onchange=b)}$('nav button').onclick=()=>$('nav').classList.toggle('show-menu'),$$('#content img:not(a img):not([src*=inline])').forEach(a=>{a.parentElement.nodeType!=='A'&&(a.outerHTML=`<a href='${a.src}'>${a.outerHTML}</a>`)})
+0
-230
firefox/web/skins/default.css less more
0 /* === color === */
1
2 a, a:hover,a:focus,a:active, footer a.text-link:hover, strike, .post-meta span a:hover, footer a.text-link,
3 ul.meta-post li a:hover, ul.cat li a:hover, ul.recent li h6 a:hover, ul.portfolio-categ li.active a, ul.portfolio-categ li.active a:hover, ul.portfolio-categ li a:hover,ul.related-post li h4 a:hover, span.highlight,article .post-heading h3 a:hover,
4 .navbar .nav > .active > a,.navbar .nav > .active > a:hover,.navbar .nav > li > a:hover,.navbar .nav > li > a:focus,.navbar .nav > .active > a:focus, .validation {
5 color:#467591;
6 color:#61a8d7;
7 color:#4e94c5;
8 }
9
10 .navbar-brand span{
11 color: #4e94c5;
12 }
13
14 header .nav li a:hover,
15 header .nav li a:focus,
16 header .nav li.active a,
17 header .nav li.active a:hover,
18 header .nav li a.dropdown-toggle:hover,
19 header .nav li a.dropdown-toggle:focus,
20 header .nav li.active ul.dropdown-menu li a:hover,
21 header .nav li.active ul.dropdown-menu li.active a{
22 color:#4e94c5;
23 }
24 .navbar-default .navbar-nav > .active > a,
25 .navbar-default .navbar-nav > .active > a:hover,
26 .navbar-default .navbar-nav > .active > a:focus {
27 color:#4e94c5;
28 }
29 .navbar-default .navbar-nav > .open > a,
30 .navbar-default .navbar-nav > .open > a:hover,
31 .navbar-default .navbar-nav > .open > a:focus {
32 color:#4e94c5;
33 }
34 .dropdown-menu > .active > a,
35 .dropdown-menu > .active > a:hover,
36 .dropdown-menu > .active > a:focus {
37 color:#4e94c5;
38 }
39 /* === background color === */
40
41 .custom-carousel-nav.right:hover, .custom-carousel-nav.left:hover,
42 .dropdown-menu li:hover,
43 .dropdown-menu li a:hover,
44 .dropdown-menu li > a:focus,
45 .dropdown-submenu:hover > a,
46 .dropdown-menu .active > a,
47 .dropdown-menu .active > a:hover,
48 .pagination ul > .active > a:hover,
49 .pagination ul > .active > a,
50 .pagination ul > .active > span,
51 .flex-control-nav li a:hover,
52 .flex-control-nav li a.active {
53 background-color: #4e94c5;
54 }
55
56
57 .breadcrumb {
58 background-color: #4e94c5;
59 }
60
61 /* === border color === */
62 .pagination ul > li.active > a,
63 .pagination ul > li.active > span, a.thumbnail:hover, input[type="text"].search-form:focus {
64 border:1px solid #4e94c5;
65 }
66
67 textarea:focus,
68 input[type="text"]:focus,
69 input[type="password"]:focus,
70 input[type="datetime"]:focus,
71 input[type="datetime-local"]:focus,
72 input[type="date"]:focus,
73 input[type="month"]:focus,
74 input[type="time"]:focus,
75 input[type="week"]:focus,
76 input[type="number"]:focus,
77 input[type="email"]:focus,
78 input[type="url"]:focus,
79 input[type="search"]:focus,
80 input[type="tel"]:focus,
81 input[type="color"]:focus,
82 .uneditable-input:focus {
83 border-color: #4e94c5;
84 }
85
86 input:focus {
87 border-color: #4e94c5;
88 }
89
90
91 #sendmessage {
92 color: #4e94c5;
93 }
94
95 .pullquote-left {
96 border-left:5px solid #4e94c5;
97 }
98
99 .pullquote-right {
100 border-right:5px solid #4e94c5;
101 }
102
103 /* cta */
104
105 .cta-text h2 span {
106 color: #4e94c5;
107 }
108
109 ul.clients li:hover {
110 border:4px solid #4e94c5;
111 }
112
113 /* box */
114 .box-bottom {
115 /*background:#4e94c5;*/
116 background:#4e94c5;
117 }
118
119 /* buttons */
120 .btn-dark:hover,.btn-dark:focus,.btn-dark:active {
121 background: #4e94c5;
122 border:1px solid #4e94c5;
123 }
124
125 .btn-theme {
126 border:1px solid #4e94c5;
127 background: #4e94c5;
128 }
129
130 /* modal styled */
131 .modal.styled .modal-header {
132 background-color: #4e94c5;
133 }
134
135
136 /* blog */
137 .post-meta {
138 border-top:4px solid #4e94c5;
139 }
140
141 .post-meta .comments a:hover {
142 color:#4e94c5;
143 }
144
145 .widget ul.tags li a:hover {
146 background: #4e94c5;
147 }
148
149 .recent-post .text h5 a:hover{
150 color:#4e94c5;
151 }
152
153 /* pricing box */
154
155 .pricing-box-alt.special .pricing-heading {
156 background: #4e94c5;
157 }
158
159
160 /* portfolio */
161 .item-thumbs .hover-wrap .overlay-img-thumb {
162 background: #4e94c5;
163 }
164
165
166 /* pagination */
167 #pagination a:hover {
168 background: #4e94c5;
169 }
170
171 /* pricing box */
172 .pricing-box.special .pricing-offer{
173 background: #4e94c5;
174 }
175
176
177 /* fontawesome icons */
178 .icon{
179 color: #4e94c5;
180 }
181 .icon-square:hover,
182 .icon-rounded:hover,
183 .icon-circled:hover {
184 background-color: #4e94c5;
185 }
186 [class^="icon-"].active,
187 [class*=" icon-"].active {
188 background-color: #4e94c5;
189 }
190
191 /* fancybox */
192 .fancybox-close:hover {
193 background-color:#4e94c5;
194 }
195 .fancybox-nav:hover span {
196 background-color:#4e94c5;
197 }
198
199 /* parallax c slider */
200 .da-slide .da-link:hover{
201 background: #4e94c5;
202 border: 4px solid #4e94c5;
203 }
204
205 .da-dots span{
206 background: #4e94c5;
207 }
208
209 /* flexslider */
210 #featured .flexslider .slide-caption {
211 border-left:5px solid #4e94c5;
212 }
213
214 /* Nivo slider */
215 .nivo-directionNav a:hover {
216 background-color: #4e94c5;
217 }
218 .nivo-caption, .caption {
219 border-bottom: #4e94c5 5px solid;
220 }
221
222 /* footer */
223 footer{
224 background:#4e94c5;
225 }
226 #sub-footer{
227 background:#4e94c5;
228 }
229
0 :root{--border-radius:6px;--nav-height:70px}[class^=ti-]::before,[class*=" ti-"]::before{content:' • '}*{box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;text-size-adjust:none}::-moz-selection{background:var(--primary-color);color:var(--white-color)}::selection{background:var(--primary-color);color:#fff}html,body{line-height:1.5;font-family:var(--font-family),sans-serif;color:var(--text-color);background-color:var(--body-color);overflow-x:hidden;margin:0;padding:0;font-size:16px;height:100%;min-width:320px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}input,select,textarea,button{font-family:inherit}p{color:var(--text-color);font-size:15px}h1,h2,h3,h4,h5,h6{color:var(--text-color-dark);font-weight:700;line-height:1.2;margin-top:0}h1{font-size:45px}h2{font-size:32px}h3{font-size:26px}h4{font-size:20px}h5{font-size:18px}h6{font-size:14px}ul{margin:0;padding-left:0;font-size:15px}ul{list-style-type:none;padding-left:0;margin:0}ul li{padding-left:20px;position:relative}ul li::before{position:absolute;content:'';height:8px;width:8px;border-radius:50%;background:var(--primary-color);filter:contrast(.2)brightness(1.7);left:0;top:.8em;transform:translateY(-50%)}ol{padding-left:20px;font-size:15px}blockquote{color:var(--text-color-dark);padding:5px 40px;border-left:2px solid var(--primary-color);margin:40px 0;background:rgba(127,127,127,5%)}blockquote p{font-size:18px}img{vertical-align:middle;border:0}a,a:hover,a:focus{text-decoration:none;color:var(--primary-color)}a:hover,a:focus{color:var(--primary-color)}a,button,select{cursor:pointer}a:focus,button:focus,select:focus{outline:0}hr{margin-top:16px;margin-bottom:16px;border:0;border-top:1px solid rgba(127,127,127,.2)}pre{display:block;margin:10px 0;text-shadow:0 0 .1px rgba(255,255,255,.5);background:0 0!important}code{margin-bottom:0!important;font-size:100%;background:rgba(127,127,127,.15);padding:2px 3px;border-radius:5px;color:#cd5c81;font-family:monospace;vertical-align:middle}pre>code{display:block;overflow-x:auto;padding:1em;background:#1a1a1a;color:#fff;line-height:1.2}pre code::selection,pre code span::selection,pre code::-moz-selection,pre code span::-moz-selection{background:#4c4f5c}pre code::-webkit-scrollbar{height:5px}pre code::-webkit-scrollbar-track{background:#000}pre code::-webkit-scrollbar-thumb{background:#888}table{text-align:left;width:100%;max-width:100%;border:1px solid rgba(127,127,127,.2);border-collapse:collapse;table-layout:fixed;font-size:14px}thead{color:var(--primary-color);background:rgba(127,127,127,.075);font-weight:700}tbody{background:0 0}table td,table th{padding:10px 6px;vertical-align:middle;border:1px solid rgba(127,127,127,.2)}.shadow,.card{box-shadow:0 5px 15px rgba(0,0,0,7%)!important;transition-duration:.3s;transition-property:box-shadow,transform}.shadow:hover,.shadow:focus,.card:hover,.card:focus{box-shadow:0 14px 25px rgba(0,0,0,.1)!important}.card{background-color:var(--white-color);border-radius:var(--border-radius);display:flex;flex-direction:column}a.card:hover{transform:translateY(-5px)}.container{max-width:1600px;width:90%;margin-left:auto;margin-right:auto}@media(max-width:600px){.container{width:calc(100% - 30px)}}.chevron-link::after{content:'›';display:inline-block;margin-left:.2em;transition:transform .15s linear;will-change:transform}.chevron-link:hover::after{transform:translateX(.1em)}.btn{display:inline-block;font-size:14px;text-transform:uppercase;padding:16px 44px;border-radius:var(--border-radius);font-weight:700;border:0;background:var(--primary-color);color:#fff!important;box-shadow:inset 0 -6px rgba(0,0,0,.2);text-align:center;transition:box-shadow .1s ease}.btn:hover{box-shadow:inset 0 2px 10px rgba(0,0,0,.3)}.switch{height:2.5em;width:5em;padding:0;position:relative;display:inline-block;cursor:pointer;font-size:10px}.switch input{display:none}.switch input+div{height:100%;width:100%;border-radius:999px;background:var(--primary-color);padding:.3em}.switch input+div::before{content:'';display:block;height:1.9em;width:1.9em;border-radius:100%;background:#fff;transform:translateX(0);transition:transform .2s}.switch input:checked+div::before{transform:translateX(2.5em)}.darkmode-switch{font-size:10px;letter-spacing:.2em;text-align:center;padding-top:20px;padding-bottom:4px}.darkmode-switch .switch{vertical-align:bottom;margin:-4px 10px}.notices{margin:32px 0;position:relative}.notices p{padding:10px;border-radius:var(--border-radius)}.notices p::before{position:absolute;top:3px;font-family:themify;font-weight:900;content:"\e697";left:10px;height:18px;width:18px;text-align:center;border-radius:99px;border:2px solid;font-size:12px}.notices p::after{position:absolute;top:2px;left:2.5em}.notices.info p{border-top:30px solid rgba(255,210,89,.15);background:rgba(255,210,89,.15)}.notices.info p::after{content:'Info'}nav{height:var(--nav-height);position:relative;display:flex;justify-content:space-between;z-index:1000}#logo{width:100px;height:100%;display:block;background-size:100%;background-position:50%;background-repeat:no-repeat;position:relative;z-index:2;transition:none}header nav.show-menu #logo{transition:0s .17s filter,.2s .17s opacity;filter:none;opacity:1}#navigation{display:flex;align-items:center}#navigation li{padding:0;transition:transform .1s linear}#navigation li::before{display:none}#navigation a,#navigation li span{padding:10px 13px;display:inline-block;height:43px;border:1px solid transparent;color:var(--text-color-dark);text-transform:uppercase;cursor:pointer}#navigation a:hover,#navigation a:focus{color:var(--primary-color)}#navigation i{display:inline-block;font-size:.8em;margin-left:.2em}@media(min-width:1100px){#navigation .dropdown-menu:hover{transform:translateY(-2px)}#navigation .dropdown-menu>span{border-radius:var(--border-radius)var(--border-radius)0 0;position:relative;z-index:2;border-bottom:0;transition-property:box-shadow,border,background-color;transition-timing-function:ease;transition-duration:0s}#navigation .dropdown-menu:hover>span{transition-duration:.3s;box-shadow:-4px -4px 15px -4px rgba(127,127,127,.2);border-color:rgba(0,0,0,.1);background:var(--white-color);color:var(--primary-color);text-shadow:none}body.dark-theme #navigation .dropdown-menu:hover>span{background:var(--body-color)}#navigation .dropdown-menu div{display:flex;visibility:hidden;opacity:0;padding:10px 0;position:absolute;top:43px;flex-direction:column;white-space:pre;border-radius:0 var(--border-radius)var(--border-radius);border:1px solid rgba(0,0,0,.1);border-top:0;box-shadow:0 3px 15px rgba(127,127,127,.3);z-index:1;transition:visibility 0s,opacity .3s ease;background:var(--white-color);min-width:170%}body.dark-theme #navigation .dropdown-menu div{background:var(--body-color)}#navigation .dropdown-menu:last-child div{right:0;border-radius:var(--border-radius)0 var(--border-radius)var(--border-radius);text-align:right}#navigation .dropdown-menu:hover>span+div{visibility:visible;opacity:1}}nav button{align-self:center;height:27px;width:27px;border:none;background:0 0;color:inherit;padding:0;margin-right:20px;display:none;position:relative;z-index:2;flex-direction:column;justify-content:space-around;align-items:stretch;filter:drop-shadow(var(--nav-text-shadow))}nav button div{height:2px;background:currentColor;border-radius:999px;transition:transform .6s}nav button div:first-child{transform-origin:top left}nav.show-menu button div:first-child{transform:rotate(45deg)}nav.show-menu button div:nth-child(2){transform:translateX(-200%)scaleX(0)}nav button div:last-child{transform-origin:bottom left}nav.show-menu button div:last-child{transform:rotate(-45deg)}@media(max-width:1100px){nav button{display:flex}#navigation{position:fixed;top:0;bottom:0;width:100vw;left:100%;background:var(--white-color);flex-direction:column;line-height:3em;transition:left .2s ease;overflow:auto}#navigation::before,#navigation::after{content:'';display:block;margin:auto}nav.show-menu #navigation{left:0}#navigation li{text-align:center;width:100%}#navigation .dropdown-menu div{display:flex;flex-direction:column;overflow:hidden;background:var(--body-color);max-height:0;transition:max-height .6s;box-shadow:inset 0 12px 5px -10px rgba(0,0,0,.075),inset 0 -12px 5px -10px rgba(0,0,0,5%)}#navigation .dropdown-menu:hover div{max-height:300px}#navigation .dropdown-menu div a{padding:0}}header{display:flex;flex-direction:column;box-shadow:0 0 15px rgba(0,0,0,.1);background-color:var(--white-color);background-size:cover;background-position:50%;background-repeat:no-repeat;position:relative}header::before{position:absolute;content:'';height:100%;width:100%;top:0;left:0;opacity:.8}header.bg-cover{--nav-text-shadow:0 0 20px rgba(0, 0, 0, .5)}header.bg-cover::before{background:var(--primary-color)}@media(min-width:1100px){header.bg-cover #navigation li>a,header.bg-cover #navigation li>span{color:#fff;text-shadow:0 0 1px #fff,var(--nav-text-shadow)}}header.bg-cover #logo{filter:brightness(0)invert(1)drop-shadow(var(--nav-text-shadow))}header.bg-cover nav:not(.show-menu) button{color:#fff}main{--margins:30px;--sidebar-width:250px;display:flex;align-items:start;min-height:calc(100vh - 674px)}main>*{margin-top:var(--margins)}aside.card,article.card{display:block}aside{position:sticky;top:var(--margins);width:var(--sidebar-width);padding:20px 10px}aside>a{position:absolute}aside>a::before{position:absolute;font-family:themify;content:"\e64a";font-size:25px;color:inherit;z-index:1;left:-3px;top:-3px;width:35px;height:35px;line-height:35px;border-radius:100%;background:var(--light-color);text-align:center}aside>ul>li::before{display:none}aside>ul>li>a{font-size:20px;margin-left:20px}aside li ul:not(:empty){max-height:calc(100vh - 240px);overflow:auto;scrollbar-width:thin;scrollbar-color:#CCC transparent}aside li ul::-webkit-scrollbar{width:3px}aside li ul::-webkit-scrollbar-track{background:0 0}aside li ul::-webkit-scrollbar-thumb{background:#ccc}aside li li{margin:1em 0;font-size:13px}aside li li a{color:var(--text-color-dark);display:block;margin:0}aside li li.active a{color:var(--primary-color)}aside li li.active::before{opacity:1}main>section{width:calc(100% - var(--sidebar-width) - var(--margins));margin-left:var(--margins)}main>section:only-child{margin-left:auto;margin-right:auto}main>section>h1 i{margin-right:8px}article{background:#fff;padding:3em}@media(max-width:1000px){main{flex-wrap:wrap}aside,main>section{width:100%;margin-left:0}aside{position:relative;top:0;order:2}article{padding:1.5em}}article>h2{padding-bottom:12px;border-bottom:1px solid rgba(127,127,127,.2)}#page-list{background:var(--light-color);padding:1.5em;border-radius:var(--border-radius)}#page-list>li>a{display:none}#page-list li li{font-size:16px;margin:1.5em 0}#page-list li li a{color:var(--text-color-dark)}#page-list>li::before{display:none}#page-list>li li::before{content:'\e628';font-family:themify;left:-10px;background:0 0;height:auto;width:auto;color:var(--primary-color);filter:none}#content{word-wrap:break-word}#content>*{margin-bottom:1.3em}#content h1,#content h2,#content h3,#content h4,#content h5,#content h6{margin-top:1.3em}#content img,#content video{max-width:100%;height:auto;margin:0 auto 15px;display:block;text-align:center;max-height:700px}#content table img{margin:0}#post-meta{color:var(--text-color);font-style:italic;font-size:14px}#pagination{display:flex;flex-wrap:wrap;justify-content:space-between}#pagination *{line-height:40px}#pagination a{display:flex}#pagination>div{flex-basis:100%}#pagination i{font-size:15px;margin-right:8px}#pagination a:last-child:not(:only-child) i{margin-right:0;margin-left:8px}#pagination span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:250px;display:block}@media(max-width:680px){#pagination span{display:none}}#posts article,section#content{width:90%;max-width:800px;margin:auto}article p:empty,section#content p:empty,article p a:empty,section#content p a:empty{display:none!important}section#content{margin-top:60px}section#content table,section#content table td,section#content table th{border:0}section#content table thead{background:0 0}section#content table thead{color:var(--text-color-dark)}.page-button{background:0 0;border:2px solid rgba(127,127,127,.15);box-shadow:inset 0 0 rgba(127,127,127,.15);color:var(--text-color);margin-top:20px;font-weight:700;transition-property:box-shadow;transition-duration:.4s;display:inline-block;line-height:2.5;text-align:center;font-size:.9em}.page-button:hover{box-shadow:inset 0 60px rgba(127,127,127,.15);color:var(--text-color)}#posts .darkmode-switch{padding:30px 0}#posts>h1{text-align:center;margin:auto;margin-top:60px;width:90%}#posts main{max-width:1800px;flex-wrap:wrap;justify-content:center;margin:auto}#posts article{line-height:2;background:0 0!important;padding:0}#posts main article{margin:40px}@media(max-width:900px){#posts main article{margin:40px 0}}#posts article h1{font-weight:400;line-height:1.7;margin-bottom:10px;font-size:32px}@media(max-width:500px){#posts article h1{font-size:26px}}#posts article>img,#posts article>a>img{width:100%;border-radius:6px;box-shadow:0 4px 20px rgba(0,0,0,.2);margin-bottom:40px;min-height:280px}@media(max-width:900px){#posts article>img,#posts article>a>img{min-height:100px}}#posts article time{color:var(--primary-color)}#posts article time i{margin-right:.4em}#posts article li::before{top:1.05em}#posts article a.page-button{padding:0 30px}#paginator{margin:auto;font-size:1.2em;text-align:center;display:flex;max-width:90%;justify-content:center;flex-wrap:wrap}#paginator li{padding:0;margin:2px}#paginator li::before{display:none}#paginator li a{width:2.5em;box-sizing:content-box}#paginator li.current-page a{border-color:var(--primary-color);background:var(--primary-color);color:#fff}@media(max-width:900px){#paginator li a{width:2em;line-height:2em}}footer{background:#000;margin-top:160px;font-size:14px;padding:20px 0}body.dark-theme footer{box-shadow:0 30px 80px var(--primary-color)}footer,footer a,footer h4{color:#fff}footer .container{max-width:1200px;display:flex;justify-content:space-between;flex-wrap:wrap;line-height:2.2em;padding:20px 0}footer .container div{flex:1;max-width:340px}footer .container div:nth-child(2){width:250px;box-sizing:content-box;flex:revert;padding-left:180px}#footer-logo{max-width:80%;display:block}footer h4{margin:1.2em 0}footer a{display:block}footer a svg{height:20px;margin-right:10px;vertical-align:sub}@media(max-width:900px){footer .container{justify-content:right}footer .container div,footer .container div:nth-child(2){flex:unset;width:170px;margin:0 auto;padding-left:50px;box-sizing:content-box}footer .container div:last-child{width:100%;margin:60px auto}}.hljs-title,.hljs-name{color:#ffc730}.hljs-comment,.hljs-meta,.hljs-meta .hljs-keyword{color:#49aee6}.hljs-number,.hljs-symbol,.hljs-literal,.hljs-deletion,.hljs-link{color:#bf2e5d}.hljs-string,.hljs-doctag,.hljs-addition,.hljs-regexp,.hljs-selector-attr,.hljs-selector-pseudo{color:#5ebdab}.hljs-attribute,.hljs-code,.hljs-selector-id{color:#d41919}.hljs-keyword,.hljs-selector-tag,.hljs-bullet,.hljs-tag{color:#367bf0}.hljs-subst,.hljs-variable,.hljs-template-tag,.hljs-template-variable{color:#8c42ab}.hljs-type,.hljs-built_in,.hljs-builtin-name,.hljs-quote,.hljs-section,.hljs-selector-class{color:#fea44c}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-prompt{color:#47d4b9;font-style:italic}.language-console{color:#ddd}.language-console .language-bash{color:#fff}