jekyll-sleek 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -4
  3. data/_includes/card.html +31 -0
  4. data/_includes/critical.css +1 -0
  5. data/_includes/{ga.html → gtm.html} +2 -2
  6. data/_includes/head.html +36 -2
  7. data/_includes/header.html +12 -14
  8. data/_includes/logo.svg +5 -0
  9. data/_includes/pagination.html +3 -0
  10. data/_layouts/compress.html +10 -0
  11. data/_layouts/default.html +17 -16
  12. data/_layouts/page.html +11 -1
  13. data/_layouts/post.html +41 -8
  14. data/_sass/base/_helpers.scss +11 -0
  15. data/_sass/components/_card.scss +41 -2
  16. data/_sass/components/_pagination.scss +5 -0
  17. data/_sass/components/_zoom.scss +37 -0
  18. data/_sass/layout/_footer.scss +5 -3
  19. data/_sass/layout/_nav.scss +59 -14
  20. data/_sass/main.scss +2 -1
  21. data/_sass/pages/_page.scss +3 -2
  22. data/_sass/vendor/{_susy.scss → _breakpoint.scss} +0 -1
  23. data/assets/css/main.css +1 -1
  24. data/assets/img/favicon.jpg +0 -0
  25. data/assets/img/icons/android-chrome-192x192.png +0 -0
  26. data/assets/img/icons/android-chrome-256x256.png +0 -0
  27. data/assets/img/icons/apple-touch-icon.png +0 -0
  28. data/assets/img/icons/browserconfig.xml +9 -0
  29. data/assets/img/icons/favicon-16x16.png +0 -0
  30. data/assets/img/icons/favicon-32x32.png +0 -0
  31. data/assets/img/icons/favicon.ico +0 -0
  32. data/assets/img/icons/icon-twitter.svg +1 -1
  33. data/assets/img/icons/manifest.json +18 -0
  34. data/assets/img/icons/mstile-150x150.png +0 -0
  35. data/assets/img/icons/safari-pinned-tab.svg +19 -0
  36. data/assets/img/posts/emile-perron-190221.jpg +0 -0
  37. data/assets/img/posts/emile-perron-190221_lg.jpg +0 -0
  38. data/assets/img/posts/emile-perron-190221_md.jpg +0 -0
  39. data/assets/img/posts/emile-perron-190221_placehold.jpg +0 -0
  40. data/assets/img/posts/emile-perron-190221_sm.jpg +0 -0
  41. data/assets/img/posts/emile-perron-190221_thumb.jpg +0 -0
  42. data/assets/img/posts/emile-perron-190221_thumb@2x.jpg +0 -0
  43. data/assets/img/posts/emile-perron-190221_xs.jpg +0 -0
  44. data/assets/img/posts/ruben-santander-69158.jpg +0 -0
  45. data/assets/img/posts/ruben-santander-69158_lg.jpg +0 -0
  46. data/assets/img/posts/ruben-santander-69158_md.jpg +0 -0
  47. data/assets/img/posts/ruben-santander-69158_placehold.jpg +0 -0
  48. data/assets/img/posts/ruben-santander-69158_sm.jpg +0 -0
  49. data/assets/img/posts/ruben-santander-69158_thumb.jpg +0 -0
  50. data/assets/img/posts/ruben-santander-69158_thumb@2x.jpg +0 -0
  51. data/assets/img/posts/ruben-santander-69158_xs.jpg +0 -0
  52. data/assets/img/posts/shane-rounce-205187.jpg +0 -0
  53. data/assets/img/posts/shane-rounce-205187_lg.jpg +0 -0
  54. data/assets/img/posts/shane-rounce-205187_md.jpg +0 -0
  55. data/assets/img/posts/shane-rounce-205187_placehold.jpg +0 -0
  56. data/assets/img/posts/shane-rounce-205187_sm.jpg +0 -0
  57. data/assets/img/posts/shane-rounce-205187_thumb.jpg +0 -0
  58. data/assets/img/posts/shane-rounce-205187_thumb@2x.jpg +0 -0
  59. data/assets/img/posts/shane-rounce-205187_xs.jpg +0 -0
  60. data/assets/img/posts/sleek.jpg +0 -0
  61. data/assets/img/posts/sleek_lg.jpg +0 -0
  62. data/assets/img/posts/sleek_md.jpg +0 -0
  63. data/assets/img/posts/sleek_placehold.jpg +0 -0
  64. data/assets/img/posts/sleek_sm.jpg +0 -0
  65. data/assets/img/posts/sleek_thumb.jpg +0 -0
  66. data/assets/img/posts/sleek_thumb@2x.jpg +0 -0
  67. data/assets/img/posts/sleek_xs.jpg +0 -0
  68. data/assets/js/bundle.js +1 -1
  69. metadata +53 -6
  70. data/assets/img/bigg.jpg +0 -0
  71. data/assets/img/shane-rounce-205187.jpg +0 -0
@@ -0,0 +1,37 @@
1
+ .zoom {
2
+
3
+ &:hover {
4
+ .post-card__thumb::after {
5
+ opacity: 0.2;
6
+ }
7
+
8
+ img {
9
+ transform: scale(1.1);
10
+
11
+ }
12
+ }
13
+
14
+ &::after {
15
+ position: absolute;
16
+ display: block;
17
+ content: "";
18
+ top: 0;
19
+ left: 0;
20
+ width: 100%;
21
+ height: 100%;
22
+ background: rgba(255, 255, 255, 1);
23
+ opacity: 0;
24
+ transition: all 0.4s cubic-bezier(.15,.75,.5,1) 0s;
25
+ // transition: opacity 1s cubic-bezier(0, 1, 0.5, 1);
26
+ z-index: 2;
27
+
28
+
29
+
30
+ // transition: all 0.4s cubic-bezier(.15, .75, .5, 1) 0s;
31
+ }
32
+
33
+ img {
34
+ position: relative;
35
+ transition: transform 1s cubic-bezier(0, 1, 0.5, 1);
36
+ }
37
+ }
@@ -4,8 +4,10 @@ footer {
4
4
  text-align: center;
5
5
  font-size: 0.875rem;
6
6
  color: rgba(33,33,33,0.6);
7
+
7
8
  a {
8
9
  color: rgba(33,33,33,0.6);
10
+
9
11
  &:hover {
10
12
  color: $primary;
11
13
  }
@@ -25,7 +27,7 @@ footer {
25
27
  }
26
28
 
27
29
  .social__icon {
28
- fill: currentColor;
29
- height: 1.5rem;
30
- width: 1.5rem;
30
+ fill: currentColor;
31
+ height: 1.5rem;
32
+ width: 1.5rem;
31
33
  }
@@ -6,7 +6,6 @@
6
6
  width: 100%;
7
7
  top: 0;
8
8
  left: 0;
9
- // box-shadow: 0 0 14px 0 rgba(0,0,0,.2);
10
9
  will-change: transform;
11
10
  transition: transform .3s, background-color 0.5s ease;
12
11
  transform: translateY(0%);
@@ -20,6 +19,7 @@
20
19
 
21
20
  nav > .menu-left a {
22
21
  color: rgba(255, 255, 255, 0.75);
22
+
23
23
  &:hover {
24
24
  color: $bg-color;
25
25
 
@@ -34,6 +34,8 @@
34
34
  &.fix-nav {
35
35
  position: fixed;
36
36
  background-color: rgba(255,255,255,1);
37
+ box-shadow: 0 0 3px 0 rgba(0,0,0,0.22);
38
+ z-index: 5;
37
39
  transition: transform .3s, background-color 0.5s ease;
38
40
  nav > .logo {
39
41
  color: $heading-color;
@@ -42,8 +44,10 @@
42
44
 
43
45
  nav > .menu-left a {
44
46
  color: $text-color;
47
+
45
48
  &:hover {
46
49
  color: $heading-color;
50
+
47
51
  &:after {
48
52
  background: $primary;
49
53
  }
@@ -58,19 +62,25 @@
58
62
  }
59
63
 
60
64
  .header__logo {
61
- width: 60px;
62
- height: 58px;
63
- background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDZweCIgaGVpZ2h0PSIxNXB4IiB2aWV3Qm94PSIwIDAgNDYgMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDQ3LjEgKDQ1NDIyKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5TbGVlazwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJXZWJfbGciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04MzUuMDAwMDAwLCAtMzIyLjAwMDAwMCkiIGZpbGw9IiMxQTFBMUEiPgogICAgICAgICAgICA8cGF0aCBkPSJNODM2LjE4OCwzMjYuNzEyIEM4MzYuMTg4LDMyNi4xNDc5OTcgODM2LjI5ODk5OSwzMjUuNjUzMDAyIDgzNi41MjEsMzI1LjIyNyBDODM2Ljc0MzAwMSwzMjQuODAwOTk4IDgzNy4wMzY5OTgsMzI0LjQ0NzAwMSA4MzcuNDAzLDMyNC4xNjUgQzgzNy43NjkwMDIsMzIzLjg4Mjk5OSA4MzguMTk0OTk4LDMyMy42NzAwMDEgODM4LjY4MSwzMjMuNTI2IEM4MzkuMTY3MDAyLDMyMy4zODE5OTkgODM5LjY2Nzk5NywzMjMuMzEgODQwLjE4NCwzMjMuMzEgQzg0MC45ODgwMDQsMzIzLjMxIDg0MS43NDk5OTYsMzIzLjQ2Mjk5OCA4NDIuNDcsMzIzLjc2OSBDODQzLjE5MDAwNCwzMjQuMDc1MDAyIDg0My43ODk5OTgsMzI0LjUyMTk5NyA4NDQuMjcsMzI1LjExIEw4NDIuOTAyLDMyNi40MDYgQzg0Mi42MjU5OTksMzI1Ljk4NTk5OCA4NDIuMjM5MDAyLDMyNS42NTYwMDEgODQxLjc0MSwzMjUuNDE2IEM4NDEuMjQyOTk4LDMyNS4xNzU5OTkgODQwLjcyNDAwMywzMjUuMDU2IDg0MC4xODQsMzI1LjA1NiBDODM5LjUzNTk5NywzMjUuMDU2IDgzOS4wNTAwMDIsMzI1LjE5MDk5OSA4MzguNzI2LDMyNS40NjEgQzgzOC40MDE5OTgsMzI1LjczMTAwMSA4MzguMjQsMzI2LjEwNTk5OCA4MzguMjQsMzI2LjU4NiBDODM4LjI0LDMyNi44NzQwMDEgODM4LjMwMjk5OSwzMjcuMTI1OTk5IDgzOC40MjksMzI3LjM0MiBDODM4LjU1NTAwMSwzMjcuNTU4MDAxIDgzOC43MjU5OTksMzI3Ljc0Njk5OSA4MzguOTQyLDMyNy45MDkgQzgzOS4xNTgwMDEsMzI4LjA3MTAwMSA4MzkuNDA5OTk5LDMyOC4yMTQ5OTkgODM5LjY5OCwzMjguMzQxIEM4MzkuOTg2MDAxLDMyOC40NjcwMDEgODQwLjI4NTk5OCwzMjguNTk1OTk5IDg0MC41OTgsMzI4LjcyOCBDODQxLjAwNjAwMiwzMjguODk2MDAxIDg0MS40MTk5OTgsMzI5LjA3NTk5OSA4NDEuODQsMzI5LjI2OCBDODQyLjI2MDAwMiwzMjkuNDYwMDAxIDg0Mi42Mzc5OTgsMzI5LjY5OTk5OSA4NDIuOTc0LDMyOS45ODggQzg0My4zMTAwMDIsMzMwLjI3NjAwMSA4NDMuNTg1OTk5LDMzMC42Mjk5OTggODQzLjgwMiwzMzEuMDUgQzg0NC4wMTgwMDEsMzMxLjQ3MDAwMiA4NDQuMTI2LDMzMS45OTE5OTcgODQ0LjEyNiwzMzIuNjE2IEM4NDQuMTI2LDMzMy4yNzYwMDMgODQ0LjAxMjAwMSwzMzMuODM2OTk4IDg0My43ODQsMzM0LjI5OSBDODQzLjU1NTk5OSwzMzQuNzYxMDAyIDg0My4yNDcwMDIsMzM1LjEzODk5OSA4NDIuODU3LDMzNS40MzMgQzg0Mi40NjY5OTgsMzM1LjcyNzAwMSA4NDIuMDE0MDAzLDMzNS45Mzk5OTkgODQxLjQ5OCwzMzYuMDcyIEM4NDAuOTgxOTk3LDMzNi4yMDQwMDEgODQwLjQ0MjAwMywzMzYuMjcgODM5Ljg3OCwzMzYuMjcgQzgzOC45MTc5OTUsMzM2LjI3IDgzOC4wNTcwMDQsMzM2LjA4NDAwMiA4MzcuMjk1LDMzNS43MTIgQzgzNi41MzI5OTYsMzM1LjMzOTk5OCA4MzUuODcwMDAzLDMzNC43NTgwMDQgODM1LjMwNiwzMzMuOTY2IEw4MzYuNzI4LDMzMi43NzggQzgzNi44MzYwMDEsMzMyLjk1ODAwMSA4MzYuOTkxOTk5LDMzMy4xNTI5OTkgODM3LjE5NiwzMzMuMzYzIEM4MzcuNDAwMDAxLDMzMy41NzMwMDEgODM3LjYzNjk5OSwzMzMuNzY3OTk5IDgzNy45MDcsMzMzLjk0OCBDODM4LjE3NzAwMSwzMzQuMTI4MDAxIDgzOC40NzY5OTgsMzM0LjI3Nzk5OSA4MzguODA3LDMzNC4zOTggQzgzOS4xMzcwMDIsMzM0LjUxODAwMSA4MzkuNDkzOTk4LDMzNC41NzggODM5Ljg3OCwzMzQuNTc4IEM4NDAuMjk4MDAyLDMzNC41NzggODQwLjY0ODk5OSwzMzQuNTMgODQwLjkzMSwzMzQuNDM0IEM4NDEuMjEzMDAxLDMzNC4zMzggODQxLjQzNzk5OSwzMzQuMjA2MDAxIDg0MS42MDYsMzM0LjAzOCBDODQxLjc3NDAwMSwzMzMuODY5OTk5IDg0MS44OTQsMzMzLjY3NTAwMSA4NDEuOTY2LDMzMy40NTMgQzg0Mi4wMzgsMzMzLjIzMDk5OSA4NDIuMDc0LDMzMi45OTQwMDEgODQyLjA3NCwzMzIuNzQyIEM4NDIuMDc0LDMzMi40Mjk5OTggODQyLjAwNTAwMSwzMzIuMTU3MDAxIDg0MS44NjcsMzMxLjkyMyBDODQxLjcyODk5OSwzMzEuNjg4OTk5IDg0MS41NDYwMDEsMzMxLjQ4MjAwMSA4NDEuMzE4LDMzMS4zMDIgQzg0MS4wODk5OTksMzMxLjEyMTk5OSA4NDAuODI2MDAxLDMzMC45NjAwMDEgODQwLjUyNiwzMzAuODE2IEM4NDAuMjI1OTk4LDMzMC42NzE5OTkgODM5LjkxNDAwMiwzMzAuNTI4MDAxIDgzOS41OSwzMzAuMzg0IEM4MzkuMTkzOTk4LDMzMC4yMTU5OTkgODM4Ljc5MjAwMiwzMzAuMDM2MDAxIDgzOC4zODQsMzI5Ljg0NCBDODM3Ljk3NTk5OCwzMjkuNjUxOTk5IDgzNy42MTAwMDIsMzI5LjQxODAwMSA4MzcuMjg2LDMyOS4xNDIgQzgzNi45NjE5OTgsMzI4Ljg2NTk5OSA4MzYuNjk4MDAxLDMyOC41MzMwMDIgODM2LjQ5NCwzMjguMTQzIEM4MzYuMjg5OTk5LDMyNy43NTI5OTggODM2LjE4OCwzMjcuMjc2MDAzIDgzNi4xODgsMzI2LjcxMiBaIE04NDguNjk4LDMyMi44MjQgTDg0OC42OTgsMzM2IEw4NDYuNjI4LDMzNiBMODQ2LjYyOCwzMjIuODI0IEw4NDguNjk4LDMyMi44MjQgWiBNODUzLjMwNiwzMzIuMzY0IEM4NTMuMzksMzMzLjE5MjAwNCA4NTMuNjUwOTk4LDMzMy43OTQ5OTggODU0LjA4OSwzMzQuMTczIEM4NTQuNTI3MDAyLDMzNC41NTEwMDIgODU1LjEyOTk5NiwzMzQuNzQgODU1Ljg5OCwzMzQuNzQgQzg1Ni4zOTAwMDIsMzM0Ljc0IDg1Ni44NzI5OTgsMzM0LjY2MjAwMSA4NTcuMzQ3LDMzNC41MDYgQzg1Ny44MjEwMDIsMzM0LjM0OTk5OSA4NTguMjMxOTk4LDMzNC4xMzQwMDEgODU4LjU4LDMzMy44NTggTDg1OS40MDgsMzM1LjEzNiBDODU4Ljg2Nzk5NywzMzUuNDk2MDAyIDg1OC4yODAwMDMsMzM1Ljc2ODk5OSA4NTcuNjQ0LDMzNS45NTUgQzg1Ny4wMDc5OTcsMzM2LjE0MTAwMSA4NTYuMzcyMDAzLDMzNi4yMzQgODU1LjczNiwzMzYuMjM0IEM4NTUuMTIzOTk3LDMzNi4yMzQgODU0LjU0NTAwMywzMzYuMTQxMDAxIDg1My45OTksMzM1Ljk1NSBDODUzLjQ1Mjk5NywzMzUuNzY4OTk5IDg1Mi45NzMwMDIsMzM1LjQ5MDAwMiA4NTIuNTU5LDMzNS4xMTggQzg1Mi4xNDQ5OTgsMzM0Ljc0NTk5OCA4NTEuODE1MDAxLDMzNC4yNzgwMDMgODUxLjU2OSwzMzMuNzE0IEM4NTEuMzIyOTk5LDMzMy4xNDk5OTcgODUxLjIsMzMyLjQ4NDAwNCA4NTEuMiwzMzEuNzE2IEM4NTEuMiwzMzEuMDc5OTk3IDg1MS4zMTA5OTksMzMwLjQ5MjAwMyA4NTEuNTMzLDMyOS45NTIgQzg1MS43NTUwMDEsMzI5LjQxMTk5NyA4NTIuMDYzOTk4LDMyOC45NDcwMDIgODUyLjQ2LDMyOC41NTcgQzg1Mi44NTYwMDIsMzI4LjE2Njk5OCA4NTMuMzIwOTk3LDMyNy44NjEwMDEgODUzLjg1NSwzMjcuNjM5IEM4NTQuMzg5MDAzLDMyNy40MTY5OTkgODU0Ljk2MTk5NywzMjcuMzA2IDg1NS41NzQsMzI3LjMwNiBDODU2LjE2MjAwMywzMjcuMzA2IDg1Ni43MDE5OTgsMzI3LjM5ODk5OSA4NTcuMTk0LDMyNy41ODUgQzg1Ny42ODYwMDIsMzI3Ljc3MTAwMSA4NTguMTExOTk4LDMyOC4wNDM5OTggODU4LjQ3MiwzMjguNDA0IEM4NTguODMyMDAyLDMyOC43NjQwMDIgODU5LjExMzk5OSwzMjkuMjEwOTk3IDg1OS4zMTgsMzI5Ljc0NSBDODU5LjUyMjAwMSwzMzAuMjc5MDAzIDg1OS42MjQsMzMwLjg5Mzk5NyA4NTkuNjI0LDMzMS41OSBDODU5LjYyNCwzMzEuNzIyMDAxIDg1OS42MjEsMzMxLjg0MTk5OSA4NTkuNjE1LDMzMS45NSBDODU5LjYwOSwzMzIuMDU4MDAxIDg1OS42LDMzMi4xNzc5OTkgODU5LjU4OCwzMzIuMzEgTDg1My4zMDYsMzMyLjM2NCBaIE04NTUuNTc0LDMyOC43NDYgQzg1NC45MjU5OTcsMzI4Ljc0NiA4NTQuMzkyMDAyLDMyOC45NTU5OTggODUzLjk3MiwzMjkuMzc2IEM4NTMuNTUxOTk4LDMyOS43OTYwMDIgODUzLjMzLDMzMC4zNDc5OTcgODUzLjMwNiwzMzEuMDMyIEw4NTcuNjQ0LDMzMS4wMzIgQzg1Ny42MiwzMzAuMzQ3OTk3IDg1Ny40MzcwMDIsMzI5Ljc5NjAwMiA4NTcuMDk1LDMyOS4zNzYgQzg1Ni43NTI5OTgsMzI4Ljk1NTk5OCA4NTYuMjQ2MDAzLDMyOC43NDYgODU1LjU3NCwzMjguNzQ2IFogTTg2My43MSwzMzIuMzY0IEM4NjMuNzk0LDMzMy4xOTIwMDQgODY0LjA1NDk5OCwzMzMuNzk0OTk4IDg2NC40OTMsMzM0LjE3MyBDODY0LjkzMTAwMiwzMzQuNTUxMDAyIDg2NS41MzM5OTYsMzM0Ljc0IDg2Ni4zMDIsMzM0Ljc0IEM4NjYuNzk0MDAyLDMzNC43NCA4NjcuMjc2OTk4LDMzNC42NjIwMDEgODY3Ljc1MSwzMzQuNTA2IEM4NjguMjI1MDAyLDMzNC4zNDk5OTkgODY4LjYzNTk5OCwzMzQuMTM0MDAxIDg2OC45ODQsMzMzLjg1OCBMODY5LjgxMiwzMzUuMTM2IEM4NjkuMjcxOTk3LDMzNS40OTYwMDIgODY4LjY4NDAwMywzMzUuNzY4OTk5IDg2OC4wNDgsMzM1Ljk1NSBDODY3LjQxMTk5NywzMzYuMTQxMDAxIDg2Ni43NzYwMDMsMzM2LjIzNCA4NjYuMTQsMzM2LjIzNCBDODY1LjUyNzk5NywzMzYuMjM0IDg2NC45NDkwMDMsMzM2LjE0MTAwMSA4NjQuNDAzLDMzNS45NTUgQzg2My44NTY5OTcsMzM1Ljc2ODk5OSA4NjMuMzc3MDAyLDMzNS40OTAwMDIgODYyLjk2MywzMzUuMTE4IEM4NjIuNTQ4OTk4LDMzNC43NDU5OTggODYyLjIxOTAwMSwzMzQuMjc4MDAzIDg2MS45NzMsMzMzLjcxNCBDODYxLjcyNjk5OSwzMzMuMTQ5OTk3IDg2MS42MDQsMzMyLjQ4NDAwNCA4NjEuNjA0LDMzMS43MTYgQzg2MS42MDQsMzMxLjA3OTk5NyA4NjEuNzE0OTk5LDMzMC40OTIwMDMgODYxLjkzNywzMjkuOTUyIEM4NjIuMTU5MDAxLDMyOS40MTE5OTcgODYyLjQ2Nzk5OCwzMjguOTQ3MDAyIDg2Mi44NjQsMzI4LjU1NyBDODYzLjI2MDAwMiwzMjguMTY2OTk4IDg2My43MjQ5OTcsMzI3Ljg2MTAwMSA4NjQuMjU5LDMyNy42MzkgQzg2NC43OTMwMDMsMzI3LjQxNjk5OSA4NjUuMzY1OTk3LDMyNy4zMDYgODY1Ljk3OCwzMjcuMzA2IEM4NjYuNTY2MDAzLDMyNy4zMDYgODY3LjEwNTk5OCwzMjcuMzk4OTk5IDg2Ny41OTgsMzI3LjU4NSBDODY4LjA5MDAwMiwzMjcuNzcxMDAxIDg2OC41MTU5OTgsMzI4LjA0Mzk5OCA4NjguODc2LDMyOC40MDQgQzg2OS4yMzYwMDIsMzI4Ljc2NDAwMiA4NjkuNTE3OTk5LDMyOS4yMTA5OTcgODY5LjcyMiwzMjkuNzQ1IEM4NjkuOTI2MDAxLDMzMC4yNzkwMDMgODcwLjAyOCwzMzAuODkzOTk3IDg3MC4wMjgsMzMxLjU5IEM4NzAuMDI4LDMzMS43MjIwMDEgODcwLjAyNSwzMzEuODQxOTk5IDg3MC4wMTksMzMxLjk1IEM4NzAuMDEzLDMzMi4wNTgwMDEgODcwLjAwNCwzMzIuMTc3OTk5IDg2OS45OTIsMzMyLjMxIEw4NjMuNzEsMzMyLjM2NCBaIE04NjUuOTc4LDMyOC43NDYgQzg2NS4zMjk5OTcsMzI4Ljc0NiA4NjQuNzk2MDAyLDMyOC45NTU5OTggODY0LjM3NiwzMjkuMzc2IEM4NjMuOTU1OTk4LDMyOS43OTYwMDIgODYzLjczNCwzMzAuMzQ3OTk3IDg2My43MSwzMzEuMDMyIEw4NjguMDQ4LDMzMS4wMzIgQzg2OC4wMjQsMzMwLjM0Nzk5NyA4NjcuODQxMDAyLDMyOS43OTYwMDIgODY3LjQ5OSwzMjkuMzc2IEM4NjcuMTU2OTk4LDMyOC45NTU5OTggODY2LjY1MDAwMywzMjguNzQ2IDg2NS45NzgsMzI4Ljc0NiBaIE04NzQuNTY0LDMyMi44MjQgTDg3NC41NjQsMzMwLjc5OCBMODc4LjExLDMyNy40NjggTDg4MC42NDgsMzI3LjQ2OCBMODc2LjUwOCwzMzEuNTE4IEw4ODAuODY0LDMzNiBMODc4LjI3MiwzMzYgTDg3NC41NjQsMzMyLjExMiBMODc0LjU2NCwzMzYgTDg3Mi40OTQsMzM2IEw4NzIuNDk0LDMyMi44MjQgTDg3NC41NjQsMzIyLjgyNCBaIiBpZD0iU2xlZWsiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==');
64
- background-size: 100%;
65
- background-repeat: no-repeat;
66
- background-position-y: center;
67
- text-indent: -99999px;
65
+ display: flex;
66
+ height: 100%;
68
67
  overflow: hidden;
69
- display: block;
70
- float: left;
71
68
  padding: 19px 0;
72
69
  margin-right: 1.25rem;
73
70
  outline: 0;
71
+ color: $heading-color;
72
+
73
+ &:hover {
74
+ color: $heading-color;
75
+ }
76
+
77
+ .header__logo--container {
78
+ width: 58px;
79
+
80
+ .logo {
81
+ fill: currentColor;
82
+ }
83
+ }
74
84
  }
75
85
 
76
86
  .header__inner {
@@ -81,13 +91,48 @@
81
91
 
82
92
  }
83
93
 
84
- .header__logo,
85
94
  .header__links {
95
+ display: none;
96
+ visibility: hidden;
97
+
98
+ a {
99
+ color: $text-color;
100
+ padding: 0 1em;
101
+ }
102
+ }
103
+
104
+ .header__toggle {
86
105
  display: flex;
106
+ flex-direction: column;
107
+ justify-content: center;
108
+ width: 24px;
87
109
  height: 100%;
110
+ background-color: transparent;
111
+ padding: 0;
112
+
113
+ span {
114
+ display: block;
115
+ position: relative;
116
+ margin-top: 4px;
117
+ background-color: $text-color;
118
+ width: 100%;
119
+ height: 2px;
120
+
121
+ &:first-child {
122
+ margin-top: 0;
123
+ }
124
+ }
88
125
  }
89
126
 
90
- .header__links a {
91
- color: $text-color;
92
- padding: 0 1em;
127
+ @media (min-width: $lg) {
128
+ .header__toggle {
129
+ display: none;
130
+ visibility: hidden;
131
+ }
132
+
133
+ .header__links {
134
+ display: flex;
135
+ visibility: visible;
136
+ height: 100%;
137
+ }
93
138
  }
data/_sass/main.scss CHANGED
@@ -8,7 +8,7 @@
8
8
  // 2. Vendors
9
9
  @import
10
10
  "vendor/normalize",
11
- "vendor/susy";
11
+ "vendor/breakpoint";
12
12
 
13
13
  // 3. Base
14
14
  @import
@@ -27,6 +27,7 @@
27
27
  "components/btn",
28
28
  "components/top",
29
29
  "components/card",
30
+ "components/pagination",
30
31
  "components/form",
31
32
  // "components/autocomplete",
32
33
  "components/table",
@@ -3,7 +3,7 @@
3
3
  min-height: 16.25rem;
4
4
  width: 100%;
5
5
  position: relative;
6
- background: #dde5ea url("../img/shane-rounce-205187.jpg") no-repeat 50% / cover;
6
+ background: #dde5ea url("../img/posts/sleek.jpg") no-repeat 50% / cover;
7
7
 
8
8
  @include breakpoint($lg) {
9
9
  margin: 0 auto;
@@ -50,11 +50,12 @@
50
50
  left: 50%;
51
51
  transform: translate(-50%, -50%);
52
52
  text-align: center;
53
+ color: rgba(255, 255, 255, 0.8);
53
54
  max-width: 40em;
54
55
  z-index: 1;
55
56
 
56
57
  .hero__title {
57
- color: #fff;
58
+ color: $bg-color;
58
59
 
59
60
  @include breakpoint($md) {
60
61
  font-size: 2.625em;
@@ -1,5 +1,4 @@
1
1
  // Susy and breakpoint
2
2
  // ============
3
3
 
4
- @import "node_modules/susy/sass/susy";
5
4
  @import "node_modules/breakpoint-sass/stylesheets/breakpoint";
data/assets/css/main.css CHANGED
@@ -1,3 +1,3 @@
1
- /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}html{-webkit-box-sizing:border-box;box-sizing:border-box}body{-webkit-overflow-scrolling:touch}*,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit}.site{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:100vh;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.site__content{-webkit-box-flex:1;-ms-flex:1;flex:1}img{max-width:100%;height:auto;width:auto;vertical-align:middle}img::-moz-selection{background:transparent}img::selection{background:transparent}figure{margin:0}body{background-color:#fff;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI",Roboto,"Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-size:1rem;line-height:1.5;color:#343851;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%}::-moz-selection{color:#fff;background-color:#414141}::selection{color:#fff;background-color:#414141}p{margin-top:0;margin-bottom:1.25rem}h1,h2,h3,h4,h5,h6{color:#313237;margin-top:0;margin-bottom:.5rem}a{color:#277cea;text-decoration:none;-webkit-transition:color .2s linear;transition:color .2s linear}a:active,a:focus{outline:0}a:hover,a:focus{color:#68a4f1}a.link{position:relative;display:inline-block;color:#277cea;-webkit-transition:color 0.2s linear;transition:color 0.2s linear}a.link:after{content:"";display:block;position:absolute;left:0;bottom:0px;height:1px;width:0;background:#277cea;-webkit-transition:all 0.2 ease-in-out;transition:all 0.2 ease-in-out}a.link:hover{color:#0f4c9c}a.link:hover:after,a.link :active:after,a.link :focus:after{width:100%;color:#0f4c9c;-webkit-transition:all 0.35s cubic-bezier(0.694, 0.048, 0.335, 1);transition:all 0.35s cubic-bezier(0.694, 0.048, 0.335, 1)}em{font-style:italic}abbr[title]{text-decoration:none}mark{background:#ff0;color:#313237}code{padding:2px 4px;font-family:Consolas, "Liberation Mono", Menlo, Courier, monospace;font-size:0.9rem;color:#567482;background-color:#f3f6fa;border-radius:0.3rem}pre{padding:0.8rem;margin-top:0;margin-bottom:1rem;overflow-x:auto;font:1rem Consolas, "Liberation Mono", Menlo, Courier, monospace;color:#567482;word-wrap:normal;background-color:#f3f6fa;border:solid 1px #dce6f0;border-radius:0.3rem}pre>code{padding:0;margin:0;font-size:0.9rem;color:#567482;word-break:normal;white-space:pre;background:transparent;border:0}.title{position:relative;margin:0 0 85px;text-align:center;text-transform:capitalize}.title::after{position:absolute;content:"";left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);bottom:-8px;width:50px;height:2px;background-color:#277cea}.hidden{display:none;visibility:hidden}.container{padding:0 20px}@media (min-width: 0){.container{max-width:100%;margin-left:auto;margin-right:auto}.container:after{content:" ";display:block;clear:both}}@media (min-width: 36em){.container{max-width:540px;margin-left:auto;margin-right:auto}.container:after{content:" ";display:block;clear:both}}@media (min-width: 48em){.container{max-width:720px;margin-left:auto;margin-right:auto}.container:after{content:" ";display:block;clear:both}}@media (min-width: 62em){.container{max-width:960px;margin-left:auto;margin-right:auto}.container:after{content:" ";display:block;clear:both}}@media (min-width: 75em){.container{max-width:1170px;margin-left:auto;margin-right:auto}.container:after{content:" ";display:block;clear:both}}.header{background-color:#fff;color:#343851;position:absolute;z-index:4;width:100%;top:0;left:0;will-change:transform;-webkit-transition:background-color 0.5s ease, -webkit-transform .3s;transition:background-color 0.5s ease, -webkit-transform .3s;transition:transform .3s, background-color 0.5s ease;transition:transform .3s, background-color 0.5s ease, -webkit-transform .3s;-webkit-transform:translateY(0%);transform:translateY(0%)}.header a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width: 62em){.header nav>.menu-left a{color:rgba(255,255,255,0.75)}.header nav>.menu-left a:hover{color:#fff}.header nav>.menu-left a:hover::after{background:#fff}}.header.fix-nav{position:fixed;background-color:#fff;-webkit-transition:background-color 0.5s ease, -webkit-transform .3s;transition:background-color 0.5s ease, -webkit-transform .3s;transition:transform .3s, background-color 0.5s ease;transition:transform .3s, background-color 0.5s ease, -webkit-transform .3s}.header.fix-nav nav>.logo{color:#313237;background-color:rgba(255,255,255,0.96)}.header.fix-nav nav>.menu-left a{color:#343851}.header.fix-nav nav>.menu-left a:hover{color:#313237}.header.fix-nav nav>.menu-left a:hover:after{background:#277cea}.header.hide-nav{-webkit-transform:translateY(-120%);transform:translateY(-120%);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.header__logo{width:60px;height:58px;background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDZweCIgaGVpZ2h0PSIxNXB4IiB2aWV3Qm94PSIwIDAgNDYgMTUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDQ3LjEgKDQ1NDIyKSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5TbGVlazwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPjwvZGVmcz4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJXZWJfbGciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04MzUuMDAwMDAwLCAtMzIyLjAwMDAwMCkiIGZpbGw9IiMxQTFBMUEiPgogICAgICAgICAgICA8cGF0aCBkPSJNODM2LjE4OCwzMjYuNzEyIEM4MzYuMTg4LDMyNi4xNDc5OTcgODM2LjI5ODk5OSwzMjUuNjUzMDAyIDgzNi41MjEsMzI1LjIyNyBDODM2Ljc0MzAwMSwzMjQuODAwOTk4IDgzNy4wMzY5OTgsMzI0LjQ0NzAwMSA4MzcuNDAzLDMyNC4xNjUgQzgzNy43NjkwMDIsMzIzLjg4Mjk5OSA4MzguMTk0OTk4LDMyMy42NzAwMDEgODM4LjY4MSwzMjMuNTI2IEM4MzkuMTY3MDAyLDMyMy4zODE5OTkgODM5LjY2Nzk5NywzMjMuMzEgODQwLjE4NCwzMjMuMzEgQzg0MC45ODgwMDQsMzIzLjMxIDg0MS43NDk5OTYsMzIzLjQ2Mjk5OCA4NDIuNDcsMzIzLjc2OSBDODQzLjE5MDAwNCwzMjQuMDc1MDAyIDg0My43ODk5OTgsMzI0LjUyMTk5NyA4NDQuMjcsMzI1LjExIEw4NDIuOTAyLDMyNi40MDYgQzg0Mi42MjU5OTksMzI1Ljk4NTk5OCA4NDIuMjM5MDAyLDMyNS42NTYwMDEgODQxLjc0MSwzMjUuNDE2IEM4NDEuMjQyOTk4LDMyNS4xNzU5OTkgODQwLjcyNDAwMywzMjUuMDU2IDg0MC4xODQsMzI1LjA1NiBDODM5LjUzNTk5NywzMjUuMDU2IDgzOS4wNTAwMDIsMzI1LjE5MDk5OSA4MzguNzI2LDMyNS40NjEgQzgzOC40MDE5OTgsMzI1LjczMTAwMSA4MzguMjQsMzI2LjEwNTk5OCA4MzguMjQsMzI2LjU4NiBDODM4LjI0LDMyNi44NzQwMDEgODM4LjMwMjk5OSwzMjcuMTI1OTk5IDgzOC40MjksMzI3LjM0MiBDODM4LjU1NTAwMSwzMjcuNTU4MDAxIDgzOC43MjU5OTksMzI3Ljc0Njk5OSA4MzguOTQyLDMyNy45MDkgQzgzOS4xNTgwMDEsMzI4LjA3MTAwMSA4MzkuNDA5OTk5LDMyOC4yMTQ5OTkgODM5LjY5OCwzMjguMzQxIEM4MzkuOTg2MDAxLDMyOC40NjcwMDEgODQwLjI4NTk5OCwzMjguNTk1OTk5IDg0MC41OTgsMzI4LjcyOCBDODQxLjAwNjAwMiwzMjguODk2MDAxIDg0MS40MTk5OTgsMzI5LjA3NTk5OSA4NDEuODQsMzI5LjI2OCBDODQyLjI2MDAwMiwzMjkuNDYwMDAxIDg0Mi42Mzc5OTgsMzI5LjY5OTk5OSA4NDIuOTc0LDMyOS45ODggQzg0My4zMTAwMDIsMzMwLjI3NjAwMSA4NDMuNTg1OTk5LDMzMC42Mjk5OTggODQzLjgwMiwzMzEuMDUgQzg0NC4wMTgwMDEsMzMxLjQ3MDAwMiA4NDQuMTI2LDMzMS45OTE5OTcgODQ0LjEyNiwzMzIuNjE2IEM4NDQuMTI2LDMzMy4yNzYwMDMgODQ0LjAxMjAwMSwzMzMuODM2OTk4IDg0My43ODQsMzM0LjI5OSBDODQzLjU1NTk5OSwzMzQuNzYxMDAyIDg0My4yNDcwMDIsMzM1LjEzODk5OSA4NDIuODU3LDMzNS40MzMgQzg0Mi40NjY5OTgsMzM1LjcyNzAwMSA4NDIuMDE0MDAzLDMzNS45Mzk5OTkgODQxLjQ5OCwzMzYuMDcyIEM4NDAuOTgxOTk3LDMzNi4yMDQwMDEgODQwLjQ0MjAwMywzMzYuMjcgODM5Ljg3OCwzMzYuMjcgQzgzOC45MTc5OTUsMzM2LjI3IDgzOC4wNTcwMDQsMzM2LjA4NDAwMiA4MzcuMjk1LDMzNS43MTIgQzgzNi41MzI5OTYsMzM1LjMzOTk5OCA4MzUuODcwMDAzLDMzNC43NTgwMDQgODM1LjMwNiwzMzMuOTY2IEw4MzYuNzI4LDMzMi43NzggQzgzNi44MzYwMDEsMzMyLjk1ODAwMSA4MzYuOTkxOTk5LDMzMy4xNTI5OTkgODM3LjE5NiwzMzMuMzYzIEM4MzcuNDAwMDAxLDMzMy41NzMwMDEgODM3LjYzNjk5OSwzMzMuNzY3OTk5IDgzNy45MDcsMzMzLjk0OCBDODM4LjE3NzAwMSwzMzQuMTI4MDAxIDgzOC40NzY5OTgsMzM0LjI3Nzk5OSA4MzguODA3LDMzNC4zOTggQzgzOS4xMzcwMDIsMzM0LjUxODAwMSA4MzkuNDkzOTk4LDMzNC41NzggODM5Ljg3OCwzMzQuNTc4IEM4NDAuMjk4MDAyLDMzNC41NzggODQwLjY0ODk5OSwzMzQuNTMgODQwLjkzMSwzMzQuNDM0IEM4NDEuMjEzMDAxLDMzNC4zMzggODQxLjQzNzk5OSwzMzQuMjA2MDAxIDg0MS42MDYsMzM0LjAzOCBDODQxLjc3NDAwMSwzMzMuODY5OTk5IDg0MS44OTQsMzMzLjY3NTAwMSA4NDEuOTY2LDMzMy40NTMgQzg0Mi4wMzgsMzMzLjIzMDk5OSA4NDIuMDc0LDMzMi45OTQwMDEgODQyLjA3NCwzMzIuNzQyIEM4NDIuMDc0LDMzMi40Mjk5OTggODQyLjAwNTAwMSwzMzIuMTU3MDAxIDg0MS44NjcsMzMxLjkyMyBDODQxLjcyODk5OSwzMzEuNjg4OTk5IDg0MS41NDYwMDEsMzMxLjQ4MjAwMSA4NDEuMzE4LDMzMS4zMDIgQzg0MS4wODk5OTksMzMxLjEyMTk5OSA4NDAuODI2MDAxLDMzMC45NjAwMDEgODQwLjUyNiwzMzAuODE2IEM4NDAuMjI1OTk4LDMzMC42NzE5OTkgODM5LjkxNDAwMiwzMzAuNTI4MDAxIDgzOS41OSwzMzAuMzg0IEM4MzkuMTkzOTk4LDMzMC4yMTU5OTkgODM4Ljc5MjAwMiwzMzAuMDM2MDAxIDgzOC4zODQsMzI5Ljg0NCBDODM3Ljk3NTk5OCwzMjkuNjUxOTk5IDgzNy42MTAwMDIsMzI5LjQxODAwMSA4MzcuMjg2LDMyOS4xNDIgQzgzNi45NjE5OTgsMzI4Ljg2NTk5OSA4MzYuNjk4MDAxLDMyOC41MzMwMDIgODM2LjQ5NCwzMjguMTQzIEM4MzYuMjg5OTk5LDMyNy43NTI5OTggODM2LjE4OCwzMjcuMjc2MDAzIDgzNi4xODgsMzI2LjcxMiBaIE04NDguNjk4LDMyMi44MjQgTDg0OC42OTgsMzM2IEw4NDYuNjI4LDMzNiBMODQ2LjYyOCwzMjIuODI0IEw4NDguNjk4LDMyMi44MjQgWiBNODUzLjMwNiwzMzIuMzY0IEM4NTMuMzksMzMzLjE5MjAwNCA4NTMuNjUwOTk4LDMzMy43OTQ5OTggODU0LjA4OSwzMzQuMTczIEM4NTQuNTI3MDAyLDMzNC41NTEwMDIgODU1LjEyOTk5NiwzMzQuNzQgODU1Ljg5OCwzMzQuNzQgQzg1Ni4zOTAwMDIsMzM0Ljc0IDg1Ni44NzI5OTgsMzM0LjY2MjAwMSA4NTcuMzQ3LDMzNC41MDYgQzg1Ny44MjEwMDIsMzM0LjM0OTk5OSA4NTguMjMxOTk4LDMzNC4xMzQwMDEgODU4LjU4LDMzMy44NTggTDg1OS40MDgsMzM1LjEzNiBDODU4Ljg2Nzk5NywzMzUuNDk2MDAyIDg1OC4yODAwMDMsMzM1Ljc2ODk5OSA4NTcuNjQ0LDMzNS45NTUgQzg1Ny4wMDc5OTcsMzM2LjE0MTAwMSA4NTYuMzcyMDAzLDMzNi4yMzQgODU1LjczNiwzMzYuMjM0IEM4NTUuMTIzOTk3LDMzNi4yMzQgODU0LjU0NTAwMywzMzYuMTQxMDAxIDg1My45OTksMzM1Ljk1NSBDODUzLjQ1Mjk5NywzMzUuNzY4OTk5IDg1Mi45NzMwMDIsMzM1LjQ5MDAwMiA4NTIuNTU5LDMzNS4xMTggQzg1Mi4xNDQ5OTgsMzM0Ljc0NTk5OCA4NTEuODE1MDAxLDMzNC4yNzgwMDMgODUxLjU2OSwzMzMuNzE0IEM4NTEuMzIyOTk5LDMzMy4xNDk5OTcgODUxLjIsMzMyLjQ4NDAwNCA4NTEuMiwzMzEuNzE2IEM4NTEuMiwzMzEuMDc5OTk3IDg1MS4zMTA5OTksMzMwLjQ5MjAwMyA4NTEuNTMzLDMyOS45NTIgQzg1MS43NTUwMDEsMzI5LjQxMTk5NyA4NTIuMDYzOTk4LDMyOC45NDcwMDIgODUyLjQ2LDMyOC41NTcgQzg1Mi44NTYwMDIsMzI4LjE2Njk5OCA4NTMuMzIwOTk3LDMyNy44NjEwMDEgODUzLjg1NSwzMjcuNjM5IEM4NTQuMzg5MDAzLDMyNy40MTY5OTkgODU0Ljk2MTk5NywzMjcuMzA2IDg1NS41NzQsMzI3LjMwNiBDODU2LjE2MjAwMywzMjcuMzA2IDg1Ni43MDE5OTgsMzI3LjM5ODk5OSA4NTcuMTk0LDMyNy41ODUgQzg1Ny42ODYwMDIsMzI3Ljc3MTAwMSA4NTguMTExOTk4LDMyOC4wNDM5OTggODU4LjQ3MiwzMjguNDA0IEM4NTguODMyMDAyLDMyOC43NjQwMDIgODU5LjExMzk5OSwzMjkuMjEwOTk3IDg1OS4zMTgsMzI5Ljc0NSBDODU5LjUyMjAwMSwzMzAuMjc5MDAzIDg1OS42MjQsMzMwLjg5Mzk5NyA4NTkuNjI0LDMzMS41OSBDODU5LjYyNCwzMzEuNzIyMDAxIDg1OS42MjEsMzMxLjg0MTk5OSA4NTkuNjE1LDMzMS45NSBDODU5LjYwOSwzMzIuMDU4MDAxIDg1OS42LDMzMi4xNzc5OTkgODU5LjU4OCwzMzIuMzEgTDg1My4zMDYsMzMyLjM2NCBaIE04NTUuNTc0LDMyOC43NDYgQzg1NC45MjU5OTcsMzI4Ljc0NiA4NTQuMzkyMDAyLDMyOC45NTU5OTggODUzLjk3MiwzMjkuMzc2IEM4NTMuNTUxOTk4LDMyOS43OTYwMDIgODUzLjMzLDMzMC4zNDc5OTcgODUzLjMwNiwzMzEuMDMyIEw4NTcuNjQ0LDMzMS4wMzIgQzg1Ny42MiwzMzAuMzQ3OTk3IDg1Ny40MzcwMDIsMzI5Ljc5NjAwMiA4NTcuMDk1LDMyOS4zNzYgQzg1Ni43NTI5OTgsMzI4Ljk1NTk5OCA4NTYuMjQ2MDAzLDMyOC43NDYgODU1LjU3NCwzMjguNzQ2IFogTTg2My43MSwzMzIuMzY0IEM4NjMuNzk0LDMzMy4xOTIwMDQgODY0LjA1NDk5OCwzMzMuNzk0OTk4IDg2NC40OTMsMzM0LjE3MyBDODY0LjkzMTAwMiwzMzQuNTUxMDAyIDg2NS41MzM5OTYsMzM0Ljc0IDg2Ni4zMDIsMzM0Ljc0IEM4NjYuNzk0MDAyLDMzNC43NCA4NjcuMjc2OTk4LDMzNC42NjIwMDEgODY3Ljc1MSwzMzQuNTA2IEM4NjguMjI1MDAyLDMzNC4zNDk5OTkgODY4LjYzNTk5OCwzMzQuMTM0MDAxIDg2OC45ODQsMzMzLjg1OCBMODY5LjgxMiwzMzUuMTM2IEM4NjkuMjcxOTk3LDMzNS40OTYwMDIgODY4LjY4NDAwMywzMzUuNzY4OTk5IDg2OC4wNDgsMzM1Ljk1NSBDODY3LjQxMTk5NywzMzYuMTQxMDAxIDg2Ni43NzYwMDMsMzM2LjIzNCA4NjYuMTQsMzM2LjIzNCBDODY1LjUyNzk5NywzMzYuMjM0IDg2NC45NDkwMDMsMzM2LjE0MTAwMSA4NjQuNDAzLDMzNS45NTUgQzg2My44NTY5OTcsMzM1Ljc2ODk5OSA4NjMuMzc3MDAyLDMzNS40OTAwMDIgODYyLjk2MywzMzUuMTE4IEM4NjIuNTQ4OTk4LDMzNC43NDU5OTggODYyLjIxOTAwMSwzMzQuMjc4MDAzIDg2MS45NzMsMzMzLjcxNCBDODYxLjcyNjk5OSwzMzMuMTQ5OTk3IDg2MS42MDQsMzMyLjQ4NDAwNCA4NjEuNjA0LDMzMS43MTYgQzg2MS42MDQsMzMxLjA3OTk5NyA4NjEuNzE0OTk5LDMzMC40OTIwMDMgODYxLjkzNywzMjkuOTUyIEM4NjIuMTU5MDAxLDMyOS40MTE5OTcgODYyLjQ2Nzk5OCwzMjguOTQ3MDAyIDg2Mi44NjQsMzI4LjU1NyBDODYzLjI2MDAwMiwzMjguMTY2OTk4IDg2My43MjQ5OTcsMzI3Ljg2MTAwMSA4NjQuMjU5LDMyNy42MzkgQzg2NC43OTMwMDMsMzI3LjQxNjk5OSA4NjUuMzY1OTk3LDMyNy4zMDYgODY1Ljk3OCwzMjcuMzA2IEM4NjYuNTY2MDAzLDMyNy4zMDYgODY3LjEwNTk5OCwzMjcuMzk4OTk5IDg2Ny41OTgsMzI3LjU4NSBDODY4LjA5MDAwMiwzMjcuNzcxMDAxIDg2OC41MTU5OTgsMzI4LjA0Mzk5OCA4NjguODc2LDMyOC40MDQgQzg2OS4yMzYwMDIsMzI4Ljc2NDAwMiA4NjkuNTE3OTk5LDMyOS4yMTA5OTcgODY5LjcyMiwzMjkuNzQ1IEM4NjkuOTI2MDAxLDMzMC4yNzkwMDMgODcwLjAyOCwzMzAuODkzOTk3IDg3MC4wMjgsMzMxLjU5IEM4NzAuMDI4LDMzMS43MjIwMDEgODcwLjAyNSwzMzEuODQxOTk5IDg3MC4wMTksMzMxLjk1IEM4NzAuMDEzLDMzMi4wNTgwMDEgODcwLjAwNCwzMzIuMTc3OTk5IDg2OS45OTIsMzMyLjMxIEw4NjMuNzEsMzMyLjM2NCBaIE04NjUuOTc4LDMyOC43NDYgQzg2NS4zMjk5OTcsMzI4Ljc0NiA4NjQuNzk2MDAyLDMyOC45NTU5OTggODY0LjM3NiwzMjkuMzc2IEM4NjMuOTU1OTk4LDMyOS43OTYwMDIgODYzLjczNCwzMzAuMzQ3OTk3IDg2My43MSwzMzEuMDMyIEw4NjguMDQ4LDMzMS4wMzIgQzg2OC4wMjQsMzMwLjM0Nzk5NyA4NjcuODQxMDAyLDMyOS43OTYwMDIgODY3LjQ5OSwzMjkuMzc2IEM4NjcuMTU2OTk4LDMyOC45NTU5OTggODY2LjY1MDAwMywzMjguNzQ2IDg2NS45NzgsMzI4Ljc0NiBaIE04NzQuNTY0LDMyMi44MjQgTDg3NC41NjQsMzMwLjc5OCBMODc4LjExLDMyNy40NjggTDg4MC42NDgsMzI3LjQ2OCBMODc2LjUwOCwzMzEuNTE4IEw4ODAuODY0LDMzNiBMODc4LjI3MiwzMzYgTDg3NC41NjQsMzMyLjExMiBMODc0LjU2NCwzMzYgTDg3Mi40OTQsMzM2IEw4NzIuNDk0LDMyMi44MjQgTDg3NC41NjQsMzIyLjgyNCBaIiBpZD0iU2xlZWsiPjwvcGF0aD4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==");background-size:100%;background-repeat:no-repeat;background-position-y:center;text-indent:-99999px;overflow:hidden;display:block;float:left;padding:19px 0;margin-right:1.25rem;outline:0}.header__inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:3.75em;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.header__logo,.header__links{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.header__links a{color:#343851;padding:0 1em}footer{padding:2.8125rem 0;border-top:1px solid #f0f0f0;text-align:center;font-size:0.875rem;color:rgba(33,33,33,0.6)}footer a{color:rgba(33,33,33,0.6)}footer a:hover{color:#277cea}.social{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:200px;margin:0 auto 25px}.social__link:not(:last-child){margin-right:1.125rem}.social__icon{fill:currentColor;height:1.5rem;width:1.5rem}.btn+.btn{margin-top:2em}@media (min-width: 350px){.btn+.btn{margin-top:0;margin-left:2em}}.btn,button,input[type="submit"],input[type="reset"],input[type="button"]{position:relative;display:inline-block;padding:18px 30px;font-size:11px;font-family:inherit;line-height:1.5;letter-spacing:0.2em;text-decoration:none;text-transform:uppercase;white-space:nowrap;cursor:pointer;color:#fff;background-color:#222325;text-align:center;border:none;border-radius:0px;-webkit-transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1);transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1)}.btn:after,button:after,input[type="submit"]:after,input[type="reset"]:after,input[type="button"]:after{display:none}.btn:hover,.btn :focus,.btn :active,button:hover,button :focus,button :active,input[type="submit"]:hover,input[type="submit"] :focus,input[type="submit"] :active,input[type="reset"]:hover,input[type="reset"] :focus,input[type="reset"] :active,input[type="button"]:hover,input[type="button"] :focus,input[type="button"] :active{color:#fff;background-color:#44464a;outline:0}.btn-lg{padding:20px 48px;padding:2rem 4.8rem;position:relative}.btn-primary{background-color:#277cea !important;color:#fff !important}.btn-primary:hover,.btn-primary :focus,.btn-primary :active{color:#fff;background-color:#68a4f1;outline:0}.pill{position:relative;display:inline-block;padding:15px 42px;font-size:11px;letter-spacing:0.2em;text-decoration:none;text-transform:capitalize;color:#fff;background-color:#222325;border-radius:300px;line-height:1.5;text-align:center;border:none;-webkit-transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1);transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1)}.pill:after{display:none}.pill:hover,.pill :focus,.pill :active{color:#fff;background-color:#313237}.pill:focus{outline:none}.pill-lg{padding:20px 48px;padding:2rem 4.8rem;position:relative}.btn-wrap{text-align:center}@media (min-width: 48em){.btn-wrap{text-align:left}}.btn-center{text-align:center}button:disabled{cursor:not-allowed;opacity:.65;-webkit-transition:background-color .2s ease;transition:background-color .2s ease}button:disabled:hover,button:disabled :focus{background-color:#222325}.to-top{position:fixed;display:block;text-align:center;right:15px;bottom:0;cursor:pointer;height:35px;width:35px;background-color:rgba(103,103,103,0.65);z-index:2;-webkit-transform:translate3d(0, 60px, 0);transform:translate3d(0, 60px, 0);-webkit-transition:all 0.3s ease;transition:all 0.3s ease}@media (min-width: 48em){.to-top{right:1.8em}}.to-top.js-show{-webkit-transform:translate3d(0, -15px, 0);transform:translate3d(0, -15px, 0)}@media (min-width: 48em){.to-top.js-show{-webkit-transform:translate3d(0, -28px, 0);transform:translate3d(0, -28px, 0)}}.to-top:hover{background-color:rgba(103,103,103,0.8)}.post-card{display:block;width:100%;min-height:250px;border-radius:4px;overflow:hidden;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.08);box-shadow:0 1px 3px rgba(0,0,0,0.08);margin-bottom:5.26316%}@media (min-width: 48em){.post-card{width:48.4375%;margin-right:3.125%}.post-card:last-of-type,.post-card:nth-child(2n+2){margin-right:0}}@media (min-width: 75em){.post-card{width:31.25%;margin-right:3.125%}.post-card:nth-child(2n+2){margin-right:3.125%}.post-card:last-of-type,.post-card:nth-child(3n+3){margin-right:0}}.post-card--inner{padding:1.875rem 1.25rem}input,textarea{display:inline-block;padding:5px 0;width:100%;border:0;border-bottom:2px solid #ededed;outline:none;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;background:transparent}input:focus,textarea:focus{border-color:#277cea;-webkit-transition:border-color .25s;transition:border-color .25s}.form__input{position:relative;display:inline-block;width:100%;margin-bottom:35px}.form__input::before{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:#277cea;z-index:5;-webkit-transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1);transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1);-webkit-transition-delay:.1s;transition-delay:.1s}.form__input::after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:#ff6161;z-index:4;-webkit-transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1);transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1)}.form__input:hover::after,.form__input :focus:after,.form__input :active:after{width:100%}.form__input:hover::before,.form__input :focus::before,.form__input :active::after{width:100%}.form__input.error:hover::after,.form__input.error :focus::after,.form__input.error :active::after{width:0%}.form__input.error:hover::before,.form__input.error :focus::before,.form__input.error :active::after{width:0%}.error input{border-bottom-color:#ff6161}.error textarea{border-bottom-color:#ff6161}.error-data{color:#ff6161;font-size:14px;position:absolute;left:0;bottom:-21px}table{display:table;width:100%;overflow-x:auto;margin-bottom:1.25rem;border-collapse:collapse;border-spacing:0;border:1px solid #e0e0e0;border-radius:4px;font-size:14.5px}table th{background-color:#f5f5f5}table th,table td{padding:6px 13px;border:1px solid #dfe2e5}.highlight{background:#ffffff}.highlight .c{color:#999988;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#999988;font-style:italic}.highlight .cp{color:#999999;font-weight:bold}.highlight .c1{color:#999988;font-style:italic}.highlight .cs{color:#999999;font-weight:bold;font-style:italic}.highlight .gd{color:#000000;background-color:#ffdddd}.highlight .gd .x{color:#000000;background-color:#ffaaaa}.highlight .ge{font-style:italic}.highlight .gr{color:#aa0000}.highlight .gh{color:#999999}.highlight .gi{color:#000000;background-color:#ddffdd}.highlight .gi .x{color:#000000;background-color:#aaffaa}.highlight .go{color:#888888}.highlight .gp{color:#555555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaaaaa}.highlight .gt{color:#aa0000}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#445588;font-weight:bold}.highlight .m{color:#009999}.highlight .s{color:#d14}.highlight .na{color:#008080}.highlight .nb{color:#0086B3}.highlight .nc{color:#445588;font-weight:bold}.highlight .no{color:#008080}.highlight .ni{color:#800080}.highlight .ne{color:#990000;font-weight:bold}.highlight .nf{color:#990000;font-weight:bold}.highlight .nn{color:#555555}.highlight .nt{color:#000080}.highlight .nv{color:#008080}.highlight .ow{font-weight:bold}.highlight .w{color:#bbbbbb}.highlight .mf{color:#009999}.highlight .mh{color:#009999}.highlight .mi{color:#009999}.highlight .mo{color:#009999}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999999}.highlight .vc{color:#008080}.highlight .vg{color:#008080}.highlight .vi{color:#008080}.highlight .il{color:#009999}.hero{margin:3.75rem auto 0;min-height:16.25rem;width:100%;position:relative;background:#dde5ea url("../img/shane-rounce-205187.jpg") no-repeat 50%/cover}@media (min-width: 62em){.hero{margin:0 auto;height:36em}}.hero::before{position:absolute;display:block;content:"";top:0;left:0;width:100%;height:100%;background:rgba(52,56,81,0.8)}.hero--small{margin:3.75rem auto 0;min-height:8.75rem;width:100%;position:relative}@media (min-width: 62em){.hero--small{height:12.5em}}.hero--small::before{position:absolute;display:block;content:"";top:0;left:0;width:100%;height:100%;background:rgba(52,56,81,0.8)}.hero__wrap{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);text-align:center;max-width:40em;z-index:1}.hero__wrap .hero__title{color:#fff}@media (min-width: 48em){.hero__wrap .hero__title{font-size:2.625em;line-height:3.125rem}}.page-content{max-width:52.5rem;margin:0 auto;padding:2.5em 0}@media (min-width: 48em){.page-content{padding:3.75rem 0}}.blog{background-color:#f9f9f9}.post-list{padding-top:2.5em;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}@media (min-width: 48em){.post-list{padding-top:5em}}.post-content{max-width:52.5rem;margin:0 auto;padding-top:2.5em}@media (min-width: 48em){.post-content{padding-top:5em}}.comments{padding:50px 0;background-color:#fafafa}
1
+ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}html{-webkit-box-sizing:border-box;box-sizing:border-box}body{-webkit-overflow-scrolling:touch}*,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit}.site{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:100vh;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.site__content{-webkit-box-flex:1;-ms-flex:1;flex:1}img{max-width:100%;height:auto;width:auto;vertical-align:middle}img::-moz-selection{background:transparent}img::selection{background:transparent}figure{margin:0}body{background-color:#fff;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI",Roboto,"Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-size:1rem;line-height:1.5;color:#343851;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%}::-moz-selection{color:#fff;background-color:#414141}::selection{color:#fff;background-color:#414141}p{margin-top:0;margin-bottom:1.25rem}h1,h2,h3,h4,h5,h6{color:#313237;margin-top:0;margin-bottom:.5rem}a{color:#277cea;text-decoration:none;-webkit-transition:color .2s linear;transition:color .2s linear}a:active,a:focus{outline:0}a:hover,a:focus{color:#68a4f1}a.link{position:relative;display:inline-block;color:#277cea;-webkit-transition:color 0.2s linear;transition:color 0.2s linear}a.link:after{content:"";display:block;position:absolute;left:0;bottom:0px;height:1px;width:0;background:#277cea;-webkit-transition:all 0.2 ease-in-out;transition:all 0.2 ease-in-out}a.link:hover{color:#0f4c9c}a.link:hover:after,a.link :active:after,a.link :focus:after{width:100%;color:#0f4c9c;-webkit-transition:all 0.35s cubic-bezier(0.694, 0.048, 0.335, 1);transition:all 0.35s cubic-bezier(0.694, 0.048, 0.335, 1)}em{font-style:italic}abbr[title]{text-decoration:none}mark{background:#ff0;color:#313237}code{padding:2px 4px;font-family:Consolas, "Liberation Mono", Menlo, Courier, monospace;font-size:0.9rem;color:#567482;background-color:#f3f6fa;border-radius:0.3rem}pre{padding:0.8rem;margin-top:0;margin-bottom:1rem;overflow-x:auto;font:1rem Consolas, "Liberation Mono", Menlo, Courier, monospace;color:#567482;word-wrap:normal;background-color:#f3f6fa;border:solid 1px #dce6f0;border-radius:0.3rem}pre>code{padding:0;margin:0;font-size:0.9rem;color:#567482;word-break:normal;white-space:pre;background:transparent;border:0}.blur-up{-webkit-filter:blur(5px);filter:blur(5px);transition:filter 400ms, -webkit-filter 400ms}.blur-up.lazyloaded{-webkit-filter:blur(0);filter:blur(0)}.title{position:relative;margin:0 0 85px;text-align:center;text-transform:capitalize}.title::after{position:absolute;content:"";left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);bottom:-8px;width:50px;height:2px;background-color:#277cea}.hidden{display:none;visibility:hidden}.container{padding:0 20px}@media (min-width: 0){.container{max-width:auto;margin:0 auto}}@media (min-width: 36em){.container{max-width:540px;margin:0 auto}}@media (min-width: 48em){.container{max-width:720px;margin:0 auto}}@media (min-width: 62em){.container{max-width:960px;margin:0 auto}}@media (min-width: 75em){.container{max-width:1170px;margin:0 auto}}.header{background-color:#fff;color:#343851;position:absolute;z-index:4;width:100%;top:0;left:0;will-change:transform;-webkit-transition:background-color 0.5s ease, -webkit-transform .3s;transition:background-color 0.5s ease, -webkit-transform .3s;transition:transform .3s, background-color 0.5s ease;transition:transform .3s, background-color 0.5s ease, -webkit-transform .3s;-webkit-transform:translateY(0%);transform:translateY(0%)}.header a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width: 62em){.header nav>.menu-left a{color:rgba(255,255,255,0.75)}.header nav>.menu-left a:hover{color:#fff}.header nav>.menu-left a:hover::after{background:#fff}}.header.fix-nav{position:fixed;background-color:#fff;-webkit-box-shadow:0 0 3px 0 rgba(0,0,0,0.22);box-shadow:0 0 3px 0 rgba(0,0,0,0.22);z-index:5;-webkit-transition:background-color 0.5s ease, -webkit-transform .3s;transition:background-color 0.5s ease, -webkit-transform .3s;transition:transform .3s, background-color 0.5s ease;transition:transform .3s, background-color 0.5s ease, -webkit-transform .3s}.header.fix-nav nav>.logo{color:#313237;background-color:rgba(255,255,255,0.96)}.header.fix-nav nav>.menu-left a{color:#343851}.header.fix-nav nav>.menu-left a:hover{color:#313237}.header.fix-nav nav>.menu-left a:hover:after{background:#277cea}.header.hide-nav{-webkit-transform:translateY(-120%);transform:translateY(-120%);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.header__logo{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;overflow:hidden;padding:19px 0;margin-right:1.25rem;outline:0;color:#313237}.header__logo:hover{color:#313237}.header__logo .header__logo--container{width:58px}.header__logo .header__logo--container .logo{fill:currentColor}.header__inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:3.75em;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.header__links{display:none;visibility:hidden}.header__links a{color:#343851;padding:0 1em}.header__toggle{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:24px;height:100%;background-color:transparent;padding:0}.header__toggle span{display:block;position:relative;margin-top:4px;background-color:#343851;width:100%;height:2px}.header__toggle span:first-child{margin-top:0}@media (min-width: 62em){.header__toggle{display:none;visibility:hidden}.header__links{display:-webkit-box;display:-ms-flexbox;display:flex;visibility:visible;height:100%}}footer{padding:2.8125rem 0;border-top:1px solid #f0f0f0;text-align:center;font-size:0.875rem;color:rgba(33,33,33,0.6)}footer a{color:rgba(33,33,33,0.6)}footer a:hover{color:#277cea}.social{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:distribute;justify-content:space-around;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:200px;margin:0 auto 25px}.social__link:not(:last-child){margin-right:1.125rem}.social__icon{fill:currentColor;height:1.5rem;width:1.5rem}.btn+.btn{margin-top:2em}@media (min-width: 350px){.btn+.btn{margin-top:0;margin-left:2em}}.btn,button,input[type="submit"],input[type="reset"],input[type="button"]{position:relative;display:inline-block;padding:18px 30px;font-size:11px;font-family:inherit;line-height:1.5;letter-spacing:0.2em;text-decoration:none;text-transform:uppercase;white-space:nowrap;cursor:pointer;color:#fff;background-color:#222325;text-align:center;border:none;border-radius:0px;-webkit-transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1);transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1)}.btn:after,button:after,input[type="submit"]:after,input[type="reset"]:after,input[type="button"]:after{display:none}.btn:hover,.btn :focus,.btn :active,button:hover,button :focus,button :active,input[type="submit"]:hover,input[type="submit"] :focus,input[type="submit"] :active,input[type="reset"]:hover,input[type="reset"] :focus,input[type="reset"] :active,input[type="button"]:hover,input[type="button"] :focus,input[type="button"] :active{color:#fff;background-color:#44464a;outline:0}.btn-lg{padding:20px 48px;padding:2rem 4.8rem;position:relative}.btn-primary{background-color:#277cea !important;color:#fff !important}.btn-primary:hover,.btn-primary :focus,.btn-primary :active{color:#fff;background-color:#68a4f1;outline:0}.pill{position:relative;display:inline-block;padding:15px 42px;font-size:11px;letter-spacing:0.2em;text-decoration:none;text-transform:capitalize;color:#fff;background-color:#222325;border-radius:300px;line-height:1.5;text-align:center;border:none;-webkit-transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1);transition:all 0.45s cubic-bezier(0.25, 1, 0.33, 1)}.pill:after{display:none}.pill:hover,.pill :focus,.pill :active{color:#fff;background-color:#313237}.pill:focus{outline:none}.pill-lg{padding:20px 48px;padding:2rem 4.8rem;position:relative}.btn-wrap{text-align:center}@media (min-width: 48em){.btn-wrap{text-align:left}}.btn-center{text-align:center}button:disabled{cursor:not-allowed;opacity:.65;-webkit-transition:background-color .2s ease;transition:background-color .2s ease}button:disabled:hover,button:disabled :focus{background-color:#222325}.to-top{position:fixed;display:block;text-align:center;right:15px;bottom:0;cursor:pointer;height:35px;width:35px;background-color:rgba(103,103,103,0.65);z-index:2;-webkit-transform:translate3d(0, 60px, 0);transform:translate3d(0, 60px, 0);-webkit-transition:all 0.3s ease;transition:all 0.3s ease}@media (min-width: 48em){.to-top{right:1.8em}}.to-top.js-show{-webkit-transform:translate3d(0, -15px, 0);transform:translate3d(0, -15px, 0)}@media (min-width: 48em){.to-top.js-show{-webkit-transform:translate3d(0, -28px, 0);transform:translate3d(0, -28px, 0)}}.to-top:hover{background-color:rgba(103,103,103,0.8)}.post-card{display:block;width:100%;min-height:250px;border-radius:4px;overflow:hidden;background-color:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.08);box-shadow:0 1px 3px rgba(0,0,0,0.08);margin-bottom:5.26316%;-webkit-transition:-webkit-box-shadow .25s ease;transition:-webkit-box-shadow .25s ease;transition:box-shadow .25s ease;transition:box-shadow .25s ease, -webkit-box-shadow .25s ease}.post-card:hover,.post-card:focus{-webkit-box-shadow:0 2px 40px 0 rgba(153,155,168,0.3);box-shadow:0 2px 40px 0 rgba(153,155,168,0.3)}@media (min-width: 48em){.post-card{width:48.4375%;margin-right:3.125%}.post-card:last-of-type,.post-card:nth-child(2n+2){margin-right:0}}@media (min-width: 75em){.post-card{width:31.25%;margin-right:3.125%}.post-card:nth-child(2n+2){margin-right:3.125%}.post-card:last-of-type,.post-card:nth-child(3n+3){margin-right:0}}.post-card__thumb{margin:0;background:#313237;position:relative}.post-card__thumb::after{content:"";display:block;height:0;width:100%;padding-bottom:56.25%}.post-card__thumb>*{position:absolute;top:0;left:0;width:100%;height:100%;display:block}.post-card__inner{padding:1.875rem 1.25rem 0.625rem;color:#838c8d}.post-card__header{margin-bottom:0.75rem}.post-card__header .post-card__meta{font-size:0.875rem}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25rem auto}input,textarea{display:inline-block;padding:5px 0;width:100%;border:0;border-bottom:2px solid #ededed;outline:none;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Hiragino Sans GB","Microsoft YaHei","WenQuanYi Micro Hei",sans-serif;background:transparent}input:focus,textarea:focus{border-color:#277cea;-webkit-transition:border-color .25s;transition:border-color .25s}.form__input{position:relative;display:inline-block;width:100%;margin-bottom:35px}.form__input::before{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:#277cea;z-index:5;-webkit-transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1);transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1);-webkit-transition-delay:.1s;transition-delay:.1s}.form__input::after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background:#ff6161;z-index:4;-webkit-transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1);transition:width 0.45s cubic-bezier(0.694, 0.048, 0.335, 1)}.form__input:hover::after,.form__input :focus:after,.form__input :active:after{width:100%}.form__input:hover::before,.form__input :focus::before,.form__input :active::after{width:100%}.form__input.error:hover::after,.form__input.error :focus::after,.form__input.error :active::after{width:0%}.form__input.error:hover::before,.form__input.error :focus::before,.form__input.error :active::after{width:0%}.error input{border-bottom-color:#ff6161}.error textarea{border-bottom-color:#ff6161}.error-data{color:#ff6161;font-size:14px;position:absolute;left:0;bottom:-21px}table{display:table;width:100%;overflow-x:auto;margin-bottom:1.25rem;border-collapse:collapse;border-spacing:0;border:1px solid #e0e0e0;border-radius:4px;font-size:14.5px}table th{background-color:#f5f5f5}table th,table td{padding:6px 13px;border:1px solid #dfe2e5}.highlight{background:#ffffff}.highlight .c{color:#999988;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#999988;font-style:italic}.highlight .cp{color:#999999;font-weight:bold}.highlight .c1{color:#999988;font-style:italic}.highlight .cs{color:#999999;font-weight:bold;font-style:italic}.highlight .gd{color:#000000;background-color:#ffdddd}.highlight .gd .x{color:#000000;background-color:#ffaaaa}.highlight .ge{font-style:italic}.highlight .gr{color:#aa0000}.highlight .gh{color:#999999}.highlight .gi{color:#000000;background-color:#ddffdd}.highlight .gi .x{color:#000000;background-color:#aaffaa}.highlight .go{color:#888888}.highlight .gp{color:#555555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaaaaa}.highlight .gt{color:#aa0000}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#445588;font-weight:bold}.highlight .m{color:#009999}.highlight .s{color:#d14}.highlight .na{color:#008080}.highlight .nb{color:#0086B3}.highlight .nc{color:#445588;font-weight:bold}.highlight .no{color:#008080}.highlight .ni{color:#800080}.highlight .ne{color:#990000;font-weight:bold}.highlight .nf{color:#990000;font-weight:bold}.highlight .nn{color:#555555}.highlight .nt{color:#000080}.highlight .nv{color:#008080}.highlight .ow{font-weight:bold}.highlight .w{color:#bbbbbb}.highlight .mf{color:#009999}.highlight .mh{color:#009999}.highlight .mi{color:#009999}.highlight .mo{color:#009999}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999999}.highlight .vc{color:#008080}.highlight .vg{color:#008080}.highlight .vi{color:#008080}.highlight .il{color:#009999}.hero{margin:3.75rem auto 0;min-height:16.25rem;width:100%;position:relative;background:#dde5ea url("../img/posts/sleek.jpg") no-repeat 50%/cover}@media (min-width: 62em){.hero{margin:0 auto;height:36em}}.hero::before{position:absolute;display:block;content:"";top:0;left:0;width:100%;height:100%;background:rgba(52,56,81,0.8)}.hero--small{margin:3.75rem auto 0;min-height:8.75rem;width:100%;position:relative}@media (min-width: 62em){.hero--small{height:12.5em}}.hero--small::before{position:absolute;display:block;content:"";top:0;left:0;width:100%;height:100%;background:rgba(52,56,81,0.8)}.hero__wrap{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);text-align:center;color:rgba(255,255,255,0.8);max-width:40em;z-index:1}.hero__wrap .hero__title{color:#fff}@media (min-width: 48em){.hero__wrap .hero__title{font-size:2.625em;line-height:3.125rem}}.page-content{max-width:52.5rem;margin:0 auto;padding:2.5em 0}@media (min-width: 48em){.page-content{padding:3.75rem 0}}.blog{background-color:#f9f9f9}.post-list{padding-top:2.5em;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto}@media (min-width: 48em){.post-list{padding-top:5em}}.post-content{max-width:52.5rem;margin:0 auto;padding-top:2.5em}@media (min-width: 48em){.post-content{padding-top:5em}}.comments{padding:50px 0;background-color:#fafafa}
2
2
 
3
3
  /*# sourceMappingURL=maps/main.css.map */
Binary file
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <browserconfig>
3
+ <msapplication>
4
+ <tile>
5
+ <square150x150logo src="/assets/img/icons/mstile-150x150.png?v=qA3OXqyw77"/>
6
+ <TileColor>#603cba</TileColor>
7
+ </tile>
8
+ </msapplication>
9
+ </browserconfig>
Binary file
Binary file
Binary file
@@ -1 +1 @@
1
- <svg viewBox="0 0 19 16" id="twitter_0b3cb4fd964d541caa34a806e8deb2b4" width="100%" height="100%"><title>Twitter</title><path d="M18.065 7.776a7.259 7.259 0 0 1-2.129.596 3.78 3.78 0 0 0 1.63-2.095 7.315 7.315 0 0 1-2.355.918A3.66 3.66 0 0 0 12.506 6c-2.045 0-3.704 1.696-3.704 3.787 0 .296.031.585.095.862-3.08-.158-5.81-1.664-7.64-3.958a3.845 3.845 0 0 0-.501 1.906c0 1.313.654 2.472 1.649 3.152a3.648 3.648 0 0 1-1.68-.473v.047c0 1.835 1.278 3.366 2.974 3.713a3.647 3.647 0 0 1-1.674.066c.472 1.504 1.84 2.599 3.462 2.628A7.334 7.334 0 0 1 0 19.3C1.64 20.373 3.59 21 5.681 21c6.818 0 10.545-5.77 10.545-10.774 0-.164-.003-.329-.01-.49a7.59 7.59 0 0 0 1.849-1.96" fill="currentColor" fill-rule="evenodd"></path></svg>
1
+ <svg viewBox="0 0 19 16" id="twitter_0b3cb4fd964d541caa34a806e8deb2b4" width="100%" height="100%"><path d="M18.065 7.776a7.259 7.259 0 0 1-2.129.596 3.78 3.78 0 0 0 1.63-2.095 7.315 7.315 0 0 1-2.355.918A3.66 3.66 0 0 0 12.506 6c-2.045 0-3.704 1.696-3.704 3.787 0 .296.031.585.095.862-3.08-.158-5.81-1.664-7.64-3.958a3.845 3.845 0 0 0-.501 1.906c0 1.313.654 2.472 1.649 3.152a3.648 3.648 0 0 1-1.68-.473v.047c0 1.835 1.278 3.366 2.974 3.713a3.647 3.647 0 0 1-1.674.066c.472 1.504 1.84 2.599 3.462 2.628A7.334 7.334 0 0 1 0 19.3C1.64 20.373 3.59 21 5.681 21c6.818 0 10.545-5.77 10.545-10.774 0-.164-.003-.329-.01-.49a7.59 7.59 0 0 0 1.849-1.96" fill="currentColor" fill-rule="evenodd"></path></svg>
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "Sleek",
3
+ "icons": [
4
+ {
5
+ "src": "/assets/img/icons/android-chrome-192x192.png?v=qA3OXqyw77",
6
+ "sizes": "192x192",
7
+ "type": "image/png"
8
+ },
9
+ {
10
+ "src": "/assets/img/icons/android-chrome-256x256.png?v=qA3OXqyw77",
11
+ "sizes": "256x256",
12
+ "type": "image/png"
13
+ }
14
+ ],
15
+ "theme_color": "#ffffff",
16
+ "background_color": "#ffffff",
17
+ "display": "standalone"
18
+ }
Binary file
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="260.000000pt" height="260.000000pt" viewBox="0 0 260.000000 260.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <metadata>
8
+ Created by potrace 1.11, written by Peter Selinger 2001-2013
9
+ </metadata>
10
+ <g transform="translate(0.000000,260.000000) scale(0.100000,-0.100000)"
11
+ fill="#000000" stroke="none">
12
+ <path d="M1237 1809 c-125 -29 -211 -117 -224 -228 -16 -139 56 -233 242 -315
13
+ 176 -77 225 -121 225 -201 0 -99 -70 -151 -189 -143 -80 6 -136 33 -197 94
14
+ l-45 44 -54 -46 -54 -47 25 -33 c82 -106 249 -166 404 -144 184 26 271 118
15
+ 271 286 0 144 -62 216 -262 304 -174 76 -217 122 -198 208 10 44 34 70 78 82
16
+ 84 23 183 1 249 -56 l43 -36 48 43 c27 24 49 49 50 55 2 19 -68 75 -124 100
17
+ -89 41 -201 54 -288 33z"/>
18
+ </g>
19
+ </svg>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/assets/js/bundle.js CHANGED
@@ -1 +1 @@
1
- function ShowHideNav(){var e=0,t=$(".header"),n=$(".header").outerHeight();$(window).scroll(function(){if($(window).width()>=1024){if(!t.hasClass("fixed")){var r=$(this).scrollTop(),i=Math.abs(r-e);r>n?(r>650&&(t.hasClass("fix-nav")||t.addClass("fix-nav")),i>=6&&(r>e?t.hasClass("hide-nav")||t.addClass("hide-nav"):t.hasClass("hide-nav")&&$(t).removeClass("hide-nav"))):r<=0&&(t.removeClass("hide-nav show-nav"),t.addClass("top"))}window.innerHeight+window.scrollY>=document.body.offsetHeight&&t.removeClass("hide-nav"),e=r}else t.addClass("fix-nav")})}function formCheck(){$("#contactBtn").click(function(e){e.preventDefault();var t=$(".form__input input"),n=$(".form__input textarea"),r=!1;$(".form__input").removeClass("error"),$(".error-data").remove();for(var i=0;i<t.length;i++){var o=t[i];$(o).attr("required",!0)&&!validateRequired($(o).val())&&(addErrorData($(o),"This field is required"),r=!0),$(o).attr("required",!0)&&"email"===$(o).attr("type")&&!validateEmail($(o).val())&&(addErrorData($(o),"Email address is invalid"),r=!0),$(n).attr("required",!0)&&!validateRequired($(n).val())&&(addErrorData($(n),"This field is required"),r=!0)}!1===r&&$("#contactForm").submit()})}function validateRequired(e){return""!=e}function validateEmail(e){return""==e||/[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/i.test(e)}function addErrorData(e,t){e.parent().addClass("error"),e.after("<span class='error-data'>"+t+"</span>")}!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";function n(e,t){var n=(t=t||G).createElement("script");n.text=e,t.head.appendChild(n).parentNode.removeChild(n)}function r(e){var t=!!e&&"length"in e&&e.length,n=ue.type(e);return"function"!==n&&!ue.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function i(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}function o(e,t,n){return ue.isFunction(t)?ue.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?ue.grep(e,function(e){return e===t!==n}):"string"!=typeof t?ue.grep(e,function(e){return ee.call(t,e)>-1!==n}):ye.test(t)?ue.filter(t,e,n):(t=ue.filter(t,e),ue.grep(e,function(e){return ee.call(t,e)>-1!==n&&1===e.nodeType}))}function a(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function s(e){return e}function u(e){throw e}function l(e,t,n,r){var i;try{e&&ue.isFunction(i=e.promise)?i.call(e).done(t).fail(n):e&&ue.isFunction(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}function c(){G.removeEventListener("DOMContentLoaded",c),e.removeEventListener("load",c),ue.ready()}function f(){this.expando=ue.expando+f.uid++}function d(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(qe,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:Ae.test(e)?JSON.parse(e):e)}(n)}catch(e){}je.set(e,t,n)}else n=void 0;return n}function p(e,t,n,r){var i,o=1,a=20,s=r?function(){return r.cur()}:function(){return ue.css(e,t,"")},u=s(),l=n&&n[3]||(ue.cssNumber[t]?"":"px"),c=(ue.cssNumber[t]||"px"!==l&&+u)&&He.exec(ue.css(e,t));if(c&&c[3]!==l){l=l||c[3],n=n||[],c=+u||1;do{o=o||".5",c/=o,ue.style(e,t,c+l)}while(o!==(o=s()/u)&&1!==o&&--a)}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}function h(e){var t,n=e.ownerDocument,r=e.nodeName,i=Pe[r];return i||(t=n.body.appendChild(n.createElement(r)),i=ue.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),Pe[r]=i,i)}function g(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=De.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&$e(r)&&(i[o]=h(r))):"none"!==n&&(i[o]="none",De.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}function v(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&i(e,t)?ue.merge([e],n):n}function m(e,t){for(var n=0,r=e.length;n<r;n++)De.set(e[n],"globalEval",!t||De.get(t[n],"globalEval"))}function y(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p<h;p++)if((o=e[p])||0===o)if("object"===ue.type(o))ue.merge(d,o.nodeType?[o]:o);else if(Be.test(o)){for(a=a||f.appendChild(t.createElement("div")),s=(Me.exec(o)||["",""])[1].toLowerCase(),u=We[s]||We._default,a.innerHTML=u[1]+ue.htmlPrefilter(o)+u[2],c=u[0];c--;)a=a.lastChild;ue.merge(d,a.childNodes),(a=f.firstChild).textContent=""}else d.push(t.createTextNode(o));for(f.textContent="",p=0;o=d[p++];)if(r&&ue.inArray(o,r)>-1)i&&i.push(o);else if(l=ue.contains(o.ownerDocument,o),a=v(f.appendChild(o),"script"),l&&m(a),n)for(c=0;o=a[c++];)Ie.test(o.type||"")&&n.push(o);return f}function x(){return!0}function b(){return!1}function w(){try{return G.activeElement}catch(e){}}function T(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)T(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=b;else if(!i)return e;return 1===o&&(a=i,i=function(e){return ue().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=ue.guid++)),e.each(function(){ue.event.add(this,t,i,r,n)})}function C(e,t){return i(e,"table")&&i(11!==t.nodeType?t:t.firstChild,"tr")?ue(">tbody",e)[0]||e:e}function E(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function k(e){var t=Qe.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function S(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(De.hasData(e)&&(o=De.access(e),a=De.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n<r;n++)ue.event.add(t,i,l[i][n])}je.hasData(e)&&(s=je.access(e),u=ue.extend({},s),je.set(t,u))}}function N(e,t){var n=t.nodeName.toLowerCase();"input"===n&&Re.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function D(e,t,r,i){t=K.apply([],t);var o,a,s,u,l,c,f=0,d=e.length,p=d-1,h=t[0],g=ue.isFunction(h);if(g||d>1&&"string"==typeof h&&!ae.checkClone&&Ge.test(h))return e.each(function(n){var o=e.eq(n);g&&(t[0]=h.call(this,n,o.html())),D(o,t,r,i)});if(d&&(o=y(t,e[0].ownerDocument,!1,e,i),a=o.firstChild,1===o.childNodes.length&&(o=a),a||i)){for(u=(s=ue.map(v(o,"script"),E)).length;f<d;f++)l=o,f!==p&&(l=ue.clone(l,!0,!0),u&&ue.merge(s,v(l,"script"))),r.call(e[f],l,f);if(u)for(c=s[s.length-1].ownerDocument,ue.map(s,k),f=0;f<u;f++)l=s[f],Ie.test(l.type||"")&&!De.access(l,"globalEval")&&ue.contains(c,l)&&(l.src?ue._evalUrl&&ue._evalUrl(l.src):n(l.textContent.replace(Je,""),c))}return e}function j(e,t,n){for(var r,i=t?ue.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||ue.cleanData(v(r)),r.parentNode&&(n&&ue.contains(r.ownerDocument,r)&&m(v(r,"script")),r.parentNode.removeChild(r));return e}function A(e,t,n){var r,i,o,a,s=e.style;return(n=n||et(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ue.contains(e.ownerDocument,e)||(a=ue.style(e,t)),!ae.pixelMarginRight()&&Ze.test(a)&&Ke.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function q(e,t){return{get:function(){return e()?void delete this.get:(this.get=t).apply(this,arguments)}}}function L(e){var t=ue.cssProps[e];return t||(t=ue.cssProps[e]=function(e){if(e in at)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=ot.length;n--;)if((e=ot[n]+t)in at)return e}(e)||e),t}function H(e,t,n){var r=He.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function F(e,t,n,r,i){var o,a=0;for(o=n===(r?"border":"content")?4:"width"===t?1:0;o<4;o+=2)"margin"===n&&(a+=ue.css(e,n+Fe[o],!0,i)),r?("content"===n&&(a-=ue.css(e,"padding"+Fe[o],!0,i)),"margin"!==n&&(a-=ue.css(e,"border"+Fe[o]+"Width",!0,i))):(a+=ue.css(e,"padding"+Fe[o],!0,i),"padding"!==n&&(a+=ue.css(e,"border"+Fe[o]+"Width",!0,i)));return a}function $(e,t,n){var r,i=et(e),o=A(e,t,i),a="border-box"===ue.css(e,"boxSizing",!1,i);return Ze.test(o)?o:(r=a&&(ae.boxSizingReliable()||o===e.style[t]),"auto"===o&&(o=e["offset"+t[0].toUpperCase()+t.slice(1)]),(o=parseFloat(o)||0)+F(e,t,n||(a?"border":"content"),r,i)+"px")}function O(e,t,n,r,i){return new O.prototype.init(e,t,n,r,i)}function P(){ut&&(!1===G.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(P):e.setTimeout(P,ue.fx.interval),ue.fx.tick())}function R(){return e.setTimeout(function(){st=void 0}),st=ue.now()}function M(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)n=Fe[r],i["margin"+n]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function I(e,t,n){for(var r,i=(W.tweeners[t]||[]).concat(W.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function W(e,t,n){var r,i,o=0,a=W.prefilters.length,s=ue.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;for(var t=st||R(),n=Math.max(0,l.startTime+l.duration-t),r=1-(n/l.duration||0),o=0,a=l.tweens.length;o<a;o++)l.tweens[o].run(r);return s.notifyWith(e,[l,r,n]),r<1&&a?n:(a||s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:ue.extend({},t),opts:ue.extend(!0,{specialEasing:{},easing:ue.easing._default},n),originalProperties:t,originalOptions:n,startTime:st||R(),duration:n.duration,tweens:[],createTween:function(t,n){var r=ue.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)l.tweens[n].run(1);return t?(s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l,t])):s.rejectWith(e,[l,t]),this}}),c=l.props;for(function(e,t){var n,r,i,o,a;for(n in e)if(r=ue.camelCase(n),i=t[r],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=ue.cssHooks[r])&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}(c,l.opts.specialEasing);o<a;o++)if(r=W.prefilters[o].call(l,e,c,l.opts))return ue.isFunction(r.stop)&&(ue._queueHooks(l.elem,l.opts.queue).stop=ue.proxy(r.stop,r)),r;return ue.map(c,I,l),ue.isFunction(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),ue.fx.timer(ue.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l}function B(e){return(e.match(Ce)||[]).join(" ")}function _(e){return e.getAttribute&&e.getAttribute("class")||""}function z(e,t,n,r){var i;if(Array.isArray(t))ue.each(t,function(t,i){n||bt.test(e)?r(e,i):z(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==ue.type(t))r(e,t);else for(i in t)z(e+"["+i+"]",t[i],n,r)}function X(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(Ce)||[];if(ue.isFunction(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function U(e,t,n,r){function i(s){var u;return o[s]=!0,ue.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||a||o[l]?a?!(u=l):void 0:(t.dataTypes.unshift(l),i(l),!1)}),u}var o={},a=e===qt;return i(t.dataTypes[0])||!o["*"]&&i("*")}function V(e,t){var n,r,i=ue.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&ue.extend(!0,e,r),e}var Y=[],G=e.document,Q=Object.getPrototypeOf,J=Y.slice,K=Y.concat,Z=Y.push,ee=Y.indexOf,te={},ne=te.toString,re=te.hasOwnProperty,ie=re.toString,oe=ie.call(Object),ae={},se="3.2.1",ue=function(e,t){return new ue.fn.init(e,t)},le=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,ce=/^-ms-/,fe=/-([a-z])/g,de=function(e,t){return t.toUpperCase()};ue.fn=ue.prototype={jquery:se,constructor:ue,length:0,toArray:function(){return J.call(this)},get:function(e){return null==e?J.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=ue.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return ue.each(this,e)},map:function(e){return this.pushStack(ue.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(J.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:Z,sort:Y.sort,splice:Y.splice},ue.extend=ue.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||ue.isFunction(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)n=a[t],r=e[t],a!==r&&(l&&r&&(ue.isPlainObject(r)||(i=Array.isArray(r)))?(i?(i=!1,o=n&&Array.isArray(n)?n:[]):o=n&&ue.isPlainObject(n)?n:{},a[t]=ue.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},ue.extend({expando:"jQuery"+(se+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===ue.type(e)},isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){var t=ue.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==ne.call(e)||(t=Q(e))&&("function"!=typeof(n=re.call(t,"constructor")&&t.constructor)||ie.call(n)!==oe))},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?te[ne.call(e)]||"object":typeof e},globalEval:function(e){n(e)},camelCase:function(e){return e.replace(ce,"ms-").replace(fe,de)},each:function(e,t){var n,i=0;if(r(e))for(n=e.length;i<n&&!1!==t.call(e[i],i,e[i]);i++);else for(i in e)if(!1===t.call(e[i],i,e[i]))break;return e},trim:function(e){return null==e?"":(e+"").replace(le,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(r(Object(e))?ue.merge(n,"string"==typeof e?[e]:e):Z.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:ee.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var i,o,a=0,s=[];if(r(e))for(i=e.length;a<i;a++)null!=(o=t(e[a],a,n))&&s.push(o);else for(a in e)null!=(o=t(e[a],a,n))&&s.push(o);return K.apply([],s)},guid:1,proxy:function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),ue.isFunction(e))return r=J.call(arguments,2),i=function(){return e.apply(t||this,r.concat(J.call(arguments)))},i.guid=e.guid=e.guid||ue.guid++,i},now:Date.now,support:ae}),"function"==typeof Symbol&&(ue.fn[Symbol.iterator]=Y[Symbol.iterator]),ue.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){te["[object "+t+"]"]=t.toLowerCase()});var pe=function(e){function t(e,t,n,r){var i,o,a,s,u,l,c,d=t&&t.ownerDocument,h=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==h&&9!==h&&11!==h)return n;if(!r&&((t?t.ownerDocument||t:I)!==L&&q(t),t=t||L,F)){if(11!==h&&(u=ve.exec(e)))if(i=u[1]){if(9===h){if(!(a=t.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(d&&(a=d.getElementById(i))&&R(t,a)&&a.id===i)return n.push(a),n}else{if(u[2])return J.apply(n,t.getElementsByTagName(e)),n;if((i=u[3])&&w.getElementsByClassName&&t.getElementsByClassName)return J.apply(n,t.getElementsByClassName(i)),n}if(w.qsa&&!X[e+" "]&&(!$||!$.test(e))){if(1!==h)d=t,c=e;else if("object"!==t.nodeName.toLowerCase()){for((s=t.getAttribute("id"))?s=s.replace(be,we):t.setAttribute("id",s=M),o=(l=k(e)).length;o--;)l[o]="#"+s+" "+p(l[o]);c=l.join(","),d=me.test(e)&&f(t.parentNode)||t}if(c)try{return J.apply(n,d.querySelectorAll(c)),n}catch(e){}finally{s===M&&t.removeAttribute("id")}}}return N(e.replace(ae,"$1"),t,n,r)}function n(){function e(n,r){return t.push(n+" ")>T.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[M]=!0,e}function i(e){var t=L.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function o(e,t){for(var n=e.split("|"),r=n.length;r--;)T.attrHandle[n[r]]=t}function a(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function u(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function l(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&Ce(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function c(e){return r(function(t){return t=+t,r(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function f(e){return e&&void 0!==e.getElementsByTagName&&e}function d(){}function p(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function h(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,s=B++;return t.first?function(t,n,i){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,u){var l,c,f,d=[W,s];if(u){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(f=t[M]||(t[M]={}),c=f[t.uniqueID]||(f[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((l=c[o])&&l[0]===W&&l[1]===s)return d[2]=l[2];if(c[o]=d,d[2]=e(t,n,u))return!0}return!1}}function g(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function v(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function m(e,n,i,o,a,s){return o&&!o[M]&&(o=m(o)),a&&!a[M]&&(a=m(a,s)),r(function(r,s,u,l){var c,f,d,p=[],h=[],g=s.length,m=r||function(e,n,r){for(var i=0,o=n.length;i<o;i++)t(e,n[i],r);return r}(n||"*",u.nodeType?[u]:u,[]),y=!e||!r&&n?m:v(m,p,e,u,l),x=i?a||(r?e:g||o)?[]:s:y;if(i&&i(y,x,u,l),o)for(c=v(x,h),o(c,[],u,l),f=c.length;f--;)(d=c[f])&&(x[h[f]]=!(y[h[f]]=d));if(r){if(a||e){if(a){for(c=[],f=x.length;f--;)(d=x[f])&&c.push(y[f]=d);a(null,x=[],c,l)}for(f=x.length;f--;)(d=x[f])&&(c=a?Z(r,d):p[f])>-1&&(r[c]=!(s[c]=d))}}else x=v(x===s?x.splice(g,x.length):x),a?a(null,s,x,l):J.apply(s,x)})}function y(e){for(var t,n,r,i=e.length,o=T.relative[e[0].type],a=o||T.relative[" "],s=o?1:0,u=h(function(e){return e===t},a,!0),l=h(function(e){return Z(t,e)>-1},a,!0),c=[function(e,n,r){var i=!o&&(r||n!==D)||((t=n).nodeType?u(e,n,r):l(e,n,r));return t=null,i}];s<i;s++)if(n=T.relative[e[s].type])c=[h(g(c),n)];else{if((n=T.filter[e[s].type].apply(null,e[s].matches))[M]){for(r=++s;r<i&&!T.relative[e[r].type];r++);return m(s>1&&g(c),s>1&&p(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(ae,"$1"),n,s<r&&y(e.slice(s,r)),r<i&&y(e=e.slice(r)),r<i&&p(e))}c.push(n)}return g(c)}function x(e,n){var i=n.length>0,o=e.length>0,a=function(r,a,s,u,l){var c,f,d,p=0,h="0",g=r&&[],m=[],y=D,x=r||o&&T.find.TAG("*",l),b=W+=null==y?1:Math.random()||.1,w=x.length;for(l&&(D=a===L||a||l);h!==w&&null!=(c=x[h]);h++){if(o&&c){for(f=0,a||c.ownerDocument===L||(q(c),s=!F);d=e[f++];)if(d(c,a||L,s)){u.push(c);break}l&&(W=b)}i&&((c=!d&&c)&&p--,r&&g.push(c))}if(p+=h,i&&h!==p){for(f=0;d=n[f++];)d(g,m,a,s);if(r){if(p>0)for(;h--;)g[h]||m[h]||(m[h]=G.call(u));m=v(m)}J.apply(u,m),l&&!r&&m.length>0&&p+n.length>1&&t.uniqueSort(u)}return l&&(W=b,D=y),g};return i?r(a):a}var b,w,T,C,E,k,S,N,D,j,A,q,L,H,F,$,O,P,R,M="sizzle"+1*new Date,I=e.document,W=0,B=0,_=n(),z=n(),X=n(),U=function(e,t){return e===t&&(A=!0),0},V={}.hasOwnProperty,Y=[],G=Y.pop,Q=Y.push,J=Y.push,K=Y.slice,Z=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},ee="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",te="[\\x20\\t\\r\\n\\f]",ne="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",re="\\["+te+"*("+ne+")(?:"+te+"*([*^$|!~]?=)"+te+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+ne+"))|)"+te+"*\\]",ie=":("+ne+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+re+")*)|.*)\\)|)",oe=new RegExp(te+"+","g"),ae=new RegExp("^"+te+"+|((?:^|[^\\\\])(?:\\\\.)*)"+te+"+$","g"),se=new RegExp("^"+te+"*,"+te+"*"),ue=new RegExp("^"+te+"*([>+~]|"+te+")"+te+"*"),le=new RegExp("="+te+"*([^\\]'\"]*?)"+te+"*\\]","g"),ce=new RegExp(ie),fe=new RegExp("^"+ne+"$"),de={ID:new RegExp("^#("+ne+")"),CLASS:new RegExp("^\\.("+ne+")"),TAG:new RegExp("^("+ne+"|[*])"),ATTR:new RegExp("^"+re),PSEUDO:new RegExp("^"+ie),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+te+"*(even|odd|(([+-]|)(\\d*)n|)"+te+"*(?:([+-]|)"+te+"*(\\d+)|))"+te+"*\\)|)","i"),bool:new RegExp("^(?:"+ee+")$","i"),needsContext:new RegExp("^"+te+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+te+"*((?:-\\d)?\\d*)"+te+"*\\)|)(?=[^-]|$)","i")},pe=/^(?:input|select|textarea|button)$/i,he=/^h\d$/i,ge=/^[^{]+\{\s*\[native \w/,ve=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,me=/[+~]/,ye=new RegExp("\\\\([\\da-f]{1,6}"+te+"?|("+te+")|.)","ig"),xe=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},be=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,we=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},Te=function(){q()},Ce=h(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{J.apply(Y=K.call(I.childNodes),I.childNodes),Y[I.childNodes.length].nodeType}catch(e){J={apply:Y.length?function(e,t){Q.apply(e,K.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}w=t.support={},E=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},q=t.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:I;return r!==L&&9===r.nodeType&&r.documentElement?(L=r,H=L.documentElement,F=!E(L),I!==L&&(n=L.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",Te,!1):n.attachEvent&&n.attachEvent("onunload",Te)),w.attributes=i(function(e){return e.className="i",!e.getAttribute("className")}),w.getElementsByTagName=i(function(e){return e.appendChild(L.createComment("")),!e.getElementsByTagName("*").length}),w.getElementsByClassName=ge.test(L.getElementsByClassName),w.getById=i(function(e){return H.appendChild(e).id=M,!L.getElementsByName||!L.getElementsByName(M).length}),w.getById?(T.filter.ID=function(e){var t=e.replace(ye,xe);return function(e){return e.getAttribute("id")===t}},T.find.ID=function(e,t){if(void 0!==t.getElementById&&F){var n=t.getElementById(e);return n?[n]:[]}}):(T.filter.ID=function(e){var t=e.replace(ye,xe);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},T.find.ID=function(e,t){if(void 0!==t.getElementById&&F){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),T.find.TAG=w.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):w.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},T.find.CLASS=w.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&F)return t.getElementsByClassName(e)},O=[],$=[],(w.qsa=ge.test(L.querySelectorAll))&&(i(function(e){H.appendChild(e).innerHTML="<a id='"+M+"'></a><select id='"+M+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&$.push("[*^$]="+te+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||$.push("\\["+te+"*(?:value|"+ee+")"),e.querySelectorAll("[id~="+M+"-]").length||$.push("~="),e.querySelectorAll(":checked").length||$.push(":checked"),e.querySelectorAll("a#"+M+"+*").length||$.push(".#.+[+~]")}),i(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=L.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&$.push("name"+te+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&$.push(":enabled",":disabled"),H.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&$.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),$.push(",.*:")})),(w.matchesSelector=ge.test(P=H.matches||H.webkitMatchesSelector||H.mozMatchesSelector||H.oMatchesSelector||H.msMatchesSelector))&&i(function(e){w.disconnectedMatch=P.call(e,"*"),P.call(e,"[s!='']:x"),O.push("!=",ie)}),$=$.length&&new RegExp($.join("|")),O=O.length&&new RegExp(O.join("|")),t=ge.test(H.compareDocumentPosition),R=t||ge.test(H.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},U=t?function(e,t){if(e===t)return A=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!w.sortDetached&&t.compareDocumentPosition(e)===n?e===L||e.ownerDocument===I&&R(I,e)?-1:t===L||t.ownerDocument===I&&R(I,t)?1:j?Z(j,e)-Z(j,t):0:4&n?-1:1)}:function(e,t){if(e===t)return A=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,s=[e],u=[t];if(!i||!o)return e===L?-1:t===L?1:i?-1:o?1:j?Z(j,e)-Z(j,t):0;if(i===o)return a(e,t);for(n=e;n=n.parentNode;)s.unshift(n);for(n=t;n=n.parentNode;)u.unshift(n);for(;s[r]===u[r];)r++;return r?a(s[r],u[r]):s[r]===I?-1:u[r]===I?1:0},L):L},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==L&&q(e),n=n.replace(le,"='$1']"),w.matchesSelector&&F&&!X[n+" "]&&(!O||!O.test(n))&&(!$||!$.test(n)))try{var r=P.call(e,n);if(r||w.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return t(n,L,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==L&&q(e),R(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==L&&q(e);var n=T.attrHandle[t.toLowerCase()],r=n&&V.call(T.attrHandle,t.toLowerCase())?n(e,t,!F):void 0;return void 0!==r?r:w.attributes||!F?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.escape=function(e){return(e+"").replace(be,we)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,i=0;if(A=!w.detectDuplicates,j=!w.sortStable&&e.slice(0),e.sort(U),A){for(;t=e[i++];)t===e[i]&&(r=n.push(i));for(;r--;)e.splice(n[r],1)}return j=null,e},C=t.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=C(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=C(t);return n},(T=t.selectors={cacheLength:50,createPseudo:r,match:de,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(ye,xe),e[3]=(e[3]||e[4]||e[5]||"").replace(ye,xe),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return de.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&ce.test(n)&&(t=k(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(ye,xe).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=_[e+" "];return t||(t=new RegExp("(^|"+te+")"+e+"("+te+"|$)"))&&_(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(i){var o=t.attr(i,e);return null==o?"!="===n:!n||(o+="","="===n?o===r:"!="===n?o!==r:"^="===n?r&&0===o.indexOf(r):"*="===n?r&&o.indexOf(r)>-1:"$="===n?r&&o.slice(-r.length)===r:"~="===n?(" "+o.replace(oe," ")+" ").indexOf(r)>-1:"|="===n&&(o===r||o.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,d,p,h,g=o!==a?"nextSibling":"previousSibling",v=t.parentNode,m=s&&t.nodeName.toLowerCase(),y=!u&&!s,x=!1;if(v){if(o){for(;g;){for(d=t;d=d[g];)if(s?d.nodeName.toLowerCase()===m:1===d.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&y){for(x=(p=(l=(c=(f=(d=v)[M]||(d[M]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===W&&l[1])&&l[2],d=p&&v.childNodes[p];d=++p&&d&&d[g]||(x=p=0)||h.pop();)if(1===d.nodeType&&++x&&d===t){c[e]=[W,p,x];break}}else if(y&&(d=t,f=d[M]||(d[M]={}),c=f[d.uniqueID]||(f[d.uniqueID]={}),l=c[e]||[],p=l[0]===W&&l[1],x=p),!1===x)for(;(d=++p&&d&&d[g]||(x=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==m:1!==d.nodeType)||!++x||(y&&(f=d[M]||(d[M]={}),c=f[d.uniqueID]||(f[d.uniqueID]={}),c[e]=[W,x]),d!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,n){var i,o=T.pseudos[e]||T.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return o[M]?o(n):o.length>1?(i=[e,e,"",n],T.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,i=o(e,n),a=i.length;a--;)r=Z(e,i[a]),e[r]=!(t[r]=i[a])}):function(e){return o(e,0,i)}):o}},pseudos:{not:r(function(e){var t=[],n=[],i=S(e.replace(ae,"$1"));return i[M]?r(function(e,t,n,r){for(var o,a=i(e,null,r,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,r,o){return t[0]=e,i(t,null,o,n),t[0]=null,!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return e=e.replace(ye,xe),function(t){return(t.textContent||t.innerText||C(t)).indexOf(e)>-1}}),lang:r(function(e){return fe.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(ye,xe).toLowerCase(),function(t){var n;do{if(n=F?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===H},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:l(!1),disabled:l(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!T.pseudos.empty(e)},header:function(e){return he.test(e.nodeName)},input:function(e){return pe.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:c(function(){return[0]}),last:c(function(e,t){return[t-1]}),eq:c(function(e,t,n){return[n<0?n+t:n]}),even:c(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:c(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:c(function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e}),gt:c(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=T.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})T.pseudos[b]=s(b);for(b in{submit:!0,reset:!0})T.pseudos[b]=u(b);return d.prototype=T.filters=T.pseudos,T.setFilters=new d,k=t.tokenize=function(e,n){var r,i,o,a,s,u,l,c=z[e+" "];if(c)return n?0:c.slice(0);for(s=e,u=[],l=T.preFilter;s;){r&&!(i=se.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),r=!1,(i=ue.exec(s))&&(r=i.shift(),o.push({value:r,type:i[0].replace(ae," ")}),s=s.slice(r.length));for(a in T.filter)!(i=de[a].exec(s))||l[a]&&!(i=l[a](i))||(r=i.shift(),o.push({value:r,type:a,matches:i}),s=s.slice(r.length));if(!r)break}return n?s.length:s?t.error(e):z(e,u).slice(0)},S=t.compile=function(e,t){var n,r=[],i=[],o=X[e+" "];if(!o){for(t||(t=k(e)),n=t.length;n--;)(o=y(t[n]))[M]?r.push(o):i.push(o);(o=X(e,x(i,r))).selector=e}return o},N=t.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&k(e=l.selector||e);if(n=n||[],1===c.length){if((o=c[0]=c[0].slice(0)).length>2&&"ID"===(a=o[0]).type&&9===t.nodeType&&F&&T.relative[o[1].type]){if(!(t=(T.find.ID(a.matches[0].replace(ye,xe),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}for(i=de.needsContext.test(e)?0:o.length;i--&&(a=o[i],!T.relative[s=a.type]);)if((u=T.find[s])&&(r=u(a.matches[0].replace(ye,xe),me.test(o[0].type)&&f(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&p(o)))return J.apply(n,r),n;break}}return(l||S(e,c))(r,t,!F,n,!t||me.test(e)&&f(t.parentNode)||t),n},w.sortStable=M.split("").sort(U).join("")===M,w.detectDuplicates=!!A,q(),w.sortDetached=i(function(e){return 1&e.compareDocumentPosition(L.createElement("fieldset"))}),i(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||o("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),w.attributes&&i(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||o("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),i(function(e){return null==e.getAttribute("disabled")})||o(ee,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(e);ue.find=pe,ue.expr=pe.selectors,ue.expr[":"]=ue.expr.pseudos,ue.uniqueSort=ue.unique=pe.uniqueSort,ue.text=pe.getText,ue.isXMLDoc=pe.isXML,ue.contains=pe.contains,ue.escapeSelector=pe.escape;var he=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&ue(e).is(n))break;r.push(e)}return r},ge=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},ve=ue.expr.match.needsContext,me=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,ye=/^.[^:#\[\.,]*$/;ue.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?ue.find.matchesSelector(r,e)?[r]:[]:ue.find.matches(e,ue.grep(t,function(e){return 1===e.nodeType}))},ue.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(ue(e).filter(function(){for(t=0;t<r;t++)if(ue.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)ue.find(e,i[t],n);return r>1?ue.uniqueSort(n):n},filter:function(e){return this.pushStack(o(this,e||[],!1))},not:function(e){return this.pushStack(o(this,e||[],!0))},is:function(e){return!!o(this,"string"==typeof e&&ve.test(e)?ue(e):e||[],!1).length}});var xe,be=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(ue.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||xe,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:be.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ue?t[0]:t,ue.merge(this,ue.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:G,!0)),me.test(r[1])&&ue.isPlainObject(t))for(r in t)ue.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=G.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):ue.isFunction(e)?void 0!==n.ready?n.ready(e):e(ue):ue.makeArray(e,this)}).prototype=ue.fn,xe=ue(G);var we=/^(?:parents|prev(?:Until|All))/,Te={children:!0,contents:!0,next:!0,prev:!0};ue.fn.extend({has:function(e){var t=ue(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(ue.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&ue(e);if(!ve.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&ue.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?ue.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?ee.call(ue(e),this[0]):ee.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(ue.uniqueSort(ue.merge(this.get(),ue(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),ue.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return he(e,"parentNode")},parentsUntil:function(e,t,n){return he(e,"parentNode",n)},next:function(e){return a(e,"nextSibling")},prev:function(e){return a(e,"previousSibling")},nextAll:function(e){return he(e,"nextSibling")},prevAll:function(e){return he(e,"previousSibling")},nextUntil:function(e,t,n){return he(e,"nextSibling",n)},prevUntil:function(e,t,n){return he(e,"previousSibling",n)},siblings:function(e){return ge((e.parentNode||{}).firstChild,e)},children:function(e){return ge(e.firstChild)},contents:function(e){return i(e,"iframe")?e.contentDocument:(i(e,"template")&&(e=e.content||e),ue.merge([],e.childNodes))}},function(e,t){ue.fn[e]=function(n,r){var i=ue.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=ue.filter(r,i)),this.length>1&&(Te[e]||ue.uniqueSort(i),we.test(e)&&i.reverse()),this.pushStack(i)}});var Ce=/[^\x20\t\r\n\f]+/g;ue.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return ue.each(e.match(Ce)||[],function(e,n){t[n]=!0}),t}(e):ue.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},l={add:function(){return o&&(n&&!t&&(s=o.length-1,a.push(n)),function t(n){ue.each(n,function(n,r){ue.isFunction(r)?e.unique&&l.has(r)||o.push(r):r&&r.length&&"string"!==ue.type(r)&&t(r)})}(arguments),n&&!t&&u()),this},remove:function(){return ue.each(arguments,function(e,t){for(var n;(n=ue.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?ue.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=n||[],n=[e,n.slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},ue.extend({Deferred:function(t){var n=[["notify","progress",ue.Callbacks("memory"),ue.Callbacks("memory"),2],["resolve","done",ue.Callbacks("once memory"),ue.Callbacks("once memory"),0,"resolved"],["reject","fail",ue.Callbacks("once memory"),ue.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return ue.Deferred(function(t){ue.each(n,function(n,r){var i=ue.isFunction(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&ue.isFunction(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){function o(t,n,r,i){return function(){var l=this,c=arguments,f=function(){var e,f;if(!(t<a)){if((e=r.apply(l,c))===n.promise())throw new TypeError("Thenable self-resolution");f=e&&("object"==typeof e||"function"==typeof e)&&e.then,ue.isFunction(f)?i?f.call(e,o(a,n,s,i),o(a,n,u,i)):(a++,f.call(e,o(a,n,s,i),o(a,n,u,i),o(a,n,s,n.notifyWith))):(r!==s&&(l=void 0,c=[e]),(i||n.resolveWith)(l,c))}},d=i?f:function(){try{f()}catch(e){ue.Deferred.exceptionHook&&ue.Deferred.exceptionHook(e,d.stackTrace),t+1>=a&&(r!==u&&(l=void 0,c=[e]),n.rejectWith(l,c))}};t?d():(ue.Deferred.getStackHook&&(d.stackTrace=ue.Deferred.getStackHook()),e.setTimeout(d))}}var a=0;return ue.Deferred(function(e){n[0][3].add(o(0,e,ue.isFunction(i)?i:s,e.notifyWith)),n[1][3].add(o(0,e,ue.isFunction(t)?t:s)),n[2][3].add(o(0,e,ue.isFunction(r)?r:u))}).promise()},promise:function(e){return null!=e?ue.extend(e,i):i}},o={};return ue.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[0][2].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=J.call(arguments),o=ue.Deferred(),a=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?J.call(arguments):n,--t||o.resolveWith(r,i)}};if(t<=1&&(l(e,o.done(a(n)).resolve,o.reject,!t),"pending"===o.state()||ue.isFunction(i[n]&&i[n].then)))return o.then();for(;n--;)l(i[n],a(n),o.reject);return o.promise()}});var Ee=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;ue.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&Ee.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},ue.readyException=function(t){e.setTimeout(function(){throw t})};var ke=ue.Deferred();ue.fn.ready=function(e){return ke.then(e).catch(function(e){ue.readyException(e)}),this},ue.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--ue.readyWait:ue.isReady)||(ue.isReady=!0,!0!==e&&--ue.readyWait>0||ke.resolveWith(G,[ue]))}}),ue.ready.then=ke.then,"complete"===G.readyState||"loading"!==G.readyState&&!G.documentElement.doScroll?e.setTimeout(ue.ready):(G.addEventListener("DOMContentLoaded",c),e.addEventListener("load",c));var Se=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===ue.type(n)){i=!0;for(s in n)Se(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,ue.isFunction(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(ue(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},Ne=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};f.uid=1,f.prototype={cache:function(e){var t=e[this.expando];return t||(t={},Ne(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[ue.camelCase(t)]=n;else for(r in t)i[ue.camelCase(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][ue.camelCase(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){Array.isArray(t)?t=t.map(ue.camelCase):(t=ue.camelCase(t),t=t in r?[t]:t.match(Ce)||[]),n=t.length;for(;n--;)delete r[t[n]]}(void 0===t||ue.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!ue.isEmptyObject(t)}};var De=new f,je=new f,Ae=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,qe=/[A-Z]/g;ue.extend({hasData:function(e){return je.hasData(e)||De.hasData(e)},data:function(e,t,n){return je.access(e,t,n)},removeData:function(e,t){je.remove(e,t)},_data:function(e,t,n){return De.access(e,t,n)},_removeData:function(e,t){De.remove(e,t)}}),ue.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=je.get(o),1===o.nodeType&&!De.get(o,"hasDataAttrs"))){for(n=a.length;n--;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=ue.camelCase(r.slice(5)),d(o,r,i[r]));De.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each(function(){je.set(this,e)}):Se(this,function(t){var n;if(o&&void 0===t){if(void 0!==(n=je.get(o,e)))return n;if(void 0!==(n=d(o,e)))return n}else this.each(function(){je.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){je.remove(this,e)})}}),ue.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=De.get(e,t),n&&(!r||Array.isArray(n)?r=De.access(e,t,ue.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=ue.queue(e,t),r=n.length,i=n.shift(),o=ue._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){ue.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return De.get(e,n)||De.access(e,n,{empty:ue.Callbacks("once memory").add(function(){De.remove(e,[t+"queue",n])})})}}),ue.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?ue.queue(this[0],e):void 0===t?this:this.each(function(){var n=ue.queue(this,e,t);ue._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&ue.dequeue(this,e)})},dequeue:function(e){return this.each(function(){ue.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=ue.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)(n=De.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var Le=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,He=new RegExp("^(?:([+-])=|)("+Le+")([a-z%]*)$","i"),Fe=["Top","Right","Bottom","Left"],$e=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ue.contains(e.ownerDocument,e)&&"none"===ue.css(e,"display")},Oe=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i},Pe={};ue.fn.extend({show:function(){return g(this,!0)},hide:function(){return g(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){$e(this)?ue(this).show():ue(this).hide()})}});var Re=/^(?:checkbox|radio)$/i,Me=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,Ie=/^$|\/(?:java|ecma)script/i,We={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};We.optgroup=We.option,We.tbody=We.tfoot=We.colgroup=We.caption=We.thead,We.th=We.td;var Be=/<|&#?\w+;/;!function(){var e=G.createDocumentFragment().appendChild(G.createElement("div")),t=G.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),ae.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="<textarea>x</textarea>",ae.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var _e=G.documentElement,ze=/^key/,Xe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ue=/^([^.]*)(?:\.(.+)|)/;ue.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,d,p,h,g,v=De.get(e);if(v)for(n.handler&&(o=n,n=o.handler,i=o.selector),i&&ue.find.matchesSelector(_e,i),n.guid||(n.guid=ue.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(t){return void 0!==ue&&ue.event.triggered!==t.type?ue.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(Ce)||[""]).length;l--;)s=Ue.exec(t[l])||[],p=g=s[1],h=(s[2]||"").split(".").sort(),p&&(f=ue.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=ue.event.special[p]||{},c=ue.extend({type:p,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&ue.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=u[p])||(d=u[p]=[],d.delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,c):d.push(c),ue.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,d,p,h,g,v=De.hasData(e)&&De.get(e);if(v&&(u=v.events)){for(l=(t=(t||"").match(Ce)||[""]).length;l--;)if(s=Ue.exec(t[l])||[],p=g=s[1],h=(s[2]||"").split(".").sort(),p){for(f=ue.event.special[p]||{},d=u[p=(r?f.delegateType:f.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)c=d[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(d.splice(o,1),c.selector&&d.delegateCount--,f.remove&&f.remove.call(e,c));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||ue.removeEvent(e,p,v.handle),delete u[p])}else for(p in u)ue.event.remove(e,p+t[l],n,r,!0);ue.isEmptyObject(u)&&De.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=ue.event.fix(e),u=new Array(arguments.length),l=(De.get(this,"events")||{})[s.type]||[],c=ue.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){for(a=ue.event.handlers.call(this,s,l),t=0;(i=a[t++])&&!s.isPropagationStopped();)for(s.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!s.isImmediatePropagationStopped();)s.rnamespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((ue.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)r=t[n],i=r.selector+" ",void 0===a[i]&&(a[i]=r.needsContext?ue(i,this).index(l)>-1:ue.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(e,t){Object.defineProperty(ue.Event.prototype,e,{enumerable:!0,configurable:!0,get:ue.isFunction(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[ue.expando]?e:new ue.Event(e)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==w()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===w()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&i(this,"input"))return this.click(),!1},_default:function(e){return i(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},ue.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},ue.Event=function(e,t){return this instanceof ue.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?x:b,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&ue.extend(this,t),this.timeStamp=e&&e.timeStamp||ue.now(),void(this[ue.expando]=!0)):new ue.Event(e,t)},ue.Event.prototype={constructor:ue.Event,isDefaultPrevented:b,isPropagationStopped:b,isImmediatePropagationStopped:b,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=x,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=x,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=x,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},ue.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&ze.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Xe.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},ue.event.addProp),ue.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){ue.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=e.relatedTarget,i=e.handleObj;return r&&(r===this||ue.contains(this,r))||(e.type=i.origType,n=i.handler.apply(this,arguments),e.type=t),n}}}),ue.fn.extend({on:function(e,t,n,r){return T(this,e,t,n,r)},one:function(e,t,n,r){return T(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,ue(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=b),this.each(function(){ue.event.remove(this,e,n,t)})}});var Ve=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,Ye=/<script|<style|<link/i,Ge=/checked\s*(?:[^=]|=\s*.checked.)/i,Qe=/^true\/(.*)/,Je=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;ue.extend({htmlPrefilter:function(e){return e.replace(Ve,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=ue.contains(e.ownerDocument,e);if(!(ae.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||ue.isXMLDoc(e)))for(a=v(s),o=v(e),r=0,i=o.length;r<i;r++)N(o[r],a[r]);if(t)if(n)for(o=o||v(e),a=a||v(s),r=0,i=o.length;r<i;r++)S(o[r],a[r]);else S(e,s);return(a=v(s,"script")).length>0&&m(a,!u&&v(e,"script")),s},cleanData:function(e){for(var t,n,r,i=ue.event.special,o=0;void 0!==(n=e[o]);o++)if(Ne(n)){if(t=n[De.expando]){if(t.events)for(r in t.events)i[r]?ue.event.remove(n,r):ue.removeEvent(n,r,t.handle);n[De.expando]=void 0}n[je.expando]&&(n[je.expando]=void 0)}}}),ue.fn.extend({detach:function(e){return j(this,e,!0)},remove:function(e){return j(this,e)},text:function(e){return Se(this,function(e){return void 0===e?ue.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return D(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){C(this,e).appendChild(e)}})},prepend:function(){return D(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=C(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return D(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return D(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(ue.cleanData(v(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return ue.clone(this,e,t)})},html:function(e){return Se(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ye.test(e)&&!We[(Me.exec(e)||["",""])[1].toLowerCase()]){e=ue.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(ue.cleanData(v(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=[];return D(this,arguments,function(t){var n=this.parentNode;ue.inArray(this,e)<0&&(ue.cleanData(v(this)),n&&n.replaceChild(t,this))},e)}}),ue.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){ue.fn[e]=function(e){for(var n,r=[],i=ue(e),o=i.length-1,a=0;a<=o;a++)n=a===o?this:this.clone(!0),ue(i[a])[t](n),Z.apply(r,n.get());return this.pushStack(r)}});var Ke=/^margin/,Ze=new RegExp("^("+Le+")(?!px)[a-z%]+$","i"),et=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)};!function(){function t(){if(s){s.style.cssText="box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",s.innerHTML="",_e.appendChild(a);var t=e.getComputedStyle(s);n="1%"!==t.top,o="2px"===t.marginLeft,r="4px"===t.width,s.style.marginRight="50%",i="4px"===t.marginRight,_e.removeChild(a),s=null}}var n,r,i,o,a=G.createElement("div"),s=G.createElement("div");s.style&&(s.style.backgroundClip="content-box",s.cloneNode(!0).style.backgroundClip="",ae.clearCloneStyle="content-box"===s.style.backgroundClip,a.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",a.appendChild(s),ue.extend(ae,{pixelPosition:function(){return t(),n},boxSizingReliable:function(){return t(),r},pixelMarginRight:function(){return t(),i},reliableMarginLeft:function(){return t(),o}}))}();var tt=/^(none|table(?!-c[ea]).+)/,nt=/^--/,rt={position:"absolute",visibility:"hidden",display:"block"},it={letterSpacing:"0",fontWeight:"400"},ot=["Webkit","Moz","ms"],at=G.createElement("div").style;ue.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=A(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{float:"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=ue.camelCase(t),u=nt.test(t),l=e.style;return u||(t=L(s)),a=ue.cssHooks[t]||ue.cssHooks[s],void 0===n?a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t]:("string"===(o=typeof n)&&(i=He.exec(n))&&i[1]&&(n=p(e,t,i),o="number"),void(null!=n&&n==n&&("number"===o&&(n+=i&&i[3]||(ue.cssNumber[s]?"":"px")),ae.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))))}},css:function(e,t,n,r){var i,o,a,s=ue.camelCase(t);return nt.test(t)||(t=L(s)),(a=ue.cssHooks[t]||ue.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=A(e,t,r)),"normal"===i&&t in it&&(i=it[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),ue.each(["height","width"],function(e,t){ue.cssHooks[t]={get:function(e,n,r){if(n)return!tt.test(ue.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?$(e,t,r):Oe(e,rt,function(){return $(e,t,r)})},set:function(e,n,r){var i,o=r&&et(e),a=r&&F(e,t,r,"border-box"===ue.css(e,"boxSizing",!1,o),o);return a&&(i=He.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=ue.css(e,t)),H(0,n,a)}}}),ue.cssHooks.marginLeft=q(ae.reliableMarginLeft,function(e,t){if(t)return(parseFloat(A(e,"marginLeft"))||e.getBoundingClientRect().left-Oe(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),ue.each({margin:"",padding:"",border:"Width"},function(e,t){ue.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+Fe[r]+t]=o[r]||o[r-2]||o[0];return i}},Ke.test(e)||(ue.cssHooks[e+t].set=H)}),ue.fn.extend({css:function(e,t){return Se(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=et(e),i=t.length;a<i;a++)o[t[a]]=ue.css(e,t[a],!1,r);return o}return void 0!==n?ue.style(e,t,n):ue.css(e,t)},e,t,arguments.length>1)}}),ue.Tween=O,(O.prototype={constructor:O,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||ue.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(ue.cssNumber[n]?"":"px")},cur:function(){var e=O.propHooks[this.prop];return e&&e.get?e.get(this):O.propHooks._default.get(this)},run:function(e){var t,n=O.propHooks[this.prop];return this.options.duration?this.pos=t=ue.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):O.propHooks._default.set(this),this}}).init.prototype=O.prototype,(O.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=ue.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){ue.fx.step[e.prop]?ue.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[ue.cssProps[e.prop]]&&!ue.cssHooks[e.prop]?e.elem[e.prop]=e.now:ue.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=O.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},ue.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},ue.fx=O.prototype.init,ue.fx.step={};var st,ut,lt=/^(?:toggle|show|hide)$/,ct=/queueHooks$/;ue.Animation=ue.extend(W,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return p(n.elem,e,He.exec(t),n),n}]},tweener:function(e,t){ue.isFunction(e)?(t=e,e=["*"]):e=e.match(Ce);for(var n,r=0,i=e.length;r<i;r++)n=e[r],W.tweeners[n]=W.tweeners[n]||[],W.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,d=this,p={},h=e.style,v=e.nodeType&&$e(e),m=De.get(e,"fxshow");n.queue||(null==(a=ue._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,d.always(function(){d.always(function(){a.unqueued--,ue.queue(e,"fx").length||a.empty.fire()})}));for(r in t)if(i=t[r],lt.test(i)){if(delete t[r],o=o||"toggle"===i,i===(v?"hide":"show")){if("show"!==i||!m||void 0===m[r])continue;v=!0}p[r]=m&&m[r]||ue.style(e,r)}if((u=!ue.isEmptyObject(t))||!ue.isEmptyObject(p)){f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=m&&m.display)&&(l=De.get(e,"display")),"none"===(c=ue.css(e,"display"))&&(l?c=l:(g([e],!0),l=e.style.display||l,c=ue.css(e,"display"),g([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===ue.css(e,"float")&&(u||(d.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",d.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1;for(r in p)u||(m?"hidden"in m&&(v=m.hidden):m=De.access(e,"fxshow",{display:l}),o&&(m.hidden=!v),v&&g([e],!0),d.done(function(){v||g([e]),De.remove(e,"fxshow");for(r in p)ue.style(e,r,p[r])})),u=I(v?m[r]:0,r,d),r in m||(m[r]=u.start,v&&(u.end=u.start,u.start=0))}}],prefilter:function(e,t){t?W.prefilters.unshift(e):W.prefilters.push(e)}}),ue.speed=function(e,t,n){var r=e&&"object"==typeof e?ue.extend({},e):{complete:n||!n&&t||ue.isFunction(e)&&e,duration:e,easing:n&&t||t&&!ue.isFunction(t)&&t};return ue.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in ue.fx.speeds?r.duration=ue.fx.speeds[r.duration]:r.duration=ue.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){ue.isFunction(r.old)&&r.old.call(this),r.queue&&ue.dequeue(this,r.queue)},r},ue.fn.extend({fadeTo:function(e,t,n,r){return this.filter($e).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=ue.isEmptyObject(e),o=ue.speed(t,n,r),a=function(){var t=W(this,ue.extend({},e),o);(i||De.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=ue.timers,a=De.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&ct.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||ue.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||"fx"),this.each(function(){var t,n=De.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=ue.timers,a=r?r.length:0;for(n.finish=!0,ue.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),ue.each(["toggle","show","hide"],function(e,t){var n=ue.fn[t];ue.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(M(t,!0),e,r,i)}}),ue.each({slideDown:M("show"),slideUp:M("hide"),slideToggle:M("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){ue.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),ue.timers=[],ue.fx.tick=function(){var e,t=0,n=ue.timers;for(st=ue.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||ue.fx.stop(),st=void 0},ue.fx.timer=function(e){ue.timers.push(e),ue.fx.start()},ue.fx.interval=13,ue.fx.start=function(){ut||(ut=!0,P())},ue.fx.stop=function(){ut=null},ue.fx.speeds={slow:600,fast:200,_default:400},ue.fn.delay=function(t,n){return t=ue.fx?ue.fx.speeds[t]||t:t,n=n||"fx",this.queue(n,function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}})},function(){var e=G.createElement("input"),t=G.createElement("select").appendChild(G.createElement("option"));e.type="checkbox",ae.checkOn=""!==e.value,ae.optSelected=t.selected,(e=G.createElement("input")).value="t",e.type="radio",ae.radioValue="t"===e.value}();var ft,dt=ue.expr.attrHandle;ue.fn.extend({attr:function(e,t){return Se(this,ue.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){ue.removeAttr(this,e)})}}),ue.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?ue.prop(e,t,n):(1===o&&ue.isXMLDoc(e)||(i=ue.attrHooks[t.toLowerCase()]||(ue.expr.match.bool.test(t)?ft:void 0)),void 0!==n?null===n?void ue.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=ue.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!ae.radioValue&&"radio"===t&&i(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(Ce);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ft={set:function(e,t,n){return!1===t?ue.removeAttr(e,n):e.setAttribute(n,n),n}},ue.each(ue.expr.match.bool.source.match(/\w+/g),function(e,t){var n=dt[t]||ue.find.attr;dt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=dt[a],dt[a]=i,i=null!=n(e,t,r)?a:null,dt[a]=o),i}});var pt=/^(?:input|select|textarea|button)$/i,ht=/^(?:a|area)$/i;ue.fn.extend({prop:function(e,t){return Se(this,ue.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[ue.propFix[e]||e]})}}),ue.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&ue.isXMLDoc(e)||(t=ue.propFix[t]||t,i=ue.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=ue.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||ht.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),ae.optSelected||(ue.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),ue.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){ue.propFix[this.toLowerCase()]=this}),ue.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(ue.isFunction(e))return this.each(function(t){ue(this).addClass(e.call(this,t,_(this)))});if("string"==typeof e&&e)for(t=e.match(Ce)||[];n=this[u++];)if(i=_(n),r=1===n.nodeType&&" "+B(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=B(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(ue.isFunction(e))return this.each(function(t){ue(this).removeClass(e.call(this,t,_(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(Ce)||[];n=this[u++];)if(i=_(n),r=1===n.nodeType&&" "+B(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=B(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):ue.isFunction(e)?this.each(function(n){ue(this).toggleClass(e.call(this,n,_(this),t),t)}):this.each(function(){var t,r,i,o;if("string"===n)for(r=0,i=ue(this),o=e.match(Ce)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||((t=_(this))&&De.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":De.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+B(_(n))+" ").indexOf(t)>-1)return!0;return!1}});var gt=/\r/g;ue.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=ue.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,ue(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=ue.map(i,function(e){return null==e?"":e+""})),(t=ue.valHooks[this.type]||ue.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))})):i?(t=ue.valHooks[i.type]||ue.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(gt,""):null==n?"":n:void 0}}),ue.extend({valHooks:{option:{get:function(e){var t=ue.find.attr(e,"value");return null!=t?t:B(ue.text(e))}},select:{get:function(e){var t,n,r,o=e.options,a=e.selectedIndex,s="select-one"===e.type,u=s?null:[],l=s?a+1:o.length;for(r=a<0?l:s?a:0;r<l;r++)if(((n=o[r]).selected||r===a)&&!n.disabled&&(!n.parentNode.disabled||!i(n.parentNode,"optgroup"))){if(t=ue(n).val(),s)return t;u.push(t)}return u},set:function(e,t){for(var n,r,i=e.options,o=ue.makeArray(t),a=i.length;a--;)r=i[a],(r.selected=ue.inArray(ue.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),ue.each(["radio","checkbox"],function(){ue.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=ue.inArray(ue(e).val(),t)>-1}},ae.checkOn||(ue.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var vt=/^(?:focusinfocus|focusoutblur)$/;ue.extend(ue.event,{trigger:function(t,n,r,i){var o,a,s,u,l,c,f,d=[r||G],p=re.call(t,"type")?t.type:t,h=re.call(t,"namespace")?t.namespace.split("."):[];if(a=s=r=r||G,3!==r.nodeType&&8!==r.nodeType&&!vt.test(p+ue.event.triggered)&&(p.indexOf(".")>-1&&(h=p.split("."),p=h.shift(),h.sort()),l=p.indexOf(":")<0&&"on"+p,t=t[ue.expando]?t:new ue.Event(p,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=h.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:ue.makeArray(n,[t]),f=ue.event.special[p]||{},i||!f.trigger||!1!==f.trigger.apply(r,n))){if(!i&&!f.noBubble&&!ue.isWindow(r)){for(u=f.delegateType||p,vt.test(u+p)||(a=a.parentNode);a;a=a.parentNode)d.push(a),s=a;s===(r.ownerDocument||G)&&d.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=d[o++])&&!t.isPropagationStopped();)t.type=o>1?u:f.bindType||p,(c=(De.get(a,"events")||{})[t.type]&&De.get(a,"handle"))&&c.apply(a,n),(c=l&&a[l])&&c.apply&&Ne(a)&&(t.result=c.apply(a,n),!1===t.result&&t.preventDefault());return t.type=p,i||t.isDefaultPrevented()||f._default&&!1!==f._default.apply(d.pop(),n)||!Ne(r)||l&&ue.isFunction(r[p])&&!ue.isWindow(r)&&((s=r[l])&&(r[l]=null),ue.event.triggered=p,r[p](),ue.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=ue.extend(new ue.Event,n,{type:e,isSimulated:!0});ue.event.trigger(r,null,t)}}),ue.fn.extend({trigger:function(e,t){return this.each(function(){ue.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return ue.event.trigger(e,t,n,!0)}}),ue.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){ue.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),ue.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),ae.focusin="onfocusin"in e,ae.focusin||ue.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){ue.event.simulate(t,e.target,ue.event.fix(e))};ue.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=De.access(r,t);i||r.addEventListener(e,n,!0),De.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=De.access(r,t)-1;i?De.access(r,t,i):(r.removeEventListener(e,n,!0),De.remove(r,t))}}});var mt=e.location,yt=ue.now(),xt=/\?/;ue.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||ue.error("Invalid XML: "+t),n};var bt=/\[\]$/,wt=/\r?\n/g,Tt=/^(?:submit|button|image|reset|file)$/i,Ct=/^(?:input|select|textarea|keygen)/i;ue.param=function(e,t){var n,r=[],i=function(e,t){var n=ue.isFunction(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!ue.isPlainObject(e))ue.each(e,function(){i(this.name,this.value)});else for(n in e)z(n,e[n],t,i);return r.join("&")},ue.fn.extend({serialize:function(){return ue.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=ue.prop(this,"elements");return e?ue.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!ue(this).is(":disabled")&&Ct.test(this.nodeName)&&!Tt.test(e)&&(this.checked||!Re.test(e))}).map(function(e,t){var n=ue(this).val();return null==n?null:Array.isArray(n)?ue.map(n,function(e){return{name:t.name,value:e.replace(wt,"\r\n")}}):{name:t.name,value:n.replace(wt,"\r\n")}}).get()}});var Et=/%20/g,kt=/#.*$/,St=/([?&])_=[^&]*/,Nt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Dt=/^(?:GET|HEAD)$/,jt=/^\/\//,At={},qt={},Lt="*/".concat("*"),Ht=G.createElement("a");Ht.href=mt.href,ue.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:mt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(mt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Lt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":ue.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?V(V(e,ue.ajaxSettings),t):V(ue.ajaxSettings,e)},ajaxPrefilter:X(At),ajaxTransport:X(qt),ajax:function(t,n){function r(t,n,r,s){var l,d,p,b,w,T=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",C.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(h,C,r)),b=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(h,b,C,l),l?(h.ifModified&&((w=C.getResponseHeader("Last-Modified"))&&(ue.lastModified[o]=w),(w=C.getResponseHeader("etag"))&&(ue.etag[o]=w)),204===t||"HEAD"===h.type?T="nocontent":304===t?T="notmodified":(T=b.state,d=b.data,p=b.error,l=!p)):(p=T,!t&&T||(T="error",t<0&&(t=0))),C.status=t,C.statusText=(n||T)+"",l?m.resolveWith(g,[d,T,C]):m.rejectWith(g,[C,T,p]),C.statusCode(x),x=void 0,f&&v.trigger(l?"ajaxSuccess":"ajaxError",[C,h,l?d:p]),y.fireWith(g,[C,T]),f&&(v.trigger("ajaxComplete",[C,h]),--ue.active||ue.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,d,p,h=ue.ajaxSetup({},n),g=h.context||h,v=h.context&&(g.nodeType||g.jquery)?ue(g):ue.event,m=ue.Deferred(),y=ue.Callbacks("once memory"),x=h.statusCode||{},b={},w={},T="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s)for(s={};t=Nt.exec(a);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)C.always(e[C.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||T;return i&&i.abort(t),r(0,t),this}};if(m.promise(C),h.url=((t||h.url||mt.href)+"").replace(jt,mt.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(Ce)||[""],null==h.crossDomain){l=G.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Ht.protocol+"//"+Ht.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=ue.param(h.data,h.traditional)),U(At,h,n,C),c)return C;(f=ue.event&&h.global)&&0==ue.active++&&ue.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!Dt.test(h.type),o=h.url.replace(kt,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(Et,"+")):(p=h.url.slice(o.length),h.data&&(o+=(xt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(St,"$1"),p=(xt.test(o)?"&":"?")+"_="+yt+++p),h.url=o+p),h.ifModified&&(ue.lastModified[o]&&C.setRequestHeader("If-Modified-Since",ue.lastModified[o]),ue.etag[o]&&C.setRequestHeader("If-None-Match",ue.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&C.setRequestHeader("Content-Type",h.contentType),C.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+Lt+"; q=0.01":""):h.accepts["*"]);for(d in h.headers)C.setRequestHeader(d,h.headers[d]);if(h.beforeSend&&(!1===h.beforeSend.call(g,C,h)||c))return C.abort();if(T="abort",y.add(h.complete),C.done(h.success),C.fail(h.error),i=U(qt,h,n,C)){if(C.readyState=1,f&&v.trigger("ajaxSend",[C,h]),c)return C;h.async&&h.timeout>0&&(u=e.setTimeout(function(){C.abort("timeout")},h.timeout));try{c=!1,i.send(b,r)}catch(e){if(c)throw e;r(-1,e)}}else r(-1,"No Transport");return C},getJSON:function(e,t,n){return ue.get(e,t,n,"json")},getScript:function(e,t){return ue.get(e,void 0,t,"script")}}),ue.each(["get","post"],function(e,t){ue[t]=function(e,n,r,i){return ue.isFunction(n)&&(i=i||r,r=n,n=void 0),ue.ajax(ue.extend({url:e,type:t,dataType:i,data:n,success:r},ue.isPlainObject(e)&&e))}}),ue._evalUrl=function(e){return ue.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},ue.fn.extend({wrapAll:function(e){var t;return this[0]&&(ue.isFunction(e)&&(e=e.call(this[0])),t=ue(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return ue.isFunction(e)?this.each(function(t){ue(this).wrapInner(e.call(this,t))}):this.each(function(){var t=ue(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=ue.isFunction(e);return this.each(function(n){ue(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){ue(this).replaceWith(this.childNodes)}),this}}),ue.expr.pseudos.hidden=function(e){return!ue.expr.pseudos.visible(e)},ue.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},ue.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Ft={0:200,1223:204},$t=ue.ajaxSettings.xhr();ae.cors=!!$t&&"withCredentials"in $t,ae.ajax=$t=!!$t,ue.ajaxTransport(function(t){var n,r;if(ae.cors||$t&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Ft[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),ue.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),ue.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return ue.globalEval(e),e}}}),ue.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),ue.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=ue("<script>").prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),G.head.appendChild(t[0])},abort:function(){n&&n()}}}});var Ot=[],Pt=/(=)\?(?=&|$)|\?\?/;ue.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Ot.pop()||ue.expando+"_"+yt++;return this[e]=!0,e}}),ue.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,a,s=!1!==t.jsonp&&(Pt.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Pt.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=ue.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Pt,"$1"+i):!1!==t.jsonp&&(t.url+=(xt.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||ue.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always(function(){void 0===o?ue(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,Ot.push(i)),a&&ue.isFunction(o)&&o(a[0]),a=o=void 0}),"script"}),ae.createHTMLDocument=function(){var e=G.implementation.createHTMLDocument("").body;return e.innerHTML="<form></form><form></form>",2===e.childNodes.length}(),ue.parseHTML=function(e,t,n){if("string"!=typeof e)return[];"boolean"==typeof t&&(n=t,t=!1);var r,i,o;return t||(ae.createHTMLDocument?(t=G.implementation.createHTMLDocument(""),r=t.createElement("base"),r.href=G.location.href,t.head.appendChild(r)):t=G),i=me.exec(e),o=!n&&[],i?[t.createElement(i[1])]:(i=y([e],t,o),o&&o.length&&ue(o).remove(),ue.merge([],i.childNodes))},ue.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=B(e.slice(s)),e=e.slice(0,s)),ue.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&ue.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?ue("<div>").append(ue.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ue.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ue.fn[t]=function(e){return this.on(t,e)}}),ue.expr.pseudos.animated=function(e){return ue.grep(ue.timers,function(t){return e===t.elem}).length},ue.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ue.css(e,"position"),c=ue(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ue.css(e,"top"),u=ue.css(e,"left"),("absolute"===l||"fixed"===l)&&(o+u).indexOf("auto")>-1?(r=c.position(),a=r.top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),ue.isFunction(t)&&(t=t.call(e,n,ue.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ue.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){ue.offset.setOffset(this,e,t)});var t,n,r,i,o=this[0];return o?o.getClientRects().length?(r=o.getBoundingClientRect(),t=o.ownerDocument,n=t.documentElement,i=t.defaultView,{top:r.top+i.pageYOffset-n.clientTop,left:r.left+i.pageXOffset-n.clientLeft}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===ue.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),i(e[0],"html")||(r=e.offset()),r={top:r.top+ue.css(e[0],"borderTopWidth",!0),left:r.left+ue.css(e[0],"borderLeftWidth",!0)}),{top:t.top-r.top-ue.css(n,"marginTop",!0),left:t.left-r.left-ue.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&"static"===ue.css(e,"position");)e=e.offsetParent;return e||_e})}}),ue.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n="pageYOffset"===t;ue.fn[e]=function(r){return Se(this,function(e,r,i){var o;return ue.isWindow(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i?o?o[t]:e[r]:void(o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i)},e,r,arguments.length)}}),ue.each(["top","left"],function(e,t){ue.cssHooks[t]=q(ae.pixelPosition,function(e,n){if(n)return n=A(e,t),Ze.test(n)?ue(e).position()[t]+"px":n})}),ue.each({Height:"height",Width:"width"},function(e,t){ue.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){ue.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),s=n||(!0===i||!0===o?"margin":"border");return Se(this,function(t,n,i){var o;return ue.isWindow(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?ue.css(t,n,s):ue.style(t,n,i,s)},t,a?i:void 0,a)}})}),ue.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),ue.holdReady=function(e){e?ue.readyWait++:ue.ready(!0)},ue.isArray=Array.isArray,ue.parseJSON=JSON.parse,ue.nodeName=i,"function"==typeof define&&define.amd&&define("jquery",[],function(){return ue});var Rt=e.jQuery,Mt=e.$;return ue.noConflict=function(t){return e.$===ue&&(e.$=Mt),t&&e.jQuery===ue&&(e.jQuery=Rt),ue},t||(e.jQuery=e.$=ue),ue}),$(document).ready(function(){$("body").removeClass("no-js"),ShowHideNav(),formCheck()}),$(window).resize(function(){$(".header").removeClass("hide-nav")}),$("#contactForm").submit(function(e){e.preventDefault();var t=$("#contactBtn"),n=$(".form__input input"),r=$(".form__input textarea");name=$("input#name").val(),$.ajax({url:"https://formspree.io/jan.czizikow@gmail.com",method:"POST",data:$(this).serialize(),dataType:"json",beforeSend:function(){t.prop("disabled",!0),t.text("Sending...")},complete:function(){t.prop("disabled",!1),t.text("Send")},success:function(e){n.val(""),r.val(""),alert("Thanks for contacting me, "+name+" ! Will get back to you soon!"),dataLayer.push({event:"formSubmitted",formName:"Contact"})},error:function(e){alert("Ups, something went wrong, please try again. You can check console log for more information."),console.log(e)}})});
1
+ function ShowHideNav(){var e=0,t=$(".header"),n=$(".header").outerHeight();$(window).scroll(function(){if($(window).width()>=1024){if(!t.hasClass("fixed")){var r=$(this).scrollTop(),i=Math.abs(r-e);r>n?(r>650&&(t.hasClass("fix-nav")||t.addClass("fix-nav")),i>=6&&(r>e?t.hasClass("hide-nav")||t.addClass("hide-nav"):t.hasClass("hide-nav")&&$(t).removeClass("hide-nav"))):r<=0&&(t.removeClass("hide-nav show-nav"),t.addClass("top"))}window.innerHeight+window.scrollY>=document.body.offsetHeight&&t.removeClass("hide-nav"),e=r}else t.addClass("fix-nav")})}function formCheck(){$("#contactBtn").click(function(e){e.preventDefault();var t=$(".form__input input"),n=$(".form__input textarea"),r=!1;$(".form__input").removeClass("error"),$(".error-data").remove();for(var i=0;i<t.length;i++){var o=t[i];$(o).attr("required",!0)&&!validateRequired($(o).val())&&(addErrorData($(o),"This field is required"),r=!0),$(o).attr("required",!0)&&"email"===$(o).attr("type")&&!validateEmail($(o).val())&&(addErrorData($(o),"Email address is invalid"),r=!0),$(n).attr("required",!0)&&!validateRequired($(n).val())&&(addErrorData($(n),"This field is required"),r=!0)}!1===r&&$("#contactForm").submit()})}function validateRequired(e){return""!=e}function validateEmail(e){return""==e||/[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/i.test(e)}function addErrorData(e,t){e.parent().addClass("error"),e.after("<span class='error-data'>"+t+"</span>")}!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){"use strict";function n(e,t){var n=(t=t||G).createElement("script");n.text=e,t.head.appendChild(n).parentNode.removeChild(n)}function r(e){var t=!!e&&"length"in e&&e.length,n=se.type(e);return"function"!==n&&!se.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function i(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}function o(e,t,n){return se.isFunction(t)?se.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?se.grep(e,function(e){return e===t!==n}):"string"!=typeof t?se.grep(e,function(e){return ee.call(t,e)>-1!==n}):me.test(t)?se.filter(t,e,n):(t=se.filter(t,e),se.grep(e,function(e){return ee.call(t,e)>-1!==n&&1===e.nodeType}))}function a(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}function s(e){return e}function u(e){throw e}function l(e,t,n,r){var i;try{e&&se.isFunction(i=e.promise)?i.call(e).done(t).fail(n):e&&se.isFunction(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}function c(){G.removeEventListener("DOMContentLoaded",c),e.removeEventListener("load",c),se.ready()}function f(){this.expando=se.expando+f.uid++}function d(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(je,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n=function(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""?+e:De.test(e)?JSON.parse(e):e)}(n)}catch(e){}Ne.set(e,t,n)}else n=void 0;return n}function p(e,t,n,r){var i,o=1,a=20,s=r?function(){return r.cur()}:function(){return se.css(e,t,"")},u=s(),l=n&&n[3]||(se.cssNumber[t]?"":"px"),c=(se.cssNumber[t]||"px"!==l&&+u)&&Le.exec(se.css(e,t));if(c&&c[3]!==l){l=l||c[3],n=n||[],c=+u||1;do{c/=o=o||".5",se.style(e,t,c+l)}while(o!==(o=s()/u)&&1!==o&&--a)}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}function h(e){var t,n=e.ownerDocument,r=e.nodeName,i=Oe[r];return i||(t=n.body.appendChild(n.createElement(r)),i=se.css(t,"display"),t.parentNode.removeChild(t),"none"===i&&(i="block"),Oe[r]=i,i)}function g(e,t){for(var n,r,i=[],o=0,a=e.length;o<a;o++)(r=e[o]).style&&(n=r.style.display,t?("none"===n&&(i[o]=Se.get(r,"display")||null,i[o]||(r.style.display="")),""===r.style.display&&Fe(r)&&(i[o]=h(r))):"none"!==n&&(i[o]="none",Se.set(r,"display",n)));for(o=0;o<a;o++)null!=i[o]&&(e[o].style.display=i[o]);return e}function v(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&i(e,t)?se.merge([e],n):n}function m(e,t){for(var n=0,r=e.length;n<r;n++)Se.set(e[n],"globalEval",!t||Se.get(t[n],"globalEval"))}function y(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p<h;p++)if((o=e[p])||0===o)if("object"===se.type(o))se.merge(d,o.nodeType?[o]:o);else if(We.test(o)){for(a=a||f.appendChild(t.createElement("div")),s=(Me.exec(o)||["",""])[1].toLowerCase(),u=Re[s]||Re._default,a.innerHTML=u[1]+se.htmlPrefilter(o)+u[2],c=u[0];c--;)a=a.lastChild;se.merge(d,a.childNodes),(a=f.firstChild).textContent=""}else d.push(t.createTextNode(o));for(f.textContent="",p=0;o=d[p++];)if(r&&se.inArray(o,r)>-1)i&&i.push(o);else if(l=se.contains(o.ownerDocument,o),a=v(f.appendChild(o),"script"),l&&m(a),n)for(c=0;o=a[c++];)Pe.test(o.type||"")&&n.push(o);return f}function x(){return!0}function b(){return!1}function w(){try{return G.activeElement}catch(e){}}function C(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)C(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=b;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return se().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=se.guid++)),e.each(function(){se.event.add(this,t,i,r,n)})}function T(e,t){return i(e,"table")&&i(11!==t.nodeType?t:t.firstChild,"tr")?se(">tbody",e)[0]||e:e}function E(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function A(e){var t=Ge.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function k(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Se.hasData(e)&&(o=Se.access(e),a=Se.set(t,o),l=o.events)){delete a.handle,a.events={};for(i in l)for(n=0,r=l[i].length;n<r;n++)se.event.add(t,i,l[i][n])}Ne.hasData(e)&&(s=Ne.access(e),u=se.extend({},s),Ne.set(t,u))}}function S(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ze.test(e.type)?t.checked=e.checked:"input"!==n&&"textarea"!==n||(t.defaultValue=e.defaultValue)}function N(e,t,r,i){t=K.apply([],t);var o,a,s,u,l,c,f=0,d=e.length,p=d-1,h=t[0],g=se.isFunction(h);if(g||d>1&&"string"==typeof h&&!ae.checkClone&&Ye.test(h))return e.each(function(n){var o=e.eq(n);g&&(t[0]=h.call(this,n,o.html())),N(o,t,r,i)});if(d&&(o=y(t,e[0].ownerDocument,!1,e,i),a=o.firstChild,1===o.childNodes.length&&(o=a),a||i)){for(u=(s=se.map(v(o,"script"),E)).length;f<d;f++)l=o,f!==p&&(l=se.clone(l,!0,!0),u&&se.merge(s,v(l,"script"))),r.call(e[f],l,f);if(u)for(c=s[s.length-1].ownerDocument,se.map(s,A),f=0;f<u;f++)l=s[f],Pe.test(l.type||"")&&!Se.access(l,"globalEval")&&se.contains(c,l)&&(l.src?se._evalUrl&&se._evalUrl(l.src):n(l.textContent.replace(Qe,""),c))}return e}function D(e,t,n){for(var r,i=t?se.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||se.cleanData(v(r)),r.parentNode&&(n&&se.contains(r.ownerDocument,r)&&m(v(r,"script")),r.parentNode.removeChild(r));return e}function j(e,t,n){var r,i,o,a,s=e.style;return(n=n||Ze(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||se.contains(e.ownerDocument,e)||(a=se.style(e,t)),!ae.pixelMarginRight()&&Ke.test(a)&&Je.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function q(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}function L(e){var t=se.cssProps[e];return t||(t=se.cssProps[e]=function(e){if(e in ot)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=it.length;n--;)if((e=it[n]+t)in ot)return e}(e)||e),t}function H(e,t,n){var r=Le.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function F(e,t,n,r,i){var o,a=0;for(o=n===(r?"border":"content")?4:"width"===t?1:0;o<4;o+=2)"margin"===n&&(a+=se.css(e,n+He[o],!0,i)),r?("content"===n&&(a-=se.css(e,"padding"+He[o],!0,i)),"margin"!==n&&(a-=se.css(e,"border"+He[o]+"Width",!0,i))):(a+=se.css(e,"padding"+He[o],!0,i),"padding"!==n&&(a+=se.css(e,"border"+He[o]+"Width",!0,i)));return a}function $(e,t,n){var r,i=Ze(e),o=j(e,t,i),a="border-box"===se.css(e,"boxSizing",!1,i);return Ke.test(o)?o:(r=a&&(ae.boxSizingReliable()||o===e.style[t]),"auto"===o&&(o=e["offset"+t[0].toUpperCase()+t.slice(1)]),(o=parseFloat(o)||0)+F(e,t,n||(a?"border":"content"),r,i)+"px")}function O(e,t,n,r,i){return new O.prototype.init(e,t,n,r,i)}function z(){st&&(!1===G.hidden&&e.requestAnimationFrame?e.requestAnimationFrame(z):e.setTimeout(z,se.fx.interval),se.fx.tick())}function M(){return e.setTimeout(function(){at=void 0}),at=se.now()}function P(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=He[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function R(e,t,n){for(var r,i=(W.tweeners[t]||[]).concat(W.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function W(e,t,n){var r,i,o=0,a=W.prefilters.length,s=se.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;for(var t=at||M(),n=Math.max(0,l.startTime+l.duration-t),r=1-(n/l.duration||0),o=0,a=l.tweens.length;o<a;o++)l.tweens[o].run(r);return s.notifyWith(e,[l,r,n]),r<1&&a?n:(a||s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:se.extend({},t),opts:se.extend(!0,{specialEasing:{},easing:se.easing._default},n),originalProperties:t,originalOptions:n,startTime:at||M(),duration:n.duration,tweens:[],createTween:function(t,n){var r=se.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;n<r;n++)l.tweens[n].run(1);return t?(s.notifyWith(e,[l,1,0]),s.resolveWith(e,[l,t])):s.rejectWith(e,[l,t]),this}}),c=l.props;for(function(e,t){var n,r,i,o,a;for(n in e)if(r=se.camelCase(n),i=t[r],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=se.cssHooks[r])&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}(c,l.opts.specialEasing);o<a;o++)if(r=W.prefilters[o].call(l,e,c,l.opts))return se.isFunction(r.stop)&&(se._queueHooks(l.elem,l.opts.queue).stop=se.proxy(r.stop,r)),r;return se.map(c,R,l),se.isFunction(l.opts.start)&&l.opts.start.call(e,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),se.fx.timer(se.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l}function I(e){return(e.match(Ce)||[]).join(" ")}function _(e){return e.getAttribute&&e.getAttribute("class")||""}function B(e,t,n,r){var i;if(Array.isArray(t))se.each(t,function(t,i){n||xt.test(e)?r(e,i):B(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==se.type(t))r(e,t);else for(i in t)B(e+"["+i+"]",t[i],n,r)}function X(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(Ce)||[];if(se.isFunction(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function U(e,t,n,r){function i(s){var u;return o[s]=!0,se.each(e[s]||[],function(e,s){var l=s(t,n,r);return"string"!=typeof l||a||o[l]?a?!(u=l):void 0:(t.dataTypes.unshift(l),i(l),!1)}),u}var o={},a=e===jt;return i(t.dataTypes[0])||!o["*"]&&i("*")}function V(e,t){var n,r,i=se.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&se.extend(!0,e,r),e}var Y=[],G=e.document,Q=Object.getPrototypeOf,J=Y.slice,K=Y.concat,Z=Y.push,ee=Y.indexOf,te={},ne=te.toString,re=te.hasOwnProperty,ie=re.toString,oe=ie.call(Object),ae={},se=function(e,t){return new se.fn.init(e,t)},ue=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,le=/^-ms-/,ce=/-([a-z])/g,fe=function(e,t){return t.toUpperCase()};se.fn=se.prototype={jquery:"3.2.1",constructor:se,length:0,toArray:function(){return J.call(this)},get:function(e){return null==e?J.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=se.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return se.each(this,e)},map:function(e){return this.pushStack(se.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(J.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:Z,sort:Y.sort,splice:Y.splice},se.extend=se.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||se.isFunction(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)n=a[t],a!==(r=e[t])&&(l&&r&&(se.isPlainObject(r)||(i=Array.isArray(r)))?(i?(i=!1,o=n&&Array.isArray(n)?n:[]):o=n&&se.isPlainObject(n)?n:{},a[t]=se.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},se.extend({expando:"jQuery"+("3.2.1"+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isFunction:function(e){return"function"===se.type(e)},isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){var t=se.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==ne.call(e))&&(!(t=Q(e))||"function"==typeof(n=re.call(t,"constructor")&&t.constructor)&&ie.call(n)===oe)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?te[ne.call(e)]||"object":typeof e},globalEval:function(e){n(e)},camelCase:function(e){return e.replace(le,"ms-").replace(ce,fe)},each:function(e,t){var n,i=0;if(r(e))for(n=e.length;i<n&&!1!==t.call(e[i],i,e[i]);i++);else for(i in e)if(!1===t.call(e[i],i,e[i]))break;return e},trim:function(e){return null==e?"":(e+"").replace(ue,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(r(Object(e))?se.merge(n,"string"==typeof e?[e]:e):Z.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:ee.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var i,o,a=0,s=[];if(r(e))for(i=e.length;a<i;a++)null!=(o=t(e[a],a,n))&&s.push(o);else for(a in e)null!=(o=t(e[a],a,n))&&s.push(o);return K.apply([],s)},guid:1,proxy:function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),se.isFunction(e))return r=J.call(arguments,2),i=function(){return e.apply(t||this,r.concat(J.call(arguments)))},i.guid=e.guid=e.guid||se.guid++,i},now:Date.now,support:ae}),"function"==typeof Symbol&&(se.fn[Symbol.iterator]=Y[Symbol.iterator]),se.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){te["[object "+t+"]"]=t.toLowerCase()});var de=function(e){function t(e,t,n,r){var i,o,a,s,u,l,c,d=t&&t.ownerDocument,h=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==h&&9!==h&&11!==h)return n;if(!r&&((t?t.ownerDocument||t:P)!==q&&j(t),t=t||q,H)){if(11!==h&&(u=ge.exec(e)))if(i=u[1]){if(9===h){if(!(a=t.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(d&&(a=d.getElementById(i))&&z(t,a)&&a.id===i)return n.push(a),n}else{if(u[2])return Q.apply(n,t.getElementsByTagName(e)),n;if((i=u[3])&&b.getElementsByClassName&&t.getElementsByClassName)return Q.apply(n,t.getElementsByClassName(i)),n}if(b.qsa&&!B[e+" "]&&(!F||!F.test(e))){if(1!==h)d=t,c=e;else if("object"!==t.nodeName.toLowerCase()){for((s=t.getAttribute("id"))?s=s.replace(xe,be):t.setAttribute("id",s=M),o=(l=E(e)).length;o--;)l[o]="#"+s+" "+p(l[o]);c=l.join(","),d=ve.test(e)&&f(t.parentNode)||t}if(c)try{return Q.apply(n,d.querySelectorAll(c)),n}catch(e){}finally{s===M&&t.removeAttribute("id")}}}return k(e.replace(oe,"$1"),t,n,r)}function n(){function e(n,r){return t.push(n+" ")>w.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[M]=!0,e}function i(e){var t=q.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function o(e,t){for(var n=e.split("|"),r=n.length;r--;)w.attrHandle[n[r]]=t}function a(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function u(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function l(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&Ce(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function c(e){return r(function(t){return t=+t,r(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function f(e){return e&&void 0!==e.getElementsByTagName&&e}function d(){}function p(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function h(e,t,n){var r=t.dir,i=t.next,o=i||r,a=n&&"parentNode"===o,s=W++;return t.first?function(t,n,i){for(;t=t[r];)if(1===t.nodeType||a)return e(t,n,i);return!1}:function(t,n,u){var l,c,f,d=[R,s];if(u){for(;t=t[r];)if((1===t.nodeType||a)&&e(t,n,u))return!0}else for(;t=t[r];)if(1===t.nodeType||a)if(f=t[M]||(t[M]={}),c=f[t.uniqueID]||(f[t.uniqueID]={}),i&&i===t.nodeName.toLowerCase())t=t[r]||t;else{if((l=c[o])&&l[0]===R&&l[1]===s)return d[2]=l[2];if(c[o]=d,d[2]=e(t,n,u))return!0}return!1}}function g(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function v(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function m(e,n,i,o,a,s){return o&&!o[M]&&(o=m(o)),a&&!a[M]&&(a=m(a,s)),r(function(r,s,u,l){var c,f,d,p=[],h=[],g=s.length,m=r||function(e,n,r){for(var i=0,o=n.length;i<o;i++)t(e,n[i],r);return r}(n||"*",u.nodeType?[u]:u,[]),y=!e||!r&&n?m:v(m,p,e,u,l),x=i?a||(r?e:g||o)?[]:s:y;if(i&&i(y,x,u,l),o)for(c=v(x,h),o(c,[],u,l),f=c.length;f--;)(d=c[f])&&(x[h[f]]=!(y[h[f]]=d));if(r){if(a||e){if(a){for(c=[],f=x.length;f--;)(d=x[f])&&c.push(y[f]=d);a(null,x=[],c,l)}for(f=x.length;f--;)(d=x[f])&&(c=a?K(r,d):p[f])>-1&&(r[c]=!(s[c]=d))}}else x=v(x===s?x.splice(g,x.length):x),a?a(null,s,x,l):Q.apply(s,x)})}function y(e){for(var t,n,r,i=e.length,o=w.relative[e[0].type],a=o||w.relative[" "],s=o?1:0,u=h(function(e){return e===t},a,!0),l=h(function(e){return K(t,e)>-1},a,!0),c=[function(e,n,r){var i=!o&&(r||n!==S)||((t=n).nodeType?u(e,n,r):l(e,n,r));return t=null,i}];s<i;s++)if(n=w.relative[e[s].type])c=[h(g(c),n)];else{if((n=w.filter[e[s].type].apply(null,e[s].matches))[M]){for(r=++s;r<i&&!w.relative[e[r].type];r++);return m(s>1&&g(c),s>1&&p(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(oe,"$1"),n,s<r&&y(e.slice(s,r)),r<i&&y(e=e.slice(r)),r<i&&p(e))}c.push(n)}return g(c)}var x,b,w,C,T,E,A,k,S,N,D,j,q,L,H,F,$,O,z,M="sizzle"+1*new Date,P=e.document,R=0,W=0,I=n(),_=n(),B=n(),X=function(e,t){return e===t&&(D=!0),0},U={}.hasOwnProperty,V=[],Y=V.pop,G=V.push,Q=V.push,J=V.slice,K=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},Z="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",ee="[\\x20\\t\\r\\n\\f]",te="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",ne="\\["+ee+"*("+te+")(?:"+ee+"*([*^$|!~]?=)"+ee+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+te+"))|)"+ee+"*\\]",re=":("+te+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+ne+")*)|.*)\\)|)",ie=new RegExp(ee+"+","g"),oe=new RegExp("^"+ee+"+|((?:^|[^\\\\])(?:\\\\.)*)"+ee+"+$","g"),ae=new RegExp("^"+ee+"*,"+ee+"*"),se=new RegExp("^"+ee+"*([>+~]|"+ee+")"+ee+"*"),ue=new RegExp("="+ee+"*([^\\]'\"]*?)"+ee+"*\\]","g"),le=new RegExp(re),ce=new RegExp("^"+te+"$"),fe={ID:new RegExp("^#("+te+")"),CLASS:new RegExp("^\\.("+te+")"),TAG:new RegExp("^("+te+"|[*])"),ATTR:new RegExp("^"+ne),PSEUDO:new RegExp("^"+re),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ee+"*(even|odd|(([+-]|)(\\d*)n|)"+ee+"*(?:([+-]|)"+ee+"*(\\d+)|))"+ee+"*\\)|)","i"),bool:new RegExp("^(?:"+Z+")$","i"),needsContext:new RegExp("^"+ee+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ee+"*((?:-\\d)?\\d*)"+ee+"*\\)|)(?=[^-]|$)","i")},de=/^(?:input|select|textarea|button)$/i,pe=/^h\d$/i,he=/^[^{]+\{\s*\[native \w/,ge=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ve=/[+~]/,me=new RegExp("\\\\([\\da-f]{1,6}"+ee+"?|("+ee+")|.)","ig"),ye=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},xe=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,be=function(e,t){return t?"\0"===e?"�":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},we=function(){j()},Ce=h(function(e){return!0===e.disabled&&("form"in e||"label"in e)},{dir:"parentNode",next:"legend"});try{Q.apply(V=J.call(P.childNodes),P.childNodes),V[P.childNodes.length].nodeType}catch(e){Q={apply:V.length?function(e,t){G.apply(e,J.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}b=t.support={},T=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},j=t.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:P;return r!==q&&9===r.nodeType&&r.documentElement?(q=r,L=q.documentElement,H=!T(q),P!==q&&(n=q.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",we,!1):n.attachEvent&&n.attachEvent("onunload",we)),b.attributes=i(function(e){return e.className="i",!e.getAttribute("className")}),b.getElementsByTagName=i(function(e){return e.appendChild(q.createComment("")),!e.getElementsByTagName("*").length}),b.getElementsByClassName=he.test(q.getElementsByClassName),b.getById=i(function(e){return L.appendChild(e).id=M,!q.getElementsByName||!q.getElementsByName(M).length}),b.getById?(w.filter.ID=function(e){var t=e.replace(me,ye);return function(e){return e.getAttribute("id")===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&H){var n=t.getElementById(e);return n?[n]:[]}}):(w.filter.ID=function(e){var t=e.replace(me,ye);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},w.find.ID=function(e,t){if(void 0!==t.getElementById&&H){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),w.find.TAG=b.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):b.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},w.find.CLASS=b.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&H)return t.getElementsByClassName(e)},$=[],F=[],(b.qsa=he.test(q.querySelectorAll))&&(i(function(e){L.appendChild(e).innerHTML="<a id='"+M+"'></a><select id='"+M+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&F.push("[*^$]="+ee+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||F.push("\\["+ee+"*(?:value|"+Z+")"),e.querySelectorAll("[id~="+M+"-]").length||F.push("~="),e.querySelectorAll(":checked").length||F.push(":checked"),e.querySelectorAll("a#"+M+"+*").length||F.push(".#.+[+~]")}),i(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=q.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&F.push("name"+ee+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&F.push(":enabled",":disabled"),L.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&F.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),F.push(",.*:")})),(b.matchesSelector=he.test(O=L.matches||L.webkitMatchesSelector||L.mozMatchesSelector||L.oMatchesSelector||L.msMatchesSelector))&&i(function(e){b.disconnectedMatch=O.call(e,"*"),O.call(e,"[s!='']:x"),$.push("!=",re)}),F=F.length&&new RegExp(F.join("|")),$=$.length&&new RegExp($.join("|")),t=he.test(L.compareDocumentPosition),z=t||he.test(L.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},X=t?function(e,t){if(e===t)return D=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!b.sortDetached&&t.compareDocumentPosition(e)===n?e===q||e.ownerDocument===P&&z(P,e)?-1:t===q||t.ownerDocument===P&&z(P,t)?1:N?K(N,e)-K(N,t):0:4&n?-1:1)}:function(e,t){if(e===t)return D=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,s=[e],u=[t];if(!i||!o)return e===q?-1:t===q?1:i?-1:o?1:N?K(N,e)-K(N,t):0;if(i===o)return a(e,t);for(n=e;n=n.parentNode;)s.unshift(n);for(n=t;n=n.parentNode;)u.unshift(n);for(;s[r]===u[r];)r++;return r?a(s[r],u[r]):s[r]===P?-1:u[r]===P?1:0},q):q},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==q&&j(e),n=n.replace(ue,"='$1']"),b.matchesSelector&&H&&!B[n+" "]&&(!$||!$.test(n))&&(!F||!F.test(n)))try{var r=O.call(e,n);if(r||b.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return t(n,q,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==q&&j(e),z(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==q&&j(e);var n=w.attrHandle[t.toLowerCase()],r=n&&U.call(w.attrHandle,t.toLowerCase())?n(e,t,!H):void 0;return void 0!==r?r:b.attributes||!H?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.escape=function(e){return(e+"").replace(xe,be)},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,i=0;if(D=!b.detectDuplicates,N=!b.sortStable&&e.slice(0),e.sort(X),D){for(;t=e[i++];)t===e[i]&&(r=n.push(i));for(;r--;)e.splice(n[r],1)}return N=null,e},C=t.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=C(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=C(t);return n},(w=t.selectors={cacheLength:50,createPseudo:r,match:fe,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(me,ye),e[3]=(e[3]||e[4]||e[5]||"").replace(me,ye),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return fe.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&le.test(n)&&(t=E(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(me,ye).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=I[e+" "];return t||(t=new RegExp("(^|"+ee+")"+e+"("+ee+"|$)"))&&I(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(i){var o=t.attr(i,e);return null==o?"!="===n:!n||(o+="","="===n?o===r:"!="===n?o!==r:"^="===n?r&&0===o.indexOf(r):"*="===n?r&&o.indexOf(r)>-1:"$="===n?r&&o.slice(-r.length)===r:"~="===n?(" "+o.replace(ie," ")+" ").indexOf(r)>-1:"|="===n&&(o===r||o.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,d,p,h,g=o!==a?"nextSibling":"previousSibling",v=t.parentNode,m=s&&t.nodeName.toLowerCase(),y=!u&&!s,x=!1;if(v){if(o){for(;g;){for(d=t;d=d[g];)if(s?d.nodeName.toLowerCase()===m:1===d.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?v.firstChild:v.lastChild],a&&y){for(x=(p=(l=(c=(f=(d=v)[M]||(d[M]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===R&&l[1])&&l[2],d=p&&v.childNodes[p];d=++p&&d&&d[g]||(x=p=0)||h.pop();)if(1===d.nodeType&&++x&&d===t){c[e]=[R,p,x];break}}else if(y&&(x=p=(l=(c=(f=(d=t)[M]||(d[M]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===R&&l[1]),!1===x)for(;(d=++p&&d&&d[g]||(x=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==m:1!==d.nodeType)||!++x||(y&&((c=(f=d[M]||(d[M]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]=[R,x]),d!==t)););return(x-=i)===r||x%r==0&&x/r>=0}}},PSEUDO:function(e,n){var i,o=w.pseudos[e]||w.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return o[M]?o(n):o.length>1?(i=[e,e,"",n],w.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,i=o(e,n),a=i.length;a--;)e[r=K(e,i[a])]=!(t[r]=i[a])}):function(e){return o(e,0,i)}):o}},pseudos:{not:r(function(e){var t=[],n=[],i=A(e.replace(oe,"$1"));return i[M]?r(function(e,t,n,r){for(var o,a=i(e,null,r,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,r,o){return t[0]=e,i(t,null,o,n),t[0]=null,!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return e=e.replace(me,ye),function(t){return(t.textContent||t.innerText||C(t)).indexOf(e)>-1}}),lang:r(function(e){return ce.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(me,ye).toLowerCase(),function(t){var n;do{if(n=H?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===L},focus:function(e){return e===q.activeElement&&(!q.hasFocus||q.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:l(!1),disabled:l(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!w.pseudos.empty(e)},header:function(e){return pe.test(e.nodeName)},input:function(e){return de.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:c(function(){return[0]}),last:c(function(e,t){return[t-1]}),eq:c(function(e,t,n){return[n<0?n+t:n]}),even:c(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:c(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:c(function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e}),gt:c(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=w.pseudos.eq;for(x in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})w.pseudos[x]=s(x);for(x in{submit:!0,reset:!0})w.pseudos[x]=u(x);return d.prototype=w.filters=w.pseudos,w.setFilters=new d,E=t.tokenize=function(e,n){var r,i,o,a,s,u,l,c=_[e+" "];if(c)return n?0:c.slice(0);for(s=e,u=[],l=w.preFilter;s;){r&&!(i=ae.exec(s))||(i&&(s=s.slice(i[0].length)||s),u.push(o=[])),r=!1,(i=se.exec(s))&&(r=i.shift(),o.push({value:r,type:i[0].replace(oe," ")}),s=s.slice(r.length));for(a in w.filter)!(i=fe[a].exec(s))||l[a]&&!(i=l[a](i))||(r=i.shift(),o.push({value:r,type:a,matches:i}),s=s.slice(r.length));if(!r)break}return n?s.length:s?t.error(e):_(e,u).slice(0)},A=t.compile=function(e,n){var i,o=[],a=[],s=B[e+" "];if(!s){for(n||(n=E(e)),i=n.length;i--;)(s=y(n[i]))[M]?o.push(s):a.push(s);(s=B(e,function(e,n){var i=n.length>0,o=e.length>0,a=function(r,a,s,u,l){var c,f,d,p=0,h="0",g=r&&[],m=[],y=S,x=r||o&&w.find.TAG("*",l),b=R+=null==y?1:Math.random()||.1,C=x.length;for(l&&(S=a===q||a||l);h!==C&&null!=(c=x[h]);h++){if(o&&c){for(f=0,a||c.ownerDocument===q||(j(c),s=!H);d=e[f++];)if(d(c,a||q,s)){u.push(c);break}l&&(R=b)}i&&((c=!d&&c)&&p--,r&&g.push(c))}if(p+=h,i&&h!==p){for(f=0;d=n[f++];)d(g,m,a,s);if(r){if(p>0)for(;h--;)g[h]||m[h]||(m[h]=Y.call(u));m=v(m)}Q.apply(u,m),l&&!r&&m.length>0&&p+n.length>1&&t.uniqueSort(u)}return l&&(R=b,S=y),g};return i?r(a):a}(a,o))).selector=e}return s},k=t.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&E(e=l.selector||e);if(n=n||[],1===c.length){if((o=c[0]=c[0].slice(0)).length>2&&"ID"===(a=o[0]).type&&9===t.nodeType&&H&&w.relative[o[1].type]){if(!(t=(w.find.ID(a.matches[0].replace(me,ye),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}for(i=fe.needsContext.test(e)?0:o.length;i--&&(a=o[i],!w.relative[s=a.type]);)if((u=w.find[s])&&(r=u(a.matches[0].replace(me,ye),ve.test(o[0].type)&&f(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&p(o)))return Q.apply(n,r),n;break}}return(l||A(e,c))(r,t,!H,n,!t||ve.test(e)&&f(t.parentNode)||t),n},b.sortStable=M.split("").sort(X).join("")===M,b.detectDuplicates=!!D,j(),b.sortDetached=i(function(e){return 1&e.compareDocumentPosition(q.createElement("fieldset"))}),i(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||o("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),b.attributes&&i(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||o("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),i(function(e){return null==e.getAttribute("disabled")})||o(Z,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(e);se.find=de,se.expr=de.selectors,se.expr[":"]=se.expr.pseudos,se.uniqueSort=se.unique=de.uniqueSort,se.text=de.getText,se.isXMLDoc=de.isXML,se.contains=de.contains,se.escapeSelector=de.escape;var pe=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&se(e).is(n))break;r.push(e)}return r},he=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},ge=se.expr.match.needsContext,ve=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,me=/^.[^:#\[\.,]*$/;se.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?se.find.matchesSelector(r,e)?[r]:[]:se.find.matches(e,se.grep(t,function(e){return 1===e.nodeType}))},se.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(se(e).filter(function(){for(t=0;t<r;t++)if(se.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)se.find(e,i[t],n);return r>1?se.uniqueSort(n):n},filter:function(e){return this.pushStack(o(this,e||[],!1))},not:function(e){return this.pushStack(o(this,e||[],!0))},is:function(e){return!!o(this,"string"==typeof e&&ge.test(e)?se(e):e||[],!1).length}});var ye,xe=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(se.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||ye,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:xe.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof se?t[0]:t,se.merge(this,se.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:G,!0)),ve.test(r[1])&&se.isPlainObject(t))for(r in t)se.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=G.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):se.isFunction(e)?void 0!==n.ready?n.ready(e):e(se):se.makeArray(e,this)}).prototype=se.fn,ye=se(G);var be=/^(?:parents|prev(?:Until|All))/,we={children:!0,contents:!0,next:!0,prev:!0};se.fn.extend({has:function(e){var t=se(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(se.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&se(e);if(!ge.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?a.index(n)>-1:1===n.nodeType&&se.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?se.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?ee.call(se(e),this[0]):ee.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(se.uniqueSort(se.merge(this.get(),se(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),se.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return pe(e,"parentNode")},parentsUntil:function(e,t,n){return pe(e,"parentNode",n)},next:function(e){return a(e,"nextSibling")},prev:function(e){return a(e,"previousSibling")},nextAll:function(e){return pe(e,"nextSibling")},prevAll:function(e){return pe(e,"previousSibling")},nextUntil:function(e,t,n){return pe(e,"nextSibling",n)},prevUntil:function(e,t,n){return pe(e,"previousSibling",n)},siblings:function(e){return he((e.parentNode||{}).firstChild,e)},children:function(e){return he(e.firstChild)},contents:function(e){return i(e,"iframe")?e.contentDocument:(i(e,"template")&&(e=e.content||e),se.merge([],e.childNodes))}},function(e,t){se.fn[e]=function(n,r){var i=se.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=se.filter(r,i)),this.length>1&&(we[e]||se.uniqueSort(i),be.test(e)&&i.reverse()),this.pushStack(i)}});var Ce=/[^\x20\t\r\n\f]+/g;se.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return se.each(e.match(Ce)||[],function(e,n){t[n]=!0}),t}(e):se.extend({},e);var t,n,r,i,o=[],a=[],s=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s<o.length;)!1===o[s].apply(n[0],n[1])&&e.stopOnFalse&&(s=o.length,n=!1);e.memory||(n=!1),t=!1,i&&(o=n?[]:"")},l={add:function(){return o&&(n&&!t&&(s=o.length-1,a.push(n)),function t(n){se.each(n,function(n,r){se.isFunction(r)?e.unique&&l.has(r)||o.push(r):r&&r.length&&"string"!==se.type(r)&&t(r)})}(arguments),n&&!t&&u()),this},remove:function(){return se.each(arguments,function(e,t){for(var n;(n=se.inArray(t,o,n))>-1;)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?se.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!r}};return l},se.extend({Deferred:function(t){var n=[["notify","progress",se.Callbacks("memory"),se.Callbacks("memory"),2],["resolve","done",se.Callbacks("once memory"),se.Callbacks("once memory"),0,"resolved"],["reject","fail",se.Callbacks("once memory"),se.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return se.Deferred(function(t){se.each(n,function(n,r){var i=se.isFunction(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&se.isFunction(e.promise)?e.promise().progress(t.notify).done(t.resolve).fail(t.reject):t[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(t,r,i){function o(t,n,r,i){return function(){var l=this,c=arguments,f=function(){var e,f;if(!(t<a)){if((e=r.apply(l,c))===n.promise())throw new TypeError("Thenable self-resolution");f=e&&("object"==typeof e||"function"==typeof e)&&e.then,se.isFunction(f)?i?f.call(e,o(a,n,s,i),o(a,n,u,i)):(a++,f.call(e,o(a,n,s,i),o(a,n,u,i),o(a,n,s,n.notifyWith))):(r!==s&&(l=void 0,c=[e]),(i||n.resolveWith)(l,c))}},d=i?f:function(){try{f()}catch(e){se.Deferred.exceptionHook&&se.Deferred.exceptionHook(e,d.stackTrace),t+1>=a&&(r!==u&&(l=void 0,c=[e]),n.rejectWith(l,c))}};t?d():(se.Deferred.getStackHook&&(d.stackTrace=se.Deferred.getStackHook()),e.setTimeout(d))}}var a=0;return se.Deferred(function(e){n[0][3].add(o(0,e,se.isFunction(i)?i:s,e.notifyWith)),n[1][3].add(o(0,e,se.isFunction(t)?t:s)),n[2][3].add(o(0,e,se.isFunction(r)?r:u))}).promise()},promise:function(e){return null!=e?se.extend(e,i):i}},o={};return se.each(n,function(e,t){var a=t[2],s=t[5];i[t[1]]=a.add,s&&a.add(function(){r=s},n[3-e][2].disable,n[0][2].lock),a.add(t[3].fire),o[t[0]]=function(){return o[t[0]+"With"](this===o?void 0:this,arguments),this},o[t[0]+"With"]=a.fireWith}),i.promise(o),t&&t.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=J.call(arguments),o=se.Deferred(),a=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?J.call(arguments):n,--t||o.resolveWith(r,i)}};if(t<=1&&(l(e,o.done(a(n)).resolve,o.reject,!t),"pending"===o.state()||se.isFunction(i[n]&&i[n].then)))return o.then();for(;n--;)l(i[n],a(n),o.reject);return o.promise()}});var Te=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;se.Deferred.exceptionHook=function(t,n){e.console&&e.console.warn&&t&&Te.test(t.name)&&e.console.warn("jQuery.Deferred exception: "+t.message,t.stack,n)},se.readyException=function(t){e.setTimeout(function(){throw t})};var Ee=se.Deferred();se.fn.ready=function(e){return Ee.then(e).catch(function(e){se.readyException(e)}),this},se.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--se.readyWait:se.isReady)||(se.isReady=!0,!0!==e&&--se.readyWait>0||Ee.resolveWith(G,[se]))}}),se.ready.then=Ee.then,"complete"===G.readyState||"loading"!==G.readyState&&!G.documentElement.doScroll?e.setTimeout(se.ready):(G.addEventListener("DOMContentLoaded",c),e.addEventListener("load",c));var Ae=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===se.type(n)){i=!0;for(s in n)Ae(e,t,s,n[s],!0,o,a)}else if(void 0!==r&&(i=!0,se.isFunction(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(se(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},ke=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};f.uid=1,f.prototype={cache:function(e){var t=e[this.expando];return t||(t={},ke(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[se.camelCase(t)]=n;else for(r in t)i[se.camelCase(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][se.camelCase(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(se.camelCase):(t=se.camelCase(t))in r?[t]:t.match(Ce)||[]).length;for(;n--;)delete r[t[n]]}(void 0===t||se.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!se.isEmptyObject(t)}};var Se=new f,Ne=new f,De=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,je=/[A-Z]/g;se.extend({hasData:function(e){return Ne.hasData(e)||Se.hasData(e)},data:function(e,t,n){return Ne.access(e,t,n)},removeData:function(e,t){Ne.remove(e,t)},_data:function(e,t,n){return Se.access(e,t,n)},_removeData:function(e,t){Se.remove(e,t)}}),se.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=Ne.get(o),1===o.nodeType&&!Se.get(o,"hasDataAttrs"))){for(n=a.length;n--;)a[n]&&0===(r=a[n].name).indexOf("data-")&&(r=se.camelCase(r.slice(5)),d(o,r,i[r]));Se.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof e?this.each(function(){Ne.set(this,e)}):Ae(this,function(t){var n;if(o&&void 0===t){if(void 0!==(n=Ne.get(o,e)))return n;if(void 0!==(n=d(o,e)))return n}else this.each(function(){Ne.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){Ne.remove(this,e)})}}),se.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Se.get(e,t),n&&(!r||Array.isArray(n)?r=Se.access(e,t,se.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=se.queue(e,t),r=n.length,i=n.shift(),o=se._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){se.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Se.get(e,n)||Se.access(e,n,{empty:se.Callbacks("once memory").add(function(){Se.remove(e,[t+"queue",n])})})}}),se.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length<n?se.queue(this[0],e):void 0===t?this:this.each(function(){var n=se.queue(this,e,t);se._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&se.dequeue(this,e)})},dequeue:function(e){return this.each(function(){se.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=se.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};for("string"!=typeof e&&(t=e,e=void 0),e=e||"fx";a--;)(n=Se.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var qe=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,Le=new RegExp("^(?:([+-])=|)("+qe+")([a-z%]*)$","i"),He=["Top","Right","Bottom","Left"],Fe=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&se.contains(e.ownerDocument,e)&&"none"===se.css(e,"display")},$e=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i},Oe={};se.fn.extend({show:function(){return g(this,!0)},hide:function(){return g(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Fe(this)?se(this).show():se(this).hide()})}});var ze=/^(?:checkbox|radio)$/i,Me=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,Pe=/^$|\/(?:java|ecma)script/i,Re={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};Re.optgroup=Re.option,Re.tbody=Re.tfoot=Re.colgroup=Re.caption=Re.thead,Re.th=Re.td;var We=/<|&#?\w+;/;!function(){var e=G.createDocumentFragment().appendChild(G.createElement("div")),t=G.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),ae.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="<textarea>x</textarea>",ae.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue}();var Ie=G.documentElement,_e=/^key/,Be=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Xe=/^([^.]*)(?:\.(.+)|)/;se.event={global:{},add:function(e,t,n,r,i){var o,a,s,u,l,c,f,d,p,h,g,v=Se.get(e);if(v)for(n.handler&&(n=(o=n).handler,i=o.selector),i&&se.find.matchesSelector(Ie,i),n.guid||(n.guid=se.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(t){return void 0!==se&&se.event.triggered!==t.type?se.event.dispatch.apply(e,arguments):void 0}),l=(t=(t||"").match(Ce)||[""]).length;l--;)p=g=(s=Xe.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),p&&(f=se.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=se.event.special[p]||{},c=se.extend({type:p,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&se.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=u[p])||((d=u[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,c):d.push(c),se.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,d,p,h,g,v=Se.hasData(e)&&Se.get(e);if(v&&(u=v.events)){for(l=(t=(t||"").match(Ce)||[""]).length;l--;)if(s=Xe.exec(t[l])||[],p=g=s[1],h=(s[2]||"").split(".").sort(),p){for(f=se.event.special[p]||{},d=u[p=(r?f.delegateType:f.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)c=d[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(d.splice(o,1),c.selector&&d.delegateCount--,f.remove&&f.remove.call(e,c));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||se.removeEvent(e,p,v.handle),delete u[p])}else for(p in u)se.event.remove(e,p+t[l],n,r,!0);se.isEmptyObject(u)&&Se.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=se.event.fix(e),u=new Array(arguments.length),l=(Se.get(this,"events")||{})[s.type]||[],c=se.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){for(a=se.event.handlers.call(this,s,l),t=0;(i=a[t++])&&!s.isPropagationStopped();)for(s.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!s.isImmediatePropagationStopped();)s.rnamespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((se.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&e.button>=1))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?se(i,this).index(l)>-1:se.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(e,t){Object.defineProperty(se.Event.prototype,e,{enumerable:!0,configurable:!0,get:se.isFunction(t)?function(){if(this.originalEvent)return t(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[e]},set:function(t){Object.defineProperty(this,e,{enumerable:!0,configurable:!0,writable:!0,value:t})}})},fix:function(e){return e[se.expando]?e:new se.Event(e)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==w()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===w()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&i(this,"input"))return this.click(),!1},_default:function(e){return i(e.target,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},se.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},se.Event=function(e,t){if(!(this instanceof se.Event))return new se.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?x:b,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&se.extend(this,t),this.timeStamp=e&&e.timeStamp||se.now(),this[se.expando]=!0},se.Event.prototype={constructor:se.Event,isDefaultPrevented:b,isPropagationStopped:b,isImmediatePropagationStopped:b,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=x,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=x,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=x,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},se.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,char:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&_e.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Be.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},se.event.addProp),se.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,t){se.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=e.relatedTarget,i=e.handleObj;return r&&(r===this||se.contains(this,r))||(e.type=i.origType,n=i.handler.apply(this,arguments),e.type=t),n}}}),se.fn.extend({on:function(e,t,n,r){return C(this,e,t,n,r)},one:function(e,t,n,r){return C(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,se(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=b),this.each(function(){se.event.remove(this,e,n,t)})}});var Ue=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,Ve=/<script|<style|<link/i,Ye=/checked\s*(?:[^=]|=\s*.checked.)/i,Ge=/^true\/(.*)/,Qe=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;se.extend({htmlPrefilter:function(e){return e.replace(Ue,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),u=se.contains(e.ownerDocument,e);if(!(ae.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||se.isXMLDoc(e)))for(a=v(s),r=0,i=(o=v(e)).length;r<i;r++)S(o[r],a[r]);if(t)if(n)for(o=o||v(e),a=a||v(s),r=0,i=o.length;r<i;r++)k(o[r],a[r]);else k(e,s);return(a=v(s,"script")).length>0&&m(a,!u&&v(e,"script")),s},cleanData:function(e){for(var t,n,r,i=se.event.special,o=0;void 0!==(n=e[o]);o++)if(ke(n)){if(t=n[Se.expando]){if(t.events)for(r in t.events)i[r]?se.event.remove(n,r):se.removeEvent(n,r,t.handle);n[Se.expando]=void 0}n[Ne.expando]&&(n[Ne.expando]=void 0)}}}),se.fn.extend({detach:function(e){return D(this,e,!0)},remove:function(e){return D(this,e)},text:function(e){return Ae(this,function(e){return void 0===e?se.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return N(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){T(this,e).appendChild(e)}})},prepend:function(){return N(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=T(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return N(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return N(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(se.cleanData(v(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return se.clone(this,e,t)})},html:function(e){return Ae(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ve.test(e)&&!Re[(Me.exec(e)||["",""])[1].toLowerCase()]){e=se.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(se.cleanData(v(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=[];return N(this,arguments,function(t){var n=this.parentNode;se.inArray(this,e)<0&&(se.cleanData(v(this)),n&&n.replaceChild(t,this))},e)}}),se.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){se.fn[e]=function(e){for(var n,r=[],i=se(e),o=i.length-1,a=0;a<=o;a++)n=a===o?this:this.clone(!0),se(i[a])[t](n),Z.apply(r,n.get());return this.pushStack(r)}});var Je=/^margin/,Ke=new RegExp("^("+qe+")(?!px)[a-z%]+$","i"),Ze=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)};!function(){function t(){if(s){s.style.cssText="box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",s.innerHTML="",Ie.appendChild(a);var t=e.getComputedStyle(s);n="1%"!==t.top,o="2px"===t.marginLeft,r="4px"===t.width,s.style.marginRight="50%",i="4px"===t.marginRight,Ie.removeChild(a),s=null}}var n,r,i,o,a=G.createElement("div"),s=G.createElement("div");s.style&&(s.style.backgroundClip="content-box",s.cloneNode(!0).style.backgroundClip="",ae.clearCloneStyle="content-box"===s.style.backgroundClip,a.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",a.appendChild(s),se.extend(ae,{pixelPosition:function(){return t(),n},boxSizingReliable:function(){return t(),r},pixelMarginRight:function(){return t(),i},reliableMarginLeft:function(){return t(),o}}))}();var et=/^(none|table(?!-c[ea]).+)/,tt=/^--/,nt={position:"absolute",visibility:"hidden",display:"block"},rt={letterSpacing:"0",fontWeight:"400"},it=["Webkit","Moz","ms"],ot=G.createElement("div").style;se.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=j(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{float:"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=se.camelCase(t),u=tt.test(t),l=e.style;if(u||(t=L(s)),a=se.cssHooks[t]||se.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"==(o=typeof n)&&(i=Le.exec(n))&&i[1]&&(n=p(e,t,i),o="number"),null!=n&&n==n&&("number"===o&&(n+=i&&i[3]||(se.cssNumber[s]?"":"px")),ae.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=se.camelCase(t);return tt.test(t)||(t=L(s)),(a=se.cssHooks[t]||se.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=j(e,t,r)),"normal"===i&&t in rt&&(i=rt[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),se.each(["height","width"],function(e,t){se.cssHooks[t]={get:function(e,n,r){if(n)return!et.test(se.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?$(e,t,r):$e(e,nt,function(){return $(e,t,r)})},set:function(e,n,r){var i,o=r&&Ze(e),a=r&&F(e,t,r,"border-box"===se.css(e,"boxSizing",!1,o),o);return a&&(i=Le.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=se.css(e,t)),H(0,n,a)}}}),se.cssHooks.marginLeft=q(ae.reliableMarginLeft,function(e,t){if(t)return(parseFloat(j(e,"marginLeft"))||e.getBoundingClientRect().left-$e(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),se.each({margin:"",padding:"",border:"Width"},function(e,t){se.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+He[r]+t]=o[r]||o[r-2]||o[0];return i}},Je.test(e)||(se.cssHooks[e+t].set=H)}),se.fn.extend({css:function(e,t){return Ae(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Ze(e),i=t.length;a<i;a++)o[t[a]]=se.css(e,t[a],!1,r);return o}return void 0!==n?se.style(e,t,n):se.css(e,t)},e,t,arguments.length>1)}}),se.Tween=O,(O.prototype={constructor:O,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||se.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(se.cssNumber[n]?"":"px")},cur:function(){var e=O.propHooks[this.prop];return e&&e.get?e.get(this):O.propHooks._default.get(this)},run:function(e){var t,n=O.propHooks[this.prop];return this.options.duration?this.pos=t=se.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):O.propHooks._default.set(this),this}}).init.prototype=O.prototype,(O.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=se.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){se.fx.step[e.prop]?se.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[se.cssProps[e.prop]]&&!se.cssHooks[e.prop]?e.elem[e.prop]=e.now:se.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=O.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},se.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},se.fx=O.prototype.init,se.fx.step={};var at,st,ut=/^(?:toggle|show|hide)$/,lt=/queueHooks$/;se.Animation=se.extend(W,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return p(n.elem,e,Le.exec(t),n),n}]},tweener:function(e,t){se.isFunction(e)?(t=e,e=["*"]):e=e.match(Ce);for(var n,r=0,i=e.length;r<i;r++)n=e[r],W.tweeners[n]=W.tweeners[n]||[],W.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,d=this,p={},h=e.style,v=e.nodeType&&Fe(e),m=Se.get(e,"fxshow");n.queue||(null==(a=se._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,d.always(function(){d.always(function(){a.unqueued--,se.queue(e,"fx").length||a.empty.fire()})}));for(r in t)if(i=t[r],ut.test(i)){if(delete t[r],o=o||"toggle"===i,i===(v?"hide":"show")){if("show"!==i||!m||void 0===m[r])continue;v=!0}p[r]=m&&m[r]||se.style(e,r)}if((u=!se.isEmptyObject(t))||!se.isEmptyObject(p)){f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=m&&m.display)&&(l=Se.get(e,"display")),"none"===(c=se.css(e,"display"))&&(l?c=l:(g([e],!0),l=e.style.display||l,c=se.css(e,"display"),g([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===se.css(e,"float")&&(u||(d.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",d.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1;for(r in p)u||(m?"hidden"in m&&(v=m.hidden):m=Se.access(e,"fxshow",{display:l}),o&&(m.hidden=!v),v&&g([e],!0),d.done(function(){v||g([e]),Se.remove(e,"fxshow");for(r in p)se.style(e,r,p[r])})),u=R(v?m[r]:0,r,d),r in m||(m[r]=u.start,v&&(u.end=u.start,u.start=0))}}],prefilter:function(e,t){t?W.prefilters.unshift(e):W.prefilters.push(e)}}),se.speed=function(e,t,n){var r=e&&"object"==typeof e?se.extend({},e):{complete:n||!n&&t||se.isFunction(e)&&e,duration:e,easing:n&&t||t&&!se.isFunction(t)&&t};return se.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in se.fx.speeds?r.duration=se.fx.speeds[r.duration]:r.duration=se.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){se.isFunction(r.old)&&r.old.call(this),r.queue&&se.dequeue(this,r.queue)},r},se.fn.extend({fadeTo:function(e,t,n,r){return this.filter(Fe).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=se.isEmptyObject(e),o=se.speed(t,n,r),a=function(){var t=W(this,se.extend({},e),o);(i||Se.get(this,"finish"))&&t.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=void 0),t&&!1!==e&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=se.timers,a=Se.get(this);if(i)a[i]&&a[i].stop&&r(a[i]);else for(i in a)a[i]&&a[i].stop&&lt.test(i)&&r(a[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));!t&&n||se.dequeue(this,e)})},finish:function(e){return!1!==e&&(e=e||"fx"),this.each(function(){var t,n=Se.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=se.timers,a=r?r.length:0;for(n.finish=!0,se.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;t<a;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),se.each(["toggle","show","hide"],function(e,t){var n=se.fn[t];se.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(P(t,!0),e,r,i)}}),se.each({slideDown:P("show"),slideUp:P("hide"),slideToggle:P("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){se.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),se.timers=[],se.fx.tick=function(){var e,t=0,n=se.timers;for(at=se.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||se.fx.stop(),at=void 0},se.fx.timer=function(e){se.timers.push(e),se.fx.start()},se.fx.interval=13,se.fx.start=function(){st||(st=!0,z())},se.fx.stop=function(){st=null},se.fx.speeds={slow:600,fast:200,_default:400},se.fn.delay=function(t,n){return t=se.fx?se.fx.speeds[t]||t:t,n=n||"fx",this.queue(n,function(n,r){var i=e.setTimeout(n,t);r.stop=function(){e.clearTimeout(i)}})},function(){var e=G.createElement("input"),t=G.createElement("select").appendChild(G.createElement("option"));e.type="checkbox",ae.checkOn=""!==e.value,ae.optSelected=t.selected,(e=G.createElement("input")).value="t",e.type="radio",ae.radioValue="t"===e.value}();var ct,ft=se.expr.attrHandle;se.fn.extend({attr:function(e,t){return Ae(this,se.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){se.removeAttr(this,e)})}}),se.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?se.prop(e,t,n):(1===o&&se.isXMLDoc(e)||(i=se.attrHooks[t.toLowerCase()]||(se.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void se.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=se.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!ae.radioValue&&"radio"===t&&i(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(Ce);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?se.removeAttr(e,n):e.setAttribute(n,n),n}},se.each(se.expr.match.bool.source.match(/\w+/g),function(e,t){var n=ft[t]||se.find.attr;ft[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=ft[a],ft[a]=i,i=null!=n(e,t,r)?a:null,ft[a]=o),i}});var dt=/^(?:input|select|textarea|button)$/i,pt=/^(?:a|area)$/i;se.fn.extend({prop:function(e,t){return Ae(this,se.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[se.propFix[e]||e]})}}),se.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&se.isXMLDoc(e)||(t=se.propFix[t]||t,i=se.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=se.find.attr(e,"tabindex");return t?parseInt(t,10):dt.test(e.nodeName)||pt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),ae.optSelected||(se.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),se.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){se.propFix[this.toLowerCase()]=this}),se.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(se.isFunction(e))return this.each(function(t){se(this).addClass(e.call(this,t,_(this)))});if("string"==typeof e&&e)for(t=e.match(Ce)||[];n=this[u++];)if(i=_(n),r=1===n.nodeType&&" "+I(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=I(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(se.isFunction(e))return this.each(function(t){se(this).removeClass(e.call(this,t,_(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(Ce)||[];n=this[u++];)if(i=_(n),r=1===n.nodeType&&" "+I(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=I(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):se.isFunction(e)?this.each(function(n){se(this).toggleClass(e.call(this,n,_(this),t),t)}):this.each(function(){var t,r,i,o;if("string"===n)for(r=0,i=se(this),o=e.match(Ce)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||((t=_(this))&&Se.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":Se.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+I(_(n))+" ").indexOf(t)>-1)return!0;return!1}});var ht=/\r/g;se.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=se.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,se(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=se.map(i,function(e){return null==e?"":e+""})),(t=se.valHooks[this.type]||se.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return(t=se.valHooks[i.type]||se.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(ht,""):null==n?"":n}}}),se.extend({valHooks:{option:{get:function(e){var t=se.find.attr(e,"value");return null!=t?t:I(se.text(e))}},select:{get:function(e){var t,n,r,o=e.options,a=e.selectedIndex,s="select-one"===e.type,u=s?null:[],l=s?a+1:o.length;for(r=a<0?l:s?a:0;r<l;r++)if(((n=o[r]).selected||r===a)&&!n.disabled&&(!n.parentNode.disabled||!i(n.parentNode,"optgroup"))){if(t=se(n).val(),s)return t;u.push(t)}return u},set:function(e,t){for(var n,r,i=e.options,o=se.makeArray(t),a=i.length;a--;)((r=i[a]).selected=se.inArray(se.valHooks.option.get(r),o)>-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),se.each(["radio","checkbox"],function(){se.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=se.inArray(se(e).val(),t)>-1}},ae.checkOn||(se.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var gt=/^(?:focusinfocus|focusoutblur)$/;se.extend(se.event,{trigger:function(t,n,r,i){var o,a,s,u,l,c,f,d=[r||G],p=re.call(t,"type")?t.type:t,h=re.call(t,"namespace")?t.namespace.split("."):[];if(a=s=r=r||G,3!==r.nodeType&&8!==r.nodeType&&!gt.test(p+se.event.triggered)&&(p.indexOf(".")>-1&&(p=(h=p.split(".")).shift(),h.sort()),l=p.indexOf(":")<0&&"on"+p,t=t[se.expando]?t:new se.Event(p,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=h.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:se.makeArray(n,[t]),f=se.event.special[p]||{},i||!f.trigger||!1!==f.trigger.apply(r,n))){if(!i&&!f.noBubble&&!se.isWindow(r)){for(u=f.delegateType||p,gt.test(u+p)||(a=a.parentNode);a;a=a.parentNode)d.push(a),s=a;s===(r.ownerDocument||G)&&d.push(s.defaultView||s.parentWindow||e)}for(o=0;(a=d[o++])&&!t.isPropagationStopped();)t.type=o>1?u:f.bindType||p,(c=(Se.get(a,"events")||{})[t.type]&&Se.get(a,"handle"))&&c.apply(a,n),(c=l&&a[l])&&c.apply&&ke(a)&&(t.result=c.apply(a,n),!1===t.result&&t.preventDefault());return t.type=p,i||t.isDefaultPrevented()||f._default&&!1!==f._default.apply(d.pop(),n)||!ke(r)||l&&se.isFunction(r[p])&&!se.isWindow(r)&&((s=r[l])&&(r[l]=null),se.event.triggered=p,r[p](),se.event.triggered=void 0,s&&(r[l]=s)),t.result}},simulate:function(e,t,n){var r=se.extend(new se.Event,n,{type:e,isSimulated:!0});se.event.trigger(r,null,t)}}),se.fn.extend({trigger:function(e,t){return this.each(function(){se.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return se.event.trigger(e,t,n,!0)}}),se.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,t){se.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),se.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),ae.focusin="onfocusin"in e,ae.focusin||se.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){se.event.simulate(t,e.target,se.event.fix(e))};se.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=Se.access(r,t);i||r.addEventListener(e,n,!0),Se.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=Se.access(r,t)-1;i?Se.access(r,t,i):(r.removeEventListener(e,n,!0),Se.remove(r,t))}}});var vt=e.location,mt=se.now(),yt=/\?/;se.parseXML=function(t){var n;if(!t||"string"!=typeof t)return null;try{n=(new e.DOMParser).parseFromString(t,"text/xml")}catch(e){n=void 0}return n&&!n.getElementsByTagName("parsererror").length||se.error("Invalid XML: "+t),n};var xt=/\[\]$/,bt=/\r?\n/g,wt=/^(?:submit|button|image|reset|file)$/i,Ct=/^(?:input|select|textarea|keygen)/i;se.param=function(e,t){var n,r=[],i=function(e,t){var n=se.isFunction(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(Array.isArray(e)||e.jquery&&!se.isPlainObject(e))se.each(e,function(){i(this.name,this.value)});else for(n in e)B(n,e[n],t,i);return r.join("&")},se.fn.extend({serialize:function(){return se.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=se.prop(this,"elements");return e?se.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!se(this).is(":disabled")&&Ct.test(this.nodeName)&&!wt.test(e)&&(this.checked||!ze.test(e))}).map(function(e,t){var n=se(this).val();return null==n?null:Array.isArray(n)?se.map(n,function(e){return{name:t.name,value:e.replace(bt,"\r\n")}}):{name:t.name,value:n.replace(bt,"\r\n")}}).get()}});var Tt=/%20/g,Et=/#.*$/,At=/([?&])_=[^&]*/,kt=/^(.*?):[ \t]*([^\r\n]*)$/gm,St=/^(?:GET|HEAD)$/,Nt=/^\/\//,Dt={},jt={},qt="*/".concat("*"),Lt=G.createElement("a");Lt.href=vt.href,se.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:vt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(vt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":qt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":se.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?V(V(e,se.ajaxSettings),t):V(se.ajaxSettings,e)},ajaxPrefilter:X(Dt),ajaxTransport:X(jt),ajax:function(t,n){function r(t,n,r,s){var l,d,p,b,w,C=n;c||(c=!0,u&&e.clearTimeout(u),i=void 0,a=s||"",T.readyState=t>0?4:0,l=t>=200&&t<300||304===t,r&&(b=function(e,t,n){for(var r,i,o,a,s=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(h,T,r)),b=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(h,b,T,l),l?(h.ifModified&&((w=T.getResponseHeader("Last-Modified"))&&(se.lastModified[o]=w),(w=T.getResponseHeader("etag"))&&(se.etag[o]=w)),204===t||"HEAD"===h.type?C="nocontent":304===t?C="notmodified":(C=b.state,d=b.data,l=!(p=b.error))):(p=C,!t&&C||(C="error",t<0&&(t=0))),T.status=t,T.statusText=(n||C)+"",l?m.resolveWith(g,[d,C,T]):m.rejectWith(g,[T,C,p]),T.statusCode(x),x=void 0,f&&v.trigger(l?"ajaxSuccess":"ajaxError",[T,h,l?d:p]),y.fireWith(g,[T,C]),f&&(v.trigger("ajaxComplete",[T,h]),--se.active||se.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,d,p,h=se.ajaxSetup({},n),g=h.context||h,v=h.context&&(g.nodeType||g.jquery)?se(g):se.event,m=se.Deferred(),y=se.Callbacks("once memory"),x=h.statusCode||{},b={},w={},C="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s)for(s={};t=kt.exec(a);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return c?a:null},setRequestHeader:function(e,t){return null==c&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,b[e]=t),this},overrideMimeType:function(e){return null==c&&(h.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)T.always(e[T.status]);else for(t in e)x[t]=[x[t],e[t]];return this},abort:function(e){var t=e||C;return i&&i.abort(t),r(0,t),this}};if(m.promise(T),h.url=((t||h.url||vt.href)+"").replace(Nt,vt.protocol+"//"),h.type=n.method||n.type||h.method||h.type,h.dataTypes=(h.dataType||"*").toLowerCase().match(Ce)||[""],null==h.crossDomain){l=G.createElement("a");try{l.href=h.url,l.href=l.href,h.crossDomain=Lt.protocol+"//"+Lt.host!=l.protocol+"//"+l.host}catch(e){h.crossDomain=!0}}if(h.data&&h.processData&&"string"!=typeof h.data&&(h.data=se.param(h.data,h.traditional)),U(Dt,h,n,T),c)return T;(f=se.event&&h.global)&&0==se.active++&&se.event.trigger("ajaxStart"),h.type=h.type.toUpperCase(),h.hasContent=!St.test(h.type),o=h.url.replace(Et,""),h.hasContent?h.data&&h.processData&&0===(h.contentType||"").indexOf("application/x-www-form-urlencoded")&&(h.data=h.data.replace(Tt,"+")):(p=h.url.slice(o.length),h.data&&(o+=(yt.test(o)?"&":"?")+h.data,delete h.data),!1===h.cache&&(o=o.replace(At,"$1"),p=(yt.test(o)?"&":"?")+"_="+mt+++p),h.url=o+p),h.ifModified&&(se.lastModified[o]&&T.setRequestHeader("If-Modified-Since",se.lastModified[o]),se.etag[o]&&T.setRequestHeader("If-None-Match",se.etag[o])),(h.data&&h.hasContent&&!1!==h.contentType||n.contentType)&&T.setRequestHeader("Content-Type",h.contentType),T.setRequestHeader("Accept",h.dataTypes[0]&&h.accepts[h.dataTypes[0]]?h.accepts[h.dataTypes[0]]+("*"!==h.dataTypes[0]?", "+qt+"; q=0.01":""):h.accepts["*"]);for(d in h.headers)T.setRequestHeader(d,h.headers[d]);if(h.beforeSend&&(!1===h.beforeSend.call(g,T,h)||c))return T.abort();if(C="abort",y.add(h.complete),T.done(h.success),T.fail(h.error),i=U(jt,h,n,T)){if(T.readyState=1,f&&v.trigger("ajaxSend",[T,h]),c)return T;h.async&&h.timeout>0&&(u=e.setTimeout(function(){T.abort("timeout")},h.timeout));try{c=!1,i.send(b,r)}catch(e){if(c)throw e;r(-1,e)}}else r(-1,"No Transport");return T},getJSON:function(e,t,n){return se.get(e,t,n,"json")},getScript:function(e,t){return se.get(e,void 0,t,"script")}}),se.each(["get","post"],function(e,t){se[t]=function(e,n,r,i){return se.isFunction(n)&&(i=i||r,r=n,n=void 0),se.ajax(se.extend({url:e,type:t,dataType:i,data:n,success:r},se.isPlainObject(e)&&e))}}),se._evalUrl=function(e){return se.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},se.fn.extend({wrapAll:function(e){var t;return this[0]&&(se.isFunction(e)&&(e=e.call(this[0])),t=se(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return se.isFunction(e)?this.each(function(t){se(this).wrapInner(e.call(this,t))}):this.each(function(){var t=se(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=se.isFunction(e);return this.each(function(n){se(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){se(this).replaceWith(this.childNodes)}),this}}),se.expr.pseudos.hidden=function(e){return!se.expr.pseudos.visible(e)},se.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},se.ajaxSettings.xhr=function(){try{return new e.XMLHttpRequest}catch(e){}};var Ht={0:200,1223:204},Ft=se.ajaxSettings.xhr();ae.cors=!!Ft&&"withCredentials"in Ft,ae.ajax=Ft=!!Ft,se.ajaxTransport(function(t){var n,r;if(ae.cors||Ft&&!t.crossDomain)return{send:function(i,o){var a,s=t.xhr();if(s.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(a in t.xhrFields)s[a]=t.xhrFields[a];t.mimeType&&s.overrideMimeType&&s.overrideMimeType(t.mimeType),t.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");for(a in i)s.setRequestHeader(a,i[a]);n=function(e){return function(){n&&(n=r=s.onload=s.onerror=s.onabort=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Ht[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=n(),r=s.onerror=n("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&e.setTimeout(function(){n&&r()})},n=n("abort");try{s.send(t.hasContent&&t.data||null)}catch(e){if(n)throw e}},abort:function(){n&&n()}}}),se.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),se.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return se.globalEval(e),e}}}),se.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),se.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=se("<script>").prop({charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),G.head.appendChild(t[0])},abort:function(){n&&n()}}}});var $t=[],Ot=/(=)\?(?=&|$)|\?\?/;se.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=$t.pop()||se.expando+"_"+mt++;return this[e]=!0,e}}),se.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,a,s=!1!==t.jsonp&&(Ot.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ot.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=se.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(Ot,"$1"+i):!1!==t.jsonp&&(t.url+=(yt.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||se.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always(function(){void 0===o?se(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,$t.push(i)),a&&se.isFunction(o)&&o(a[0]),a=o=void 0}),"script"}),ae.createHTMLDocument=function(){var e=G.implementation.createHTMLDocument("").body;return e.innerHTML="<form></form><form></form>",2===e.childNodes.length}(),se.parseHTML=function(e,t,n){if("string"!=typeof e)return[];"boolean"==typeof t&&(n=t,t=!1);var r,i,o;return t||(ae.createHTMLDocument?((r=(t=G.implementation.createHTMLDocument("")).createElement("base")).href=G.location.href,t.head.appendChild(r)):t=G),i=ve.exec(e),o=!n&&[],i?[t.createElement(i[1])]:(i=y([e],t,o),o&&o.length&&se(o).remove(),se.merge([],i.childNodes))},se.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=I(e.slice(s)),e=e.slice(0,s)),se.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&se.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?se("<div>").append(se.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},se.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){se.fn[t]=function(e){return this.on(t,e)}}),se.expr.pseudos.animated=function(e){return se.grep(se.timers,function(t){return e===t.elem}).length},se.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=se.css(e,"position"),c=se(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=se.css(e,"top"),u=se.css(e,"left"),("absolute"===l||"fixed"===l)&&(o+u).indexOf("auto")>-1?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),se.isFunction(t)&&(t=t.call(e,n,se.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},se.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){se.offset.setOffset(this,e,t)});var t,n,r,i,o=this[0];if(o)return o.getClientRects().length?(r=o.getBoundingClientRect(),t=o.ownerDocument,n=t.documentElement,i=t.defaultView,{top:r.top+i.pageYOffset-n.clientTop,left:r.left+i.pageXOffset-n.clientLeft}):{top:0,left:0}},position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===se.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),i(e[0],"html")||(r=e.offset()),r={top:r.top+se.css(e[0],"borderTopWidth",!0),left:r.left+se.css(e[0],"borderLeftWidth",!0)}),{top:t.top-r.top-se.css(n,"marginTop",!0),left:t.left-r.left-se.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent;e&&"static"===se.css(e,"position");)e=e.offsetParent;return e||Ie})}}),se.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n="pageYOffset"===t;se.fn[e]=function(r){return Ae(this,function(e,r,i){var o;if(se.isWindow(e)?o=e:9===e.nodeType&&(o=e.defaultView),void 0===i)return o?o[t]:e[r];o?o.scrollTo(n?o.pageXOffset:i,n?i:o.pageYOffset):e[r]=i},e,r,arguments.length)}}),se.each(["top","left"],function(e,t){se.cssHooks[t]=q(ae.pixelPosition,function(e,n){if(n)return n=j(e,t),Ke.test(n)?se(e).position()[t]+"px":n})}),se.each({Height:"height",Width:"width"},function(e,t){se.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){se.fn[r]=function(i,o){var a=arguments.length&&(n||"boolean"!=typeof i),s=n||(!0===i||!0===o?"margin":"border");return Ae(this,function(t,n,i){var o;return se.isWindow(t)?0===r.indexOf("outer")?t["inner"+e]:t.document.documentElement["client"+e]:9===t.nodeType?(o=t.documentElement,Math.max(t.body["scroll"+e],o["scroll"+e],t.body["offset"+e],o["offset"+e],o["client"+e])):void 0===i?se.css(t,n,s):se.style(t,n,i,s)},t,a?i:void 0,a)}})}),se.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),se.holdReady=function(e){e?se.readyWait++:se.ready(!0)},se.isArray=Array.isArray,se.parseJSON=JSON.parse,se.nodeName=i,"function"==typeof define&&define.amd&&define("jquery",[],function(){return se});var zt=e.jQuery,Mt=e.$;return se.noConflict=function(t){return e.$===se&&(e.$=Mt),t&&e.jQuery===se&&(e.jQuery=zt),se},t||(e.jQuery=e.$=se),se}),function(e,t){var n=function(e,t){"use strict";if(!t.getElementsByClassName)return;var n,r,i=t.documentElement,o=e.Date,a=e.HTMLPictureElement,s=e.addEventListener,u=e.setTimeout,l=e.requestAnimationFrame||u,c=e.requestIdleCallback,f=/^picture$/i,d=["load","error","lazyincluded","_lazyloaded"],p={},h=Array.prototype.forEach,g=function(e,t){return p[t]||(p[t]=new RegExp("(\\s|^)"+t+"(\\s|$)")),p[t].test(e.getAttribute("class")||"")&&p[t]},v=function(e,t){g(e,t)||e.setAttribute("class",(e.getAttribute("class")||"").trim()+" "+t)},m=function(e,t){var n;(n=g(e,t))&&e.setAttribute("class",(e.getAttribute("class")||"").replace(n," "))},y=function(e,t,n){var r=n?"addEventListener":"removeEventListener";n&&y(e,t),d.forEach(function(n){e[r](n,t)})},x=function(e,r,i,o,a){var s=t.createEvent("CustomEvent");return i||(i={}),i.instance=n,s.initCustomEvent(r,!o,!a,i),e.dispatchEvent(s),s},b=function(t,n){var i;!a&&(i=e.picturefill||r.pf)?i({reevaluate:!0,elements:[t]}):n&&n.src&&(t.src=n.src)},w=function(e,t){return(getComputedStyle(e,null)||{})[t]},C=function(e,t,n){for(n=n||e.offsetWidth;n<r.minSize&&t&&!e._lazysizesWidth;)n=t.offsetWidth,t=t.parentNode;return n},T=function(){var e,n,r=[],i=[],o=r,a=function(){var t=o;for(o=r.length?i:r,e=!0,n=!1;t.length;)t.shift()();e=!1},s=function(r,i){e&&!i?r.apply(this,arguments):(o.push(r),n||(n=!0,(t.hidden?u:l)(a)))};return s._lsFlush=a,s}(),E=function(e,t){return t?function(){T(e)}:function(){var t=this,n=arguments;T(function(){e.apply(t,n)})}},A=function(e){var t,n=0,i=r.ricTimeout,a=function(){t=!1,n=o.now(),e()},s=c&&r.ricTimeout?function(){c(a,{timeout:i}),i!==r.ricTimeout&&(i=r.ricTimeout)}:E(function(){u(a)},!0);return function(e){var r;(e=!0===e)&&(i=33),t||(t=!0,(r=125-(o.now()-n))<0&&(r=0),e||r<9&&c?s():u(s,r))}},k=function(e){var t,n,r=function(){t=null,e()},i=function(){var e=o.now()-n;e<99?u(i,99-e):(c||r)(r)};return function(){n=o.now(),t||(t=u(i,99))}};!function(){var t,n={lazyClass:"lazyload",loadedClass:"lazyloaded",loadingClass:"lazyloading",preloadClass:"lazypreload",errorClass:"lazyerror",autosizesClass:"lazyautosizes",srcAttr:"data-src",srcsetAttr:"data-srcset",sizesAttr:"data-sizes",minSize:40,customMedia:{},init:!0,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:!0,ricTimeout:300};r=e.lazySizesConfig||e.lazysizesConfig||{};for(t in n)t in r||(r[t]=n[t]);e.lazySizesConfig=r,u(function(){r.init&&D()})}();var S=function(){var a,l,c,d,p,C,S,D,j,q,L,H,F,$,O=/^img$/i,z=/^iframe$/i,M="onscroll"in e&&!/glebot/.test(navigator.userAgent),P=0,R=0,W=-1,I=function(e){R--,e&&e.target&&y(e.target,I),(!e||R<0||!e.target)&&(R=0)},_=function(e,n){var r,o=e,a="hidden"==w(t.body,"visibility")||"hidden"!=w(e,"visibility");for(D-=n,L+=n,j-=n,q+=n;a&&(o=o.offsetParent)&&o!=t.body&&o!=i;)(a=(w(o,"opacity")||1)>0)&&"visible"!=w(o,"overflow")&&(r=o.getBoundingClientRect(),a=q>r.left&&j<r.right&&L>r.top-1&&D<r.bottom+1);return a},B=function(){var e,o,s,u,c,f,p,h,g,v=n.elements;if((d=r.loadMode)&&R<8&&(e=v.length)){o=0,W++,null==F&&("expand"in r||(r.expand=i.clientHeight>500&&i.clientWidth>500?500:370),H=r.expand,F=H*r.expFactor),P<F&&R<1&&W>2&&d>2&&!t.hidden?(P=F,W=0):P=d>1&&W>1&&R<6?H:0;for(;o<e;o++)if(v[o]&&!v[o]._lazyRace)if(M)if((h=v[o].getAttribute("data-expand"))&&(f=1*h)||(f=P),g!==f&&(C=innerWidth+f*$,S=innerHeight+f,p=-1*f,g=f),s=v[o].getBoundingClientRect(),(L=s.bottom)>=p&&(D=s.top)<=S&&(q=s.right)>=p*$&&(j=s.left)<=C&&(L||q||j||D)&&(r.loadHidden||"hidden"!=w(v[o],"visibility"))&&(l&&R<3&&!h&&(d<3||W<4)||_(v[o],f))){if(J(v[o]),c=!0,R>9)break}else!c&&l&&!u&&R<4&&W<4&&d>2&&(a[0]||r.preloadAfterLoad)&&(a[0]||!h&&(L||q||j||D||"auto"!=v[o].getAttribute(r.sizesAttr)))&&(u=a[0]||v[o]);else J(v[o]);u&&!c&&J(u)}},X=A(B),U=function(e){v(e.target,r.loadedClass),m(e.target,r.loadingClass),y(e.target,Y),x(e.target,"lazyloaded")},V=E(U),Y=function(e){V({target:e.target})},G=function(e){var t,n=e.getAttribute(r.srcsetAttr);(t=r.customMedia[e.getAttribute("data-media")||e.getAttribute("media")])&&e.setAttribute("media",t),n&&e.setAttribute("srcset",n)},Q=E(function(e,t,n,i,o){var a,s,l,d,p,g;(p=x(e,"lazybeforeunveil",t)).defaultPrevented||(i&&(n?v(e,r.autosizesClass):e.setAttribute("sizes",i)),s=e.getAttribute(r.srcsetAttr),a=e.getAttribute(r.srcAttr),o&&(l=e.parentNode,d=l&&f.test(l.nodeName||"")),g=t.firesLoad||"src"in e&&(s||a||d),p={target:e},g&&(y(e,I,!0),clearTimeout(c),c=u(I,2500),v(e,r.loadingClass),y(e,Y,!0)),d&&h.call(l.getElementsByTagName("source"),G),s?e.setAttribute("srcset",s):a&&!d&&(z.test(e.nodeName)?function(e,t){try{e.contentWindow.location.replace(t)}catch(n){e.src=t}}(e,a):e.src=a),o&&(s||d)&&b(e,{src:a})),e._lazyRace&&delete e._lazyRace,m(e,r.lazyClass),T(function(){(!g||e.complete&&e.naturalWidth>1)&&(g?I(p):R--,U(p))},!0)}),J=function(e){var t,n=O.test(e.nodeName),i=n&&(e.getAttribute(r.sizesAttr)||e.getAttribute("sizes")),o="auto"==i;(!o&&l||!n||!e.getAttribute("src")&&!e.srcset||e.complete||g(e,r.errorClass)||!g(e,r.lazyClass))&&(t=x(e,"lazyunveilread").detail,o&&N.updateElem(e,!0,e.offsetWidth),e._lazyRace=!0,R++,Q(e,t,o,i,n))},K=function(){if(!l)if(o.now()-p<999)u(K,999);else{var e=k(function(){r.loadMode=3,X()});l=!0,r.loadMode=3,X(),s("scroll",function(){3==r.loadMode&&(r.loadMode=2),e()},!0)}};return{_:function(){p=o.now(),n.elements=t.getElementsByClassName(r.lazyClass),a=t.getElementsByClassName(r.lazyClass+" "+r.preloadClass),$=r.hFac,s("scroll",X,!0),s("resize",X,!0),e.MutationObserver?new MutationObserver(X).observe(i,{childList:!0,subtree:!0,attributes:!0}):(i.addEventListener("DOMNodeInserted",X,!0),i.addEventListener("DOMAttrModified",X,!0),setInterval(X,999)),s("hashchange",X,!0),["focus","mouseover","click","load","transitionend","animationend","webkitAnimationEnd"].forEach(function(e){t.addEventListener(e,X,!0)}),/d$|^c/.test(t.readyState)?K():(s("load",K),t.addEventListener("DOMContentLoaded",X),u(K,2e4)),n.elements.length?(B(),T._lsFlush()):X()},checkElems:X,unveil:J}}(),N=function(){var e,n=E(function(e,t,n,r){var i,o,a;if(e._lazysizesWidth=r,r+="px",e.setAttribute("sizes",r),f.test(t.nodeName||""))for(i=t.getElementsByTagName("source"),o=0,a=i.length;o<a;o++)i[o].setAttribute("sizes",r);n.detail.dataAttr||b(e,n.detail)}),i=function(e,t,r){var i,o=e.parentNode;o&&(r=C(e,o,r),(i=x(e,"lazybeforesizes",{width:r,dataAttr:!!t})).defaultPrevented||(r=i.detail.width)&&r!==e._lazysizesWidth&&n(e,o,i,r))},o=k(function(){var t,n=e.length;if(n)for(t=0;t<n;t++)i(e[t])});return{_:function(){e=t.getElementsByClassName(r.autosizesClass),s("resize",o)},checkElems:o,updateElem:i}}(),D=function(){D.i||(D.i=!0,N._(),S._())};return n={cfg:r,autoSizer:N,loader:S,init:D,uP:b,aC:v,rC:m,hC:g,fire:x,gW:C,rAF:T}}(e,e.document);e.lazySizes=n,"object"==typeof module&&module.exports&&(module.exports=n)}(window),$(document).ready(function(){$("body").removeClass("no-js"),ShowHideNav(),formCheck()}),$(window).resize(function(){$(".header").removeClass("hide-nav")}),$("#contactForm").submit(function(e){e.preventDefault();var t=$("#contactBtn"),n=$(".form__input input"),r=$(".form__input textarea");name=$("input#name").val(),$.ajax({url:"https://formspree.io/jan.czizikow@gmail.com",method:"POST",data:$(this).serialize(),dataType:"json",beforeSend:function(){t.prop("disabled",!0),t.text("Sending...")},complete:function(){t.prop("disabled",!1),t.text("Send")},success:function(e){n.val(""),r.val(""),alert("Thanks for contacting me, "+name+" ! Will get back to you soon!"),dataLayer.push({event:"formSubmitted",formName:"Contact"})},error:function(e){alert("Ups, something went wrong, please try again. You can check console log for more information."),console.log(e)}})});
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-sleek
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Czizikow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-26 00:00:00.000000000 Z
11
+ date: 2017-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -89,13 +89,17 @@ extra_rdoc_files: []
89
89
  files:
90
90
  - LICENSE.txt
91
91
  - README.md
92
+ - _includes/card.html
92
93
  - _includes/critical.css
93
94
  - _includes/disqus.html
94
95
  - _includes/footer.html
95
96
  - _includes/form.html
96
- - _includes/ga.html
97
+ - _includes/gtm.html
97
98
  - _includes/head.html
98
99
  - _includes/header.html
100
+ - _includes/logo.svg
101
+ - _includes/pagination.html
102
+ - _layouts/compress.html
99
103
  - _layouts/default.html
100
104
  - _layouts/page.html
101
105
  - _layouts/post.html
@@ -107,23 +111,66 @@ files:
107
111
  - _sass/components/_btn.scss
108
112
  - _sass/components/_card.scss
109
113
  - _sass/components/_form.scss
114
+ - _sass/components/_pagination.scss
110
115
  - _sass/components/_syntax.scss
111
116
  - _sass/components/_table.scss
112
117
  - _sass/components/_top.scss
118
+ - _sass/components/_zoom.scss
113
119
  - _sass/layout/_footer.scss
114
120
  - _sass/layout/_grid.scss
115
121
  - _sass/layout/_nav.scss
116
122
  - _sass/main.scss
117
123
  - _sass/pages/_page.scss
118
124
  - _sass/pages/_post.scss
125
+ - _sass/vendor/_breakpoint.scss
119
126
  - _sass/vendor/_normalize.scss
120
- - _sass/vendor/_susy.scss
121
127
  - assets/css/main.css
122
- - assets/img/bigg.jpg
128
+ - assets/img/favicon.jpg
129
+ - assets/img/icons/android-chrome-192x192.png
130
+ - assets/img/icons/android-chrome-256x256.png
131
+ - assets/img/icons/apple-touch-icon.png
132
+ - assets/img/icons/browserconfig.xml
133
+ - assets/img/icons/favicon-16x16.png
134
+ - assets/img/icons/favicon-32x32.png
135
+ - assets/img/icons/favicon.ico
123
136
  - assets/img/icons/icon-github.svg
124
137
  - assets/img/icons/icon-instagram.svg
125
138
  - assets/img/icons/icon-twitter.svg
126
- - assets/img/shane-rounce-205187.jpg
139
+ - assets/img/icons/manifest.json
140
+ - assets/img/icons/mstile-150x150.png
141
+ - assets/img/icons/safari-pinned-tab.svg
142
+ - assets/img/posts/emile-perron-190221.jpg
143
+ - assets/img/posts/emile-perron-190221_lg.jpg
144
+ - assets/img/posts/emile-perron-190221_md.jpg
145
+ - assets/img/posts/emile-perron-190221_placehold.jpg
146
+ - assets/img/posts/emile-perron-190221_sm.jpg
147
+ - assets/img/posts/emile-perron-190221_thumb.jpg
148
+ - assets/img/posts/emile-perron-190221_thumb@2x.jpg
149
+ - assets/img/posts/emile-perron-190221_xs.jpg
150
+ - assets/img/posts/ruben-santander-69158.jpg
151
+ - assets/img/posts/ruben-santander-69158_lg.jpg
152
+ - assets/img/posts/ruben-santander-69158_md.jpg
153
+ - assets/img/posts/ruben-santander-69158_placehold.jpg
154
+ - assets/img/posts/ruben-santander-69158_sm.jpg
155
+ - assets/img/posts/ruben-santander-69158_thumb.jpg
156
+ - assets/img/posts/ruben-santander-69158_thumb@2x.jpg
157
+ - assets/img/posts/ruben-santander-69158_xs.jpg
158
+ - assets/img/posts/shane-rounce-205187.jpg
159
+ - assets/img/posts/shane-rounce-205187_lg.jpg
160
+ - assets/img/posts/shane-rounce-205187_md.jpg
161
+ - assets/img/posts/shane-rounce-205187_placehold.jpg
162
+ - assets/img/posts/shane-rounce-205187_sm.jpg
163
+ - assets/img/posts/shane-rounce-205187_thumb.jpg
164
+ - assets/img/posts/shane-rounce-205187_thumb@2x.jpg
165
+ - assets/img/posts/shane-rounce-205187_xs.jpg
166
+ - assets/img/posts/sleek.jpg
167
+ - assets/img/posts/sleek_lg.jpg
168
+ - assets/img/posts/sleek_md.jpg
169
+ - assets/img/posts/sleek_placehold.jpg
170
+ - assets/img/posts/sleek_sm.jpg
171
+ - assets/img/posts/sleek_thumb.jpg
172
+ - assets/img/posts/sleek_thumb@2x.jpg
173
+ - assets/img/posts/sleek_xs.jpg
127
174
  - assets/js/bundle.js
128
175
  homepage: https://janczizikow.github.io/sleek/
129
176
  licenses: