jekyll-sleek 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,31 @@
1
+ footer {
2
+ padding: 2.8125rem 0;
3
+ border-top: 1px solid #f0f0f0;
4
+ text-align: center;
5
+ font-size: 0.875rem;
6
+ color: rgba(33,33,33,0.6);
7
+ a {
8
+ color: rgba(33,33,33,0.6);
9
+ &:hover {
10
+ color: $primary;
11
+ }
12
+ }
13
+ }
14
+
15
+ .social {
16
+ display: flex;
17
+ justify-content: space-around;
18
+ align-items: center;
19
+ max-width: 200px;
20
+ margin: 0 auto 25px;
21
+ }
22
+
23
+ .social__link:not(:last-child) {
24
+ margin-right: 1.125rem;
25
+ }
26
+
27
+ .social__icon {
28
+ fill: currentColor;
29
+ height: 1.5rem;
30
+ width: 1.5rem;
31
+ }
@@ -0,0 +1,23 @@
1
+ .container {
2
+ padding: 0 20px;
3
+
4
+ @include breakpoint($xs) {
5
+ @include container(auto);
6
+ }
7
+
8
+ @include breakpoint($sm) {
9
+ @include container(540px);
10
+ }
11
+
12
+ @include breakpoint($md) {
13
+ @include container(720px);
14
+ }
15
+
16
+ @include breakpoint($lg) {
17
+ @include container(960px);
18
+ }
19
+
20
+ @include breakpoint($xl) {
21
+ @include container(1170px);
22
+ }
23
+ }
@@ -0,0 +1,93 @@
1
+ .header {
2
+ background-color: $bg-color;
3
+ color: $text-color;
4
+ position: absolute;
5
+ z-index: 4;
6
+ width: 100%;
7
+ top: 0;
8
+ left: 0;
9
+ // box-shadow: 0 0 14px 0 rgba(0,0,0,.2);
10
+ will-change: transform;
11
+ transition: transform .3s, background-color 0.5s ease;
12
+ transform: translateY(0%);
13
+
14
+ a {
15
+ display: flex;
16
+ align-items: center;
17
+ }
18
+
19
+ @include breakpoint($lg) {
20
+
21
+ nav > .menu-left a {
22
+ color: rgba(255, 255, 255, 0.75);
23
+ &:hover {
24
+ color: $bg-color;
25
+
26
+ &::after {
27
+ background: $bg-color;
28
+ }
29
+ }
30
+ }
31
+
32
+ }
33
+
34
+ &.fix-nav {
35
+ position: fixed;
36
+ background-color: rgba(255,255,255,1);
37
+ transition: transform .3s, background-color 0.5s ease;
38
+ nav > .logo {
39
+ color: $heading-color;
40
+ background-color: rgba(255, 255, 255, 0.96);
41
+ }
42
+
43
+ nav > .menu-left a {
44
+ color: $text-color;
45
+ &:hover {
46
+ color: $heading-color;
47
+ &:after {
48
+ background: $primary;
49
+ }
50
+ }
51
+ }
52
+ }
53
+
54
+ &.hide-nav {
55
+ transform: translateY(-120%);
56
+ transition: transform .3s;
57
+ }
58
+ }
59
+
60
+ .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;
68
+ overflow: hidden;
69
+ display: block;
70
+ float: left;
71
+ padding: 19px 0;
72
+ margin-right: 1.25rem;
73
+ outline: 0;
74
+ }
75
+
76
+ .header__inner {
77
+ display: flex;
78
+ align-items: center;
79
+ height: 3.75em;
80
+ justify-content: space-between;
81
+
82
+ }
83
+
84
+ .header__logo,
85
+ .header__links {
86
+ display: flex;
87
+ height: 100%;
88
+ }
89
+
90
+ .header__links a {
91
+ color: $text-color;
92
+ padding: 0 1em;
93
+ }
data/_sass/main.scss ADDED
@@ -0,0 +1,38 @@
1
+ @charset "UTF-8";
2
+
3
+ // 1. Configuration and helpers
4
+ @import
5
+ "abstracts/variables",
6
+ "abstracts/mixins";
7
+
8
+ // 2. Vendors
9
+ @import
10
+ "vendor/normalize",
11
+ "vendor/susy";
12
+
13
+ // 3. Base
14
+ @import
15
+ "base/base",
16
+ "base/typography",
17
+ "base/helpers";
18
+
19
+ // 4. Layout
20
+ @import
21
+ "layout/grid",
22
+ "layout/nav",
23
+ "layout/footer";
24
+
25
+ // 5. Components
26
+ @import
27
+ "components/btn",
28
+ "components/top",
29
+ "components/card",
30
+ "components/form",
31
+ // "components/autocomplete",
32
+ "components/table",
33
+ "components/syntax";
34
+
35
+ // 6. Page-specific styles
36
+ @import
37
+ "pages/page",
38
+ "pages/post";
@@ -0,0 +1,89 @@
1
+ .hero {
2
+ margin: 3.75rem auto 0;
3
+ min-height: 16.25rem;
4
+ width: 100%;
5
+ position: relative;
6
+ background: #dde5ea url("../img/shane-rounce-205187.jpg") no-repeat 50% / cover;
7
+
8
+ @include breakpoint($lg) {
9
+ margin: 0 auto;
10
+ height: 36em;
11
+ }
12
+
13
+ &::before {
14
+ position: absolute;
15
+ display: block;
16
+ content: "";
17
+ top: 0;
18
+ left: 0;
19
+ width: 100%;
20
+ height: 100%;
21
+ background: rgba(52, 56, 81, .8);
22
+ }
23
+ }
24
+
25
+ .hero--small {
26
+ margin: 3.75rem auto 0;
27
+ min-height: 8.75rem;
28
+ width: 100%;
29
+ position: relative;
30
+
31
+ @include breakpoint($lg) {
32
+ height: 12.5em;
33
+ }
34
+
35
+ &::before {
36
+ position: absolute;
37
+ display: block;
38
+ content: "";
39
+ top: 0;
40
+ left: 0;
41
+ width: 100%;
42
+ height: 100%;
43
+ background: rgba(52, 56, 81, .8);
44
+ }
45
+ }
46
+
47
+ .hero__wrap {
48
+ position: absolute;
49
+ top: 50%;
50
+ left: 50%;
51
+ transform: translate(-50%, -50%);
52
+ text-align: center;
53
+ max-width: 40em;
54
+ z-index: 1;
55
+
56
+ .hero__title {
57
+ color: #fff;
58
+
59
+ @include breakpoint($md) {
60
+ font-size: 2.625em;
61
+ line-height: 3.125rem;
62
+ }
63
+ }
64
+ }
65
+
66
+ .page-content {
67
+ max-width: 52.5rem;
68
+ margin: 0 auto;
69
+ padding: 2.5em 0;
70
+
71
+ @include breakpoint($md) {
72
+ padding: 3.75rem 0;
73
+ }
74
+ }
75
+
76
+ .blog {
77
+ background-color: #f9f9f9;
78
+ }
79
+
80
+ .post-list {
81
+ padding-top: 2.5em;
82
+ display: flex;
83
+ flex-wrap: wrap;
84
+ flex: 1 0 auto;
85
+
86
+ @include breakpoint($md) {
87
+ padding-top: 5em;
88
+ }
89
+ }
@@ -0,0 +1,14 @@
1
+ .post-content {
2
+ max-width: 52.5rem;
3
+ margin: 0 auto;
4
+ padding-top: 2.5em;
5
+
6
+ @include breakpoint($md) {
7
+ padding-top: 5em;
8
+ }
9
+ }
10
+
11
+ .comments {
12
+ padding: 50px 0;
13
+ background-color: #fafafa;
14
+ }
@@ -0,0 +1 @@
1
+ @import "node_modules/normalize.css/normalize";
@@ -0,0 +1,5 @@
1
+ // Susy and breakpoint
2
+ // ============
3
+
4
+ @import "node_modules/susy/sass/susy";
5
+ @import "node_modules/breakpoint-sass/stylesheets/breakpoint";
@@ -0,0 +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}
2
+
3
+ /*# sourceMappingURL=maps/main.css.map */
Binary file
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 16 16" width="16px" height="16px"><path d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 16 16" width="100%" height="100%"><path d="M8 0C5.827 0 5.555.01 4.702.048 3.85.088 3.27.222 2.76.42a3.908 3.908 0 0 0-1.417.923c-.445.444-.72.89-.923 1.417-.198.51-.333 1.09-.372 1.942C.008 5.555 0 5.827 0 8s.01 2.445.048 3.298c.04.852.174 1.433.372 1.942.204.526.478.973.923 1.417.444.445.89.72 1.417.923.51.198 1.09.333 1.942.372.853.04 1.125.048 3.298.048s2.445-.01 3.298-.048c.852-.04 1.433-.174 1.942-.372a3.908 3.908 0 0 0 1.417-.923c.445-.444.72-.89.923-1.417.198-.51.333-1.09.372-1.942.04-.853.048-1.125.048-3.298s-.01-2.445-.048-3.298c-.04-.852-.174-1.433-.372-1.942a3.908 3.908 0 0 0-.923-1.417A3.886 3.886 0 0 0 13.24.42c-.51-.198-1.09-.333-1.942-.372C10.445.008 10.173 0 8 0zm0 1.44c2.136 0 2.39.01 3.233.048.78.036 1.203.166 1.485.276.374.145.64.318.92.598.28.28.453.546.598.92.11.282.24.705.276 1.485.038.844.047 1.097.047 3.233s-.01 2.39-.05 3.233c-.04.78-.17 1.203-.28 1.485-.15.374-.32.64-.6.92-.28.28-.55.453-.92.598-.28.11-.71.24-1.49.276-.85.038-1.1.047-3.24.047s-2.39-.01-3.24-.05c-.78-.04-1.21-.17-1.49-.28a2.49 2.49 0 0 1-.92-.6c-.28-.28-.46-.55-.6-.92-.11-.28-.24-.71-.28-1.49-.03-.84-.04-1.1-.04-3.23s.01-2.39.04-3.24c.04-.78.17-1.21.28-1.49.14-.38.32-.64.6-.92.28-.28.54-.46.92-.6.28-.11.7-.24 1.48-.28.85-.03 1.1-.04 3.24-.04zm0 2.452a4.108 4.108 0 1 0 0 8.215 4.108 4.108 0 0 0 0-8.215zm0 6.775a2.667 2.667 0 1 1 0-5.334 2.667 2.667 0 0 1 0 5.334zm5.23-6.937a.96.96 0 1 1-1.92 0 .96.96 0 0 1 1.92 0z"></path></svg>
@@ -0,0 +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>
Binary file
@@ -0,0 +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)}})});
metadata ADDED
@@ -0,0 +1,152 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-sleek
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jan Czizikow
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-11-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-seo-tag
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.3'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-sitemap
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.12'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.12'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ description:
84
+ email:
85
+ - jan.czizikow@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - LICENSE.txt
91
+ - README.md
92
+ - _includes/critical.css
93
+ - _includes/disqus.html
94
+ - _includes/footer.html
95
+ - _includes/form.html
96
+ - _includes/ga.html
97
+ - _includes/head.html
98
+ - _includes/header.html
99
+ - _layouts/default.html
100
+ - _layouts/page.html
101
+ - _layouts/post.html
102
+ - _sass/abstracts/_mixins.scss
103
+ - _sass/abstracts/_variables.scss
104
+ - _sass/base/_base.scss
105
+ - _sass/base/_helpers.scss
106
+ - _sass/base/_typography.scss
107
+ - _sass/components/_btn.scss
108
+ - _sass/components/_card.scss
109
+ - _sass/components/_form.scss
110
+ - _sass/components/_syntax.scss
111
+ - _sass/components/_table.scss
112
+ - _sass/components/_top.scss
113
+ - _sass/layout/_footer.scss
114
+ - _sass/layout/_grid.scss
115
+ - _sass/layout/_nav.scss
116
+ - _sass/main.scss
117
+ - _sass/pages/_page.scss
118
+ - _sass/pages/_post.scss
119
+ - _sass/vendor/_normalize.scss
120
+ - _sass/vendor/_susy.scss
121
+ - assets/css/main.css
122
+ - assets/img/bigg.jpg
123
+ - assets/img/icons/icon-github.svg
124
+ - assets/img/icons/icon-instagram.svg
125
+ - assets/img/icons/icon-twitter.svg
126
+ - assets/img/shane-rounce-205187.jpg
127
+ - assets/js/bundle.js
128
+ homepage: https://janczizikow.github.io/sleek/
129
+ licenses:
130
+ - MIT
131
+ metadata: {}
132
+ post_install_message:
133
+ rdoc_options: []
134
+ require_paths:
135
+ - lib
136
+ required_ruby_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ required_rubygems_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ requirements: []
147
+ rubyforge_project:
148
+ rubygems_version: 2.6.14
149
+ signing_key:
150
+ specification_version: 4
151
+ summary: Sleek is a modern Jekyll theme focused on speed performance & SEO best practices.
152
+ test_files: []