Scezui commited on
Commit
259d0f3
·
0 Parent(s):

initial commit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +36 -0
  2. Dockerfile +21 -0
  3. README.md +11 -0
  4. app.py +64 -0
  5. gan.h5 +3 -0
  6. pipfile +15 -0
  7. requirements.txt +5 -0
  8. static/css/animate.css +3272 -0
  9. static/css/color.css +370 -0
  10. static/css/font-awesome.min.css +4 -0
  11. static/css/style.css +3070 -0
  12. static/generated/generated_image.png +0 -0
  13. static/images/arrow.gif +0 -0
  14. static/images/banner-images/banner-image-1.jpg +0 -0
  15. static/images/company-images/company-logo1.png +0 -0
  16. static/images/company-images/company-logo2.png +0 -0
  17. static/images/company-images/company-logo3.png +0 -0
  18. static/images/company-images/company-logo4.png +0 -0
  19. static/images/company-images/company-logo5.png +0 -0
  20. static/images/company-images/company-logo6.png +0 -0
  21. static/images/company-images/company-logo7.png +0 -0
  22. static/images/company-images/company-logo8.png +0 -0
  23. static/images/company-images/company-logo9.png +0 -0
  24. static/images/dancer.jpg +0 -0
  25. static/images/favicon.ico +6 -0
  26. static/images/gallery-images/gallery-image-1.jpg +0 -0
  27. static/images/gallery-images/gallery-image-2.jpg +0 -0
  28. static/images/gallery-images/gallery-image-3.jpg +0 -0
  29. static/images/gallery-images/gallery-image-4.jpg +0 -0
  30. static/images/gallery-images/gallery-image-5.jpg +0 -0
  31. static/images/gallery-images/gallery-image-6.jpg +0 -0
  32. static/images/logo-2.png +0 -0
  33. static/images/logo.png +0 -0
  34. static/images/logox.png +0 -0
  35. static/images/logoxx.png +0 -0
  36. static/images/receipt.jpg +0 -0
  37. static/images/receiptcon.png +0 -0
  38. static/images/uplogo.gif +0 -0
  39. static/images/uplogo1.gif +0 -0
  40. static/images/uplogo2.gif +0 -0
  41. static/images/user-images/user-1.jpg +0 -0
  42. static/images/user-images/user-2.jpg +0 -0
  43. static/images/user-images/user-3.jpg +0 -0
  44. static/js/featherlight.gallery.min.js +7 -0
  45. static/js/featherlight.min.js +8 -0
  46. static/js/images-loaded.min.js +7 -0
  47. static/js/jquery.1.8.3.min.js +2 -0
  48. static/js/jquery.easing.min.js +1 -0
  49. static/js/jquery.enllax.min.js +2 -0
  50. static/js/jquery.scrollUp.min.js +7 -0
.gitattributes ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz filter=lfs diff=lfs merge=lfs -text
33
+ *.zip filter=lfs diff=lfs merge=lfs -text
34
+ *.zst filter=lfs diff=lfs merge=lfs -text
35
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ .gif filter=lfs diff=lfs merge=lfs -text
Dockerfile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
+ # you will also find guides on how best to write your Dockerfile
3
+
4
+ FROM python:3.11.4
5
+
6
+ WORKDIR /code
7
+
8
+ COPY ./requirements.txt /code/requirements.txt
9
+
10
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
+
12
+ RUN useradd -m -u 1000 user
13
+ USER user
14
+ ENV HOME=/home/user \
15
+ PATH=/home/user/.local/bin:$PATH
16
+
17
+ WORKDIR $HOME/app
18
+
19
+ COPY --chown=user . $HOME/app
20
+
21
+ CMD ["gunicorn", "-b" , "0.0.0.0:7860", "app:app"]
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: FifaAvatarGenerator
3
+ emoji: ⚡
4
+ colorFrom: yellow
5
+ colorTo: indigo
6
+ sdk: docker
7
+ pinned: false
8
+ license: other
9
+ ---
10
+
11
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from flask import Flask, render_template, jsonify, request, redirect, url_for
3
+ from tensorflow.keras.models import load_model
4
+ import numpy as np
5
+ from numpy.random import randn
6
+ from matplotlib import pyplot
7
+ import base64
8
+ from io import BytesIO
9
+
10
+ app = Flask(__name__)
11
+
12
+ GENERATED_FOLDER = 'static/generated'
13
+
14
+ app.config['GENERATED_FOLDER'] = GENERATED_FOLDER
15
+
16
+ # Load your GAN model from the H5 file
17
+ model = load_model('gan.h5')
18
+
19
+ def generate_latent_points(latent_dim, n_samples):
20
+ # generate points in the latent space
21
+ x_input = randn(latent_dim * n_samples)
22
+ # reshape into a batch of inputs for the network
23
+ z_input = x_input.reshape(n_samples, latent_dim)
24
+ return z_input
25
+
26
+ def generate_images(model, latent_points):
27
+ generated_images = model.predict(latent_points)
28
+ return generated_images
29
+
30
+ # create a plot of generated images
31
+ def plot_generated(examples, n, image_size=(80, 80)):
32
+ # plot images
33
+ fig, axes = pyplot.subplots(n, n, figsize=(8, 8))
34
+ for i in range(n * n):
35
+ # turn off axis
36
+ axes.flatten()[i].axis('off')
37
+ # plot raw pixel data
38
+ axes.flatten()[i].imshow(examples[i, :, :])
39
+
40
+ # Save the plot to BytesIO
41
+ buf = BytesIO()
42
+ fig.savefig(buf, format='png')
43
+ buf.seek(0)
44
+ pyplot.close(fig)
45
+
46
+ return base64.b64encode(buf.read()).decode('utf-8')
47
+
48
+ @app.route('/')
49
+ def index():
50
+ return render_template('index.html')
51
+
52
+ @app.route('/generate', methods=['POST'])
53
+ def generate():
54
+ latent_dim = 100
55
+ n_samples = 4
56
+ latent_points = generate_latent_points(latent_dim, n_samples)
57
+ generated_images = generate_images(model, latent_points)
58
+ generated_images = (generated_images + 1) / 2.0
59
+ img_data = plot_generated(generated_images, int(np.sqrt(n_samples)))
60
+
61
+ return jsonify({'success': True, 'generated_image': img_data})
62
+
63
+ if __name__ == '__main__':
64
+ app.run(debug=True)
gan.h5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:324008cbd2aae659dd8e97487d2093e1b3da5c9078a2e5648fb39d25f8ee5cc2
3
+ size 5563784
pipfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [[source]]
2
+ url = "https://pypi.org/simple"
3
+ verify_ssl = true
4
+ name = "pypi"
5
+
6
+ [packages]
7
+ flask = "*"
8
+ gunicorn = "*"
9
+ tensorflow = "*"
10
+ matplotlib = "*"
11
+ numpy = "*"
12
+
13
+
14
+ [requires]
15
+ python_version = "3.11.4"
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ flask
2
+ gunicorn
3
+ tensorflow
4
+ matplotlib
5
+ numpy
static/css/animate.css ADDED
@@ -0,0 +1,3272 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "UTF-8";
2
+
3
+ /*!
4
+ Animate.css - http://daneden.me/animate
5
+ Licensed under the MIT license - http://opensource.org/licenses/MIT
6
+
7
+ Copyright (c) 2015 Daniel Eden
8
+ */
9
+
10
+ .animated {
11
+ -webkit-animation-duration: 1s;
12
+ animation-duration: 1s;
13
+ -webkit-animation-fill-mode: both;
14
+ animation-fill-mode: both;
15
+ }
16
+
17
+ .animated.infinite {
18
+ -webkit-animation-iteration-count: infinite;
19
+ animation-iteration-count: infinite;
20
+ }
21
+
22
+ .animated.hinge {
23
+ -webkit-animation-duration: 2s;
24
+ animation-duration: 2s;
25
+ }
26
+
27
+ .animated.bounceIn,
28
+ .animated.bounceOut {
29
+ -webkit-animation-duration: .75s;
30
+ animation-duration: .75s;
31
+ }
32
+
33
+ .animated.flipOutX,
34
+ .animated.flipOutY {
35
+ -webkit-animation-duration: .75s;
36
+ animation-duration: .75s;
37
+ }
38
+
39
+ @-webkit-keyframes bounce {
40
+ from, 20%, 53%, 80%, 100% {
41
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
42
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
43
+ -webkit-transform: translate3d(0,0,0);
44
+ transform: translate3d(0,0,0);
45
+ }
46
+
47
+ 40%, 43% {
48
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
49
+ animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
50
+ -webkit-transform: translate3d(0, -30px, 0);
51
+ transform: translate3d(0, -30px, 0);
52
+ }
53
+
54
+ 70% {
55
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
56
+ animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
57
+ -webkit-transform: translate3d(0, -15px, 0);
58
+ transform: translate3d(0, -15px, 0);
59
+ }
60
+
61
+ 90% {
62
+ -webkit-transform: translate3d(0,-4px,0);
63
+ transform: translate3d(0,-4px,0);
64
+ }
65
+ }
66
+
67
+ @keyframes bounce {
68
+ from, 20%, 53%, 80%, 100% {
69
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
70
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
71
+ -webkit-transform: translate3d(0,0,0);
72
+ transform: translate3d(0,0,0);
73
+ }
74
+
75
+ 40%, 43% {
76
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
77
+ animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
78
+ -webkit-transform: translate3d(0, -30px, 0);
79
+ transform: translate3d(0, -30px, 0);
80
+ }
81
+
82
+ 70% {
83
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
84
+ animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
85
+ -webkit-transform: translate3d(0, -15px, 0);
86
+ transform: translate3d(0, -15px, 0);
87
+ }
88
+
89
+ 90% {
90
+ -webkit-transform: translate3d(0,-4px,0);
91
+ transform: translate3d(0,-4px,0);
92
+ }
93
+ }
94
+
95
+ .bounce {
96
+ -webkit-animation-name: bounce;
97
+ animation-name: bounce;
98
+ -webkit-transform-origin: center bottom;
99
+ transform-origin: center bottom;
100
+ }
101
+
102
+ @-webkit-keyframes flash {
103
+ from, 50%, 100% {
104
+ opacity: 1;
105
+ }
106
+
107
+ 25%, 75% {
108
+ opacity: 0;
109
+ }
110
+ }
111
+
112
+ @keyframes flash {
113
+ from, 50%, 100% {
114
+ opacity: 1;
115
+ }
116
+
117
+ 25%, 75% {
118
+ opacity: 0;
119
+ }
120
+ }
121
+
122
+ .flash {
123
+ -webkit-animation-name: flash;
124
+ animation-name: flash;
125
+ }
126
+
127
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
128
+
129
+ @-webkit-keyframes pulse {
130
+ from {
131
+ -webkit-transform: scale3d(1, 1, 1);
132
+ transform: scale3d(1, 1, 1);
133
+ }
134
+
135
+ 50% {
136
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
137
+ transform: scale3d(1.05, 1.05, 1.05);
138
+ }
139
+
140
+ 100% {
141
+ -webkit-transform: scale3d(1, 1, 1);
142
+ transform: scale3d(1, 1, 1);
143
+ }
144
+ }
145
+
146
+ @keyframes pulse {
147
+ from {
148
+ -webkit-transform: scale3d(1, 1, 1);
149
+ transform: scale3d(1, 1, 1);
150
+ }
151
+
152
+ 50% {
153
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
154
+ transform: scale3d(1.05, 1.05, 1.05);
155
+ }
156
+
157
+ 100% {
158
+ -webkit-transform: scale3d(1, 1, 1);
159
+ transform: scale3d(1, 1, 1);
160
+ }
161
+ }
162
+
163
+ .pulse {
164
+ -webkit-animation-name: pulse;
165
+ animation-name: pulse;
166
+ }
167
+
168
+ @-webkit-keyframes rubberBand {
169
+ from {
170
+ -webkit-transform: scale3d(1, 1, 1);
171
+ transform: scale3d(1, 1, 1);
172
+ }
173
+
174
+ 30% {
175
+ -webkit-transform: scale3d(1.25, 0.75, 1);
176
+ transform: scale3d(1.25, 0.75, 1);
177
+ }
178
+
179
+ 40% {
180
+ -webkit-transform: scale3d(0.75, 1.25, 1);
181
+ transform: scale3d(0.75, 1.25, 1);
182
+ }
183
+
184
+ 50% {
185
+ -webkit-transform: scale3d(1.15, 0.85, 1);
186
+ transform: scale3d(1.15, 0.85, 1);
187
+ }
188
+
189
+ 65% {
190
+ -webkit-transform: scale3d(.95, 1.05, 1);
191
+ transform: scale3d(.95, 1.05, 1);
192
+ }
193
+
194
+ 75% {
195
+ -webkit-transform: scale3d(1.05, .95, 1);
196
+ transform: scale3d(1.05, .95, 1);
197
+ }
198
+
199
+ 100% {
200
+ -webkit-transform: scale3d(1, 1, 1);
201
+ transform: scale3d(1, 1, 1);
202
+ }
203
+ }
204
+
205
+ @keyframes rubberBand {
206
+ from {
207
+ -webkit-transform: scale3d(1, 1, 1);
208
+ transform: scale3d(1, 1, 1);
209
+ }
210
+
211
+ 30% {
212
+ -webkit-transform: scale3d(1.25, 0.75, 1);
213
+ transform: scale3d(1.25, 0.75, 1);
214
+ }
215
+
216
+ 40% {
217
+ -webkit-transform: scale3d(0.75, 1.25, 1);
218
+ transform: scale3d(0.75, 1.25, 1);
219
+ }
220
+
221
+ 50% {
222
+ -webkit-transform: scale3d(1.15, 0.85, 1);
223
+ transform: scale3d(1.15, 0.85, 1);
224
+ }
225
+
226
+ 65% {
227
+ -webkit-transform: scale3d(.95, 1.05, 1);
228
+ transform: scale3d(.95, 1.05, 1);
229
+ }
230
+
231
+ 75% {
232
+ -webkit-transform: scale3d(1.05, .95, 1);
233
+ transform: scale3d(1.05, .95, 1);
234
+ }
235
+
236
+ 100% {
237
+ -webkit-transform: scale3d(1, 1, 1);
238
+ transform: scale3d(1, 1, 1);
239
+ }
240
+ }
241
+
242
+ .rubberBand {
243
+ -webkit-animation-name: rubberBand;
244
+ animation-name: rubberBand;
245
+ }
246
+
247
+ @-webkit-keyframes shake {
248
+ from, 100% {
249
+ -webkit-transform: translate3d(0, 0, 0);
250
+ transform: translate3d(0, 0, 0);
251
+ }
252
+
253
+ 10%, 30%, 50%, 70%, 90% {
254
+ -webkit-transform: translate3d(-10px, 0, 0);
255
+ transform: translate3d(-10px, 0, 0);
256
+ }
257
+
258
+ 20%, 40%, 60%, 80% {
259
+ -webkit-transform: translate3d(10px, 0, 0);
260
+ transform: translate3d(10px, 0, 0);
261
+ }
262
+ }
263
+
264
+ @keyframes shake {
265
+ from, 100% {
266
+ -webkit-transform: translate3d(0, 0, 0);
267
+ transform: translate3d(0, 0, 0);
268
+ }
269
+
270
+ 10%, 30%, 50%, 70%, 90% {
271
+ -webkit-transform: translate3d(-10px, 0, 0);
272
+ transform: translate3d(-10px, 0, 0);
273
+ }
274
+
275
+ 20%, 40%, 60%, 80% {
276
+ -webkit-transform: translate3d(10px, 0, 0);
277
+ transform: translate3d(10px, 0, 0);
278
+ }
279
+ }
280
+
281
+ .shake {
282
+ -webkit-animation-name: shake;
283
+ animation-name: shake;
284
+ }
285
+
286
+ @-webkit-keyframes swing {
287
+ 20% {
288
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
289
+ transform: rotate3d(0, 0, 1, 15deg);
290
+ }
291
+
292
+ 40% {
293
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
294
+ transform: rotate3d(0, 0, 1, -10deg);
295
+ }
296
+
297
+ 60% {
298
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
299
+ transform: rotate3d(0, 0, 1, 5deg);
300
+ }
301
+
302
+ 80% {
303
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
304
+ transform: rotate3d(0, 0, 1, -5deg);
305
+ }
306
+
307
+ 100% {
308
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
309
+ transform: rotate3d(0, 0, 1, 0deg);
310
+ }
311
+ }
312
+
313
+ @keyframes swing {
314
+ 20% {
315
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
316
+ transform: rotate3d(0, 0, 1, 15deg);
317
+ }
318
+
319
+ 40% {
320
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
321
+ transform: rotate3d(0, 0, 1, -10deg);
322
+ }
323
+
324
+ 60% {
325
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
326
+ transform: rotate3d(0, 0, 1, 5deg);
327
+ }
328
+
329
+ 80% {
330
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
331
+ transform: rotate3d(0, 0, 1, -5deg);
332
+ }
333
+
334
+ 100% {
335
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
336
+ transform: rotate3d(0, 0, 1, 0deg);
337
+ }
338
+ }
339
+
340
+ .swing {
341
+ -webkit-transform-origin: top center;
342
+ transform-origin: top center;
343
+ -webkit-animation-name: swing;
344
+ animation-name: swing;
345
+ }
346
+
347
+ @-webkit-keyframes tada {
348
+ from {
349
+ -webkit-transform: scale3d(1, 1, 1);
350
+ transform: scale3d(1, 1, 1);
351
+ }
352
+
353
+ 10%, 20% {
354
+ -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
355
+ transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
356
+ }
357
+
358
+ 30%, 50%, 70%, 90% {
359
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
360
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
361
+ }
362
+
363
+ 40%, 60%, 80% {
364
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
365
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
366
+ }
367
+
368
+ 100% {
369
+ -webkit-transform: scale3d(1, 1, 1);
370
+ transform: scale3d(1, 1, 1);
371
+ }
372
+ }
373
+
374
+ @keyframes tada {
375
+ from {
376
+ -webkit-transform: scale3d(1, 1, 1);
377
+ transform: scale3d(1, 1, 1);
378
+ }
379
+
380
+ 10%, 20% {
381
+ -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
382
+ transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
383
+ }
384
+
385
+ 30%, 50%, 70%, 90% {
386
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
387
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
388
+ }
389
+
390
+ 40%, 60%, 80% {
391
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
392
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
393
+ }
394
+
395
+ 100% {
396
+ -webkit-transform: scale3d(1, 1, 1);
397
+ transform: scale3d(1, 1, 1);
398
+ }
399
+ }
400
+
401
+ .tada {
402
+ -webkit-animation-name: tada;
403
+ animation-name: tada;
404
+ }
405
+
406
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
407
+
408
+ @-webkit-keyframes wobble {
409
+ from {
410
+ -webkit-transform: none;
411
+ transform: none;
412
+ }
413
+
414
+ 15% {
415
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
416
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
417
+ }
418
+
419
+ 30% {
420
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
421
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
422
+ }
423
+
424
+ 45% {
425
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
426
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
427
+ }
428
+
429
+ 60% {
430
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
431
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
432
+ }
433
+
434
+ 75% {
435
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
436
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
437
+ }
438
+
439
+ 100% {
440
+ -webkit-transform: none;
441
+ transform: none;
442
+ }
443
+ }
444
+
445
+ @keyframes wobble {
446
+ from {
447
+ -webkit-transform: none;
448
+ transform: none;
449
+ }
450
+
451
+ 15% {
452
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
453
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
454
+ }
455
+
456
+ 30% {
457
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
458
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
459
+ }
460
+
461
+ 45% {
462
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
463
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
464
+ }
465
+
466
+ 60% {
467
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
468
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
469
+ }
470
+
471
+ 75% {
472
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
473
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
474
+ }
475
+
476
+ 100% {
477
+ -webkit-transform: none;
478
+ transform: none;
479
+ }
480
+ }
481
+
482
+ .wobble {
483
+ -webkit-animation-name: wobble;
484
+ animation-name: wobble;
485
+ }
486
+
487
+ @-webkit-keyframes jello {
488
+ from, 11.1%, 100% {
489
+ -webkit-transform: none;
490
+ transform: none;
491
+ }
492
+
493
+ 22.2% {
494
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
495
+ transform: skewX(-12.5deg) skewY(-12.5deg);
496
+ }
497
+
498
+ 33.3% {
499
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
500
+ transform: skewX(6.25deg) skewY(6.25deg);
501
+ }
502
+
503
+ 44.4% {
504
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
505
+ transform: skewX(-3.125deg) skewY(-3.125deg);
506
+ }
507
+
508
+ 55.5% {
509
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
510
+ transform: skewX(1.5625deg) skewY(1.5625deg);
511
+ }
512
+
513
+ 66.6% {
514
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
515
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
516
+ }
517
+
518
+ 77.7% {
519
+ -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
520
+ transform: skewX(0.390625deg) skewY(0.390625deg);
521
+ }
522
+
523
+ 88.8% {
524
+ -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
525
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
526
+ }
527
+ }
528
+
529
+ @keyframes jello {
530
+ from, 11.1%, 100% {
531
+ -webkit-transform: none;
532
+ transform: none;
533
+ }
534
+
535
+ 22.2% {
536
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
537
+ transform: skewX(-12.5deg) skewY(-12.5deg);
538
+ }
539
+
540
+ 33.3% {
541
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
542
+ transform: skewX(6.25deg) skewY(6.25deg);
543
+ }
544
+
545
+ 44.4% {
546
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
547
+ transform: skewX(-3.125deg) skewY(-3.125deg);
548
+ }
549
+
550
+ 55.5% {
551
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
552
+ transform: skewX(1.5625deg) skewY(1.5625deg);
553
+ }
554
+
555
+ 66.6% {
556
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
557
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
558
+ }
559
+
560
+ 77.7% {
561
+ -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
562
+ transform: skewX(0.390625deg) skewY(0.390625deg);
563
+ }
564
+
565
+ 88.8% {
566
+ -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
567
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
568
+ }
569
+ }
570
+
571
+ .jello {
572
+ -webkit-animation-name: jello;
573
+ animation-name: jello;
574
+ -webkit-transform-origin: center;
575
+ transform-origin: center;
576
+ }
577
+
578
+ @-webkit-keyframes bounceIn {
579
+ from, 20%, 40%, 60%, 80%, 100% {
580
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
581
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
582
+ }
583
+
584
+ 0% {
585
+ opacity: 0;
586
+ -webkit-transform: scale3d(.3, .3, .3);
587
+ transform: scale3d(.3, .3, .3);
588
+ }
589
+
590
+ 20% {
591
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
592
+ transform: scale3d(1.1, 1.1, 1.1);
593
+ }
594
+
595
+ 40% {
596
+ -webkit-transform: scale3d(.9, .9, .9);
597
+ transform: scale3d(.9, .9, .9);
598
+ }
599
+
600
+ 60% {
601
+ opacity: 1;
602
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
603
+ transform: scale3d(1.03, 1.03, 1.03);
604
+ }
605
+
606
+ 80% {
607
+ -webkit-transform: scale3d(.97, .97, .97);
608
+ transform: scale3d(.97, .97, .97);
609
+ }
610
+
611
+ 100% {
612
+ opacity: 1;
613
+ -webkit-transform: scale3d(1, 1, 1);
614
+ transform: scale3d(1, 1, 1);
615
+ }
616
+ }
617
+
618
+ @keyframes bounceIn {
619
+ from, 20%, 40%, 60%, 80%, 100% {
620
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
621
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
622
+ }
623
+
624
+ 0% {
625
+ opacity: 0;
626
+ -webkit-transform: scale3d(.3, .3, .3);
627
+ transform: scale3d(.3, .3, .3);
628
+ }
629
+
630
+ 20% {
631
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
632
+ transform: scale3d(1.1, 1.1, 1.1);
633
+ }
634
+
635
+ 40% {
636
+ -webkit-transform: scale3d(.9, .9, .9);
637
+ transform: scale3d(.9, .9, .9);
638
+ }
639
+
640
+ 60% {
641
+ opacity: 1;
642
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
643
+ transform: scale3d(1.03, 1.03, 1.03);
644
+ }
645
+
646
+ 80% {
647
+ -webkit-transform: scale3d(.97, .97, .97);
648
+ transform: scale3d(.97, .97, .97);
649
+ }
650
+
651
+ 100% {
652
+ opacity: 1;
653
+ -webkit-transform: scale3d(1, 1, 1);
654
+ transform: scale3d(1, 1, 1);
655
+ }
656
+ }
657
+
658
+ .bounceIn {
659
+ -webkit-animation-name: bounceIn;
660
+ animation-name: bounceIn;
661
+ }
662
+
663
+ @-webkit-keyframes bounceInDown {
664
+ from, 60%, 75%, 90%, 100% {
665
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
666
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
667
+ }
668
+
669
+ 0% {
670
+ opacity: 0;
671
+ -webkit-transform: translate3d(0, -3000px, 0);
672
+ transform: translate3d(0, -3000px, 0);
673
+ }
674
+
675
+ 60% {
676
+ opacity: 1;
677
+ -webkit-transform: translate3d(0, 25px, 0);
678
+ transform: translate3d(0, 25px, 0);
679
+ }
680
+
681
+ 75% {
682
+ -webkit-transform: translate3d(0, -10px, 0);
683
+ transform: translate3d(0, -10px, 0);
684
+ }
685
+
686
+ 90% {
687
+ -webkit-transform: translate3d(0, 5px, 0);
688
+ transform: translate3d(0, 5px, 0);
689
+ }
690
+
691
+ 100% {
692
+ -webkit-transform: none;
693
+ transform: none;
694
+ }
695
+ }
696
+
697
+ @keyframes bounceInDown {
698
+ from, 60%, 75%, 90%, 100% {
699
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
700
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
701
+ }
702
+
703
+ 0% {
704
+ opacity: 0;
705
+ -webkit-transform: translate3d(0, -3000px, 0);
706
+ transform: translate3d(0, -3000px, 0);
707
+ }
708
+
709
+ 60% {
710
+ opacity: 1;
711
+ -webkit-transform: translate3d(0, 25px, 0);
712
+ transform: translate3d(0, 25px, 0);
713
+ }
714
+
715
+ 75% {
716
+ -webkit-transform: translate3d(0, -10px, 0);
717
+ transform: translate3d(0, -10px, 0);
718
+ }
719
+
720
+ 90% {
721
+ -webkit-transform: translate3d(0, 5px, 0);
722
+ transform: translate3d(0, 5px, 0);
723
+ }
724
+
725
+ 100% {
726
+ -webkit-transform: none;
727
+ transform: none;
728
+ }
729
+ }
730
+
731
+ .bounceInDown {
732
+ -webkit-animation-name: bounceInDown;
733
+ animation-name: bounceInDown;
734
+ }
735
+
736
+ @-webkit-keyframes bounceInLeft {
737
+ from, 60%, 75%, 90%, 100% {
738
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
739
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
740
+ }
741
+
742
+ 0% {
743
+ opacity: 0;
744
+ -webkit-transform: translate3d(-3000px, 0, 0);
745
+ transform: translate3d(-3000px, 0, 0);
746
+ }
747
+
748
+ 60% {
749
+ opacity: 1;
750
+ -webkit-transform: translate3d(25px, 0, 0);
751
+ transform: translate3d(25px, 0, 0);
752
+ }
753
+
754
+ 75% {
755
+ -webkit-transform: translate3d(-10px, 0, 0);
756
+ transform: translate3d(-10px, 0, 0);
757
+ }
758
+
759
+ 90% {
760
+ -webkit-transform: translate3d(5px, 0, 0);
761
+ transform: translate3d(5px, 0, 0);
762
+ }
763
+
764
+ 100% {
765
+ -webkit-transform: none;
766
+ transform: none;
767
+ }
768
+ }
769
+
770
+ @keyframes bounceInLeft {
771
+ from, 60%, 75%, 90%, 100% {
772
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
773
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
774
+ }
775
+
776
+ 0% {
777
+ opacity: 0;
778
+ -webkit-transform: translate3d(-3000px, 0, 0);
779
+ transform: translate3d(-3000px, 0, 0);
780
+ }
781
+
782
+ 60% {
783
+ opacity: 1;
784
+ -webkit-transform: translate3d(25px, 0, 0);
785
+ transform: translate3d(25px, 0, 0);
786
+ }
787
+
788
+ 75% {
789
+ -webkit-transform: translate3d(-10px, 0, 0);
790
+ transform: translate3d(-10px, 0, 0);
791
+ }
792
+
793
+ 90% {
794
+ -webkit-transform: translate3d(5px, 0, 0);
795
+ transform: translate3d(5px, 0, 0);
796
+ }
797
+
798
+ 100% {
799
+ -webkit-transform: none;
800
+ transform: none;
801
+ }
802
+ }
803
+
804
+ .bounceInLeft {
805
+ -webkit-animation-name: bounceInLeft;
806
+ animation-name: bounceInLeft;
807
+ }
808
+
809
+ @-webkit-keyframes bounceInRight {
810
+ from, 60%, 75%, 90%, 100% {
811
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
812
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
813
+ }
814
+
815
+ from {
816
+ opacity: 0;
817
+ -webkit-transform: translate3d(3000px, 0, 0);
818
+ transform: translate3d(3000px, 0, 0);
819
+ }
820
+
821
+ 60% {
822
+ opacity: 1;
823
+ -webkit-transform: translate3d(-25px, 0, 0);
824
+ transform: translate3d(-25px, 0, 0);
825
+ }
826
+
827
+ 75% {
828
+ -webkit-transform: translate3d(10px, 0, 0);
829
+ transform: translate3d(10px, 0, 0);
830
+ }
831
+
832
+ 90% {
833
+ -webkit-transform: translate3d(-5px, 0, 0);
834
+ transform: translate3d(-5px, 0, 0);
835
+ }
836
+
837
+ 100% {
838
+ -webkit-transform: none;
839
+ transform: none;
840
+ }
841
+ }
842
+
843
+ @keyframes bounceInRight {
844
+ from, 60%, 75%, 90%, 100% {
845
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
846
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
847
+ }
848
+
849
+ from {
850
+ opacity: 0;
851
+ -webkit-transform: translate3d(3000px, 0, 0);
852
+ transform: translate3d(3000px, 0, 0);
853
+ }
854
+
855
+ 60% {
856
+ opacity: 1;
857
+ -webkit-transform: translate3d(-25px, 0, 0);
858
+ transform: translate3d(-25px, 0, 0);
859
+ }
860
+
861
+ 75% {
862
+ -webkit-transform: translate3d(10px, 0, 0);
863
+ transform: translate3d(10px, 0, 0);
864
+ }
865
+
866
+ 90% {
867
+ -webkit-transform: translate3d(-5px, 0, 0);
868
+ transform: translate3d(-5px, 0, 0);
869
+ }
870
+
871
+ 100% {
872
+ -webkit-transform: none;
873
+ transform: none;
874
+ }
875
+ }
876
+
877
+ .bounceInRight {
878
+ -webkit-animation-name: bounceInRight;
879
+ animation-name: bounceInRight;
880
+ }
881
+
882
+ @-webkit-keyframes bounceInUp {
883
+ from, 60%, 75%, 90%, 100% {
884
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
885
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
886
+ }
887
+
888
+ from {
889
+ opacity: 0;
890
+ -webkit-transform: translate3d(0, 3000px, 0);
891
+ transform: translate3d(0, 3000px, 0);
892
+ }
893
+
894
+ 60% {
895
+ opacity: 1;
896
+ -webkit-transform: translate3d(0, -20px, 0);
897
+ transform: translate3d(0, -20px, 0);
898
+ }
899
+
900
+ 75% {
901
+ -webkit-transform: translate3d(0, 10px, 0);
902
+ transform: translate3d(0, 10px, 0);
903
+ }
904
+
905
+ 90% {
906
+ -webkit-transform: translate3d(0, -5px, 0);
907
+ transform: translate3d(0, -5px, 0);
908
+ }
909
+
910
+ 100% {
911
+ -webkit-transform: translate3d(0, 0, 0);
912
+ transform: translate3d(0, 0, 0);
913
+ }
914
+ }
915
+
916
+ @keyframes bounceInUp {
917
+ from, 60%, 75%, 90%, 100% {
918
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
919
+ animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
920
+ }
921
+
922
+ from {
923
+ opacity: 0;
924
+ -webkit-transform: translate3d(0, 3000px, 0);
925
+ transform: translate3d(0, 3000px, 0);
926
+ }
927
+
928
+ 60% {
929
+ opacity: 1;
930
+ -webkit-transform: translate3d(0, -20px, 0);
931
+ transform: translate3d(0, -20px, 0);
932
+ }
933
+
934
+ 75% {
935
+ -webkit-transform: translate3d(0, 10px, 0);
936
+ transform: translate3d(0, 10px, 0);
937
+ }
938
+
939
+ 90% {
940
+ -webkit-transform: translate3d(0, -5px, 0);
941
+ transform: translate3d(0, -5px, 0);
942
+ }
943
+
944
+ 100% {
945
+ -webkit-transform: translate3d(0, 0, 0);
946
+ transform: translate3d(0, 0, 0);
947
+ }
948
+ }
949
+
950
+ .bounceInUp {
951
+ -webkit-animation-name: bounceInUp;
952
+ animation-name: bounceInUp;
953
+ }
954
+
955
+ @-webkit-keyframes bounceOut {
956
+ 20% {
957
+ -webkit-transform: scale3d(.9, .9, .9);
958
+ transform: scale3d(.9, .9, .9);
959
+ }
960
+
961
+ 50%, 55% {
962
+ opacity: 1;
963
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
964
+ transform: scale3d(1.1, 1.1, 1.1);
965
+ }
966
+
967
+ 100% {
968
+ opacity: 0;
969
+ -webkit-transform: scale3d(.3, .3, .3);
970
+ transform: scale3d(.3, .3, .3);
971
+ }
972
+ }
973
+
974
+ @keyframes bounceOut {
975
+ 20% {
976
+ -webkit-transform: scale3d(.9, .9, .9);
977
+ transform: scale3d(.9, .9, .9);
978
+ }
979
+
980
+ 50%, 55% {
981
+ opacity: 1;
982
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
983
+ transform: scale3d(1.1, 1.1, 1.1);
984
+ }
985
+
986
+ 100% {
987
+ opacity: 0;
988
+ -webkit-transform: scale3d(.3, .3, .3);
989
+ transform: scale3d(.3, .3, .3);
990
+ }
991
+ }
992
+
993
+ .bounceOut {
994
+ -webkit-animation-name: bounceOut;
995
+ animation-name: bounceOut;
996
+ }
997
+
998
+ @-webkit-keyframes bounceOutDown {
999
+ 20% {
1000
+ -webkit-transform: translate3d(0, 10px, 0);
1001
+ transform: translate3d(0, 10px, 0);
1002
+ }
1003
+
1004
+ 40%, 45% {
1005
+ opacity: 1;
1006
+ -webkit-transform: translate3d(0, -20px, 0);
1007
+ transform: translate3d(0, -20px, 0);
1008
+ }
1009
+
1010
+ 100% {
1011
+ opacity: 0;
1012
+ -webkit-transform: translate3d(0, 2000px, 0);
1013
+ transform: translate3d(0, 2000px, 0);
1014
+ }
1015
+ }
1016
+
1017
+ @keyframes bounceOutDown {
1018
+ 20% {
1019
+ -webkit-transform: translate3d(0, 10px, 0);
1020
+ transform: translate3d(0, 10px, 0);
1021
+ }
1022
+
1023
+ 40%, 45% {
1024
+ opacity: 1;
1025
+ -webkit-transform: translate3d(0, -20px, 0);
1026
+ transform: translate3d(0, -20px, 0);
1027
+ }
1028
+
1029
+ 100% {
1030
+ opacity: 0;
1031
+ -webkit-transform: translate3d(0, 2000px, 0);
1032
+ transform: translate3d(0, 2000px, 0);
1033
+ }
1034
+ }
1035
+
1036
+ .bounceOutDown {
1037
+ -webkit-animation-name: bounceOutDown;
1038
+ animation-name: bounceOutDown;
1039
+ }
1040
+
1041
+ @-webkit-keyframes bounceOutLeft {
1042
+ 20% {
1043
+ opacity: 1;
1044
+ -webkit-transform: translate3d(20px, 0, 0);
1045
+ transform: translate3d(20px, 0, 0);
1046
+ }
1047
+
1048
+ 100% {
1049
+ opacity: 0;
1050
+ -webkit-transform: translate3d(-2000px, 0, 0);
1051
+ transform: translate3d(-2000px, 0, 0);
1052
+ }
1053
+ }
1054
+
1055
+ @keyframes bounceOutLeft {
1056
+ 20% {
1057
+ opacity: 1;
1058
+ -webkit-transform: translate3d(20px, 0, 0);
1059
+ transform: translate3d(20px, 0, 0);
1060
+ }
1061
+
1062
+ 100% {
1063
+ opacity: 0;
1064
+ -webkit-transform: translate3d(-2000px, 0, 0);
1065
+ transform: translate3d(-2000px, 0, 0);
1066
+ }
1067
+ }
1068
+
1069
+ .bounceOutLeft {
1070
+ -webkit-animation-name: bounceOutLeft;
1071
+ animation-name: bounceOutLeft;
1072
+ }
1073
+
1074
+ @-webkit-keyframes bounceOutRight {
1075
+ 20% {
1076
+ opacity: 1;
1077
+ -webkit-transform: translate3d(-20px, 0, 0);
1078
+ transform: translate3d(-20px, 0, 0);
1079
+ }
1080
+
1081
+ 100% {
1082
+ opacity: 0;
1083
+ -webkit-transform: translate3d(2000px, 0, 0);
1084
+ transform: translate3d(2000px, 0, 0);
1085
+ }
1086
+ }
1087
+
1088
+ @keyframes bounceOutRight {
1089
+ 20% {
1090
+ opacity: 1;
1091
+ -webkit-transform: translate3d(-20px, 0, 0);
1092
+ transform: translate3d(-20px, 0, 0);
1093
+ }
1094
+
1095
+ 100% {
1096
+ opacity: 0;
1097
+ -webkit-transform: translate3d(2000px, 0, 0);
1098
+ transform: translate3d(2000px, 0, 0);
1099
+ }
1100
+ }
1101
+
1102
+ .bounceOutRight {
1103
+ -webkit-animation-name: bounceOutRight;
1104
+ animation-name: bounceOutRight;
1105
+ }
1106
+
1107
+ @-webkit-keyframes bounceOutUp {
1108
+ 20% {
1109
+ -webkit-transform: translate3d(0, -10px, 0);
1110
+ transform: translate3d(0, -10px, 0);
1111
+ }
1112
+
1113
+ 40%, 45% {
1114
+ opacity: 1;
1115
+ -webkit-transform: translate3d(0, 20px, 0);
1116
+ transform: translate3d(0, 20px, 0);
1117
+ }
1118
+
1119
+ 100% {
1120
+ opacity: 0;
1121
+ -webkit-transform: translate3d(0, -2000px, 0);
1122
+ transform: translate3d(0, -2000px, 0);
1123
+ }
1124
+ }
1125
+
1126
+ @keyframes bounceOutUp {
1127
+ 20% {
1128
+ -webkit-transform: translate3d(0, -10px, 0);
1129
+ transform: translate3d(0, -10px, 0);
1130
+ }
1131
+
1132
+ 40%, 45% {
1133
+ opacity: 1;
1134
+ -webkit-transform: translate3d(0, 20px, 0);
1135
+ transform: translate3d(0, 20px, 0);
1136
+ }
1137
+
1138
+ 100% {
1139
+ opacity: 0;
1140
+ -webkit-transform: translate3d(0, -2000px, 0);
1141
+ transform: translate3d(0, -2000px, 0);
1142
+ }
1143
+ }
1144
+
1145
+ .bounceOutUp {
1146
+ -webkit-animation-name: bounceOutUp;
1147
+ animation-name: bounceOutUp;
1148
+ }
1149
+
1150
+ @-webkit-keyframes fadeIn {
1151
+ from {
1152
+ opacity: 0;
1153
+ }
1154
+
1155
+ 100% {
1156
+ opacity: 1;
1157
+ }
1158
+ }
1159
+
1160
+ @keyframes fadeIn {
1161
+ from {
1162
+ opacity: 0;
1163
+ }
1164
+
1165
+ 100% {
1166
+ opacity: 1;
1167
+ }
1168
+ }
1169
+
1170
+ .fadeIn {
1171
+ -webkit-animation-name: fadeIn;
1172
+ animation-name: fadeIn;
1173
+ }
1174
+
1175
+ @-webkit-keyframes fadeInDown {
1176
+ from {
1177
+ opacity: 0;
1178
+ -webkit-transform: translate3d(0, -100%, 0);
1179
+ transform: translate3d(0, -100%, 0);
1180
+ }
1181
+
1182
+ 100% {
1183
+ opacity: 1;
1184
+ -webkit-transform: none;
1185
+ transform: none;
1186
+ }
1187
+ }
1188
+
1189
+ @keyframes fadeInDown {
1190
+ from {
1191
+ opacity: 0;
1192
+ -webkit-transform: translate3d(0, -100%, 0);
1193
+ transform: translate3d(0, -100%, 0);
1194
+ }
1195
+
1196
+ 100% {
1197
+ opacity: 1;
1198
+ -webkit-transform: none;
1199
+ transform: none;
1200
+ }
1201
+ }
1202
+
1203
+ .fadeInDown {
1204
+ -webkit-animation-name: fadeInDown;
1205
+ animation-name: fadeInDown;
1206
+ }
1207
+
1208
+ @-webkit-keyframes fadeInDownBig {
1209
+ from {
1210
+ opacity: 0;
1211
+ -webkit-transform: translate3d(0, -2000px, 0);
1212
+ transform: translate3d(0, -2000px, 0);
1213
+ }
1214
+
1215
+ 100% {
1216
+ opacity: 1;
1217
+ -webkit-transform: none;
1218
+ transform: none;
1219
+ }
1220
+ }
1221
+
1222
+ @keyframes fadeInDownBig {
1223
+ from {
1224
+ opacity: 0;
1225
+ -webkit-transform: translate3d(0, -2000px, 0);
1226
+ transform: translate3d(0, -2000px, 0);
1227
+ }
1228
+
1229
+ 100% {
1230
+ opacity: 1;
1231
+ -webkit-transform: none;
1232
+ transform: none;
1233
+ }
1234
+ }
1235
+
1236
+ .fadeInDownBig {
1237
+ -webkit-animation-name: fadeInDownBig;
1238
+ animation-name: fadeInDownBig;
1239
+ }
1240
+
1241
+ @-webkit-keyframes fadeInLeft {
1242
+ from {
1243
+ opacity: 0;
1244
+ -webkit-transform: translate3d(-100%, 0, 0);
1245
+ transform: translate3d(-100%, 0, 0);
1246
+ }
1247
+
1248
+ 100% {
1249
+ opacity: 1;
1250
+ -webkit-transform: none;
1251
+ transform: none;
1252
+ }
1253
+ }
1254
+
1255
+ @keyframes fadeInLeft {
1256
+ from {
1257
+ opacity: 0;
1258
+ -webkit-transform: translate3d(-100%, 0, 0);
1259
+ transform: translate3d(-100%, 0, 0);
1260
+ }
1261
+
1262
+ 100% {
1263
+ opacity: 1;
1264
+ -webkit-transform: none;
1265
+ transform: none;
1266
+ }
1267
+ }
1268
+
1269
+ .fadeInLeft {
1270
+ -webkit-animation-name: fadeInLeft;
1271
+ animation-name: fadeInLeft;
1272
+ }
1273
+
1274
+ @-webkit-keyframes fadeInLeftBig {
1275
+ from {
1276
+ opacity: 0;
1277
+ -webkit-transform: translate3d(-2000px, 0, 0);
1278
+ transform: translate3d(-2000px, 0, 0);
1279
+ }
1280
+
1281
+ 100% {
1282
+ opacity: 1;
1283
+ -webkit-transform: none;
1284
+ transform: none;
1285
+ }
1286
+ }
1287
+
1288
+ @keyframes fadeInLeftBig {
1289
+ from {
1290
+ opacity: 0;
1291
+ -webkit-transform: translate3d(-2000px, 0, 0);
1292
+ transform: translate3d(-2000px, 0, 0);
1293
+ }
1294
+
1295
+ 100% {
1296
+ opacity: 1;
1297
+ -webkit-transform: none;
1298
+ transform: none;
1299
+ }
1300
+ }
1301
+
1302
+ .fadeInLeftBig {
1303
+ -webkit-animation-name: fadeInLeftBig;
1304
+ animation-name: fadeInLeftBig;
1305
+ }
1306
+
1307
+ @-webkit-keyframes fadeInRight {
1308
+ from {
1309
+ opacity: 0;
1310
+ -webkit-transform: translate3d(100%, 0, 0);
1311
+ transform: translate3d(100%, 0, 0);
1312
+ }
1313
+
1314
+ 100% {
1315
+ opacity: 1;
1316
+ -webkit-transform: none;
1317
+ transform: none;
1318
+ }
1319
+ }
1320
+
1321
+ @keyframes fadeInRight {
1322
+ from {
1323
+ opacity: 0;
1324
+ -webkit-transform: translate3d(100%, 0, 0);
1325
+ transform: translate3d(100%, 0, 0);
1326
+ }
1327
+
1328
+ 100% {
1329
+ opacity: 1;
1330
+ -webkit-transform: none;
1331
+ transform: none;
1332
+ }
1333
+ }
1334
+
1335
+ .fadeInRight {
1336
+ -webkit-animation-name: fadeInRight;
1337
+ animation-name: fadeInRight;
1338
+ }
1339
+
1340
+ @-webkit-keyframes fadeInRightBig {
1341
+ from {
1342
+ opacity: 0;
1343
+ -webkit-transform: translate3d(2000px, 0, 0);
1344
+ transform: translate3d(2000px, 0, 0);
1345
+ }
1346
+
1347
+ 100% {
1348
+ opacity: 1;
1349
+ -webkit-transform: none;
1350
+ transform: none;
1351
+ }
1352
+ }
1353
+
1354
+ @keyframes fadeInRightBig {
1355
+ from {
1356
+ opacity: 0;
1357
+ -webkit-transform: translate3d(2000px, 0, 0);
1358
+ transform: translate3d(2000px, 0, 0);
1359
+ }
1360
+
1361
+ 100% {
1362
+ opacity: 1;
1363
+ -webkit-transform: none;
1364
+ transform: none;
1365
+ }
1366
+ }
1367
+
1368
+ .fadeInRightBig {
1369
+ -webkit-animation-name: fadeInRightBig;
1370
+ animation-name: fadeInRightBig;
1371
+ }
1372
+
1373
+ @-webkit-keyframes fadeInUp {
1374
+ from {
1375
+ opacity: 0;
1376
+ -webkit-transform: translate3d(0, 100%, 0);
1377
+ transform: translate3d(0, 100%, 0);
1378
+ }
1379
+
1380
+ 100% {
1381
+ opacity: 1;
1382
+ -webkit-transform: none;
1383
+ transform: none;
1384
+ }
1385
+ }
1386
+
1387
+ @keyframes fadeInUp {
1388
+ from {
1389
+ opacity: 0;
1390
+ -webkit-transform: translate3d(0, 100%, 0);
1391
+ transform: translate3d(0, 100%, 0);
1392
+ }
1393
+
1394
+ 100% {
1395
+ opacity: 1;
1396
+ -webkit-transform: none;
1397
+ transform: none;
1398
+ }
1399
+ }
1400
+
1401
+ .fadeInUp {
1402
+ -webkit-animation-name: fadeInUp;
1403
+ animation-name: fadeInUp;
1404
+ }
1405
+
1406
+ @-webkit-keyframes fadeInUpBig {
1407
+ from {
1408
+ opacity: 0;
1409
+ -webkit-transform: translate3d(0, 2000px, 0);
1410
+ transform: translate3d(0, 2000px, 0);
1411
+ }
1412
+
1413
+ 100% {
1414
+ opacity: 1;
1415
+ -webkit-transform: none;
1416
+ transform: none;
1417
+ }
1418
+ }
1419
+
1420
+ @keyframes fadeInUpBig {
1421
+ from {
1422
+ opacity: 0;
1423
+ -webkit-transform: translate3d(0, 2000px, 0);
1424
+ transform: translate3d(0, 2000px, 0);
1425
+ }
1426
+
1427
+ 100% {
1428
+ opacity: 1;
1429
+ -webkit-transform: none;
1430
+ transform: none;
1431
+ }
1432
+ }
1433
+
1434
+ .fadeInUpBig {
1435
+ -webkit-animation-name: fadeInUpBig;
1436
+ animation-name: fadeInUpBig;
1437
+ }
1438
+
1439
+ @-webkit-keyframes fadeOut {
1440
+ from {
1441
+ opacity: 1;
1442
+ }
1443
+
1444
+ 100% {
1445
+ opacity: 0;
1446
+ }
1447
+ }
1448
+
1449
+ @keyframes fadeOut {
1450
+ from {
1451
+ opacity: 1;
1452
+ }
1453
+
1454
+ 100% {
1455
+ opacity: 0;
1456
+ }
1457
+ }
1458
+
1459
+ .fadeOut {
1460
+ -webkit-animation-name: fadeOut;
1461
+ animation-name: fadeOut;
1462
+ }
1463
+
1464
+ @-webkit-keyframes fadeOutDown {
1465
+ from {
1466
+ opacity: 1;
1467
+ }
1468
+
1469
+ 100% {
1470
+ opacity: 0;
1471
+ -webkit-transform: translate3d(0, 100%, 0);
1472
+ transform: translate3d(0, 100%, 0);
1473
+ }
1474
+ }
1475
+
1476
+ @keyframes fadeOutDown {
1477
+ from {
1478
+ opacity: 1;
1479
+ }
1480
+
1481
+ 100% {
1482
+ opacity: 0;
1483
+ -webkit-transform: translate3d(0, 100%, 0);
1484
+ transform: translate3d(0, 100%, 0);
1485
+ }
1486
+ }
1487
+
1488
+ .fadeOutDown {
1489
+ -webkit-animation-name: fadeOutDown;
1490
+ animation-name: fadeOutDown;
1491
+ }
1492
+
1493
+ @-webkit-keyframes fadeOutDownBig {
1494
+ from {
1495
+ opacity: 1;
1496
+ }
1497
+
1498
+ 100% {
1499
+ opacity: 0;
1500
+ -webkit-transform: translate3d(0, 2000px, 0);
1501
+ transform: translate3d(0, 2000px, 0);
1502
+ }
1503
+ }
1504
+
1505
+ @keyframes fadeOutDownBig {
1506
+ from {
1507
+ opacity: 1;
1508
+ }
1509
+
1510
+ 100% {
1511
+ opacity: 0;
1512
+ -webkit-transform: translate3d(0, 2000px, 0);
1513
+ transform: translate3d(0, 2000px, 0);
1514
+ }
1515
+ }
1516
+
1517
+ .fadeOutDownBig {
1518
+ -webkit-animation-name: fadeOutDownBig;
1519
+ animation-name: fadeOutDownBig;
1520
+ }
1521
+
1522
+ @-webkit-keyframes fadeOutLeft {
1523
+ from {
1524
+ opacity: 1;
1525
+ }
1526
+
1527
+ 100% {
1528
+ opacity: 0;
1529
+ -webkit-transform: translate3d(-100%, 0, 0);
1530
+ transform: translate3d(-100%, 0, 0);
1531
+ }
1532
+ }
1533
+
1534
+ @keyframes fadeOutLeft {
1535
+ from {
1536
+ opacity: 1;
1537
+ }
1538
+
1539
+ 100% {
1540
+ opacity: 0;
1541
+ -webkit-transform: translate3d(-100%, 0, 0);
1542
+ transform: translate3d(-100%, 0, 0);
1543
+ }
1544
+ }
1545
+
1546
+ .fadeOutLeft {
1547
+ -webkit-animation-name: fadeOutLeft;
1548
+ animation-name: fadeOutLeft;
1549
+ }
1550
+
1551
+ @-webkit-keyframes fadeOutLeftBig {
1552
+ from {
1553
+ opacity: 1;
1554
+ }
1555
+
1556
+ 100% {
1557
+ opacity: 0;
1558
+ -webkit-transform: translate3d(-2000px, 0, 0);
1559
+ transform: translate3d(-2000px, 0, 0);
1560
+ }
1561
+ }
1562
+
1563
+ @keyframes fadeOutLeftBig {
1564
+ from {
1565
+ opacity: 1;
1566
+ }
1567
+
1568
+ 100% {
1569
+ opacity: 0;
1570
+ -webkit-transform: translate3d(-2000px, 0, 0);
1571
+ transform: translate3d(-2000px, 0, 0);
1572
+ }
1573
+ }
1574
+
1575
+ .fadeOutLeftBig {
1576
+ -webkit-animation-name: fadeOutLeftBig;
1577
+ animation-name: fadeOutLeftBig;
1578
+ }
1579
+
1580
+ @-webkit-keyframes fadeOutRight {
1581
+ from {
1582
+ opacity: 1;
1583
+ }
1584
+
1585
+ 100% {
1586
+ opacity: 0;
1587
+ -webkit-transform: translate3d(100%, 0, 0);
1588
+ transform: translate3d(100%, 0, 0);
1589
+ }
1590
+ }
1591
+
1592
+ @keyframes fadeOutRight {
1593
+ from {
1594
+ opacity: 1;
1595
+ }
1596
+
1597
+ 100% {
1598
+ opacity: 0;
1599
+ -webkit-transform: translate3d(100%, 0, 0);
1600
+ transform: translate3d(100%, 0, 0);
1601
+ }
1602
+ }
1603
+
1604
+ .fadeOutRight {
1605
+ -webkit-animation-name: fadeOutRight;
1606
+ animation-name: fadeOutRight;
1607
+ }
1608
+
1609
+ @-webkit-keyframes fadeOutRightBig {
1610
+ from {
1611
+ opacity: 1;
1612
+ }
1613
+
1614
+ 100% {
1615
+ opacity: 0;
1616
+ -webkit-transform: translate3d(2000px, 0, 0);
1617
+ transform: translate3d(2000px, 0, 0);
1618
+ }
1619
+ }
1620
+
1621
+ @keyframes fadeOutRightBig {
1622
+ from {
1623
+ opacity: 1;
1624
+ }
1625
+
1626
+ 100% {
1627
+ opacity: 0;
1628
+ -webkit-transform: translate3d(2000px, 0, 0);
1629
+ transform: translate3d(2000px, 0, 0);
1630
+ }
1631
+ }
1632
+
1633
+ .fadeOutRightBig {
1634
+ -webkit-animation-name: fadeOutRightBig;
1635
+ animation-name: fadeOutRightBig;
1636
+ }
1637
+
1638
+ @-webkit-keyframes fadeOutUp {
1639
+ from {
1640
+ opacity: 1;
1641
+ }
1642
+
1643
+ 100% {
1644
+ opacity: 0;
1645
+ -webkit-transform: translate3d(0, -100%, 0);
1646
+ transform: translate3d(0, -100%, 0);
1647
+ }
1648
+ }
1649
+
1650
+ @keyframes fadeOutUp {
1651
+ from {
1652
+ opacity: 1;
1653
+ }
1654
+
1655
+ 100% {
1656
+ opacity: 0;
1657
+ -webkit-transform: translate3d(0, -100%, 0);
1658
+ transform: translate3d(0, -100%, 0);
1659
+ }
1660
+ }
1661
+
1662
+ .fadeOutUp {
1663
+ -webkit-animation-name: fadeOutUp;
1664
+ animation-name: fadeOutUp;
1665
+ }
1666
+
1667
+ @-webkit-keyframes fadeOutUpBig {
1668
+ from {
1669
+ opacity: 1;
1670
+ }
1671
+
1672
+ 100% {
1673
+ opacity: 0;
1674
+ -webkit-transform: translate3d(0, -2000px, 0);
1675
+ transform: translate3d(0, -2000px, 0);
1676
+ }
1677
+ }
1678
+
1679
+ @keyframes fadeOutUpBig {
1680
+ from {
1681
+ opacity: 1;
1682
+ }
1683
+
1684
+ 100% {
1685
+ opacity: 0;
1686
+ -webkit-transform: translate3d(0, -2000px, 0);
1687
+ transform: translate3d(0, -2000px, 0);
1688
+ }
1689
+ }
1690
+
1691
+ .fadeOutUpBig {
1692
+ -webkit-animation-name: fadeOutUpBig;
1693
+ animation-name: fadeOutUpBig;
1694
+ }
1695
+
1696
+ @-webkit-keyframes flip {
1697
+ from {
1698
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
1699
+ transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
1700
+ -webkit-animation-timing-function: ease-out;
1701
+ animation-timing-function: ease-out;
1702
+ }
1703
+
1704
+ 40% {
1705
+ -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
1706
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
1707
+ -webkit-animation-timing-function: ease-out;
1708
+ animation-timing-function: ease-out;
1709
+ }
1710
+
1711
+ 50% {
1712
+ -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
1713
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
1714
+ -webkit-animation-timing-function: ease-in;
1715
+ animation-timing-function: ease-in;
1716
+ }
1717
+
1718
+ 80% {
1719
+ -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
1720
+ transform: perspective(400px) scale3d(.95, .95, .95);
1721
+ -webkit-animation-timing-function: ease-in;
1722
+ animation-timing-function: ease-in;
1723
+ }
1724
+
1725
+ 100% {
1726
+ -webkit-transform: perspective(400px);
1727
+ transform: perspective(400px);
1728
+ -webkit-animation-timing-function: ease-in;
1729
+ animation-timing-function: ease-in;
1730
+ }
1731
+ }
1732
+
1733
+ @keyframes flip {
1734
+ from {
1735
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
1736
+ transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
1737
+ -webkit-animation-timing-function: ease-out;
1738
+ animation-timing-function: ease-out;
1739
+ }
1740
+
1741
+ 40% {
1742
+ -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
1743
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
1744
+ -webkit-animation-timing-function: ease-out;
1745
+ animation-timing-function: ease-out;
1746
+ }
1747
+
1748
+ 50% {
1749
+ -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
1750
+ transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
1751
+ -webkit-animation-timing-function: ease-in;
1752
+ animation-timing-function: ease-in;
1753
+ }
1754
+
1755
+ 80% {
1756
+ -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
1757
+ transform: perspective(400px) scale3d(.95, .95, .95);
1758
+ -webkit-animation-timing-function: ease-in;
1759
+ animation-timing-function: ease-in;
1760
+ }
1761
+
1762
+ 100% {
1763
+ -webkit-transform: perspective(400px);
1764
+ transform: perspective(400px);
1765
+ -webkit-animation-timing-function: ease-in;
1766
+ animation-timing-function: ease-in;
1767
+ }
1768
+ }
1769
+
1770
+ .animated.flip {
1771
+ -webkit-backface-visibility: visible;
1772
+ backface-visibility: visible;
1773
+ -webkit-animation-name: flip;
1774
+ animation-name: flip;
1775
+ }
1776
+
1777
+ @-webkit-keyframes flipInX {
1778
+ from {
1779
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1780
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1781
+ -webkit-animation-timing-function: ease-in;
1782
+ animation-timing-function: ease-in;
1783
+ opacity: 0;
1784
+ }
1785
+
1786
+ 40% {
1787
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1788
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1789
+ -webkit-animation-timing-function: ease-in;
1790
+ animation-timing-function: ease-in;
1791
+ }
1792
+
1793
+ 60% {
1794
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1795
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1796
+ opacity: 1;
1797
+ }
1798
+
1799
+ 80% {
1800
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1801
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1802
+ }
1803
+
1804
+ 100% {
1805
+ -webkit-transform: perspective(400px);
1806
+ transform: perspective(400px);
1807
+ }
1808
+ }
1809
+
1810
+ @keyframes flipInX {
1811
+ from {
1812
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1813
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1814
+ -webkit-animation-timing-function: ease-in;
1815
+ animation-timing-function: ease-in;
1816
+ opacity: 0;
1817
+ }
1818
+
1819
+ 40% {
1820
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1821
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1822
+ -webkit-animation-timing-function: ease-in;
1823
+ animation-timing-function: ease-in;
1824
+ }
1825
+
1826
+ 60% {
1827
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1828
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
1829
+ opacity: 1;
1830
+ }
1831
+
1832
+ 80% {
1833
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1834
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
1835
+ }
1836
+
1837
+ 100% {
1838
+ -webkit-transform: perspective(400px);
1839
+ transform: perspective(400px);
1840
+ }
1841
+ }
1842
+
1843
+ .flipInX {
1844
+ -webkit-backface-visibility: visible !important;
1845
+ backface-visibility: visible !important;
1846
+ -webkit-animation-name: flipInX;
1847
+ animation-name: flipInX;
1848
+ }
1849
+
1850
+ @-webkit-keyframes flipInY {
1851
+ from {
1852
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
1853
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
1854
+ -webkit-animation-timing-function: ease-in;
1855
+ animation-timing-function: ease-in;
1856
+ opacity: 0;
1857
+ }
1858
+
1859
+ 40% {
1860
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
1861
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
1862
+ -webkit-animation-timing-function: ease-in;
1863
+ animation-timing-function: ease-in;
1864
+ }
1865
+
1866
+ 60% {
1867
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
1868
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
1869
+ opacity: 1;
1870
+ }
1871
+
1872
+ 80% {
1873
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
1874
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
1875
+ }
1876
+
1877
+ 100% {
1878
+ -webkit-transform: perspective(400px);
1879
+ transform: perspective(400px);
1880
+ }
1881
+ }
1882
+
1883
+ @keyframes flipInY {
1884
+ from {
1885
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
1886
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
1887
+ -webkit-animation-timing-function: ease-in;
1888
+ animation-timing-function: ease-in;
1889
+ opacity: 0;
1890
+ }
1891
+
1892
+ 40% {
1893
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
1894
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
1895
+ -webkit-animation-timing-function: ease-in;
1896
+ animation-timing-function: ease-in;
1897
+ }
1898
+
1899
+ 60% {
1900
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
1901
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
1902
+ opacity: 1;
1903
+ }
1904
+
1905
+ 80% {
1906
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
1907
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
1908
+ }
1909
+
1910
+ 100% {
1911
+ -webkit-transform: perspective(400px);
1912
+ transform: perspective(400px);
1913
+ }
1914
+ }
1915
+
1916
+ .flipInY {
1917
+ -webkit-backface-visibility: visible !important;
1918
+ backface-visibility: visible !important;
1919
+ -webkit-animation-name: flipInY;
1920
+ animation-name: flipInY;
1921
+ }
1922
+
1923
+ @-webkit-keyframes flipOutX {
1924
+ from {
1925
+ -webkit-transform: perspective(400px);
1926
+ transform: perspective(400px);
1927
+ }
1928
+
1929
+ 30% {
1930
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1931
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1932
+ opacity: 1;
1933
+ }
1934
+
1935
+ 100% {
1936
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1937
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1938
+ opacity: 0;
1939
+ }
1940
+ }
1941
+
1942
+ @keyframes flipOutX {
1943
+ from {
1944
+ -webkit-transform: perspective(400px);
1945
+ transform: perspective(400px);
1946
+ }
1947
+
1948
+ 30% {
1949
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1950
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
1951
+ opacity: 1;
1952
+ }
1953
+
1954
+ 100% {
1955
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1956
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
1957
+ opacity: 0;
1958
+ }
1959
+ }
1960
+
1961
+ .flipOutX {
1962
+ -webkit-animation-name: flipOutX;
1963
+ animation-name: flipOutX;
1964
+ -webkit-backface-visibility: visible !important;
1965
+ backface-visibility: visible !important;
1966
+ }
1967
+
1968
+ @-webkit-keyframes flipOutY {
1969
+ from {
1970
+ -webkit-transform: perspective(400px);
1971
+ transform: perspective(400px);
1972
+ }
1973
+
1974
+ 30% {
1975
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
1976
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
1977
+ opacity: 1;
1978
+ }
1979
+
1980
+ 100% {
1981
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
1982
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
1983
+ opacity: 0;
1984
+ }
1985
+ }
1986
+
1987
+ @keyframes flipOutY {
1988
+ from {
1989
+ -webkit-transform: perspective(400px);
1990
+ transform: perspective(400px);
1991
+ }
1992
+
1993
+ 30% {
1994
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
1995
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
1996
+ opacity: 1;
1997
+ }
1998
+
1999
+ 100% {
2000
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
2001
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
2002
+ opacity: 0;
2003
+ }
2004
+ }
2005
+
2006
+ .flipOutY {
2007
+ -webkit-backface-visibility: visible !important;
2008
+ backface-visibility: visible !important;
2009
+ -webkit-animation-name: flipOutY;
2010
+ animation-name: flipOutY;
2011
+ }
2012
+
2013
+ @-webkit-keyframes lightSpeedIn {
2014
+ from {
2015
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
2016
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
2017
+ opacity: 0;
2018
+ }
2019
+
2020
+ 60% {
2021
+ -webkit-transform: skewX(20deg);
2022
+ transform: skewX(20deg);
2023
+ opacity: 1;
2024
+ }
2025
+
2026
+ 80% {
2027
+ -webkit-transform: skewX(-5deg);
2028
+ transform: skewX(-5deg);
2029
+ opacity: 1;
2030
+ }
2031
+
2032
+ 100% {
2033
+ -webkit-transform: none;
2034
+ transform: none;
2035
+ opacity: 1;
2036
+ }
2037
+ }
2038
+
2039
+ @keyframes lightSpeedIn {
2040
+ from {
2041
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
2042
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
2043
+ opacity: 0;
2044
+ }
2045
+
2046
+ 60% {
2047
+ -webkit-transform: skewX(20deg);
2048
+ transform: skewX(20deg);
2049
+ opacity: 1;
2050
+ }
2051
+
2052
+ 80% {
2053
+ -webkit-transform: skewX(-5deg);
2054
+ transform: skewX(-5deg);
2055
+ opacity: 1;
2056
+ }
2057
+
2058
+ 100% {
2059
+ -webkit-transform: none;
2060
+ transform: none;
2061
+ opacity: 1;
2062
+ }
2063
+ }
2064
+
2065
+ .lightSpeedIn {
2066
+ -webkit-animation-name: lightSpeedIn;
2067
+ animation-name: lightSpeedIn;
2068
+ -webkit-animation-timing-function: ease-out;
2069
+ animation-timing-function: ease-out;
2070
+ }
2071
+
2072
+ @-webkit-keyframes lightSpeedOut {
2073
+ from {
2074
+ opacity: 1;
2075
+ }
2076
+
2077
+ 100% {
2078
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
2079
+ transform: translate3d(100%, 0, 0) skewX(30deg);
2080
+ opacity: 0;
2081
+ }
2082
+ }
2083
+
2084
+ @keyframes lightSpeedOut {
2085
+ from {
2086
+ opacity: 1;
2087
+ }
2088
+
2089
+ 100% {
2090
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
2091
+ transform: translate3d(100%, 0, 0) skewX(30deg);
2092
+ opacity: 0;
2093
+ }
2094
+ }
2095
+
2096
+ .lightSpeedOut {
2097
+ -webkit-animation-name: lightSpeedOut;
2098
+ animation-name: lightSpeedOut;
2099
+ -webkit-animation-timing-function: ease-in;
2100
+ animation-timing-function: ease-in;
2101
+ }
2102
+
2103
+ @-webkit-keyframes rotateIn {
2104
+ from {
2105
+ -webkit-transform-origin: center;
2106
+ transform-origin: center;
2107
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
2108
+ transform: rotate3d(0, 0, 1, -200deg);
2109
+ opacity: 0;
2110
+ }
2111
+
2112
+ 100% {
2113
+ -webkit-transform-origin: center;
2114
+ transform-origin: center;
2115
+ -webkit-transform: none;
2116
+ transform: none;
2117
+ opacity: 1;
2118
+ }
2119
+ }
2120
+
2121
+ @keyframes rotateIn {
2122
+ from {
2123
+ -webkit-transform-origin: center;
2124
+ transform-origin: center;
2125
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
2126
+ transform: rotate3d(0, 0, 1, -200deg);
2127
+ opacity: 0;
2128
+ }
2129
+
2130
+ 100% {
2131
+ -webkit-transform-origin: center;
2132
+ transform-origin: center;
2133
+ -webkit-transform: none;
2134
+ transform: none;
2135
+ opacity: 1;
2136
+ }
2137
+ }
2138
+
2139
+ .rotateIn {
2140
+ -webkit-animation-name: rotateIn;
2141
+ animation-name: rotateIn;
2142
+ }
2143
+
2144
+ @-webkit-keyframes rotateInDownLeft {
2145
+ from {
2146
+ -webkit-transform-origin: left bottom;
2147
+ transform-origin: left bottom;
2148
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
2149
+ transform: rotate3d(0, 0, 1, -45deg);
2150
+ opacity: 0;
2151
+ }
2152
+
2153
+ 100% {
2154
+ -webkit-transform-origin: left bottom;
2155
+ transform-origin: left bottom;
2156
+ -webkit-transform: none;
2157
+ transform: none;
2158
+ opacity: 1;
2159
+ }
2160
+ }
2161
+
2162
+ @keyframes rotateInDownLeft {
2163
+ from {
2164
+ -webkit-transform-origin: left bottom;
2165
+ transform-origin: left bottom;
2166
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
2167
+ transform: rotate3d(0, 0, 1, -45deg);
2168
+ opacity: 0;
2169
+ }
2170
+
2171
+ 100% {
2172
+ -webkit-transform-origin: left bottom;
2173
+ transform-origin: left bottom;
2174
+ -webkit-transform: none;
2175
+ transform: none;
2176
+ opacity: 1;
2177
+ }
2178
+ }
2179
+
2180
+ .rotateInDownLeft {
2181
+ -webkit-animation-name: rotateInDownLeft;
2182
+ animation-name: rotateInDownLeft;
2183
+ }
2184
+
2185
+ @-webkit-keyframes rotateInDownRight {
2186
+ from {
2187
+ -webkit-transform-origin: right bottom;
2188
+ transform-origin: right bottom;
2189
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
2190
+ transform: rotate3d(0, 0, 1, 45deg);
2191
+ opacity: 0;
2192
+ }
2193
+
2194
+ 100% {
2195
+ -webkit-transform-origin: right bottom;
2196
+ transform-origin: right bottom;
2197
+ -webkit-transform: none;
2198
+ transform: none;
2199
+ opacity: 1;
2200
+ }
2201
+ }
2202
+
2203
+ @keyframes rotateInDownRight {
2204
+ from {
2205
+ -webkit-transform-origin: right bottom;
2206
+ transform-origin: right bottom;
2207
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
2208
+ transform: rotate3d(0, 0, 1, 45deg);
2209
+ opacity: 0;
2210
+ }
2211
+
2212
+ 100% {
2213
+ -webkit-transform-origin: right bottom;
2214
+ transform-origin: right bottom;
2215
+ -webkit-transform: none;
2216
+ transform: none;
2217
+ opacity: 1;
2218
+ }
2219
+ }
2220
+
2221
+ .rotateInDownRight {
2222
+ -webkit-animation-name: rotateInDownRight;
2223
+ animation-name: rotateInDownRight;
2224
+ }
2225
+
2226
+ @-webkit-keyframes rotateInUpLeft {
2227
+ from {
2228
+ -webkit-transform-origin: left bottom;
2229
+ transform-origin: left bottom;
2230
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
2231
+ transform: rotate3d(0, 0, 1, 45deg);
2232
+ opacity: 0;
2233
+ }
2234
+
2235
+ 100% {
2236
+ -webkit-transform-origin: left bottom;
2237
+ transform-origin: left bottom;
2238
+ -webkit-transform: none;
2239
+ transform: none;
2240
+ opacity: 1;
2241
+ }
2242
+ }
2243
+
2244
+ @keyframes rotateInUpLeft {
2245
+ from {
2246
+ -webkit-transform-origin: left bottom;
2247
+ transform-origin: left bottom;
2248
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
2249
+ transform: rotate3d(0, 0, 1, 45deg);
2250
+ opacity: 0;
2251
+ }
2252
+
2253
+ 100% {
2254
+ -webkit-transform-origin: left bottom;
2255
+ transform-origin: left bottom;
2256
+ -webkit-transform: none;
2257
+ transform: none;
2258
+ opacity: 1;
2259
+ }
2260
+ }
2261
+
2262
+ .rotateInUpLeft {
2263
+ -webkit-animation-name: rotateInUpLeft;
2264
+ animation-name: rotateInUpLeft;
2265
+ }
2266
+
2267
+ @-webkit-keyframes rotateInUpRight {
2268
+ from {
2269
+ -webkit-transform-origin: right bottom;
2270
+ transform-origin: right bottom;
2271
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
2272
+ transform: rotate3d(0, 0, 1, -90deg);
2273
+ opacity: 0;
2274
+ }
2275
+
2276
+ 100% {
2277
+ -webkit-transform-origin: right bottom;
2278
+ transform-origin: right bottom;
2279
+ -webkit-transform: none;
2280
+ transform: none;
2281
+ opacity: 1;
2282
+ }
2283
+ }
2284
+
2285
+ @keyframes rotateInUpRight {
2286
+ from {
2287
+ -webkit-transform-origin: right bottom;
2288
+ transform-origin: right bottom;
2289
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
2290
+ transform: rotate3d(0, 0, 1, -90deg);
2291
+ opacity: 0;
2292
+ }
2293
+
2294
+ 100% {
2295
+ -webkit-transform-origin: right bottom;
2296
+ transform-origin: right bottom;
2297
+ -webkit-transform: none;
2298
+ transform: none;
2299
+ opacity: 1;
2300
+ }
2301
+ }
2302
+
2303
+ .rotateInUpRight {
2304
+ -webkit-animation-name: rotateInUpRight;
2305
+ animation-name: rotateInUpRight;
2306
+ }
2307
+
2308
+ @-webkit-keyframes rotateOut {
2309
+ from {
2310
+ -webkit-transform-origin: center;
2311
+ transform-origin: center;
2312
+ opacity: 1;
2313
+ }
2314
+
2315
+ 100% {
2316
+ -webkit-transform-origin: center;
2317
+ transform-origin: center;
2318
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
2319
+ transform: rotate3d(0, 0, 1, 200deg);
2320
+ opacity: 0;
2321
+ }
2322
+ }
2323
+
2324
+ @keyframes rotateOut {
2325
+ from {
2326
+ -webkit-transform-origin: center;
2327
+ transform-origin: center;
2328
+ opacity: 1;
2329
+ }
2330
+
2331
+ 100% {
2332
+ -webkit-transform-origin: center;
2333
+ transform-origin: center;
2334
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
2335
+ transform: rotate3d(0, 0, 1, 200deg);
2336
+ opacity: 0;
2337
+ }
2338
+ }
2339
+
2340
+ .rotateOut {
2341
+ -webkit-animation-name: rotateOut;
2342
+ animation-name: rotateOut;
2343
+ }
2344
+
2345
+ @-webkit-keyframes rotateOutDownLeft {
2346
+ from {
2347
+ -webkit-transform-origin: left bottom;
2348
+ transform-origin: left bottom;
2349
+ opacity: 1;
2350
+ }
2351
+
2352
+ 100% {
2353
+ -webkit-transform-origin: left bottom;
2354
+ transform-origin: left bottom;
2355
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
2356
+ transform: rotate3d(0, 0, 1, 45deg);
2357
+ opacity: 0;
2358
+ }
2359
+ }
2360
+
2361
+ @keyframes rotateOutDownLeft {
2362
+ from {
2363
+ -webkit-transform-origin: left bottom;
2364
+ transform-origin: left bottom;
2365
+ opacity: 1;
2366
+ }
2367
+
2368
+ 100% {
2369
+ -webkit-transform-origin: left bottom;
2370
+ transform-origin: left bottom;
2371
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
2372
+ transform: rotate3d(0, 0, 1, 45deg);
2373
+ opacity: 0;
2374
+ }
2375
+ }
2376
+
2377
+ .rotateOutDownLeft {
2378
+ -webkit-animation-name: rotateOutDownLeft;
2379
+ animation-name: rotateOutDownLeft;
2380
+ }
2381
+
2382
+ @-webkit-keyframes rotateOutDownRight {
2383
+ from {
2384
+ -webkit-transform-origin: right bottom;
2385
+ transform-origin: right bottom;
2386
+ opacity: 1;
2387
+ }
2388
+
2389
+ 100% {
2390
+ -webkit-transform-origin: right bottom;
2391
+ transform-origin: right bottom;
2392
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
2393
+ transform: rotate3d(0, 0, 1, -45deg);
2394
+ opacity: 0;
2395
+ }
2396
+ }
2397
+
2398
+ @keyframes rotateOutDownRight {
2399
+ from {
2400
+ -webkit-transform-origin: right bottom;
2401
+ transform-origin: right bottom;
2402
+ opacity: 1;
2403
+ }
2404
+
2405
+ 100% {
2406
+ -webkit-transform-origin: right bottom;
2407
+ transform-origin: right bottom;
2408
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
2409
+ transform: rotate3d(0, 0, 1, -45deg);
2410
+ opacity: 0;
2411
+ }
2412
+ }
2413
+
2414
+ .rotateOutDownRight {
2415
+ -webkit-animation-name: rotateOutDownRight;
2416
+ animation-name: rotateOutDownRight;
2417
+ }
2418
+
2419
+ @-webkit-keyframes rotateOutUpLeft {
2420
+ from {
2421
+ -webkit-transform-origin: left bottom;
2422
+ transform-origin: left bottom;
2423
+ opacity: 1;
2424
+ }
2425
+
2426
+ 100% {
2427
+ -webkit-transform-origin: left bottom;
2428
+ transform-origin: left bottom;
2429
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
2430
+ transform: rotate3d(0, 0, 1, -45deg);
2431
+ opacity: 0;
2432
+ }
2433
+ }
2434
+
2435
+ @keyframes rotateOutUpLeft {
2436
+ from {
2437
+ -webkit-transform-origin: left bottom;
2438
+ transform-origin: left bottom;
2439
+ opacity: 1;
2440
+ }
2441
+
2442
+ 100% {
2443
+ -webkit-transform-origin: left bottom;
2444
+ transform-origin: left bottom;
2445
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
2446
+ transform: rotate3d(0, 0, 1, -45deg);
2447
+ opacity: 0;
2448
+ }
2449
+ }
2450
+
2451
+ .rotateOutUpLeft {
2452
+ -webkit-animation-name: rotateOutUpLeft;
2453
+ animation-name: rotateOutUpLeft;
2454
+ }
2455
+
2456
+ @-webkit-keyframes rotateOutUpRight {
2457
+ from {
2458
+ -webkit-transform-origin: right bottom;
2459
+ transform-origin: right bottom;
2460
+ opacity: 1;
2461
+ }
2462
+
2463
+ 100% {
2464
+ -webkit-transform-origin: right bottom;
2465
+ transform-origin: right bottom;
2466
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
2467
+ transform: rotate3d(0, 0, 1, 90deg);
2468
+ opacity: 0;
2469
+ }
2470
+ }
2471
+
2472
+ @keyframes rotateOutUpRight {
2473
+ from {
2474
+ -webkit-transform-origin: right bottom;
2475
+ transform-origin: right bottom;
2476
+ opacity: 1;
2477
+ }
2478
+
2479
+ 100% {
2480
+ -webkit-transform-origin: right bottom;
2481
+ transform-origin: right bottom;
2482
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
2483
+ transform: rotate3d(0, 0, 1, 90deg);
2484
+ opacity: 0;
2485
+ }
2486
+ }
2487
+
2488
+ .rotateOutUpRight {
2489
+ -webkit-animation-name: rotateOutUpRight;
2490
+ animation-name: rotateOutUpRight;
2491
+ }
2492
+
2493
+ @-webkit-keyframes hinge {
2494
+ 0% {
2495
+ -webkit-transform-origin: top left;
2496
+ transform-origin: top left;
2497
+ -webkit-animation-timing-function: ease-in-out;
2498
+ animation-timing-function: ease-in-out;
2499
+ }
2500
+
2501
+ 20%, 60% {
2502
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
2503
+ transform: rotate3d(0, 0, 1, 80deg);
2504
+ -webkit-transform-origin: top left;
2505
+ transform-origin: top left;
2506
+ -webkit-animation-timing-function: ease-in-out;
2507
+ animation-timing-function: ease-in-out;
2508
+ }
2509
+
2510
+ 40%, 80% {
2511
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
2512
+ transform: rotate3d(0, 0, 1, 60deg);
2513
+ -webkit-transform-origin: top left;
2514
+ transform-origin: top left;
2515
+ -webkit-animation-timing-function: ease-in-out;
2516
+ animation-timing-function: ease-in-out;
2517
+ opacity: 1;
2518
+ }
2519
+
2520
+ 100% {
2521
+ -webkit-transform: translate3d(0, 700px, 0);
2522
+ transform: translate3d(0, 700px, 0);
2523
+ opacity: 0;
2524
+ }
2525
+ }
2526
+
2527
+ @keyframes hinge {
2528
+ 0% {
2529
+ -webkit-transform-origin: top left;
2530
+ transform-origin: top left;
2531
+ -webkit-animation-timing-function: ease-in-out;
2532
+ animation-timing-function: ease-in-out;
2533
+ }
2534
+
2535
+ 20%, 60% {
2536
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
2537
+ transform: rotate3d(0, 0, 1, 80deg);
2538
+ -webkit-transform-origin: top left;
2539
+ transform-origin: top left;
2540
+ -webkit-animation-timing-function: ease-in-out;
2541
+ animation-timing-function: ease-in-out;
2542
+ }
2543
+
2544
+ 40%, 80% {
2545
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
2546
+ transform: rotate3d(0, 0, 1, 60deg);
2547
+ -webkit-transform-origin: top left;
2548
+ transform-origin: top left;
2549
+ -webkit-animation-timing-function: ease-in-out;
2550
+ animation-timing-function: ease-in-out;
2551
+ opacity: 1;
2552
+ }
2553
+
2554
+ 100% {
2555
+ -webkit-transform: translate3d(0, 700px, 0);
2556
+ transform: translate3d(0, 700px, 0);
2557
+ opacity: 0;
2558
+ }
2559
+ }
2560
+
2561
+ .hinge {
2562
+ -webkit-animation-name: hinge;
2563
+ animation-name: hinge;
2564
+ }
2565
+
2566
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2567
+
2568
+ @-webkit-keyframes rollIn {
2569
+ from {
2570
+ opacity: 0;
2571
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
2572
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
2573
+ }
2574
+
2575
+ 100% {
2576
+ opacity: 1;
2577
+ -webkit-transform: none;
2578
+ transform: none;
2579
+ }
2580
+ }
2581
+
2582
+ @keyframes rollIn {
2583
+ from {
2584
+ opacity: 0;
2585
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
2586
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
2587
+ }
2588
+
2589
+ 100% {
2590
+ opacity: 1;
2591
+ -webkit-transform: none;
2592
+ transform: none;
2593
+ }
2594
+ }
2595
+
2596
+ .rollIn {
2597
+ -webkit-animation-name: rollIn;
2598
+ animation-name: rollIn;
2599
+ }
2600
+
2601
+ /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
2602
+
2603
+ @-webkit-keyframes rollOut {
2604
+ from {
2605
+ opacity: 1;
2606
+ }
2607
+
2608
+ 100% {
2609
+ opacity: 0;
2610
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
2611
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
2612
+ }
2613
+ }
2614
+
2615
+ @keyframes rollOut {
2616
+ from {
2617
+ opacity: 1;
2618
+ }
2619
+
2620
+ 100% {
2621
+ opacity: 0;
2622
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
2623
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
2624
+ }
2625
+ }
2626
+
2627
+ .rollOut {
2628
+ -webkit-animation-name: rollOut;
2629
+ animation-name: rollOut;
2630
+ }
2631
+
2632
+ @-webkit-keyframes zoomIn {
2633
+ from {
2634
+ opacity: 0;
2635
+ -webkit-transform: scale3d(.3, .3, .3);
2636
+ transform: scale3d(.3, .3, .3);
2637
+ }
2638
+
2639
+ 50% {
2640
+ opacity: 1;
2641
+ }
2642
+ }
2643
+
2644
+ @keyframes zoomIn {
2645
+ from {
2646
+ opacity: 0;
2647
+ -webkit-transform: scale3d(.3, .3, .3);
2648
+ transform: scale3d(.3, .3, .3);
2649
+ }
2650
+
2651
+ 50% {
2652
+ opacity: 1;
2653
+ }
2654
+ }
2655
+
2656
+ .zoomIn {
2657
+ -webkit-animation-name: zoomIn;
2658
+ animation-name: zoomIn;
2659
+ }
2660
+
2661
+ @-webkit-keyframes zoomInDown {
2662
+ from {
2663
+ opacity: 0;
2664
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2665
+ transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2666
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2667
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2668
+ }
2669
+
2670
+ 60% {
2671
+ opacity: 1;
2672
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2673
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2674
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2675
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2676
+ }
2677
+ }
2678
+
2679
+ @keyframes zoomInDown {
2680
+ from {
2681
+ opacity: 0;
2682
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2683
+ transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
2684
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2685
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2686
+ }
2687
+
2688
+ 60% {
2689
+ opacity: 1;
2690
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2691
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2692
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2693
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2694
+ }
2695
+ }
2696
+
2697
+ .zoomInDown {
2698
+ -webkit-animation-name: zoomInDown;
2699
+ animation-name: zoomInDown;
2700
+ }
2701
+
2702
+ @-webkit-keyframes zoomInLeft {
2703
+ from {
2704
+ opacity: 0;
2705
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2706
+ transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2707
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2708
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2709
+ }
2710
+
2711
+ 60% {
2712
+ opacity: 1;
2713
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2714
+ transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2715
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2716
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2717
+ }
2718
+ }
2719
+
2720
+ @keyframes zoomInLeft {
2721
+ from {
2722
+ opacity: 0;
2723
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2724
+ transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
2725
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2726
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2727
+ }
2728
+
2729
+ 60% {
2730
+ opacity: 1;
2731
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2732
+ transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
2733
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2734
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2735
+ }
2736
+ }
2737
+
2738
+ .zoomInLeft {
2739
+ -webkit-animation-name: zoomInLeft;
2740
+ animation-name: zoomInLeft;
2741
+ }
2742
+
2743
+ @-webkit-keyframes zoomInRight {
2744
+ from {
2745
+ opacity: 0;
2746
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2747
+ transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2748
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2749
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2750
+ }
2751
+
2752
+ 60% {
2753
+ opacity: 1;
2754
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2755
+ transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2756
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2757
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2758
+ }
2759
+ }
2760
+
2761
+ @keyframes zoomInRight {
2762
+ from {
2763
+ opacity: 0;
2764
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2765
+ transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
2766
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2767
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2768
+ }
2769
+
2770
+ 60% {
2771
+ opacity: 1;
2772
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2773
+ transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
2774
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2775
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2776
+ }
2777
+ }
2778
+
2779
+ .zoomInRight {
2780
+ -webkit-animation-name: zoomInRight;
2781
+ animation-name: zoomInRight;
2782
+ }
2783
+
2784
+ @-webkit-keyframes zoomInUp {
2785
+ from {
2786
+ opacity: 0;
2787
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2788
+ transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2789
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2790
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2791
+ }
2792
+
2793
+ 60% {
2794
+ opacity: 1;
2795
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2796
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2797
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2798
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2799
+ }
2800
+ }
2801
+
2802
+ @keyframes zoomInUp {
2803
+ from {
2804
+ opacity: 0;
2805
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2806
+ transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
2807
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2808
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2809
+ }
2810
+
2811
+ 60% {
2812
+ opacity: 1;
2813
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2814
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2815
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2816
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2817
+ }
2818
+ }
2819
+
2820
+ .zoomInUp {
2821
+ -webkit-animation-name: zoomInUp;
2822
+ animation-name: zoomInUp;
2823
+ }
2824
+
2825
+ @-webkit-keyframes zoomOut {
2826
+ from {
2827
+ opacity: 1;
2828
+ }
2829
+
2830
+ 50% {
2831
+ opacity: 0;
2832
+ -webkit-transform: scale3d(.3, .3, .3);
2833
+ transform: scale3d(.3, .3, .3);
2834
+ }
2835
+
2836
+ 100% {
2837
+ opacity: 0;
2838
+ }
2839
+ }
2840
+
2841
+ @keyframes zoomOut {
2842
+ from {
2843
+ opacity: 1;
2844
+ }
2845
+
2846
+ 50% {
2847
+ opacity: 0;
2848
+ -webkit-transform: scale3d(.3, .3, .3);
2849
+ transform: scale3d(.3, .3, .3);
2850
+ }
2851
+
2852
+ 100% {
2853
+ opacity: 0;
2854
+ }
2855
+ }
2856
+
2857
+ .zoomOut {
2858
+ -webkit-animation-name: zoomOut;
2859
+ animation-name: zoomOut;
2860
+ }
2861
+
2862
+ @-webkit-keyframes zoomOutDown {
2863
+ 40% {
2864
+ opacity: 1;
2865
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2866
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2867
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2868
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2869
+ }
2870
+
2871
+ 100% {
2872
+ opacity: 0;
2873
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2874
+ transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2875
+ -webkit-transform-origin: center bottom;
2876
+ transform-origin: center bottom;
2877
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2878
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2879
+ }
2880
+ }
2881
+
2882
+ @keyframes zoomOutDown {
2883
+ 40% {
2884
+ opacity: 1;
2885
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2886
+ transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
2887
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2888
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2889
+ }
2890
+
2891
+ 100% {
2892
+ opacity: 0;
2893
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2894
+ transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
2895
+ -webkit-transform-origin: center bottom;
2896
+ transform-origin: center bottom;
2897
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2898
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2899
+ }
2900
+ }
2901
+
2902
+ .zoomOutDown {
2903
+ -webkit-animation-name: zoomOutDown;
2904
+ animation-name: zoomOutDown;
2905
+ }
2906
+
2907
+ @-webkit-keyframes zoomOutLeft {
2908
+ 40% {
2909
+ opacity: 1;
2910
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
2911
+ transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
2912
+ }
2913
+
2914
+ 100% {
2915
+ opacity: 0;
2916
+ -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
2917
+ transform: scale(.1) translate3d(-2000px, 0, 0);
2918
+ -webkit-transform-origin: left center;
2919
+ transform-origin: left center;
2920
+ }
2921
+ }
2922
+
2923
+ @keyframes zoomOutLeft {
2924
+ 40% {
2925
+ opacity: 1;
2926
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
2927
+ transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
2928
+ }
2929
+
2930
+ 100% {
2931
+ opacity: 0;
2932
+ -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
2933
+ transform: scale(.1) translate3d(-2000px, 0, 0);
2934
+ -webkit-transform-origin: left center;
2935
+ transform-origin: left center;
2936
+ }
2937
+ }
2938
+
2939
+ .zoomOutLeft {
2940
+ -webkit-animation-name: zoomOutLeft;
2941
+ animation-name: zoomOutLeft;
2942
+ }
2943
+
2944
+ @-webkit-keyframes zoomOutRight {
2945
+ 40% {
2946
+ opacity: 1;
2947
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
2948
+ transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
2949
+ }
2950
+
2951
+ 100% {
2952
+ opacity: 0;
2953
+ -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
2954
+ transform: scale(.1) translate3d(2000px, 0, 0);
2955
+ -webkit-transform-origin: right center;
2956
+ transform-origin: right center;
2957
+ }
2958
+ }
2959
+
2960
+ @keyframes zoomOutRight {
2961
+ 40% {
2962
+ opacity: 1;
2963
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
2964
+ transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
2965
+ }
2966
+
2967
+ 100% {
2968
+ opacity: 0;
2969
+ -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
2970
+ transform: scale(.1) translate3d(2000px, 0, 0);
2971
+ -webkit-transform-origin: right center;
2972
+ transform-origin: right center;
2973
+ }
2974
+ }
2975
+
2976
+ .zoomOutRight {
2977
+ -webkit-animation-name: zoomOutRight;
2978
+ animation-name: zoomOutRight;
2979
+ }
2980
+
2981
+ @-webkit-keyframes zoomOutUp {
2982
+ 40% {
2983
+ opacity: 1;
2984
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2985
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
2986
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2987
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
2988
+ }
2989
+
2990
+ 100% {
2991
+ opacity: 0;
2992
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
2993
+ transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
2994
+ -webkit-transform-origin: center bottom;
2995
+ transform-origin: center bottom;
2996
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2997
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
2998
+ }
2999
+ }
3000
+
3001
+ @keyframes zoomOutUp {
3002
+ 40% {
3003
+ opacity: 1;
3004
+ -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
3005
+ transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
3006
+ -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
3007
+ animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
3008
+ }
3009
+
3010
+ 100% {
3011
+ opacity: 0;
3012
+ -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
3013
+ transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
3014
+ -webkit-transform-origin: center bottom;
3015
+ transform-origin: center bottom;
3016
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
3017
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
3018
+ }
3019
+ }
3020
+
3021
+ .zoomOutUp {
3022
+ -webkit-animation-name: zoomOutUp;
3023
+ animation-name: zoomOutUp;
3024
+ }
3025
+
3026
+ @-webkit-keyframes slideInDown {
3027
+ from {
3028
+ -webkit-transform: translate3d(0, -100%, 0);
3029
+ transform: translate3d(0, -100%, 0);
3030
+ visibility: visible;
3031
+ }
3032
+
3033
+ 100% {
3034
+ -webkit-transform: translate3d(0, 0, 0);
3035
+ transform: translate3d(0, 0, 0);
3036
+ }
3037
+ }
3038
+
3039
+ @keyframes slideInDown {
3040
+ from {
3041
+ -webkit-transform: translate3d(0, -100%, 0);
3042
+ transform: translate3d(0, -100%, 0);
3043
+ visibility: visible;
3044
+ }
3045
+
3046
+ 100% {
3047
+ -webkit-transform: translate3d(0, 0, 0);
3048
+ transform: translate3d(0, 0, 0);
3049
+ }
3050
+ }
3051
+
3052
+ .slideInDown {
3053
+ -webkit-animation-name: slideInDown;
3054
+ animation-name: slideInDown;
3055
+ }
3056
+
3057
+ @-webkit-keyframes slideInLeft {
3058
+ from {
3059
+ -webkit-transform: translate3d(-100%, 0, 0);
3060
+ transform: translate3d(-100%, 0, 0);
3061
+ visibility: visible;
3062
+ }
3063
+
3064
+ 100% {
3065
+ -webkit-transform: translate3d(0, 0, 0);
3066
+ transform: translate3d(0, 0, 0);
3067
+ }
3068
+ }
3069
+
3070
+ @keyframes slideInLeft {
3071
+ from {
3072
+ -webkit-transform: translate3d(-100%, 0, 0);
3073
+ transform: translate3d(-100%, 0, 0);
3074
+ visibility: visible;
3075
+ }
3076
+
3077
+ 100% {
3078
+ -webkit-transform: translate3d(0, 0, 0);
3079
+ transform: translate3d(0, 0, 0);
3080
+ }
3081
+ }
3082
+
3083
+ .slideInLeft {
3084
+ -webkit-animation-name: slideInLeft;
3085
+ animation-name: slideInLeft;
3086
+ }
3087
+
3088
+ @-webkit-keyframes slideInRight {
3089
+ from {
3090
+ -webkit-transform: translate3d(100%, 0, 0);
3091
+ transform: translate3d(100%, 0, 0);
3092
+ visibility: visible;
3093
+ }
3094
+
3095
+ 100% {
3096
+ -webkit-transform: translate3d(0, 0, 0);
3097
+ transform: translate3d(0, 0, 0);
3098
+ }
3099
+ }
3100
+
3101
+ @keyframes slideInRight {
3102
+ from {
3103
+ -webkit-transform: translate3d(100%, 0, 0);
3104
+ transform: translate3d(100%, 0, 0);
3105
+ visibility: visible;
3106
+ }
3107
+
3108
+ 100% {
3109
+ -webkit-transform: translate3d(0, 0, 0);
3110
+ transform: translate3d(0, 0, 0);
3111
+ }
3112
+ }
3113
+
3114
+ .slideInRight {
3115
+ -webkit-animation-name: slideInRight;
3116
+ animation-name: slideInRight;
3117
+ }
3118
+
3119
+ @-webkit-keyframes slideInUp {
3120
+ from {
3121
+ -webkit-transform: translate3d(0, 100%, 0);
3122
+ transform: translate3d(0, 100%, 0);
3123
+ visibility: visible;
3124
+ }
3125
+
3126
+ 100% {
3127
+ -webkit-transform: translate3d(0, 0, 0);
3128
+ transform: translate3d(0, 0, 0);
3129
+ }
3130
+ }
3131
+
3132
+ @keyframes slideInUp {
3133
+ from {
3134
+ -webkit-transform: translate3d(0, 100%, 0);
3135
+ transform: translate3d(0, 100%, 0);
3136
+ visibility: visible;
3137
+ }
3138
+
3139
+ 100% {
3140
+ -webkit-transform: translate3d(0, 0, 0);
3141
+ transform: translate3d(0, 0, 0);
3142
+ }
3143
+ }
3144
+
3145
+ .slideInUp {
3146
+ -webkit-animation-name: slideInUp;
3147
+ animation-name: slideInUp;
3148
+ }
3149
+
3150
+ @-webkit-keyframes slideOutDown {
3151
+ from {
3152
+ -webkit-transform: translate3d(0, 0, 0);
3153
+ transform: translate3d(0, 0, 0);
3154
+ }
3155
+
3156
+ 100% {
3157
+ visibility: hidden;
3158
+ -webkit-transform: translate3d(0, 100%, 0);
3159
+ transform: translate3d(0, 100%, 0);
3160
+ }
3161
+ }
3162
+
3163
+ @keyframes slideOutDown {
3164
+ from {
3165
+ -webkit-transform: translate3d(0, 0, 0);
3166
+ transform: translate3d(0, 0, 0);
3167
+ }
3168
+
3169
+ 100% {
3170
+ visibility: hidden;
3171
+ -webkit-transform: translate3d(0, 100%, 0);
3172
+ transform: translate3d(0, 100%, 0);
3173
+ }
3174
+ }
3175
+
3176
+ .slideOutDown {
3177
+ -webkit-animation-name: slideOutDown;
3178
+ animation-name: slideOutDown;
3179
+ }
3180
+
3181
+ @-webkit-keyframes slideOutLeft {
3182
+ from {
3183
+ -webkit-transform: translate3d(0, 0, 0);
3184
+ transform: translate3d(0, 0, 0);
3185
+ }
3186
+
3187
+ 100% {
3188
+ visibility: hidden;
3189
+ -webkit-transform: translate3d(-100%, 0, 0);
3190
+ transform: translate3d(-100%, 0, 0);
3191
+ }
3192
+ }
3193
+
3194
+ @keyframes slideOutLeft {
3195
+ from {
3196
+ -webkit-transform: translate3d(0, 0, 0);
3197
+ transform: translate3d(0, 0, 0);
3198
+ }
3199
+
3200
+ 100% {
3201
+ visibility: hidden;
3202
+ -webkit-transform: translate3d(-100%, 0, 0);
3203
+ transform: translate3d(-100%, 0, 0);
3204
+ }
3205
+ }
3206
+
3207
+ .slideOutLeft {
3208
+ -webkit-animation-name: slideOutLeft;
3209
+ animation-name: slideOutLeft;
3210
+ }
3211
+
3212
+ @-webkit-keyframes slideOutRight {
3213
+ from {
3214
+ -webkit-transform: translate3d(0, 0, 0);
3215
+ transform: translate3d(0, 0, 0);
3216
+ }
3217
+
3218
+ 100% {
3219
+ visibility: hidden;
3220
+ -webkit-transform: translate3d(100%, 0, 0);
3221
+ transform: translate3d(100%, 0, 0);
3222
+ }
3223
+ }
3224
+
3225
+ @keyframes slideOutRight {
3226
+ from {
3227
+ -webkit-transform: translate3d(0, 0, 0);
3228
+ transform: translate3d(0, 0, 0);
3229
+ }
3230
+
3231
+ 100% {
3232
+ visibility: hidden;
3233
+ -webkit-transform: translate3d(100%, 0, 0);
3234
+ transform: translate3d(100%, 0, 0);
3235
+ }
3236
+ }
3237
+
3238
+ .slideOutRight {
3239
+ -webkit-animation-name: slideOutRight;
3240
+ animation-name: slideOutRight;
3241
+ }
3242
+
3243
+ @-webkit-keyframes slideOutUp {
3244
+ from {
3245
+ -webkit-transform: translate3d(0, 0, 0);
3246
+ transform: translate3d(0, 0, 0);
3247
+ }
3248
+
3249
+ 100% {
3250
+ visibility: hidden;
3251
+ -webkit-transform: translate3d(0, -100%, 0);
3252
+ transform: translate3d(0, -100%, 0);
3253
+ }
3254
+ }
3255
+
3256
+ @keyframes slideOutUp {
3257
+ from {
3258
+ -webkit-transform: translate3d(0, 0, 0);
3259
+ transform: translate3d(0, 0, 0);
3260
+ }
3261
+
3262
+ 100% {
3263
+ visibility: hidden;
3264
+ -webkit-transform: translate3d(0, -100%, 0);
3265
+ transform: translate3d(0, -100%, 0);
3266
+ }
3267
+ }
3268
+
3269
+ .slideOutUp {
3270
+ -webkit-animation-name: slideOutUp;
3271
+ animation-name: slideOutUp;
3272
+ }
static/css/color.css ADDED
@@ -0,0 +1,370 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Namari Landing Page Dynamic Style Index
2
+
3
+ 1. Website Default Styling
4
+ 2. Navigation
5
+ 3. Primary and Secondary Colors
6
+ 4. Banner
7
+ 5. Typography
8
+ 6. Buttons
9
+ 7. Footer
10
+
11
+
12
+ /*------------------------------------------------------------------------------------------*/
13
+
14
+
15
+ /* 1. Website Default Styling */
16
+
17
+
18
+ /*------------------------------------------------------------------------------------------*/
19
+
20
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
21
+
22
+ /* Default Link Color */
23
+
24
+ a,
25
+ .la-ball-triangle-path {
26
+ color: #FF8B4A;
27
+ }
28
+
29
+ a:hover,
30
+ #header.nav-solid nav a:hover {
31
+ color: #FF8B4A;
32
+ }
33
+
34
+
35
+ /* Default Icon Color */
36
+
37
+ .icon i {
38
+ color: #FF8B4A;
39
+ }
40
+
41
+
42
+ /* Border Color */
43
+
44
+ #banner .section-heading:before,
45
+ .testimonial.classic footer:before {
46
+ background: #FF8B4A;
47
+ }
48
+
49
+ .pricing-block-content:hover {
50
+ border-color: #FF8B4A;
51
+ }
52
+
53
+
54
+ /*------------------------------------------------------------------------------------------*/
55
+
56
+
57
+ /* 2. Navigation */
58
+
59
+
60
+ /*------------------------------------------------------------------------------------------*/
61
+
62
+
63
+ /* Transparent Navigation Color on a Banner */
64
+
65
+ #header nav a,
66
+ #header i {
67
+ color: #111;
68
+ font-size: 16px;
69
+ font-weight: 500;
70
+ }
71
+
72
+
73
+ /* Navigation Colors when the Navigation is sticky and solid */
74
+
75
+ #header.nav-solid,
76
+ #header.nav-solid a,
77
+ #header.nav-solid i,
78
+ #nav-mobile ul li a {
79
+ color: #333;
80
+ }
81
+
82
+
83
+ /* Navigation Active State */
84
+
85
+ #header.nav-solid .active {
86
+ color: #FF8B4A;
87
+ border-color: #FF8B4A;
88
+ }
89
+
90
+
91
+ /*------------------------------------------------------------------------------------------*/
92
+
93
+
94
+ /* 3. Primary and Secondary Colors */
95
+
96
+
97
+ /*------------------------------------------------------------------------------------------*/
98
+
99
+
100
+ /* Primary Background and Text Colors */
101
+
102
+ .primary-color,
103
+ .featured .pricing {
104
+ background-color: #FF8B4A;
105
+ }
106
+
107
+ .primary-color,
108
+ .primary-color .section-title,
109
+ .primary-color .section-subtitle,
110
+ .featured .pricing,
111
+ .featured .pricing p {
112
+ color: #fff;
113
+ }
114
+
115
+ .text-center .section-heading h2:after {
116
+ margin: 30px auto 25px auto;
117
+ }
118
+
119
+
120
+ /* Primary Icon Colors */
121
+
122
+ .primary-color .icon i,
123
+ .primary-color i {
124
+ color: #fff;
125
+ }
126
+
127
+
128
+ /* Secondary Background and Text Colors */
129
+
130
+ .secondary-color {
131
+ background-color: #f5f5f5;
132
+ }
133
+
134
+
135
+ /*------------------------------------------------------------------------------------------*/
136
+
137
+
138
+ /* 4. Banner */
139
+
140
+ #banner {
141
+ background-color: #f5f5f500;
142
+ }
143
+
144
+
145
+ /*------------------------------------------------------------------------------------------*/
146
+
147
+
148
+ /* Banner Background and Text Colors */
149
+
150
+
151
+ /*------------------------------------------------------------------------------------------*/
152
+
153
+
154
+ /* 5. Typography */
155
+
156
+
157
+ /*------------------------------------------------------------------------------------------*/
158
+
159
+ body {
160
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
161
+ font-size: 15px;
162
+ font-weight: normal;
163
+ color: #111;
164
+ }
165
+
166
+
167
+ /* Logo, if you are using Fonts as Logo and not image
168
+
169
+ #logo h1 {
170
+ font-family:;
171
+ font-size:;
172
+ font-weight:;
173
+ color:;
174
+ }
175
+
176
+ #logo h2 {
177
+ font-family:;
178
+ font-size:;
179
+ font-weight:;
180
+ color:;
181
+ }
182
+
183
+ */
184
+
185
+
186
+ /* Banner Typography */
187
+
188
+ #banner h1 {
189
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
190
+ font-size: 60px;
191
+ line-height: 60px;
192
+ font-weight: 700;
193
+ color: #111;
194
+ }
195
+
196
+ #banner h2 {
197
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
198
+ font-size: 17px;
199
+ font-weight: 200;
200
+ color: #111;
201
+ padding-top: 0%;
202
+ }
203
+
204
+
205
+ /* Section Title and Subtitle */
206
+
207
+ .section-title {
208
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
209
+ font-size: 34px;
210
+ font-weight: 700;
211
+ color: #111;
212
+ }
213
+
214
+ .section-subtitle {
215
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
216
+ font-size: 16px;
217
+ font-weight: 300;
218
+ color: #9c9c9c;
219
+ }
220
+
221
+
222
+ /* Testimonial */
223
+
224
+ .testimonial q {
225
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
226
+ font-size: 17px;
227
+ font-weight: 300;
228
+ }
229
+
230
+ .testimonial.classic q,
231
+ .testimonial.classic footer {
232
+ color: #111;
233
+ }
234
+
235
+
236
+ /* Standard Headings h1-h6 */
237
+
238
+ h1 {
239
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
240
+ font-size: 40px;
241
+ font-weight: 300;
242
+ color: #111;
243
+ }
244
+
245
+ h2 {
246
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
247
+ font-size: 34px;
248
+ font-weight: 300;
249
+ color: #111;
250
+ }
251
+
252
+ h3 {
253
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
254
+ font-size: 30px;
255
+ font-weight: 700;
256
+ color: #111;
257
+ }
258
+
259
+ h4 {
260
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
261
+ font-size: 18px;
262
+ font-weight: 400;
263
+ color: #111;
264
+ }
265
+
266
+ h5 {
267
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
268
+ font-size: 16px;
269
+ font-weight: 400;
270
+ color: #111;
271
+ }
272
+
273
+ h6 {
274
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
275
+ font-size: 14px;
276
+ font-weight: 400;
277
+ color: #111;
278
+ }
279
+
280
+
281
+ /*------------------------------------------------------------------------------------------*/
282
+
283
+
284
+ /* 6. Buttons */
285
+
286
+
287
+ /*------------------------------------------------------------------------------------------*/
288
+
289
+
290
+ /* ----------Default Buttons---------- */
291
+
292
+
293
+ /* Button Text */
294
+
295
+ .button,
296
+ input[type="submit"] {
297
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
298
+ font-size: 14px;
299
+ font-weight: bold;
300
+ color: #111;
301
+ }
302
+
303
+
304
+ /* Button Color */
305
+
306
+ .button,
307
+ input[type="submit"] {
308
+ border-color: #111;
309
+ }
310
+
311
+
312
+ /* Button Hover Color */
313
+
314
+ .button:hover,
315
+ input[type="submit"]:hover {
316
+ border-color: #FF8B4A;
317
+ color: #FF8B4A;
318
+ }
319
+
320
+
321
+ /* ----------Banner Buttons---------- */
322
+
323
+
324
+ /* Button Text */
325
+
326
+ #banner .button {
327
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
328
+ font-size: 16px;
329
+ color: #111;
330
+ }
331
+
332
+
333
+ /* Button Color */
334
+
335
+ #banner .button {
336
+ border-color: #111;
337
+ }
338
+
339
+
340
+ /* Button Hover Color */
341
+
342
+ #banner .button:hover {
343
+ color: #FF8B4A;
344
+ border-color: #FF8B4A;
345
+ }
346
+
347
+
348
+ /*------------------------------------------------------------------------------------------*/
349
+
350
+
351
+ /* 7. Footer */
352
+
353
+
354
+ /*------------------------------------------------------------------------------------------*/
355
+
356
+ #landing-footer,
357
+ #landing-footer p,
358
+ #landing-footer a {
359
+ font-family: 'Poppins', sans-serif, Arial, Helvetica;
360
+ font-size: 12px;
361
+ font-weight: normal;
362
+ color: #999;
363
+ }
364
+
365
+
366
+ /* Footer Icon Color */
367
+
368
+ #landing-footer i {
369
+ color: #999;
370
+ }
static/css/font-awesome.min.css ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
static/css/style.css ADDED
@@ -0,0 +1,3070 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Namari Landing Page v.1.1.0 Style Index - a free landing page by shapingrain.com
2
+
3
+ 1. Default and Reset styles
4
+ - 1.1 Input Elements
5
+ 2. Global elements
6
+ - 2.1 Header
7
+ - 2.2 Logo
8
+ - 2.3 Buttons
9
+ - 2.4 Navigation
10
+ - 2.5 Social Elements
11
+ - 2.6 Images
12
+ 3. Fonts and Headings
13
+ 4. Banner
14
+ - 4.1 SignUp Form
15
+ 5. Content Elements
16
+ - 5.1 Icons
17
+ - 5.2 Parallax Elements
18
+ - 5.3 Divider
19
+ 6. Landing Page Sections
20
+ - 6.1 Features
21
+ - 6.2 Testimonials
22
+ - 6.3 Gallery
23
+ - 6.4 Video
24
+ - 6.5 Clients
25
+ - 6.6 Pricing Table
26
+ 7. Footer
27
+
28
+
29
+ /*------------------------------------------------------------------------------------------*/
30
+
31
+
32
+ /* 1. Defaults & Reset of specific styles across browsers */
33
+
34
+
35
+ /*------------------------------------------------------------------------------------------*/
36
+
37
+ *,
38
+ *:before,
39
+ *:after {
40
+ -webkit-box-sizing: border-box;
41
+ -moz-box-sizing: border-box;
42
+ box-sizing: border-box;
43
+ }
44
+
45
+ body,
46
+ div,
47
+ dl,
48
+ dt,
49
+ dd,
50
+ ul,
51
+ ol,
52
+ li,
53
+ h1,
54
+ h2,
55
+ h3,
56
+ h4,
57
+ h5,
58
+ h6,
59
+ pre,
60
+ form,
61
+ blockquote,
62
+ th,
63
+ td {
64
+ margin: 0;
65
+ padding: 0;
66
+ direction: ltr;
67
+ }
68
+
69
+ body {
70
+ margin: 0;
71
+ padding: 0;
72
+ -webkit-font-smoothing: antialiased;
73
+ overflow-x: hidden;
74
+ }
75
+
76
+ p {
77
+ line-height: 15px;
78
+ text-align: center;
79
+ font-size: 12px;
80
+ }
81
+
82
+ .row img {
83
+ height: auto;
84
+ max-width: 100%;
85
+ }
86
+
87
+ a {
88
+ text-decoration: none;
89
+ line-height: inherit;
90
+ -webkit-transition: opacity 0.3s ease-out;
91
+ -moz-transition: opacity 0.3s ease-out;
92
+ -o-transition: opacity 0.3s ease-out;
93
+ transition: opacity 0.3s ease-out;
94
+ }
95
+
96
+ iframe {
97
+ border: 0 !important;
98
+ }
99
+
100
+ .parallax-window {
101
+ min-height: 400px;
102
+ background: transparent;
103
+ }
104
+
105
+ figure {
106
+ margin: 0;
107
+ }
108
+
109
+
110
+ /* Page Border */
111
+
112
+ .page-border {
113
+ position: fixed;
114
+ z-index: 999999;
115
+ pointer-events: none;
116
+ }
117
+
118
+ .page-border .bottom-border,
119
+ .page-border .left-border,
120
+ .page-border .right-border,
121
+ .page-border .top-border {
122
+ background: #f3f3efcd;
123
+ position: fixed;
124
+ z-index: 9999;
125
+ }
126
+
127
+ .page-border>.top-border,
128
+ .page-border>.right-border,
129
+ .page-border>.bottom-border,
130
+ .page-border>.left-border {
131
+ padding: 11px;
132
+ background: #ccc;
133
+ }
134
+
135
+ .page-border .bottom-border,
136
+ .page-border .top-border {
137
+ width: 100%;
138
+ padding: 10px;
139
+ left: 0;
140
+ }
141
+
142
+ .page-border .left-border,
143
+ .page-border .right-border {
144
+ padding: 10px;
145
+ height: 100%;
146
+ top: 0;
147
+ }
148
+
149
+ .page-border .top-border {
150
+ top: 0;
151
+ }
152
+
153
+ .page-border .right-border {
154
+ right: 0;
155
+ }
156
+
157
+ .page-border .bottom-border {
158
+ bottom: 0;
159
+ }
160
+
161
+ .page-border .left-border {
162
+ left: 0;
163
+ }
164
+
165
+ #wrapper {
166
+ margin: 0 15px;
167
+ padding: 15px 0;
168
+ position: relative;
169
+ }
170
+
171
+
172
+ /* --------- 1.1 Input Elements ---------- */
173
+
174
+ input,
175
+ textarea {
176
+ border: 1px solid #e1e1e1;
177
+ padding: 10px;
178
+ -webkit-transition: all .3s linear;
179
+ -moz-transition: all .3s linear;
180
+ transition: all .3s linear;
181
+ border-radius: 3px;
182
+ }
183
+
184
+ input {
185
+ height: 40px;
186
+ margin: 3px 0;
187
+ outline: none;
188
+ line-height: normal;
189
+ font-size: 14px;
190
+ }
191
+
192
+ input[type="submit"] {
193
+ cursor: pointer;
194
+ border-style: solid;
195
+ border-width: 2px;
196
+ padding-top: 0;
197
+ padding-bottom: 0;
198
+ }
199
+
200
+ select {
201
+ border: 1px solid #e1e1e1;
202
+ height: 40px;
203
+ padding: 5px;
204
+ }
205
+
206
+ input:focus,
207
+ textarea:focus {
208
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
209
+ }
210
+
211
+ *:focus {
212
+ outline: none;
213
+ }
214
+
215
+
216
+ /*------------------------------------------------------------------------------------------*/
217
+
218
+
219
+ /* 2. Layout Elements */
220
+
221
+
222
+ /*------------------------------------------------------------------------------------------*/
223
+
224
+ section {
225
+ clear: both;
226
+ overflow: hidden;
227
+ }
228
+
229
+
230
+ /* Rows and Columns */
231
+
232
+ .row {
233
+ max-width: 1245px;
234
+ margin: 0 auto;
235
+ padding: 75px 0;
236
+ position: relative;
237
+ }
238
+
239
+ .no-padding-bottom .row,
240
+ .no-padding-bottom div,
241
+ .no-padding-bottom.row {
242
+ padding-bottom: 0;
243
+ }
244
+
245
+ .no-padding-top.row,
246
+ .no-padding-top div {
247
+ padding-top: 0;
248
+ }
249
+
250
+ .big-padding-top {
251
+ padding-top: 75px !important;
252
+ }
253
+
254
+ .big-padding-bottom {
255
+ padding-bottom: 85px !important;
256
+ }
257
+
258
+
259
+ /* Targets all elements */
260
+
261
+ [class*='col-'] {
262
+ float: left;
263
+ padding: 20px;
264
+ }
265
+
266
+ #clients .col-2-3 [class*='col-'] {
267
+ padding: 0;
268
+ }
269
+
270
+
271
+ /* Clearfix */
272
+
273
+ .clearfix:after {
274
+ content: "";
275
+ display: table;
276
+ clear: both;
277
+ }
278
+
279
+
280
+ /* Main Widths */
281
+
282
+ .col-1 {
283
+ width: 100%;
284
+ }
285
+
286
+ .col-2 {
287
+ width: 50%;
288
+ }
289
+
290
+ .col-3 {
291
+ width: 33.33%;
292
+ }
293
+
294
+ .col-4 {
295
+ width: 25%;
296
+ }
297
+
298
+ .col-5 {
299
+ width: 20%;
300
+ }
301
+
302
+ .col-6 {
303
+ width: 16.6666666667%;
304
+ }
305
+
306
+ .col-7 {
307
+ width: 14.2857142857%;
308
+ }
309
+
310
+ .col-8 {
311
+ width: 12.5%;
312
+ }
313
+
314
+ .col-9 {
315
+ width: 11.1111111111%;
316
+ }
317
+
318
+ .col-10 {
319
+ width: 10%;
320
+ }
321
+
322
+ .col-11 {
323
+ width: 9.09090909091%;
324
+ }
325
+
326
+ .col-12 {
327
+ width: 8.33%;
328
+ }
329
+
330
+ .col-2-3 {
331
+ width: 66.66%;
332
+ }
333
+
334
+ .col-3-4 {
335
+ width: 75%;
336
+ }
337
+
338
+ .col-9-10 {
339
+ width: 90%;
340
+ }
341
+
342
+
343
+ /* Golden Ratio */
344
+
345
+ .col-lg-6 {
346
+ width: 50%;
347
+ height: auto;
348
+ }
349
+
350
+ .col-lg-3 {
351
+ width: 50%;
352
+ }
353
+
354
+
355
+ /* --------- 2.1 Header --------- */
356
+
357
+ #header {
358
+ height: 71px !important;
359
+ overflow: visible;
360
+ z-index: 9999;
361
+ width: 100%;
362
+ position: absolute !important;
363
+ }
364
+
365
+ #header .row {
366
+ padding: 0;
367
+ }
368
+
369
+ #header aside {
370
+ text-align: right;
371
+ }
372
+
373
+ #header ul {
374
+ text-align: center;
375
+ }
376
+
377
+ #header li {
378
+ display: inline-block;
379
+ list-style: none;
380
+ margin: 0;
381
+ }
382
+
383
+
384
+ /* --------- 2.2 Logo ---------- */
385
+
386
+ #logo {
387
+ float: left;
388
+ height: 90px;
389
+ line-height: 66px;
390
+ margin: 10px 15px 0 0;
391
+ }
392
+
393
+ #logo h1,
394
+ #logo h2 {
395
+ display: inline-block;
396
+ }
397
+
398
+ #banner #logo h1 {
399
+ font-size: 28px;
400
+ margin-right: 10px;
401
+ font-weight: 900;
402
+ padding: 0;
403
+ }
404
+
405
+ #logo h2 {
406
+ font-size: 18px;
407
+ padding: 0;
408
+ }
409
+
410
+ #logo img {
411
+ max-height: 40px;
412
+ vertical-align: middle;
413
+ margin-right: 15px;
414
+ }
415
+
416
+ #navigation-logo {
417
+ display: none;
418
+ }
419
+
420
+ .nav-solid #logo #banner-logo {
421
+ display: none;
422
+ }
423
+
424
+ .nav-solid #logo #navigation-logo {
425
+ display: inline-block;
426
+ margin-bottom: 10px;
427
+ }
428
+
429
+
430
+ /* --------- 2.3 Buttons ---------- */
431
+
432
+ .call-to-action {
433
+ padding: 35px 0 35px 0;
434
+ }
435
+
436
+
437
+ /*Style*/
438
+
439
+ .button {
440
+ font-size: 16px;
441
+ margin: 35px 0;
442
+ padding: 11px 16px;
443
+ -webkit-transition: all .3s linear;
444
+ -moz-transition: all .3s linear;
445
+ transition: all .3s linear;
446
+ display: inline-block;
447
+ border-width: 3px;
448
+ border-style: solid;
449
+ }
450
+
451
+
452
+ /* Play Button */
453
+
454
+ #video-section {
455
+ position: relative;
456
+ }
457
+
458
+ .play-video {
459
+ height: 110px;
460
+ position: absolute;
461
+ top: 50%;
462
+ margin-top: -110px;
463
+ width: 100%;
464
+ }
465
+
466
+ .play-icon {
467
+ display: inline-block;
468
+ font-size: 0px;
469
+ cursor: pointer;
470
+ margin: 45px auto;
471
+ width: 110px;
472
+ height: 110px;
473
+ border-radius: 50%;
474
+ text-align: center;
475
+ position: relative;
476
+ z-index: 1;
477
+ }
478
+
479
+ .play-icon:after {
480
+ pointer-events: none;
481
+ position: absolute;
482
+ width: 100%;
483
+ height: 100%;
484
+ border-radius: 50%;
485
+ content: '';
486
+ -webkit-box-sizing: content-box;
487
+ -moz-box-sizing: content-box;
488
+ box-sizing: content-box;
489
+ }
490
+
491
+ .play-icon:before {
492
+ font-family: 'fontawesome';
493
+ content: '\f144';
494
+ speak: none;
495
+ font-size: 74px;
496
+ line-height: 110px;
497
+ font-style: normal;
498
+ font-weight: normal;
499
+ font-variant: normal;
500
+ text-transform: none;
501
+ display: block;
502
+ -webkit-font-smoothing: antialiased;
503
+ color: #fff;
504
+ }
505
+
506
+ .play-video .play-icon {
507
+ background: rgba(255, 255, 255, 0.5);
508
+ -webkit-transition: -webkit-transform ease-out 0.3s, background 0.4s;
509
+ -moz-transition: -moz-transform ease-out 0.3s, background 0.4s;
510
+ transition: transform ease-out 0.3s, background 0.4s;
511
+ }
512
+
513
+ .play-video .play-icon:after {
514
+ top: 0;
515
+ left: 0;
516
+ padding: 0;
517
+ z-index: -1;
518
+ box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
519
+ opacity: 0;
520
+ -webkit-transform: scale(0.9);
521
+ -moz-transform: scale(0.9);
522
+ -ms-transform: scale(0.9);
523
+ transform: scale(0.9);
524
+ }
525
+
526
+ .play-video .play-icon:hover {
527
+ background: rgba(255, 255, 255, 0.05);
528
+ -webkit-transform: scale(0.93);
529
+ -moz-transform: scale(0.93);
530
+ -ms-transform: scale(0.93);
531
+ transform: scale(0.93);
532
+ color: #fff;
533
+ }
534
+
535
+
536
+ /* --------- 2.4 Navigation ---------- */
537
+
538
+ #header {
539
+ font-size: 13px;
540
+ }
541
+
542
+ #header aside {
543
+ float: right;
544
+ }
545
+
546
+ #header nav ul {
547
+ text-transform: uppercase;
548
+ }
549
+
550
+ #header nav a {
551
+ height: 71px;
552
+ line-height: 90px;
553
+ display: block;
554
+ padding: 0 10px;
555
+ }
556
+
557
+ #header nav a:hover {
558
+ color: #FF8B4A;
559
+ }
560
+
561
+
562
+ /*Navigation Solid*/
563
+
564
+ #header.nav-solid [class*='col-'] {
565
+ padding: 0 20px;
566
+ }
567
+
568
+ #header.nav-solid {
569
+ background: #fff;
570
+ box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.2);
571
+ position: fixed !important;
572
+ left: 0;
573
+ }
574
+
575
+ #header.nav-solid nav a {
576
+ border-bottom: 3px solid;
577
+ border-color: #fff;
578
+ -webkit-transition: all 0.3s ease-out;
579
+ -moz-transition: all 0.3s ease-out;
580
+ -o-transition: all 0.3s ease-out;
581
+ transition: all 0.3s ease-out;
582
+ }
583
+
584
+ #header.nav-solid nav a:hover {
585
+ opacity: 1;
586
+ }
587
+
588
+
589
+ /* Social Elements when Solid*/
590
+
591
+ #header.nav-solid .social-icons a {
592
+ -webkit-transition: all 0.3s ease-out;
593
+ -moz-transition: all 0.3s ease-out;
594
+ -o-transition: all 0.3s ease-out;
595
+ transition: all 0.3s ease-out;
596
+ opacity: 0.5;
597
+ }
598
+
599
+ #header.nav-solid .social-icons a:hover {
600
+ opacity: 1;
601
+ color: #e4473c;
602
+ }
603
+
604
+
605
+ /* Responsive Nav Styling */
606
+
607
+ #nav-trigger {
608
+ display: none;
609
+ text-align: right;
610
+ }
611
+
612
+ #nav-trigger span {
613
+ display: inline-block;
614
+ width: 38px;
615
+ height: 71px;
616
+ color: #111;
617
+ cursor: pointer;
618
+ text-transform: uppercase;
619
+ font-size: 22px;
620
+ text-align: center;
621
+ border-top-right-radius: 5px;
622
+ border-top-left-radius: 5px;
623
+ -webkit-transition: all 0.3s ease-out;
624
+ -moz-transition: all 0.3s ease-out;
625
+ -o-transition: all 0.3s ease-out;
626
+ transition: all 0.3s ease-out;
627
+ }
628
+
629
+ #nav-trigger span:after {
630
+ font-family: "fontAwesome";
631
+ display: inline-block;
632
+ width: 38px;
633
+ height: 71px;
634
+ line-height: 75px;
635
+ text-align: center;
636
+ content: "\f0c9";
637
+ border-top-right-radius: 5px;
638
+ border-top-left-radius: 5px;
639
+ }
640
+
641
+ #nav-trigger span.open:after {
642
+ content: "\f00d";
643
+ }
644
+
645
+ #nav-trigger span:hover,
646
+ .nav-solid #nav-trigger span.open:hover,
647
+ .nav-solid #nav-trigger span:hover {
648
+ opacity: 0.6;
649
+ }
650
+
651
+ #nav-trigger span.open,
652
+ #nav-trigger span.open:hover {
653
+ color: #111;
654
+ }
655
+
656
+ .nav-solid #nav-trigger span.open:hover {
657
+ color: #999;
658
+ }
659
+
660
+ .nav-solid #nav-trigger span {
661
+ color: #999;
662
+ opacity: 1;
663
+ }
664
+
665
+ nav#nav-mobile {
666
+ position: relative;
667
+ display: none;
668
+ }
669
+
670
+ nav#nav-mobile ul {
671
+ display: none;
672
+ list-style-type: none;
673
+ position: absolute;
674
+ left: 0;
675
+ right: 0;
676
+ margin-left: -20px;
677
+ margin-right: -20px;
678
+ padding-top: 10px;
679
+ padding-bottom: 10px;
680
+ text-align: center;
681
+ background-color: #fff;
682
+ box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
683
+ }
684
+
685
+ nav#nav-mobile ul:after {
686
+ display: none;
687
+ }
688
+
689
+ nav#nav-mobile li {
690
+ margin: 0 20px;
691
+ float: none;
692
+ text-align: left;
693
+ border-bottom: 1px solid #e1e1e1;
694
+ }
695
+
696
+ nav#nav-mobile li:last-child {
697
+ border-bottom: none;
698
+ }
699
+
700
+ .nav-solid nav#nav-mobile li {
701
+ border-top: 1px solid #e1e1e1;
702
+ border-bottom: none;
703
+ }
704
+
705
+ nav#nav-mobile a {
706
+ display: block;
707
+ padding: 12px 0;
708
+ color: #333;
709
+ width: 100%;
710
+ height: auto;
711
+ line-height: normal;
712
+ display: block;
713
+ border-bottom: none !important;
714
+ -webkit-transition: all 0.3s ease-out;
715
+ -moz-transition: all 0.3s ease-out;
716
+ -o-transition: all 0.3s ease-out;
717
+ transition: all 0.3s ease-out;
718
+ }
719
+
720
+ nav#nav-mobile a:hover {
721
+ background: #fafafa;
722
+ opacity: 1;
723
+ }
724
+
725
+
726
+ /* --------- 2.5 Social Elements ---------- */
727
+
728
+ #header .col-4 {
729
+ text-align: right;
730
+ }
731
+
732
+ .social-icons {
733
+ display: inline-block;
734
+ list-style: none;
735
+ }
736
+
737
+ .social-icons a {
738
+ display: inline-block;
739
+ width: 32px;
740
+ text-align: center;
741
+ }
742
+
743
+ .social-icons a:hover {
744
+ opacity: 0.7;
745
+ }
746
+
747
+ .social-icons span {
748
+ display: none;
749
+ }
750
+
751
+ #header .social-icons {
752
+ margin-top: 27px;
753
+ }
754
+
755
+
756
+ /* --------- 2.6 Images ---------- */
757
+
758
+
759
+ /*Alignment*/
760
+
761
+ img {
762
+ vertical-align: top;
763
+ }
764
+
765
+ .image-center {
766
+ display: block;
767
+ margin: 0 auto;
768
+ }
769
+
770
+ a img {
771
+ border: none;
772
+ -webkit-transition: all 0.3s ease-out;
773
+ -moz-transition: all 0.3s ease-out;
774
+ -o-transition: all 0.3s ease-out;
775
+ transition: all 0.3s ease-out;
776
+ -webkit-backface-visibility: hidden;
777
+ }
778
+
779
+ a img:hover {
780
+ opacity: 0.7;
781
+ }
782
+
783
+
784
+ /*------------------------------------------------------------------------------------------*/
785
+
786
+
787
+ /* 3. Fonts */
788
+
789
+
790
+ /*------------------------------------------------------------------------------------------*/
791
+
792
+ h1 {
793
+ padding: 20px 0;
794
+ }
795
+
796
+ h2 {
797
+ padding: 14px 0;
798
+ }
799
+
800
+ h3 {
801
+ padding: 10px 0;
802
+ }
803
+
804
+ h4 {
805
+ padding: 7px 0;
806
+ }
807
+
808
+ h5 {
809
+ padding: 7px 0;
810
+ }
811
+
812
+ h6 {
813
+ padding: 7px 0;
814
+ }
815
+
816
+
817
+ /* Text Alignment */
818
+
819
+ .text-left {
820
+ text-align: left;
821
+ }
822
+
823
+ .text-center {
824
+ text-align: center;
825
+ }
826
+
827
+ .text-right {
828
+ text-align: right;
829
+ }
830
+
831
+
832
+ /* Section Headings */
833
+
834
+ .section-heading {
835
+ padding: 0 0 15px 0;
836
+ display: flex;
837
+ justify-content: center;
838
+ }
839
+
840
+ .section-subtitle {
841
+ font-size: 18px;
842
+ padding-top: 0;
843
+ }
844
+
845
+ .section-heading h3 {
846
+ font-size: 14px;
847
+ font-weight: bold;
848
+ color: #ccc;
849
+ letter-spacing: 2px;
850
+ padding-bottom: 0;
851
+ }
852
+
853
+
854
+ /*------------------------------------------------------------------------------------------*/
855
+
856
+
857
+ /* 4. Banner */
858
+
859
+
860
+ /*------------------------------------------------------------------------------------------*/
861
+
862
+ #banner {
863
+ background-size: cover;
864
+ }
865
+
866
+ #banner-content.row {
867
+ padding-top: 50px;
868
+ padding-bottom: 170px;
869
+ }
870
+
871
+ #banner h1 {
872
+ padding-top: 5%;
873
+ }
874
+
875
+
876
+ /*------------------------------------------------------------------------------------------*/
877
+
878
+
879
+ /* 5. Content Elements */
880
+
881
+
882
+ /*------------------------------------------------------------------------------------------*/
883
+
884
+
885
+ /* --------- 5.1 Icons ---------- */
886
+
887
+
888
+ /*Font Icon sizes*/
889
+
890
+ .fa-1x {
891
+ font-size: 15px !important;
892
+ }
893
+
894
+
895
+ /*Icon Block*/
896
+
897
+ .icon-block {
898
+ position: relative;
899
+ }
900
+
901
+ .icon-block h4 {
902
+ font-weight: bold;
903
+ padding-top: 0;
904
+ }
905
+
906
+ .icon-block .icon {
907
+ position: absolute;
908
+ }
909
+
910
+ .icon-block p {
911
+ margin-top: 0;
912
+ }
913
+
914
+
915
+ /* Icon Left*/
916
+
917
+ .icon-left .icon {
918
+ left: 15;
919
+ }
920
+
921
+ .icon-left .icon-block-description {
922
+ padding-left: 53px;
923
+ }
924
+
925
+
926
+ /* Icon Right */
927
+
928
+ .icon-right .icon {
929
+ right: 15;
930
+ }
931
+
932
+ .icon-right .icon-block-description {
933
+ padding-right: 53px;
934
+ }
935
+
936
+
937
+ /* Icon Above */
938
+
939
+ .icon-top {
940
+ display: block;
941
+ }
942
+
943
+ .icon-top .icon {
944
+ position: relative;
945
+ display: block;
946
+ }
947
+
948
+ .icon-top .icon-block-description {
949
+ padding-top: 25px;
950
+ }
951
+
952
+
953
+ /* --------- 5.2 Parallax Elements ---------- */
954
+
955
+ .banner-parallax-1,
956
+ .banner-parallax-2,
957
+ .banner-parallax-3 {
958
+ min-height: 350px;
959
+ }
960
+
961
+
962
+ /* --------- 5.3 Divider ---------- */
963
+
964
+ .divider {
965
+ position: relative;
966
+ width: 40%;
967
+ height: 20px;
968
+ line-height: 20px;
969
+ margin: 10px auto 5px auto;
970
+ clear: both;
971
+ text-align: center;
972
+ }
973
+
974
+ .divider-inner {
975
+ position: absolute;
976
+ height: 1px;
977
+ width: 100%;
978
+ top: 50%;
979
+ margin-top: -1px;
980
+ border-top: 1px solid;
981
+ border-color: #e1e1e1;
982
+ }
983
+
984
+ .divider i {
985
+ background: #fff;
986
+ position: relative;
987
+ top: -11px;
988
+ padding: 0 5px 0 5px;
989
+ color: #e1e1e1;
990
+ }
991
+
992
+
993
+ /*------------------------------------------------------------------------------------------*/
994
+
995
+
996
+ /* 6. Landing Page Sections */
997
+
998
+
999
+ /*------------------------------------------------------------------------------------------*/
1000
+
1001
+
1002
+ /* --------- 6.1 Introduction ---------- */
1003
+
1004
+ .introduction img.featured {
1005
+ padding: 55px 0 0 0;
1006
+ }
1007
+
1008
+
1009
+ /* --------- 6.2 Features ---------- */
1010
+
1011
+ .features.row {
1012
+ padding-left: 5%;
1013
+ padding-right: 5%;
1014
+ }
1015
+
1016
+ .features div:nth-child(4) {
1017
+ clear: both;
1018
+ }
1019
+
1020
+
1021
+ /* --------- 6.3 Testimonials ---------- */
1022
+
1023
+ .testimonial {
1024
+ padding: 15px;
1025
+ }
1026
+
1027
+ blockquote {
1028
+ position: relative;
1029
+ }
1030
+
1031
+ .testimonial img {
1032
+ max-height: 120px;
1033
+ border-radius: 250em;
1034
+ }
1035
+
1036
+ .testimonial footer {
1037
+ padding-top: 12px;
1038
+ }
1039
+
1040
+
1041
+ /* Style Classic - Avatar above Testimonial */
1042
+
1043
+ .testimonial.classic img {
1044
+ display: inline-block;
1045
+ margin-bottom: 25px;
1046
+ }
1047
+
1048
+ .testimonial.classic q {
1049
+ display: block;
1050
+ }
1051
+
1052
+ .testimonial.classic footer:before {
1053
+ display: block;
1054
+ content: "";
1055
+ width: 30px;
1056
+ height: 4px;
1057
+ margin: 10px auto 15px auto;
1058
+ }
1059
+
1060
+
1061
+ /* Style Big */
1062
+
1063
+ .testimonial.bigtest {
1064
+ padding-top: 0;
1065
+ }
1066
+
1067
+ .testimonial.bigtest q {
1068
+ font-size: 22px;
1069
+ }
1070
+
1071
+
1072
+ /* --------- 6.4 Gallery ---------- */
1073
+
1074
+ #gallery img {
1075
+ max-height: 300px;
1076
+ }
1077
+
1078
+ #gallery [class*='col-'] {
1079
+ padding: 0;
1080
+ }
1081
+
1082
+ #gallery a {
1083
+ display: inline-block;
1084
+ position: relative;
1085
+ overflow: hidden;
1086
+ }
1087
+
1088
+ #gallery a:hover img {
1089
+ opacity: 0.15;
1090
+ -moz-backface-visibility: hidden;
1091
+ }
1092
+
1093
+ #gallery a:before {
1094
+ font-size: 2.2em;
1095
+ font-style: normal;
1096
+ font-weight: normal;
1097
+ text-align: center;
1098
+ content: "+";
1099
+ width: 70px;
1100
+ height: 70px;
1101
+ border-radius: 100em;
1102
+ display: block;
1103
+ position: absolute;
1104
+ top: 55%;
1105
+ left: 50%;
1106
+ line-height: 72px;
1107
+ margin: -35px 0 0 -35px;
1108
+ opacity: 0;
1109
+ -webkit-transition: all .2s linear;
1110
+ -moz-transition: all .2s linear;
1111
+ transition: all .2s linear;
1112
+ vertical-align: middle;
1113
+ }
1114
+
1115
+ #gallery a:hover:before {
1116
+ opacity: 1;
1117
+ top: 50%;
1118
+ left: 50%;
1119
+ }
1120
+
1121
+
1122
+ /**
1123
+ * Featherlight – ultra slim jQuery lightbox
1124
+ * Version 1.3.3 - http://noelboss.github.io/featherlight/
1125
+ *
1126
+ * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
1127
+ * MIT Licensed.
1128
+ **/
1129
+
1130
+ @media all {
1131
+ .featherlight {
1132
+ display: none;
1133
+ /* dimensions: spanning the background from edge to edge */
1134
+ position: fixed;
1135
+ top: 0;
1136
+ right: 0;
1137
+ bottom: 0;
1138
+ left: 0;
1139
+ z-index: 2147483647;
1140
+ /* z-index needs to be >= elements on the site. */
1141
+ /* position: centering content */
1142
+ text-align: center;
1143
+ /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
1144
+ white-space: nowrap;
1145
+ /* styling */
1146
+ cursor: pointer;
1147
+ background: #333;
1148
+ /* IE8 "hack" for nested featherlights */
1149
+ background: rgba(0, 0, 0, 0);
1150
+ }
1151
+ /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
1152
+ .featherlight:last-of-type {
1153
+ background: rgba(0, 0, 0, 0.8);
1154
+ }
1155
+ .featherlight:before {
1156
+ /* position: trick to center content vertically */
1157
+ content: '';
1158
+ display: inline-block;
1159
+ height: 100%;
1160
+ vertical-align: middle;
1161
+ margin-right: -0.25em;
1162
+ }
1163
+ .featherlight .featherlight-content {
1164
+ /* position: centering vertical and horizontal */
1165
+ text-align: left;
1166
+ vertical-align: middle;
1167
+ display: inline-block;
1168
+ /* dimensions: cut off images */
1169
+ overflow: auto;
1170
+ padding: 25px 0;
1171
+ border-bottom: 25px solid transparent;
1172
+ /* dimensions: handling small or empty content */
1173
+ min-width: 30%;
1174
+ /* dimensions: handling large content */
1175
+ margin-left: 5%;
1176
+ margin-right: 5%;
1177
+ max-height: 95%;
1178
+ /* styling */
1179
+ cursor: auto;
1180
+ /* reset white-space wrapping */
1181
+ white-space: normal;
1182
+ }
1183
+ /* contains the content */
1184
+ .featherlight .featherlight-inner {
1185
+ /* make sure its visible */
1186
+ display: block;
1187
+ }
1188
+ .featherlight .featherlight-close-icon {
1189
+ /* position: centering vertical and horizontal */
1190
+ position: absolute;
1191
+ z-index: 9999;
1192
+ top: 25px;
1193
+ right: 25px;
1194
+ /* dimensions: 25px x 25px */
1195
+ line-height: 25px;
1196
+ width: 25px;
1197
+ /* styling */
1198
+ cursor: pointer;
1199
+ text-align: center;
1200
+ color: #fff;
1201
+ font-family: "fontawesome";
1202
+ font-size: 22px;
1203
+ opacity: 0.5;
1204
+ -webkit-transition: all 0.3s ease-out;
1205
+ -moz-transition: all 0.3s ease-out;
1206
+ -o-transition: all 0.3s ease-out;
1207
+ transition: all 0.3s ease-out;
1208
+ }
1209
+ .featherlight .featherlight-close-icon:hover {
1210
+ opacity: 1;
1211
+ }
1212
+ .featherlight .featherlight-image {
1213
+ /* styling */
1214
+ max-height: 100%;
1215
+ max-width: 100%;
1216
+ }
1217
+ .featherlight-iframe .featherlight-content {
1218
+ /* removed the border for image croping since iframe is edge to edge */
1219
+ border-bottom: 0;
1220
+ padding: 0;
1221
+ }
1222
+ .featherlight iframe {
1223
+ /* styling */
1224
+ border: none;
1225
+ }
1226
+ }
1227
+
1228
+
1229
+ /* handling phones and small screens */
1230
+
1231
+ @media only screen and (max-width: 1024px) {
1232
+ .featherlight .featherlight-content {
1233
+ /* dimensions: maximize lightbox with for small screens */
1234
+ margin-left: 10px;
1235
+ margin-right: 10px;
1236
+ max-height: 98%;
1237
+ padding: 10px 10px 0;
1238
+ border-bottom: 10px solid transparent;
1239
+ }
1240
+ }
1241
+
1242
+
1243
+ /* Gallery Styling */
1244
+
1245
+ @media all {
1246
+ .featherlight-next,
1247
+ .featherlight-previous {
1248
+ font-family: "fontawesome";
1249
+ font-size: 22px;
1250
+ display: block;
1251
+ position: absolute;
1252
+ top: 25px;
1253
+ right: 0;
1254
+ bottom: 0;
1255
+ left: 80%;
1256
+ cursor: pointer;
1257
+ /* preventing text selection */
1258
+ -webkit-touch-callout: none;
1259
+ -webkit-user-select: none;
1260
+ -khtml-user-select: none;
1261
+ -moz-user-select: none;
1262
+ -ms-user-select: none;
1263
+ user-select: none;
1264
+ /* IE9 hack, otherwise navigation doesn't appear */
1265
+ background: rgba(0, 0, 0, 0);
1266
+ -webkit-transition: all 0.3s ease-out;
1267
+ -moz-transition: all 0.3s ease-out;
1268
+ -o-transition: all 0.3s ease-out;
1269
+ transition: all 0.3s ease-out;
1270
+ }
1271
+ .featherlight-previous {
1272
+ left: 0;
1273
+ right: 80%;
1274
+ }
1275
+ .featherlight-next span,
1276
+ .featherlight-previous span {
1277
+ display: inline-block;
1278
+ opacity: 0.3;
1279
+ position: absolute;
1280
+ top: 50%;
1281
+ width: 100%;
1282
+ font-size: 80px;
1283
+ line-height: 80px;
1284
+ /* center vertically */
1285
+ margin-top: -40px;
1286
+ color: #fff;
1287
+ font-style: normal;
1288
+ font-weight: normal;
1289
+ -webkit-transition: all 0.3s ease-out;
1290
+ -moz-transition: all 0.3s ease-out;
1291
+ -o-transition: all 0.3s ease-out;
1292
+ transition: all 0.3s ease-out;
1293
+ }
1294
+ .featherlight-next span {
1295
+ text-align: right;
1296
+ left: auto;
1297
+ right: 7%;
1298
+ }
1299
+ .featherlight-previous span {
1300
+ text-align: left;
1301
+ left: 7%;
1302
+ }
1303
+ .featherlight-next:hover span,
1304
+ .featherlight-previous:hover span {
1305
+ display: inline-block;
1306
+ opacity: 1;
1307
+ }
1308
+ /* Hide navigation while loading */
1309
+ .featherlight-loading .featherlight-previous,
1310
+ .featherlight-loading .featherlight-next {
1311
+ display: none;
1312
+ }
1313
+ }
1314
+
1315
+
1316
+ /* Always display arrows on touch devices */
1317
+
1318
+ @media only screen and (max-device-width: 1024px) {
1319
+ .featherlight-next:hover,
1320
+ .featherlight-previous:hover {
1321
+ background: none;
1322
+ }
1323
+ .featherlight-next span,
1324
+ .featherlight-previous span {
1325
+ display: block;
1326
+ }
1327
+ }
1328
+
1329
+
1330
+ /* handling phones and small screens */
1331
+
1332
+ @media only screen and (max-width: 1024px) {
1333
+ .featherlight-next,
1334
+ .featherlight-previous {
1335
+ top: 10px;
1336
+ right: 10px;
1337
+ left: 85%;
1338
+ }
1339
+ .featherlight-previous {
1340
+ left: 10px;
1341
+ right: 85%;
1342
+ }
1343
+ .featherlight-next span,
1344
+ .featherlight-previous span {
1345
+ margin-top: -30px;
1346
+ font-size: 40px;
1347
+ }
1348
+ }
1349
+
1350
+
1351
+ /* --------- 6.5 Video ---------- */
1352
+
1353
+ #video-box {
1354
+ color: #fff;
1355
+ position: relative;
1356
+ overflow: hidden;
1357
+ text-align: center;
1358
+ }
1359
+
1360
+ .video_container,
1361
+ .easyContainer {
1362
+ position: relative;
1363
+ padding-bottom: 56.25%;
1364
+ /* 16/9 ratio */
1365
+ margin: 0;
1366
+ padding-top: 0;
1367
+ /* IE6 workaround*/
1368
+ height: 0;
1369
+ overflow: hidden;
1370
+ }
1371
+
1372
+ .video_container iframe,
1373
+ .video_container object,
1374
+ .video_container embed {
1375
+ position: absolute;
1376
+ top: 0;
1377
+ left: 0;
1378
+ width: 100% !important;
1379
+ height: 100% !important;
1380
+ }
1381
+
1382
+ .slvj-lightbox iframe,
1383
+ .slvj-lightbox object,
1384
+ .slvj-lightbox embed {
1385
+ width: 100% !important;
1386
+ height: 529px !important;
1387
+ }
1388
+
1389
+ .videojs-background-wrap {
1390
+ overflow: hidden;
1391
+ position: absolute;
1392
+ height: 100%;
1393
+ width: 100%;
1394
+ top: 0;
1395
+ left: 0;
1396
+ z-index: -998;
1397
+ }
1398
+
1399
+ #slvj-window {
1400
+ width: 100%;
1401
+ min-height: 100%;
1402
+ z-index: 9999999999;
1403
+ background: rgba(0, 0, 0, 0.8);
1404
+ position: fixed;
1405
+ top: 0;
1406
+ left: 0;
1407
+ }
1408
+
1409
+ #slvj-window,
1410
+ #slvj-window * {
1411
+ -webkit-box-sizing: border-box;
1412
+ -moz-box-sizing: border-box;
1413
+ box-sizing: border-box;
1414
+ }
1415
+
1416
+ #slvj-background-close {
1417
+ width: 100%;
1418
+ min-height: 100%;
1419
+ z-index: 31;
1420
+ position: fixed;
1421
+ top: 0;
1422
+ left: 0;
1423
+ }
1424
+
1425
+ #slvj-back-lightbox {
1426
+ max-width: 940px;
1427
+ max-height: 529px;
1428
+ z-index: 32;
1429
+ text-align: center;
1430
+ margin: 0 auto;
1431
+ }
1432
+
1433
+ .slvj-lightbox {
1434
+ width: 100%;
1435
+ height: 100%;
1436
+ margin: 0;
1437
+ z-index: 53;
1438
+ }
1439
+
1440
+ #slvj-close-icon:before {
1441
+ font-family: "fontawesome";
1442
+ color: #fff;
1443
+ content: '\f00d';
1444
+ font-size: 22px;
1445
+ opacity: 0.5;
1446
+ -webkit-transition: all 0.3s ease-out;
1447
+ -moz-transition: all 0.3s ease-out;
1448
+ -o-transition: all 0.3s ease-out;
1449
+ transition: all 0.3s ease-out;
1450
+ z-index: 99999;
1451
+ height: 22px;
1452
+ width: 22px;
1453
+ position: absolute;
1454
+ top: 15px;
1455
+ right: 15px;
1456
+ cursor: pointer;
1457
+ }
1458
+
1459
+ #slvj-close-icon:before:hover {
1460
+ opacity: 1;
1461
+ cursor: pointer;
1462
+ }
1463
+
1464
+
1465
+ /* --------- 6.6 Clients ---------- */
1466
+
1467
+ #clients a {
1468
+ display: block;
1469
+ text-align: center;
1470
+ position: relative;
1471
+ text-transform: uppercase;
1472
+ font-weight: bold;
1473
+ color: #fff;
1474
+ }
1475
+
1476
+ #clients img {
1477
+ display: inline-block;
1478
+ padding: 15px 25px;
1479
+ }
1480
+
1481
+ .client-overlay {
1482
+ background: rgba(0, 0, 0, 0.8);
1483
+ position: absolute;
1484
+ top;
1485
+ 0;
1486
+ right: 0;
1487
+ bottom: 0;
1488
+ left: 0;
1489
+ width: 100%;
1490
+ height: 100%;
1491
+ opacity: 0;
1492
+ -webkit-transition: all 0.3s ease-out;
1493
+ -moz-transition: all 0.3s ease-out;
1494
+ -o-transition: all 0.3s ease-out;
1495
+ transition: all 0.3s ease-out;
1496
+ }
1497
+
1498
+ #clients a:hover .client-overlay {
1499
+ opacity: 1;
1500
+ }
1501
+
1502
+ .client-overlay span {
1503
+ position: absolute;
1504
+ top: 48%;
1505
+ left: 0;
1506
+ width: 100%;
1507
+ text-align: center;
1508
+ display: inline-block;
1509
+ }
1510
+
1511
+
1512
+ /* --------- 6.7 Pricing Table ---------- */
1513
+
1514
+ .pricing-block-content {
1515
+ background: #fff;
1516
+ padding: 25px 0 25px 0;
1517
+ box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);
1518
+ transition: all 0.2s ease-in-out 0s;
1519
+ position: relative;
1520
+ border: 10px solid #fff;
1521
+ }
1522
+
1523
+ .pricing-block ul {
1524
+ list-style: none;
1525
+ margin: 25px 0 25px 0;
1526
+ }
1527
+
1528
+ .pricing-block li {
1529
+ padding: 14px 0;
1530
+ border-bottom: 1px dotted #e1e1e1;
1531
+ }
1532
+
1533
+ .pricing-block li:last-of-type {
1534
+ border: none;
1535
+ }
1536
+
1537
+ .pricing-block h3 {
1538
+ font-size: 17px;
1539
+ text-transform: uppercase;
1540
+ padding-bottom: 0;
1541
+ }
1542
+
1543
+ .pricing-sub {
1544
+ font-style: italic;
1545
+ color: #ccc;
1546
+ margin: 0 0 25px 0;
1547
+ }
1548
+
1549
+
1550
+ /*Price*/
1551
+
1552
+ .pricing {
1553
+ background: #f5f5f5;
1554
+ padding: 25px;
1555
+ position: relative;
1556
+ }
1557
+
1558
+ .price {
1559
+ display: inline-block;
1560
+ font-size: 62px;
1561
+ font-weight: 700;
1562
+ position: relative;
1563
+ }
1564
+
1565
+ .price span {
1566
+ position: absolute;
1567
+ top: 0;
1568
+ left: -20px;
1569
+ font-size: 22px;
1570
+ }
1571
+
1572
+ .pricing p {
1573
+ font-style: italic;
1574
+ color: #b4b4b4;
1575
+ line-height: auto;
1576
+ margin: 0;
1577
+ }
1578
+
1579
+
1580
+ /*------------------------------------------------------------------------------------------*/
1581
+
1582
+
1583
+ /* 7. Footer */
1584
+
1585
+
1586
+ /*------------------------------------------------------------------------------------------*/
1587
+
1588
+ #landing-footer {
1589
+ clear: both;
1590
+ }
1591
+
1592
+ #landing-footer .row {
1593
+ padding: 0;
1594
+ }
1595
+
1596
+ #landing-footer p {
1597
+ margin: 0;
1598
+ }
1599
+
1600
+ #landing-footer ul {
1601
+ list-style: none;
1602
+ text-align: right;
1603
+ }
1604
+
1605
+ #landing-footer li {
1606
+ display: inline-block;
1607
+ }
1608
+
1609
+
1610
+ /* Scroll Up */
1611
+
1612
+ #scrollUp {
1613
+ bottom: 15px;
1614
+ right: 30px;
1615
+ width: 70px;
1616
+ height: 80px;
1617
+ margin-bottom: -10px;
1618
+ padding: 0 5px 20px 5px;
1619
+ text-align: center;
1620
+ text-decoration: none;
1621
+ color: #fff;
1622
+ -webkit-transition: margin-bottom 150ms linear;
1623
+ -moz-transition: margin-bottom 150ms linear;
1624
+ -o-transition: margin-bottom 150ms linear;
1625
+ transition: margin-bottom 150ms linear;
1626
+ }
1627
+
1628
+ #scrollUp:hover {
1629
+ margin-bottom: 0;
1630
+ }
1631
+
1632
+ #scrollUp:before {
1633
+ background: #ccc;
1634
+ font-family: "fontawesome";
1635
+ font-size: 2.4em;
1636
+ font-style: normal;
1637
+ font-weight: normal;
1638
+ text-align: center;
1639
+ color: #fff;
1640
+ width: 45px;
1641
+ height: 45px;
1642
+ display: inline-block;
1643
+ line-height: 45px;
1644
+ content: "\f106";
1645
+ opacity: 1;
1646
+ }
1647
+
1648
+ .loader {
1649
+ z-index: 999999;
1650
+ width: 94px;
1651
+ height: 77px;
1652
+ position: relative;
1653
+ top: 20%;
1654
+ left: 50%;
1655
+ transform: translate(-50%, -50%);
1656
+ backface-visibility: hidden;
1657
+ display: none;
1658
+ span {
1659
+ position: absolute;
1660
+ left: 0;
1661
+ top: 0;
1662
+ width: 100%;
1663
+ height: 20px;
1664
+ background-color: #ff8c4a6f;
1665
+ z-index: 1;
1666
+ transform: translateY(135%);
1667
+ animation: move 2s cubic-bezier(0.15, 0.44, 0.76, 0.64);
1668
+ /* Adjust the animation duration here */
1669
+ animation-iteration-count: infinite;
1670
+ }
1671
+ >div {
1672
+ z-index: 1;
1673
+ position: absolute;
1674
+ left: 50%;
1675
+ top: 50%;
1676
+ transform: translate(-50%, -50%);
1677
+ width: 48%;
1678
+ backface-visibility: hidden;
1679
+ }
1680
+ i {
1681
+ display: block;
1682
+ height: 1px;
1683
+ background: #000;
1684
+ margin: 0 auto 2px;
1685
+ margin: 0 auto 2.2px;
1686
+ backface-visibility: hidden;
1687
+ &:nth-child(2) {
1688
+ width: 75%;
1689
+ }
1690
+ &:nth-child(3) {
1691
+ width: 81%;
1692
+ }
1693
+ &:nth-child(4) {
1694
+ width: 87%;
1695
+ }
1696
+ &:nth-child(6) {
1697
+ width: 71%;
1698
+ }
1699
+ &:nth-child(7) {
1700
+ width: 81%;
1701
+ }
1702
+ &:nth-child(8) {
1703
+ width: 65%;
1704
+ }
1705
+ &:nth-child(9) {
1706
+ width: 83%;
1707
+ }
1708
+ &:nth-child(10) {
1709
+ width: 75%;
1710
+ }
1711
+ &:nth-child(12) {
1712
+ width: 86%;
1713
+ }
1714
+ &:nth-child(14) {
1715
+ width: 65%;
1716
+ }
1717
+ &:nth-child(16) {
1718
+ width: 75%;
1719
+ }
1720
+ &:nth-child(18) {
1721
+ width: 83%;
1722
+ }
1723
+ }
1724
+ &:before,
1725
+ &:after,
1726
+ em:after,
1727
+ em:before {
1728
+ border-color: #000;
1729
+ content: "";
1730
+ position: absolute;
1731
+ width: 19px;
1732
+ height: 16px;
1733
+ border-style: solid;
1734
+ border-width: 0px;
1735
+ }
1736
+ &:before {
1737
+ left: 0;
1738
+ top: 0;
1739
+ border-left-width: 1px;
1740
+ border-top-width: 1px;
1741
+ }
1742
+ &:after {
1743
+ right: 0;
1744
+ top: 0;
1745
+ border-right-width: 1px;
1746
+ border-top-width: 1px;
1747
+ }
1748
+ em:before {
1749
+ left: 0;
1750
+ bottom: 0;
1751
+ border-left-width: 1px;
1752
+ border-bottom-width: 1px;
1753
+ }
1754
+ em:after {
1755
+ right: 0;
1756
+ bottom: 0;
1757
+ border-right-width: 1px;
1758
+ border-bottom-width: 1px;
1759
+ }
1760
+ }
1761
+
1762
+ @keyframes move {
1763
+ 0%,
1764
+ 100% {
1765
+ transform: translateY(0%);
1766
+ }
1767
+ 25% {
1768
+ transform: translateY(135%);
1769
+ }
1770
+ 50% {
1771
+ transform: translateY(272%);
1772
+ }
1773
+ 75% {
1774
+ transform: translateY(135%);
1775
+ }
1776
+ }
1777
+
1778
+
1779
+ /*Preloader*/
1780
+
1781
+ .ocrloader {
1782
+ z-index: 999999;
1783
+ width: 94px;
1784
+ height: 77px;
1785
+ position: absolute;
1786
+ left: 50%;
1787
+ top: 50%;
1788
+ transform: translate(-50%, -50%);
1789
+ backface-visibility: hidden;
1790
+ span {
1791
+ position: absolute;
1792
+ left: 0;
1793
+ top: 0;
1794
+ width: 100%;
1795
+ height: 20px;
1796
+ background-color: #ff8c4a6f;
1797
+ z-index: 1;
1798
+ transform: translateY(135%);
1799
+ animation: move 2s cubic-bezier(0.15, 0.44, 0.76, 0.64);
1800
+ /* Adjust the animation duration here */
1801
+ animation-iteration-count: infinite;
1802
+ }
1803
+ >div {
1804
+ z-index: 1;
1805
+ position: absolute;
1806
+ left: 50%;
1807
+ top: 50%;
1808
+ transform: translate(-50%, -50%);
1809
+ width: 48%;
1810
+ backface-visibility: hidden;
1811
+ }
1812
+ i {
1813
+ display: block;
1814
+ height: 1px;
1815
+ background: #000;
1816
+ margin: 0 auto 2px;
1817
+ margin: 0 auto 2.2px;
1818
+ backface-visibility: hidden;
1819
+ &:nth-child(2) {
1820
+ width: 75%;
1821
+ }
1822
+ &:nth-child(3) {
1823
+ width: 81%;
1824
+ }
1825
+ &:nth-child(4) {
1826
+ width: 87%;
1827
+ }
1828
+ &:nth-child(6) {
1829
+ width: 71%;
1830
+ }
1831
+ &:nth-child(7) {
1832
+ width: 81%;
1833
+ }
1834
+ &:nth-child(8) {
1835
+ width: 65%;
1836
+ }
1837
+ &:nth-child(9) {
1838
+ width: 83%;
1839
+ }
1840
+ &:nth-child(10) {
1841
+ width: 75%;
1842
+ }
1843
+ &:nth-child(12) {
1844
+ width: 86%;
1845
+ }
1846
+ &:nth-child(14) {
1847
+ width: 65%;
1848
+ }
1849
+ &:nth-child(16) {
1850
+ width: 75%;
1851
+ }
1852
+ &:nth-child(18) {
1853
+ width: 83%;
1854
+ }
1855
+ }
1856
+ &:before,
1857
+ &:after,
1858
+ em:after,
1859
+ em:before {
1860
+ border-color: #000;
1861
+ content: "";
1862
+ position: absolute;
1863
+ width: 19px;
1864
+ height: 16px;
1865
+ border-style: solid;
1866
+ border-width: 0px;
1867
+ }
1868
+ &:before {
1869
+ left: 0;
1870
+ top: 0;
1871
+ border-left-width: 1px;
1872
+ border-top-width: 1px;
1873
+ }
1874
+ &:after {
1875
+ right: 0;
1876
+ top: 0;
1877
+ border-right-width: 1px;
1878
+ border-top-width: 1px;
1879
+ }
1880
+ em:before {
1881
+ left: 0;
1882
+ bottom: 0;
1883
+ border-left-width: 1px;
1884
+ border-bottom-width: 1px;
1885
+ }
1886
+ em:after {
1887
+ right: 0;
1888
+ bottom: 0;
1889
+ border-right-width: 1px;
1890
+ border-bottom-width: 1px;
1891
+ }
1892
+ }
1893
+
1894
+ @keyframes move {
1895
+ 0%,
1896
+ 100% {
1897
+ transform: translateY(0%);
1898
+ }
1899
+ 25% {
1900
+ transform: translateY(135%);
1901
+ }
1902
+ 50% {
1903
+ transform: translateY(272%);
1904
+ }
1905
+ 75% {
1906
+ transform: translateY(135%);
1907
+ }
1908
+ }
1909
+
1910
+
1911
+ /*!
1912
+ * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
1913
+ * Copyright 2015 Daniel Cardoso <@DanielCardoso>
1914
+ * Licensed under MIT
1915
+ */
1916
+
1917
+ .la-ball-triangle-path,
1918
+ .la-ball-triangle-path>div {
1919
+ position: relative;
1920
+ -webkit-box-sizing: border-box;
1921
+ -moz-box-sizing: border-box;
1922
+ box-sizing: border-box;
1923
+ }
1924
+
1925
+ .la-ball-triangle-path {
1926
+ display: block;
1927
+ font-size: 0;
1928
+ color: #fff;
1929
+ }
1930
+
1931
+ .la-ball-triangle-path.la-dark {
1932
+ color: #333;
1933
+ }
1934
+
1935
+ .la-ball-triangle-path>div {
1936
+ display: inline-block;
1937
+ float: none;
1938
+ background-color: currentColor;
1939
+ border: 0 solid currentColor;
1940
+ }
1941
+
1942
+ .la-ball-triangle-path {
1943
+ width: 32px;
1944
+ height: 32px;
1945
+ }
1946
+
1947
+ .la-ball-triangle-path>div {
1948
+ position: absolute;
1949
+ top: 0;
1950
+ left: 0;
1951
+ width: 10px;
1952
+ height: 10px;
1953
+ border-radius: 100%;
1954
+ }
1955
+
1956
+ .la-ball-triangle-path>div:nth-child(1) {
1957
+ -webkit-animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
1958
+ -moz-animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
1959
+ -o-animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
1960
+ animation: ball-triangle-path-ball-one 2s 0s ease-in-out infinite;
1961
+ }
1962
+
1963
+ .la-ball-triangle-path>div:nth-child(2) {
1964
+ -webkit-animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
1965
+ -moz-animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
1966
+ -o-animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
1967
+ animation: ball-triangle-path-ball-two 2s 0s ease-in-out infinite;
1968
+ }
1969
+
1970
+ .la-ball-triangle-path>div:nth-child(3) {
1971
+ -webkit-animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
1972
+ -moz-animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
1973
+ -o-animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
1974
+ animation: ball-triangle-path-ball-tree 2s 0s ease-in-out infinite;
1975
+ }
1976
+
1977
+ .la-ball-triangle-path.la-sm {
1978
+ width: 16px;
1979
+ height: 16px;
1980
+ }
1981
+
1982
+ .la-ball-triangle-path.la-sm>div {
1983
+ width: 4px;
1984
+ height: 4px;
1985
+ }
1986
+
1987
+ .la-ball-triangle-path.la-2x {
1988
+ width: 64px;
1989
+ height: 64px;
1990
+ }
1991
+
1992
+ .la-ball-triangle-path.la-2x>div {
1993
+ width: 20px;
1994
+ height: 20px;
1995
+ }
1996
+
1997
+ .la-ball-triangle-path.la-3x {
1998
+ width: 96px;
1999
+ height: 96px;
2000
+ }
2001
+
2002
+ .la-ball-triangle-path.la-3x>div {
2003
+ width: 30px;
2004
+ height: 30px;
2005
+ }
2006
+
2007
+
2008
+ /*
2009
+ * Animations
2010
+ */
2011
+
2012
+ @-webkit-keyframes ball-triangle-path-ball-one {
2013
+ 0% {
2014
+ -webkit-transform: translate(0, 220%);
2015
+ transform: translate(0, 220%);
2016
+ }
2017
+ 17% {
2018
+ opacity: .25;
2019
+ }
2020
+ 33% {
2021
+ opacity: 1;
2022
+ -webkit-transform: translate(110%, 0);
2023
+ transform: translate(110%, 0);
2024
+ }
2025
+ 50% {
2026
+ opacity: .25;
2027
+ }
2028
+ 66% {
2029
+ opacity: 1;
2030
+ -webkit-transform: translate(220%, 220%);
2031
+ transform: translate(220%, 220%);
2032
+ }
2033
+ 83% {
2034
+ opacity: .25;
2035
+ }
2036
+ 100% {
2037
+ opacity: 1;
2038
+ -webkit-transform: translate(0, 220%);
2039
+ transform: translate(0, 220%);
2040
+ }
2041
+ }
2042
+
2043
+ @-moz-keyframes ball-triangle-path-ball-one {
2044
+ 0% {
2045
+ -moz-transform: translate(0, 220%);
2046
+ transform: translate(0, 220%);
2047
+ }
2048
+ 17% {
2049
+ opacity: .25;
2050
+ }
2051
+ 33% {
2052
+ opacity: 1;
2053
+ -moz-transform: translate(110%, 0);
2054
+ transform: translate(110%, 0);
2055
+ }
2056
+ 50% {
2057
+ opacity: .25;
2058
+ }
2059
+ 66% {
2060
+ opacity: 1;
2061
+ -moz-transform: translate(220%, 220%);
2062
+ transform: translate(220%, 220%);
2063
+ }
2064
+ 83% {
2065
+ opacity: .25;
2066
+ }
2067
+ 100% {
2068
+ opacity: 1;
2069
+ -moz-transform: translate(0, 220%);
2070
+ transform: translate(0, 220%);
2071
+ }
2072
+ }
2073
+
2074
+ @-o-keyframes ball-triangle-path-ball-one {
2075
+ 0% {
2076
+ -o-transform: translate(0, 220%);
2077
+ transform: translate(0, 220%);
2078
+ }
2079
+ 17% {
2080
+ opacity: .25;
2081
+ }
2082
+ 33% {
2083
+ opacity: 1;
2084
+ -o-transform: translate(110%, 0);
2085
+ transform: translate(110%, 0);
2086
+ }
2087
+ 50% {
2088
+ opacity: .25;
2089
+ }
2090
+ 66% {
2091
+ opacity: 1;
2092
+ -o-transform: translate(220%, 220%);
2093
+ transform: translate(220%, 220%);
2094
+ }
2095
+ 83% {
2096
+ opacity: .25;
2097
+ }
2098
+ 100% {
2099
+ opacity: 1;
2100
+ -o-transform: translate(0, 220%);
2101
+ transform: translate(0, 220%);
2102
+ }
2103
+ }
2104
+
2105
+ @keyframes ball-triangle-path-ball-one {
2106
+ 0% {
2107
+ -webkit-transform: translate(0, 220%);
2108
+ -moz-transform: translate(0, 220%);
2109
+ -o-transform: translate(0, 220%);
2110
+ transform: translate(0, 220%);
2111
+ }
2112
+ 17% {
2113
+ opacity: .25;
2114
+ }
2115
+ 33% {
2116
+ opacity: 1;
2117
+ -webkit-transform: translate(110%, 0);
2118
+ -moz-transform: translate(110%, 0);
2119
+ -o-transform: translate(110%, 0);
2120
+ transform: translate(110%, 0);
2121
+ }
2122
+ 50% {
2123
+ opacity: .25;
2124
+ }
2125
+ 66% {
2126
+ opacity: 1;
2127
+ -webkit-transform: translate(220%, 220%);
2128
+ -moz-transform: translate(220%, 220%);
2129
+ -o-transform: translate(220%, 220%);
2130
+ transform: translate(220%, 220%);
2131
+ }
2132
+ 83% {
2133
+ opacity: .25;
2134
+ }
2135
+ 100% {
2136
+ opacity: 1;
2137
+ -webkit-transform: translate(0, 220%);
2138
+ -moz-transform: translate(0, 220%);
2139
+ -o-transform: translate(0, 220%);
2140
+ transform: translate(0, 220%);
2141
+ }
2142
+ }
2143
+
2144
+ @-webkit-keyframes ball-triangle-path-ball-two {
2145
+ 0% {
2146
+ -webkit-transform: translate(110%, 0);
2147
+ transform: translate(110%, 0);
2148
+ }
2149
+ 17% {
2150
+ opacity: .25;
2151
+ }
2152
+ 33% {
2153
+ opacity: 1;
2154
+ -webkit-transform: translate(220%, 220%);
2155
+ transform: translate(220%, 220%);
2156
+ }
2157
+ 50% {
2158
+ opacity: .25;
2159
+ }
2160
+ 66% {
2161
+ opacity: 1;
2162
+ -webkit-transform: translate(0, 220%);
2163
+ transform: translate(0, 220%);
2164
+ }
2165
+ 83% {
2166
+ opacity: .25;
2167
+ }
2168
+ 100% {
2169
+ opacity: 1;
2170
+ -webkit-transform: translate(110%, 0);
2171
+ transform: translate(110%, 0);
2172
+ }
2173
+ }
2174
+
2175
+ @-moz-keyframes ball-triangle-path-ball-two {
2176
+ 0% {
2177
+ -moz-transform: translate(110%, 0);
2178
+ transform: translate(110%, 0);
2179
+ }
2180
+ 17% {
2181
+ opacity: .25;
2182
+ }
2183
+ 33% {
2184
+ opacity: 1;
2185
+ -moz-transform: translate(220%, 220%);
2186
+ transform: translate(220%, 220%);
2187
+ }
2188
+ 50% {
2189
+ opacity: .25;
2190
+ }
2191
+ 66% {
2192
+ opacity: 1;
2193
+ -moz-transform: translate(0, 220%);
2194
+ transform: translate(0, 220%);
2195
+ }
2196
+ 83% {
2197
+ opacity: .25;
2198
+ }
2199
+ 100% {
2200
+ opacity: 1;
2201
+ -moz-transform: translate(110%, 0);
2202
+ transform: translate(110%, 0);
2203
+ }
2204
+ }
2205
+
2206
+ @-o-keyframes ball-triangle-path-ball-two {
2207
+ 0% {
2208
+ -o-transform: translate(110%, 0);
2209
+ transform: translate(110%, 0);
2210
+ }
2211
+ 17% {
2212
+ opacity: .25;
2213
+ }
2214
+ 33% {
2215
+ opacity: 1;
2216
+ -o-transform: translate(220%, 220%);
2217
+ transform: translate(220%, 220%);
2218
+ }
2219
+ 50% {
2220
+ opacity: .25;
2221
+ }
2222
+ 66% {
2223
+ opacity: 1;
2224
+ -o-transform: translate(0, 220%);
2225
+ transform: translate(0, 220%);
2226
+ }
2227
+ 83% {
2228
+ opacity: .25;
2229
+ }
2230
+ 100% {
2231
+ opacity: 1;
2232
+ -o-transform: translate(110%, 0);
2233
+ transform: translate(110%, 0);
2234
+ }
2235
+ }
2236
+
2237
+ @keyframes ball-triangle-path-ball-two {
2238
+ 0% {
2239
+ -webkit-transform: translate(110%, 0);
2240
+ -moz-transform: translate(110%, 0);
2241
+ -o-transform: translate(110%, 0);
2242
+ transform: translate(110%, 0);
2243
+ }
2244
+ 17% {
2245
+ opacity: .25;
2246
+ }
2247
+ 33% {
2248
+ opacity: 1;
2249
+ -webkit-transform: translate(220%, 220%);
2250
+ -moz-transform: translate(220%, 220%);
2251
+ -o-transform: translate(220%, 220%);
2252
+ transform: translate(220%, 220%);
2253
+ }
2254
+ 50% {
2255
+ opacity: .25;
2256
+ }
2257
+ 66% {
2258
+ opacity: 1;
2259
+ -webkit-transform: translate(0, 220%);
2260
+ -moz-transform: translate(0, 220%);
2261
+ -o-transform: translate(0, 220%);
2262
+ transform: translate(0, 220%);
2263
+ }
2264
+ 83% {
2265
+ opacity: .25;
2266
+ }
2267
+ 100% {
2268
+ opacity: 1;
2269
+ -webkit-transform: translate(110%, 0);
2270
+ -moz-transform: translate(110%, 0);
2271
+ -o-transform: translate(110%, 0);
2272
+ transform: translate(110%, 0);
2273
+ }
2274
+ }
2275
+
2276
+ @-webkit-keyframes ball-triangle-path-ball-tree {
2277
+ 0% {
2278
+ -webkit-transform: translate(220%, 220%);
2279
+ transform: translate(220%, 220%);
2280
+ }
2281
+ 17% {
2282
+ opacity: .25;
2283
+ }
2284
+ 33% {
2285
+ opacity: 1;
2286
+ -webkit-transform: translate(0, 220%);
2287
+ transform: translate(0, 220%);
2288
+ }
2289
+ 50% {
2290
+ opacity: .25;
2291
+ }
2292
+ 66% {
2293
+ opacity: 1;
2294
+ -webkit-transform: translate(110%, 0);
2295
+ transform: translate(110%, 0);
2296
+ }
2297
+ 83% {
2298
+ opacity: .25;
2299
+ }
2300
+ 100% {
2301
+ opacity: 1;
2302
+ -webkit-transform: translate(220%, 220%);
2303
+ transform: translate(220%, 220%);
2304
+ }
2305
+ }
2306
+
2307
+ @-moz-keyframes ball-triangle-path-ball-tree {
2308
+ 0% {
2309
+ -moz-transform: translate(220%, 220%);
2310
+ transform: translate(220%, 220%);
2311
+ }
2312
+ 17% {
2313
+ opacity: .25;
2314
+ }
2315
+ 33% {
2316
+ opacity: 1;
2317
+ -moz-transform: translate(0, 220%);
2318
+ transform: translate(0, 220%);
2319
+ }
2320
+ 50% {
2321
+ opacity: .25;
2322
+ }
2323
+ 66% {
2324
+ opacity: 1;
2325
+ -moz-transform: translate(110%, 0);
2326
+ transform: translate(110%, 0);
2327
+ }
2328
+ 83% {
2329
+ opacity: .25;
2330
+ }
2331
+ 100% {
2332
+ opacity: 1;
2333
+ -moz-transform: translate(220%, 220%);
2334
+ transform: translate(220%, 220%);
2335
+ }
2336
+ }
2337
+
2338
+ @-o-keyframes ball-triangle-path-ball-tree {
2339
+ 0% {
2340
+ -o-transform: translate(220%, 220%);
2341
+ transform: translate(220%, 220%);
2342
+ }
2343
+ 17% {
2344
+ opacity: .25;
2345
+ }
2346
+ 33% {
2347
+ opacity: 1;
2348
+ -o-transform: translate(0, 220%);
2349
+ transform: translate(0, 220%);
2350
+ }
2351
+ 50% {
2352
+ opacity: .25;
2353
+ }
2354
+ 66% {
2355
+ opacity: 1;
2356
+ -o-transform: translate(110%, 0);
2357
+ transform: translate(110%, 0);
2358
+ }
2359
+ 83% {
2360
+ opacity: .25;
2361
+ }
2362
+ 100% {
2363
+ opacity: 1;
2364
+ -o-transform: translate(220%, 220%);
2365
+ transform: translate(220%, 220%);
2366
+ }
2367
+ }
2368
+
2369
+ @keyframes ball-triangle-path-ball-tree {
2370
+ 0% {
2371
+ -webkit-transform: translate(220%, 220%);
2372
+ -moz-transform: translate(220%, 220%);
2373
+ -o-transform: translate(220%, 220%);
2374
+ transform: translate(220%, 220%);
2375
+ }
2376
+ 17% {
2377
+ opacity: .25;
2378
+ }
2379
+ 33% {
2380
+ opacity: 1;
2381
+ -webkit-transform: translate(0, 220%);
2382
+ -moz-transform: translate(0, 220%);
2383
+ -o-transform: translate(0, 220%);
2384
+ transform: translate(0, 220%);
2385
+ }
2386
+ 50% {
2387
+ opacity: .25;
2388
+ }
2389
+ 66% {
2390
+ opacity: 1;
2391
+ -webkit-transform: translate(110%, 0);
2392
+ -moz-transform: translate(110%, 0);
2393
+ -o-transform: translate(110%, 0);
2394
+ transform: translate(110%, 0);
2395
+ }
2396
+ 83% {
2397
+ opacity: .25;
2398
+ }
2399
+ 100% {
2400
+ opacity: 1;
2401
+ -webkit-transform: translate(220%, 220%);
2402
+ -moz-transform: translate(220%, 220%);
2403
+ -o-transform: translate(220%, 220%);
2404
+ transform: translate(220%, 220%);
2405
+ }
2406
+ }
2407
+
2408
+
2409
+ /*------------------------------------------------------------------------------------------*/
2410
+
2411
+
2412
+ /* Responsive Elements */
2413
+
2414
+
2415
+ /*------------------------------------------------------------------------------------------*/
2416
+
2417
+
2418
+ /* =Media Queries for Nav
2419
+ ===============================*/
2420
+
2421
+ @media all and (max-width: 1024px) {
2422
+ #nav-trigger {
2423
+ display: block;
2424
+ }
2425
+ nav#nav-main {
2426
+ display: none;
2427
+ }
2428
+ nav#nav-mobile {
2429
+ display: block;
2430
+ }
2431
+ nav#nav-mobile li {
2432
+ display: block;
2433
+ }
2434
+ #header aside {
2435
+ display: none;
2436
+ }
2437
+ }
2438
+
2439
+
2440
+ /* Landscape mobile & down
2441
+ ===============================*/
2442
+
2443
+ @media (max-width: 480px) {
2444
+ #wrapper {
2445
+ margin: 0;
2446
+ padding: 0;
2447
+ }
2448
+ .page-border,
2449
+ #scrollUp,
2450
+ #scrollUp:before {
2451
+ display: none;
2452
+ }
2453
+ .row {
2454
+ padding: 15px !important;
2455
+ }
2456
+ .col-1,
2457
+ .col-2,
2458
+ .col-3,
2459
+ .col-4,
2460
+ .col-5,
2461
+ .col-6,
2462
+ .col-7,
2463
+ .col-8,
2464
+ .col-9,
2465
+ .col-10,
2466
+ .col-11,
2467
+ .col-12,
2468
+ .col-2-3,
2469
+ .col-3-4,
2470
+ .col-9-10,
2471
+ .col-61,
2472
+ .col-38,
2473
+ .row {
2474
+ width: 100%;
2475
+ }
2476
+ .col-1,
2477
+ .col-2,
2478
+ .col-3,
2479
+ .col-4,
2480
+ .col-5,
2481
+ .col-6,
2482
+ .col-7,
2483
+ .col-8,
2484
+ .col-9,
2485
+ .col-10,
2486
+ .col-11,
2487
+ .col-12,
2488
+ .col-2-3,
2489
+ .col-3-4,
2490
+ .col-9-10,
2491
+ .col-61,
2492
+ .col-38 {
2493
+ padding-right: 0;
2494
+ padding-left: 0;
2495
+ }
2496
+ /*-----------------Header Elements-----------------*/
2497
+ #header .row {
2498
+ padding: 0 15px !important;
2499
+ }
2500
+ #header.nav-solid [class*="col-"] {
2501
+ padding: 0;
2502
+ }
2503
+ /*Logo*/
2504
+ #logo h2 {
2505
+ padding: 0;
2506
+ }
2507
+ /* Social */
2508
+ #header aside {
2509
+ clear: both;
2510
+ padding: 0;
2511
+ }
2512
+ #header ul.social-icons {
2513
+ margin-top: 0;
2514
+ }
2515
+ #banner-content.row {
2516
+ padding-top: 85px !important;
2517
+ }
2518
+ /*-----------------Sections-----------------*/
2519
+ /* Call to Action*/
2520
+ .call-to-action {
2521
+ padding-bottom: 25px;
2522
+ }
2523
+ /* Video */
2524
+ .slvj-lightbox iframe,
2525
+ .slvj-lightbox object,
2526
+ .slvj-lightbox embed {
2527
+ height: 270px !important;
2528
+ }
2529
+ /* Footer */
2530
+ #landing-footer #copyright {
2531
+ float: left;
2532
+ width: 50%;
2533
+ }
2534
+ #landing-footer .social-icons {
2535
+ float: right;
2536
+ width: 50%;
2537
+ }
2538
+ /*-----------------Typography-----------------*/
2539
+ h1 {
2540
+ font-size: 38px;
2541
+ }
2542
+ #banner h1 {
2543
+ font-size: 48px;
2544
+ }
2545
+ /* Hide Elements */
2546
+ a#scrollUp {
2547
+ display: none !important;
2548
+ }
2549
+ }
2550
+
2551
+
2552
+ /* Mobile to Tablet Portrait
2553
+ ===============================*/
2554
+
2555
+ @media (min-width: 480px) and (max-width: 767px) {
2556
+ #wrapper {
2557
+ margin: 0;
2558
+ padding: 0;
2559
+ }
2560
+ .page-border,
2561
+ #scrollUp,
2562
+ #scrollUp:before {
2563
+ display: none;
2564
+ }
2565
+ .row {
2566
+ padding: 15px 0 !important;
2567
+ }
2568
+ .col-1,
2569
+ .col-2,
2570
+ .col-5,
2571
+ .col-7,
2572
+ .col-9,
2573
+ .col-11,
2574
+ .col-2-3,
2575
+ .col-3-4,
2576
+ .col-61,
2577
+ .col-38,
2578
+ .row {
2579
+ width: 100%;
2580
+ }
2581
+ .col-3,
2582
+ .col-4,
2583
+ .col-6,
2584
+ .col-8,
2585
+ .col-10,
2586
+ .col-12 {
2587
+ width: 50%;
2588
+ }
2589
+ /*-----------------Header Elements-----------------*/
2590
+ #header .row {
2591
+ padding: 0 !important;
2592
+ }
2593
+ #header aside {
2594
+ display: inline-block;
2595
+ position: absolute;
2596
+ top: 40px;
2597
+ right: 60px;
2598
+ padding-top: 3px;
2599
+ padding-right: 5px;
2600
+ }
2601
+ #header.nav-solid aside {
2602
+ top: 20px;
2603
+ }
2604
+ #header aside ul {
2605
+ margin-top: 0 !important;
2606
+ padding-top: 6px;
2607
+ }
2608
+ #banner-content.row {
2609
+ padding-top: 85px !important;
2610
+ }
2611
+ /*Navigation*/
2612
+ nav#nav-mobile ul {
2613
+ margin-left: -40px;
2614
+ margin-right: -40px;
2615
+ padding-left: 20px;
2616
+ padding-right: 20px;
2617
+ }
2618
+ /*-----------------Sections-----------------*/
2619
+ /* Video */
2620
+ .slvj-lightbox iframe,
2621
+ .slvj-lightbox object,
2622
+ .slvj-lightbox embed {
2623
+ height: 370px !important;
2624
+ }
2625
+ /* Footer */
2626
+ #landing-footer #copyright {
2627
+ float: left;
2628
+ width: 50%;
2629
+ }
2630
+ #landing-footer .social-icons {
2631
+ float: right;
2632
+ width: 50%;
2633
+ }
2634
+ }
2635
+
2636
+
2637
+ /* Landscape Tablet to Desktop
2638
+ ===============================*/
2639
+
2640
+ @media (min-width: 768px) and (max-width: 1024px) {
2641
+ #wrapper {
2642
+ margin: 0;
2643
+ padding: 0;
2644
+ }
2645
+ .page-border {
2646
+ display: none;
2647
+ }
2648
+ .big-padding-top {
2649
+ padding-top: 45px !important;
2650
+ }
2651
+ /*-----------------Header Elements-----------------*/
2652
+ #header aside {
2653
+ display: inline-block;
2654
+ position: absolute;
2655
+ top: 40px;
2656
+ right: 60px;
2657
+ padding-top: 3px;
2658
+ padding-right: 5px;
2659
+ }
2660
+ #header.nav-solid aside {
2661
+ top: 20px;
2662
+ }
2663
+ #header aside ul {
2664
+ margin-top: 0 !important;
2665
+ padding-top: 6px;
2666
+ }
2667
+ /*Navigation*/
2668
+ nav#nav-mobile ul {
2669
+ margin-left: -40px;
2670
+ margin-right: -40px;
2671
+ padding-left: 20px;
2672
+ padding-right: 20px;
2673
+ }
2674
+ /*-----------------Sections-----------------*/
2675
+ /* Video */
2676
+ .slvj-lightbox object,
2677
+ .slvj-lightbox embed {
2678
+ height: 432px !important;
2679
+ }
2680
+ }
2681
+
2682
+ @import 'https://fonts.googleapis.com/css?family=Montserrat:800|Poppins:400';
2683
+ .wall {
2684
+ position: absolute;
2685
+ width: 100vw;
2686
+ height: 100vh;
2687
+ background-color: #fff;
2688
+ }
2689
+
2690
+ .row1 {
2691
+ z-index: -9999999;
2692
+ display: flex;
2693
+ animation: 200s linear ticker-to-left infinite;
2694
+ }
2695
+
2696
+ .row1:nth-child(even) {
2697
+ animation: 60s linear ticker-to-right infinite;
2698
+ justify-content: flex-end;
2699
+ }
2700
+
2701
+ .row1 span {
2702
+ margin-right: 0.2em;
2703
+ font-family: sans-serif;
2704
+ color: transparent;
2705
+ font-size: 20vh;
2706
+ font-weight: bold;
2707
+ line-height: 1;
2708
+ text-transform: uppercase;
2709
+ -webkit-text-stroke-width: 4px;
2710
+ text-stroke-width: 4px;
2711
+ -webkit-text-stroke-color: #f5f5f599;
2712
+ text-stroke-color: #f5f5f599;
2713
+ }
2714
+
2715
+ @keyframes ticker-to-left {
2716
+ 0% {
2717
+ transform: translate3d(0, 0, 0);
2718
+ }
2719
+ 100% {
2720
+ transform: translate3d(-100%, 0, 0);
2721
+ }
2722
+ }
2723
+
2724
+ @keyframes ticker-to-right {
2725
+ 0% {
2726
+ transform: translate3d(0, 0, 0);
2727
+ }
2728
+ 100% {
2729
+ transform: translate3d(100%, 0, 0);
2730
+ }
2731
+ }
2732
+
2733
+ .container {
2734
+ max-width: 500px;
2735
+ max-height: 400px;
2736
+ width: 100%;
2737
+ padding: 25px;
2738
+ background: rgb(255 255 255 / 0%);
2739
+ box-shadow: 0 8px 32px 0 rgba(154, 154, 154, 0.37);
2740
+ backdrop-filter: blur(2.2px);
2741
+ -webkit-backdrop-filter: blur(2.2px);
2742
+ border-radius: 12px;
2743
+ border: 1px solid rgba(52, 52, 52, 0.195);
2744
+ }
2745
+
2746
+ .uploadbuttons {
2747
+ display: flex;
2748
+ justify-content: flex-start;
2749
+ }
2750
+
2751
+ .container:hover {
2752
+ background: rgba(225, 46, 232, 0.253);
2753
+ /* Adjust the alpha value for the desired transparency */
2754
+ box-shadow: 0 8px 32px 0 rgba(154, 154, 154, 0.37);
2755
+ backdrop-filter: blur(2.2px);
2756
+ -webkit-backdrop-filter: blur(2.2px);
2757
+ border: 1px solid rgba(103, 101, 101, 0.195);
2758
+ transition: all .4s ease-in-out;
2759
+ }
2760
+
2761
+ .drag-area {
2762
+ height: 200px;
2763
+ border-radius: 10px;
2764
+ display: flex;
2765
+ align-items: center;
2766
+ justify-content: center;
2767
+ flex-direction: column;
2768
+ padding: 0px 50px;
2769
+ }
2770
+
2771
+ .drag-area:hover {
2772
+ height: 200px;
2773
+ display: flex;
2774
+ align-items: center;
2775
+ justify-content: center;
2776
+ flex-direction: column;
2777
+ }
2778
+
2779
+ h3 {
2780
+ margin-bottom: 20px;
2781
+ font-weight: 500;
2782
+ }
2783
+
2784
+ .drag-area .icon {
2785
+ font-size: 50px;
2786
+ width: 150px;
2787
+ height: 150px;
2788
+ }
2789
+
2790
+ .drag-area .headerx {
2791
+ font-size: 17px;
2792
+ font-weight: 500;
2793
+ color: #34495e;
2794
+ }
2795
+
2796
+ .drag-area .support {
2797
+ font-size: 12px;
2798
+ color: gray;
2799
+ margin: 10px 0 15px 0;
2800
+ }
2801
+
2802
+ .drag-area .buttonx {
2803
+ font-size: 17px;
2804
+ font-weight: 500;
2805
+ color: #FF8B4A;
2806
+ cursor: pointer;
2807
+ }
2808
+
2809
+ .drag-area.active {
2810
+ border: 2px solid #FF8B4A;
2811
+ margin-bottom: 20px;
2812
+ }
2813
+
2814
+ .drag-area img {
2815
+ width: 100%;
2816
+ height: 100%;
2817
+ object-fit: contain;
2818
+ z-index: -1;
2819
+ padding-top: 8px;
2820
+ }
2821
+
2822
+ .image-grid {
2823
+ display: flex;
2824
+ justify-content: space-between;
2825
+ margin-top: 20px;
2826
+ }
2827
+
2828
+ .image-grid img {
2829
+ width: 30%;
2830
+ /* Adjust the width as needed */
2831
+ cursor: pointer;
2832
+ }
2833
+
2834
+
2835
+ /* Additional styles for responsiveness */
2836
+
2837
+ @media (max-width: 768px) {
2838
+ .image-grid {
2839
+ flex-direction: column;
2840
+ align-items: center;
2841
+ }
2842
+ .image-grid img {
2843
+ width: 80%;
2844
+ /* Adjust the width for smaller screens */
2845
+ margin-bottom: 10px;
2846
+ }
2847
+ }
2848
+
2849
+ .arrow {
2850
+ width: 20px;
2851
+ height: 20px;
2852
+ transform: rotate(90deg);
2853
+ }
2854
+
2855
+ .ar {
2856
+ margin-bottom: 20px;
2857
+ display: flex;
2858
+ justify-content: center;
2859
+ align-items: center;
2860
+ font-size: 12px;
2861
+ }
2862
+
2863
+ .easytext {
2864
+ background: linear-gradient(45deg, #8B5F8B, #9400D3);
2865
+ -webkit-background-clip: text;
2866
+ color: transparent;
2867
+ }
2868
+
2869
+ p {
2870
+ color: #3e007f;
2871
+ }
2872
+
2873
+ button {
2874
+ background-color: #DDA0DD;
2875
+ }
2876
+
2877
+
2878
+ /* Add this CSS for the grid container */
2879
+
2880
+ .grid-container {
2881
+ display: grid;
2882
+ grid-template-columns: repeat(3, 1fr);
2883
+ max-width: 600px;
2884
+ margin: 0 auto;
2885
+ gap: 10px;
2886
+ /* Adjust the gap as needed */
2887
+ }
2888
+
2889
+ .grid-item {
2890
+ background: rgba(100, 97, 97, 0.2);
2891
+ backdrop-filter: blur(3.5px);
2892
+ padding: 20px;
2893
+ text-align: center;
2894
+ width: auto;
2895
+ height: max-content;
2896
+ border-radius: 5px;
2897
+ }
2898
+
2899
+ .grid-item:hover {
2900
+ background: linear-gradient(45deg, #8B5F8B, #9400D3);
2901
+ color: #fff;
2902
+ }
2903
+
2904
+ .uploadbuttons {
2905
+ display: flex;
2906
+ align-items: center;
2907
+ align-content: center;
2908
+ flex-wrap: nowrap;
2909
+ justify-content: space-around;
2910
+ }
2911
+
2912
+ .uploadbutton {
2913
+ font-family: poppins;
2914
+ font-weight: 400;
2915
+ position: relative;
2916
+ padding: 12px 35px;
2917
+ background: linear-gradient(45deg, #8B5F8B, #9400D3);
2918
+ /* Violet Gradient */
2919
+ font-size: 17px;
2920
+ font-weight: 500;
2921
+ color: #fff;
2922
+ border: 2px solid transparent;
2923
+ border-radius: 10px;
2924
+ box-shadow: 0 0 0 #fec1958c;
2925
+ transition: all .3s ease-in-out;
2926
+ justify-self: center;
2927
+ }
2928
+
2929
+ .star-1 {
2930
+ position: absolute;
2931
+ top: 20%;
2932
+ left: 20%;
2933
+ width: 25px;
2934
+ height: auto;
2935
+ filter: drop-shadow(0 0 0 #fffdef);
2936
+ z-index: -5;
2937
+ transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
2938
+ }
2939
+
2940
+ .star-2 {
2941
+ position: absolute;
2942
+ top: 45%;
2943
+ left: 45%;
2944
+ width: 15px;
2945
+ height: auto;
2946
+ filter: drop-shadow(0 0 0 #fffdef);
2947
+ z-index: -5;
2948
+ transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
2949
+ }
2950
+
2951
+ .star-3 {
2952
+ position: absolute;
2953
+ top: 40%;
2954
+ left: 40%;
2955
+ width: 5px;
2956
+ height: auto;
2957
+ filter: drop-shadow(0 0 0 #fffdef);
2958
+ z-index: -5;
2959
+ transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
2960
+ }
2961
+
2962
+ .star-4 {
2963
+ position: absolute;
2964
+ top: 20%;
2965
+ left: 40%;
2966
+ width: 8px;
2967
+ height: auto;
2968
+ filter: drop-shadow(0 0 0 #fffdef);
2969
+ z-index: -5;
2970
+ transition: all .8s cubic-bezier(0, 0.4, 0, 1.01);
2971
+ }
2972
+
2973
+ .star-5 {
2974
+ position: absolute;
2975
+ top: 25%;
2976
+ left: 45%;
2977
+ width: 15px;
2978
+ height: auto;
2979
+ filter: drop-shadow(0 0 0 #fffdef);
2980
+ z-index: -5;
2981
+ transition: all .6s cubic-bezier(0, 0.4, 0, 1.01);
2982
+ }
2983
+
2984
+ .star-6 {
2985
+ position: absolute;
2986
+ top: 5%;
2987
+ left: 50%;
2988
+ width: 5px;
2989
+ height: auto;
2990
+ filter: drop-shadow(0 0 0 #fffdef);
2991
+ z-index: -5;
2992
+ transition: all .8s ease;
2993
+ }
2994
+
2995
+ .uploadbutton:hover {
2996
+ border: 2px solid #3E007F;
2997
+ background: #f5f5f5;
2998
+ color: #3E007F;
2999
+ transition: all .3s ease-in-out;
3000
+ }
3001
+
3002
+ .uploadbutton:hover .star-1 {
3003
+ position: absolute;
3004
+ top: -80%;
3005
+ left: -30%;
3006
+ width: 25px;
3007
+ height: auto;
3008
+ filter: drop-shadow(0 0 10px #fffdef);
3009
+ z-index: 2;
3010
+ }
3011
+
3012
+ .uploadbutton:hover .star-2 {
3013
+ position: absolute;
3014
+ top: -25%;
3015
+ left: 10%;
3016
+ width: 15px;
3017
+ height: auto;
3018
+ filter: drop-shadow(0 0 10px #fffdef);
3019
+ z-index: 2;
3020
+ }
3021
+
3022
+ .uploadbutton:hover .star-3 {
3023
+ position: absolute;
3024
+ top: 55%;
3025
+ left: 25%;
3026
+ width: 5px;
3027
+ height: auto;
3028
+ filter: drop-shadow(0 0 10px #fffdef);
3029
+ z-index: 2;
3030
+ }
3031
+
3032
+ .uploadbutton:hover .star-4 {
3033
+ position: absolute;
3034
+ top: 30%;
3035
+ left: 80%;
3036
+ width: 8px;
3037
+ height: auto;
3038
+ filter: drop-shadow(0 0 10px #fffdef);
3039
+ z-index: 2;
3040
+ }
3041
+
3042
+ .uploadbutton:hover .star-5 {
3043
+ position: absolute;
3044
+ top: 25%;
3045
+ left: 115%;
3046
+ width: 15px;
3047
+ height: auto;
3048
+ filter: drop-shadow(0 0 10px #fffdef);
3049
+ z-index: 2;
3050
+ }
3051
+
3052
+ .uploadbutton:hover .star-6 {
3053
+ position: absolute;
3054
+ top: 5%;
3055
+ left: 60%;
3056
+ width: 5px;
3057
+ height: auto;
3058
+ filter: drop-shadow(0 0 10px #fffdef);
3059
+ z-index: 2;
3060
+ }
3061
+
3062
+ .buttondiv {
3063
+ margin-top: 15px;
3064
+ display: flex;
3065
+ justify-content: center;
3066
+ }
3067
+
3068
+ input #file-input {
3069
+ height: 100%;
3070
+ }
static/generated/generated_image.png ADDED
static/images/arrow.gif ADDED
static/images/banner-images/banner-image-1.jpg ADDED
static/images/company-images/company-logo1.png ADDED
static/images/company-images/company-logo2.png ADDED
static/images/company-images/company-logo3.png ADDED
static/images/company-images/company-logo4.png ADDED
static/images/company-images/company-logo5.png ADDED
static/images/company-images/company-logo6.png ADDED
static/images/company-images/company-logo7.png ADDED
static/images/company-images/company-logo8.png ADDED
static/images/company-images/company-logo9.png ADDED
static/images/dancer.jpg ADDED
static/images/favicon.ico ADDED
static/images/gallery-images/gallery-image-1.jpg ADDED
static/images/gallery-images/gallery-image-2.jpg ADDED
static/images/gallery-images/gallery-image-3.jpg ADDED
static/images/gallery-images/gallery-image-4.jpg ADDED
static/images/gallery-images/gallery-image-5.jpg ADDED
static/images/gallery-images/gallery-image-6.jpg ADDED
static/images/logo-2.png ADDED
static/images/logo.png ADDED
static/images/logox.png ADDED
static/images/logoxx.png ADDED
static/images/receipt.jpg ADDED
static/images/receiptcon.png ADDED
static/images/uplogo.gif ADDED
static/images/uplogo1.gif ADDED
static/images/uplogo2.gif ADDED
static/images/user-images/user-1.jpg ADDED
static/images/user-images/user-2.jpg ADDED
static/images/user-images/user-3.jpg ADDED
static/js/featherlight.gallery.min.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
3
+ * Version 1.3.3 - http://noelboss.github.io/featherlight/
4
+ *
5
+ * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
6
+ * MIT Licensed.
7
+ **/!function(a){"use strict";function b(c,d){if(!(this instanceof b)){var e=new b(a.extend({$source:c,$currentTarget:c.first()},d));return e.open(),e}a.featherlight.apply(this,arguments),this.chainCallbacks(h)}var c=function(a){window.console&&window.console.warn&&window.console.warn("FeatherlightGallery: "+a)};if("undefined"==typeof a)return c("Too much lightness, Featherlight needs jQuery.");if(!a.featherlight)return c("Load the featherlight plugin before the gallery plugin");var d="ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch,e=a.event&&a.event.special.swipeleft&&a,f=window.Hammer&&function(a){var b=new window.Hammer.Manager(a[0]);return b.add(new window.Hammer.Swipe),b},g=d&&(e||f);d&&!g&&c("No compatible swipe library detected; one must be included before featherlightGallery for swipe motions to navigate the galleries.");var h={afterClose:function(a,b){var c=this;return c.$instance.off("next."+c.namespace+" previous."+c.namespace),c._swiper&&(c._swiper.off("swipeleft",c._swipeleft).off("swiperight",c._swiperight),c._swiper=null),a(b)},beforeOpen:function(a,b){var c=this;return c.$instance.on("next."+c.namespace+" previous."+c.namespace,function(a){var b="next"===a.type?1:-1;c.navigateTo(c.currentNavigation()+b)}),g?c._swiper=g(c.$instance).on("swipeleft",c._swipeleft=function(){c.$instance.trigger("next")}).on("swiperight",c._swiperight=function(){c.$instance.trigger("previous")}):c.$instance.find("."+c.namespace+"-content").append(c.createNavigation("previous")).append(c.createNavigation("next")),a(b)},onKeyUp:function(a,b){var c={37:"previous",39:"next"}[b.keyCode];return c?(this.$instance.trigger(c),!1):a(b)}};a.featherlight.extend(b,{autoBind:"[data-featherlight-gallery]"}),a.extend(b.prototype,{previousIcon:"&#xf104;",nextIcon:"&#xf105;",galleryFadeIn:100,galleryFadeOut:300,slides:function(){return this.filter?this.$source.find(this.filter):this.$source},images:function(){return c("images is deprecated, please use slides instead"),this.slides()},currentNavigation:function(){return this.slides().index(this.$currentTarget)},navigateTo:function(b){var c=this,d=c.slides(),e=d.length,f=c.$instance.find("."+c.namespace+"-inner");return b=(b%e+e)%e,c.$currentTarget=d.eq(b),c.beforeContent(),a.when(c.getContent(),f.fadeTo(c.galleryFadeOut,.2)).always(function(a){c.setContent(a),c.afterContent(),a.fadeTo(c.galleryFadeIn,1)})},createNavigation:function(b){var c=this;return a('<span title="'+b+'" class="'+this.namespace+"-"+b+'"><span>'+this[b+"Icon"]+"</span></span>").click(function(){a(this).trigger(b+"."+c.namespace)})}}),a.featherlightGallery=b,a.fn.featherlightGallery=function(a){return b.attach(this,a)},a(document).ready(function(){b._onReady()})}(jQuery);
static/js/featherlight.min.js ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Featherlight - ultra slim jQuery lightbox
3
+ * Version 1.3.3 - http://noelboss.github.io/featherlight/
4
+ *
5
+ * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
6
+ * MIT Licensed.
7
+ **/
8
+ !function(a){"use strict";function b(a,c){if(!(this instanceof b)){var d=new b(a,c);return d.open(),d}this.id=b.id++,this.setup(a,c),this.chainCallbacks(b._callbackChain)}if("undefined"==typeof a)return void("console"in window&&window.console.info("Too much lightness, Featherlight needs jQuery."));var c=[],d=function(b){return c=a.grep(c,function(a){return a!==b&&a.$instance.closest("body").length>0})},e=function(a,b){var c={},d=new RegExp("^"+b+"([A-Z])(.*)");for(var e in a){var f=e.match(d);if(f){var g=(f[1]+f[2].replace(/([A-Z])/g,"-$1")).toLowerCase();c[g]=a[e]}}return c},f={keyup:"onKeyUp",resize:"onResize"},g=function(c){a.each(b.opened().reverse(),function(){return c.isDefaultPrevented()||!1!==this[f[c.type]](c)?void 0:(c.preventDefault(),c.stopPropagation(),!1)})},h=function(c){if(c!==b._globalHandlerInstalled){b._globalHandlerInstalled=c;var d=a.map(f,function(a,c){return c+"."+b.prototype.namespace}).join(" ");a(window)[c?"on":"off"](d,g)}};b.prototype={constructor:b,namespace:"featherlight",targetAttr:"data-featherlight",variant:null,resetCss:!1,background:null,openTrigger:"click",closeTrigger:"click",filter:null,root:"body",openSpeed:250,closeSpeed:250,closeOnClick:"background",closeOnEsc:!0,closeIcon:"&#10005;",loading:"",persist:!1,otherClose:null,beforeOpen:a.noop,beforeContent:a.noop,beforeClose:a.noop,afterOpen:a.noop,afterContent:a.noop,afterClose:a.noop,onKeyUp:a.noop,onResize:a.noop,type:null,contentFilters:["jquery","image","html","ajax","iframe","text"],setup:function(b,c){"object"!=typeof b||b instanceof a!=!1||c||(c=b,b=void 0);var d=a.extend(this,c,{target:b}),e=d.resetCss?d.namespace+"-reset":d.namespace,f=a(d.background||['<div class="'+e+"-loading "+e+'">','<div class="'+e+'-content">','<span class="'+e+"-close-icon "+d.namespace+'-close">',d.closeIcon,"</span>",'<div class="'+d.namespace+'-inner">'+d.loading+"</div>","</div>","</div>"].join("")),g="."+d.namespace+"-close"+(d.otherClose?","+d.otherClose:"");return d.$instance=f.clone().addClass(d.variant),d.$instance.on(d.closeTrigger+"."+d.namespace,function(b){var c=a(b.target);("background"===d.closeOnClick&&c.is("."+d.namespace)||"anywhere"===d.closeOnClick||c.closest(g).length)&&(b.preventDefault(),d.close())}),this},getContent:function(){if(this.persist!==!1&&this.$content)return this.$content;var b=this,c=this.constructor.contentFilters,d=function(a){return b.$currentTarget&&b.$currentTarget.attr(a)},e=d(b.targetAttr),f=b.target||e||"",g=c[b.type];if(!g&&f in c&&(g=c[f],f=b.target&&e),f=f||d("href")||"",!g)for(var h in c)b[h]&&(g=c[h],f=b[h]);if(!g){var i=f;if(f=null,a.each(b.contentFilters,function(){return g=c[this],g.test&&(f=g.test(i)),!f&&g.regex&&i.match&&i.match(g.regex)&&(f=i),!f}),!f)return"console"in window&&window.console.error("Featherlight: no content filter found "+(i?' for "'+i+'"':" (no target specified)")),!1}return g.process.call(b,f)},setContent:function(b){var c=this;return(b.is("iframe")||a("iframe",b).length>0)&&c.$instance.addClass(c.namespace+"-iframe"),c.$instance.removeClass(c.namespace+"-loading"),c.$instance.find("."+c.namespace+"-inner").not(b).slice(1).remove().end().replaceWith(a.contains(c.$instance[0],b[0])?"":b),c.$content=b.addClass(c.namespace+"-inner"),c},open:function(b){var d=this;if(d.$instance.hide().appendTo(d.root),!(b&&b.isDefaultPrevented()||d.beforeOpen(b)===!1)){b&&b.preventDefault();var e=d.getContent();if(e)return c.push(d),h(!0),d.$instance.fadeIn(d.openSpeed),d.beforeContent(b),a.when(e).always(function(a){d.setContent(a),d.afterContent(b)}).then(d.$instance.promise()).done(function(){d.afterOpen(b)})}return d.$instance.detach(),a.Deferred().reject().promise()},close:function(b){var c=this,e=a.Deferred();return c.beforeClose(b)===!1?e.reject():(0===d(c).length&&h(!1),c.$instance.fadeOut(c.closeSpeed,function(){c.$instance.detach(),c.afterClose(b),e.resolve()})),e.promise()},chainCallbacks:function(b){for(var c in b)this[c]=a.proxy(b[c],this,a.proxy(this[c],this))}},a.extend(b,{id:0,autoBind:"[data-featherlight]",defaults:b.prototype,contentFilters:{jquery:{regex:/^[#.]\w/,test:function(b){return b instanceof a&&b},process:function(b){return this.persist!==!1?a(b):a(b).clone(!0)}},image:{regex:/\.(png|jpg|jpeg|gif|tiff|bmp|svg)(\?\S*)?$/i,process:function(b){var c=this,d=a.Deferred(),e=new Image,f=a('<img src="'+b+'" alt="" class="'+c.namespace+'-image" />');return e.onload=function(){f.naturalWidth=e.width,f.naturalHeight=e.height,d.resolve(f)},e.onerror=function(){d.reject(f)},e.src=b,d.promise()}},html:{regex:/^\s*<[\w!][^<]*>/,process:function(b){return a(b)}},ajax:{regex:/./,process:function(b){var c=a.Deferred(),d=a("<div></div>").load(b,function(a,b){"error"!==b&&c.resolve(d.contents()),c.fail()});return c.promise()}},iframe:{process:function(b){var c=new a.Deferred,d=a("<iframe/>").hide().attr("src",b).css(e(this,"iframe")).on("load",function(){c.resolve(d.show())}).appendTo(this.$instance.find("."+this.namespace+"-content"));return c.promise()}},text:{process:function(b){return a("<div>",{text:b})}}},functionAttributes:["beforeOpen","afterOpen","beforeContent","afterContent","beforeClose","afterClose"],readElementConfig:function(b,c){var d=this,e=new RegExp("^data-"+c+"-(.*)"),f={};return b&&b.attributes&&a.each(b.attributes,function(){var b=this.name.match(e);if(b){var c=this.value,g=a.camelCase(b[1]);if(a.inArray(g,d.functionAttributes)>=0)c=new Function(c);else try{c=a.parseJSON(c)}catch(h){}f[g]=c}}),f},extend:function(b,c){var d=function(){this.constructor=b};return d.prototype=this.prototype,b.prototype=new d,b.__super__=this.prototype,a.extend(b,this,c),b.defaults=b.prototype,b},attach:function(b,c,d){var e=this;"object"!=typeof c||c instanceof a!=!1||d||(d=c,c=void 0),d=a.extend({},d);var f,g=d.namespace||e.defaults.namespace,h=a.extend({},e.defaults,e.readElementConfig(b[0],g),d);return b.on(h.openTrigger+"."+h.namespace,h.filter,function(g){var i=a.extend({$source:b,$currentTarget:a(this)},e.readElementConfig(b[0],h.namespace),e.readElementConfig(this,h.namespace),d),j=f||a(this).data("featherlight-persisted")||new e(c,i);"shared"===j.persist?f=j:j.persist!==!1&&a(this).data("featherlight-persisted",j),i.$currentTarget.blur(),j.open(g)}),b},current:function(){var a=this.opened();return a[a.length-1]||null},opened:function(){var b=this;return d(),a.grep(c,function(a){return a instanceof b})},close:function(){var a=this.current();return a?a.close():void 0},_onReady:function(){var b=this;b.autoBind&&(b.attach(a(document),{filter:b.autoBind}),a(b.autoBind).filter("[data-featherlight-filter]").each(function(){b.attach(a(this))}))},_callbackChain:{onKeyUp:function(a,b){return 27===b.keyCode?(this.closeOnEsc&&this.$instance.find("."+this.namespace+"-close:first").click(),!1):a(b)},onResize:function(a,b){if(this.$content.naturalWidth){var c=this.$content.naturalWidth,d=this.$content.naturalHeight;this.$content.css("width","").css("height","");var e=Math.max(c/parseInt(this.$content.parent().css("width"),10),d/parseInt(this.$content.parent().css("height"),10));e>1&&this.$content.css("width",""+c/e+"px").css("height",""+d/e+"px")}return a(b)},afterContent:function(a,b){var c=a(b);return this.onResize(b),c}}}),a.featherlight=b,a.fn.featherlight=function(a,c){return b.attach(this,a,c)},a(document).ready(function(){b._onReady()})}(jQuery);
static/js/images-loaded.min.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * imagesLoaded PACKAGED v3.1.4
3
+ * JavaScript is all like "You images are done yet or what?"
4
+ * MIT License
5
+ */
6
+
7
+ (function(){function e(){}function t(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function n(e){return function(){return this[e].apply(this,arguments)}}var i=e.prototype,r=this,o=r.EventEmitter;i.getListeners=function(e){var t,n,i=this._getEvents();if("object"==typeof e){t={};for(n in i)i.hasOwnProperty(n)&&e.test(n)&&(t[n]=i[n])}else t=i[e]||(i[e]=[]);return t},i.flattenListeners=function(e){var t,n=[];for(t=0;e.length>t;t+=1)n.push(e[t].listener);return n},i.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},i.addListener=function(e,n){var i,r=this.getListenersAsObject(e),o="object"==typeof n;for(i in r)r.hasOwnProperty(i)&&-1===t(r[i],n)&&r[i].push(o?n:{listener:n,once:!1});return this},i.on=n("addListener"),i.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},i.once=n("addOnceListener"),i.defineEvent=function(e){return this.getListeners(e),this},i.defineEvents=function(e){for(var t=0;e.length>t;t+=1)this.defineEvent(e[t]);return this},i.removeListener=function(e,n){var i,r,o=this.getListenersAsObject(e);for(r in o)o.hasOwnProperty(r)&&(i=t(o[r],n),-1!==i&&o[r].splice(i,1));return this},i.off=n("removeListener"),i.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},i.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},i.manipulateListeners=function(e,t,n){var i,r,o=e?this.removeListener:this.addListener,s=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(i=n.length;i--;)o.call(this,t,n[i]);else for(i in t)t.hasOwnProperty(i)&&(r=t[i])&&("function"==typeof r?o.call(this,i,r):s.call(this,i,r));return this},i.removeEvent=function(e){var t,n=typeof e,i=this._getEvents();if("string"===n)delete i[e];else if("object"===n)for(t in i)i.hasOwnProperty(t)&&e.test(t)&&delete i[t];else delete this._events;return this},i.removeAllListeners=n("removeEvent"),i.emitEvent=function(e,t){var n,i,r,o,s=this.getListenersAsObject(e);for(r in s)if(s.hasOwnProperty(r))for(i=s[r].length;i--;)n=s[r][i],n.once===!0&&this.removeListener(e,n.listener),o=n.listener.apply(this,t||[]),o===this._getOnceReturnValue()&&this.removeListener(e,n.listener);return this},i.trigger=n("emitEvent"),i.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},i.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},i._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},i._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return r.EventEmitter=o,e},"function"==typeof define&&define.amd?define("eventEmitter/EventEmitter",[],function(){return e}):"object"==typeof module&&module.exports?module.exports=e:this.EventEmitter=e}).call(this),function(e){function t(t){var n=e.event;return n.target=n.target||n.srcElement||t,n}var n=document.documentElement,i=function(){};n.addEventListener?i=function(e,t,n){e.addEventListener(t,n,!1)}:n.attachEvent&&(i=function(e,n,i){e[n+i]=i.handleEvent?function(){var n=t(e);i.handleEvent.call(i,n)}:function(){var n=t(e);i.call(e,n)},e.attachEvent("on"+n,e[n+i])});var r=function(){};n.removeEventListener?r=function(e,t,n){e.removeEventListener(t,n,!1)}:n.detachEvent&&(r=function(e,t,n){e.detachEvent("on"+t,e[t+n]);try{delete e[t+n]}catch(i){e[t+n]=void 0}});var o={bind:i,unbind:r};"function"==typeof define&&define.amd?define("eventie/eventie",o):e.eventie=o}(this),function(e,t){"function"==typeof define&&define.amd?define(["eventEmitter/EventEmitter","eventie/eventie"],function(n,i){return t(e,n,i)}):"object"==typeof exports?module.exports=t(e,require("eventEmitter"),require("eventie")):e.imagesLoaded=t(e,e.EventEmitter,e.eventie)}(this,function(e,t,n){function i(e,t){for(var n in t)e[n]=t[n];return e}function r(e){return"[object Array]"===d.call(e)}function o(e){var t=[];if(r(e))t=e;else if("number"==typeof e.length)for(var n=0,i=e.length;i>n;n++)t.push(e[n]);else t.push(e);return t}function s(e,t,n){if(!(this instanceof s))return new s(e,t);"string"==typeof e&&(e=document.querySelectorAll(e)),this.elements=o(e),this.options=i({},this.options),"function"==typeof t?n=t:i(this.options,t),n&&this.on("always",n),this.getImages(),a&&(this.jqDeferred=new a.Deferred);var r=this;setTimeout(function(){r.check()})}function c(e){this.img=e}function f(e){this.src=e,v[e]=this}var a=e.jQuery,u=e.console,h=u!==void 0,d=Object.prototype.toString;s.prototype=new t,s.prototype.options={},s.prototype.getImages=function(){this.images=[];for(var e=0,t=this.elements.length;t>e;e++){var n=this.elements[e];"IMG"===n.nodeName&&this.addImage(n);for(var i=n.querySelectorAll("img"),r=0,o=i.length;o>r;r++){var s=i[r];this.addImage(s)}}},s.prototype.addImage=function(e){var t=new c(e);this.images.push(t)},s.prototype.check=function(){function e(e,r){return t.options.debug&&h&&u.log("confirm",e,r),t.progress(e),n++,n===i&&t.complete(),!0}var t=this,n=0,i=this.images.length;if(this.hasAnyBroken=!1,!i)return this.complete(),void 0;for(var r=0;i>r;r++){var o=this.images[r];o.on("confirm",e),o.check()}},s.prototype.progress=function(e){this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded;var t=this;setTimeout(function(){t.emit("progress",t,e),t.jqDeferred&&t.jqDeferred.notify&&t.jqDeferred.notify(t,e)})},s.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";this.isComplete=!0;var t=this;setTimeout(function(){if(t.emit(e,t),t.emit("always",t),t.jqDeferred){var n=t.hasAnyBroken?"reject":"resolve";t.jqDeferred[n](t)}})},a&&(a.fn.imagesLoaded=function(e,t){var n=new s(this,e,t);return n.jqDeferred.promise(a(this))}),c.prototype=new t,c.prototype.check=function(){var e=v[this.img.src]||new f(this.img.src);if(e.isConfirmed)return this.confirm(e.isLoaded,"cached was confirmed"),void 0;if(this.img.complete&&void 0!==this.img.naturalWidth)return this.confirm(0!==this.img.naturalWidth,"naturalWidth"),void 0;var t=this;e.on("confirm",function(e,n){return t.confirm(e.isLoaded,n),!0}),e.check()},c.prototype.confirm=function(e,t){this.isLoaded=e,this.emit("confirm",this,t)};var v={};return f.prototype=new t,f.prototype.check=function(){if(!this.isChecked){var e=new Image;n.bind(e,"load",this),n.bind(e,"error",this),e.src=this.src,this.isChecked=!0}},f.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},f.prototype.onload=function(e){this.confirm(!0,"onload"),this.unbindProxyEvents(e)},f.prototype.onerror=function(e){this.confirm(!1,"onerror"),this.unbindProxyEvents(e)},f.prototype.confirm=function(e,t){this.isConfirmed=!0,this.isLoaded=e,this.emit("confirm",this,t)},f.prototype.unbindProxyEvents=function(e){n.unbind(e.target,"load",this),n.unbind(e.target,"error",this)},s});
static/js/jquery.1.8.3.min.js ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ /*! jQuery v1.8.3 jquery.com | jquery.org/license */
2
+ (function(e,t){function _(e){var t=M[e]={};return v.each(e.split(y),function(e,n){t[n]=!0}),t}function H(e,n,r){if(r===t&&e.nodeType===1){var i="data-"+n.replace(P,"-$1").toLowerCase();r=e.getAttribute(i);if(typeof r=="string"){try{r=r==="true"?!0:r==="false"?!1:r==="null"?null:+r+""===r?+r:D.test(r)?v.parseJSON(r):r}catch(s){}v.data(e,n,r)}else r=t}return r}function B(e){var t;for(t in e){if(t==="data"&&v.isEmptyObject(e[t]))continue;if(t!=="toJSON")return!1}return!0}function et(){return!1}function tt(){return!0}function ut(e){return!e||!e.parentNode||e.parentNode.nodeType===11}function at(e,t){do e=e[t];while(e&&e.nodeType!==1);return e}function ft(e,t,n){t=t||0;if(v.isFunction(t))return v.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return v.grep(e,function(e,r){return e===t===n});if(typeof t=="string"){var r=v.grep(e,function(e){return e.nodeType===1});if(it.test(t))return v.filter(t,r,!n);t=v.filter(t,r)}return v.grep(e,function(e,r){return v.inArray(e,t)>=0===n})}function lt(e){var t=ct.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function At(e,t){if(t.nodeType!==1||!v.hasData(e))return;var n,r,i,s=v._data(e),o=v._data(t,s),u=s.events;if(u){delete o.handle,o.events={};for(n in u)for(r=0,i=u[n].length;r<i;r++)v.event.add(t,n,u[n][r])}o.data&&(o.data=v.extend({},o.data))}function Ot(e,t){var n;if(t.nodeType!==1)return;t.clearAttributes&&t.clearAttributes(),t.mergeAttributes&&t.mergeAttributes(e),n=t.nodeName.toLowerCase(),n==="object"?(t.parentNode&&(t.outerHTML=e.outerHTML),v.support.html5Clone&&e.innerHTML&&!v.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):n==="input"&&Et.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):n==="option"?t.selected=e.defaultSelected:n==="input"||n==="textarea"?t.defaultValue=e.defaultValue:n==="script"&&t.text!==e.text&&(t.text=e.text),t.removeAttribute(v.expando)}function Mt(e){return typeof e.getElementsByTagName!="undefined"?e.getElementsByTagName("*"):typeof e.querySelectorAll!="undefined"?e.querySelectorAll("*"):[]}function _t(e){Et.test(e.type)&&(e.defaultChecked=e.checked)}function Qt(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=Jt.length;while(i--){t=Jt[i]+n;if(t in e)return t}return r}function Gt(e,t){return e=t||e,v.css(e,"display")==="none"||!v.contains(e.ownerDocument,e)}function Yt(e,t){var n,r,i=[],s=0,o=e.length;for(;s<o;s++){n=e[s];if(!n.style)continue;i[s]=v._data(n,"olddisplay"),t?(!i[s]&&n.style.display==="none"&&(n.style.display=""),n.style.display===""&&Gt(n)&&(i[s]=v._data(n,"olddisplay",nn(n.nodeName)))):(r=Dt(n,"display"),!i[s]&&r!=="none"&&v._data(n,"olddisplay",r))}for(s=0;s<o;s++){n=e[s];if(!n.style)continue;if(!t||n.style.display==="none"||n.style.display==="")n.style.display=t?i[s]||"":"none"}return e}function Zt(e,t,n){var r=Rt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function en(e,t,n,r){var i=n===(r?"border":"content")?4:t==="width"?1:0,s=0;for(;i<4;i+=2)n==="margin"&&(s+=v.css(e,n+$t[i],!0)),r?(n==="content"&&(s-=parseFloat(Dt(e,"padding"+$t[i]))||0),n!=="margin"&&(s-=parseFloat(Dt(e,"border"+$t[i]+"Width"))||0)):(s+=parseFloat(Dt(e,"padding"+$t[i]))||0,n!=="padding"&&(s+=parseFloat(Dt(e,"border"+$t[i]+"Width"))||0));return s}function tn(e,t,n){var r=t==="width"?e.offsetWidth:e.offsetHeight,i=!0,s=v.support.boxSizing&&v.css(e,"boxSizing")==="border-box";if(r<=0||r==null){r=Dt(e,t);if(r<0||r==null)r=e.style[t];if(Ut.test(r))return r;i=s&&(v.support.boxSizingReliable||r===e.style[t]),r=parseFloat(r)||0}return r+en(e,t,n||(s?"border":"content"),i)+"px"}function nn(e){if(Wt[e])return Wt[e];var t=v("<"+e+">").appendTo(i.body),n=t.css("display");t.remove();if(n==="none"||n===""){Pt=i.body.appendChild(Pt||v.extend(i.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!Ht||!Pt.createElement)Ht=(Pt.contentWindow||Pt.contentDocument).document,Ht.write("<!doctype html><html><body>"),Ht.close();t=Ht.body.appendChild(Ht.createElement(e)),n=Dt(t,"display"),i.body.removeChild(Pt)}return Wt[e]=n,n}function fn(e,t,n,r){var i;if(v.isArray(t))v.each(t,function(t,i){n||sn.test(e)?r(e,i):fn(e+"["+(typeof i=="object"?t:"")+"]",i,n,r)});else if(!n&&v.type(t)==="object")for(i in t)fn(e+"["+i+"]",t[i],n,r);else r(e,t)}function Cn(e){return function(t,n){typeof t!="string"&&(n=t,t="*");var r,i,s,o=t.toLowerCase().split(y),u=0,a=o.length;if(v.isFunction(n))for(;u<a;u++)r=o[u],s=/^\+/.test(r),s&&(r=r.substr(1)||"*"),i=e[r]=e[r]||[],i[s?"unshift":"push"](n)}}function kn(e,n,r,i,s,o){s=s||n.dataTypes[0],o=o||{},o[s]=!0;var u,a=e[s],f=0,l=a?a.length:0,c=e===Sn;for(;f<l&&(c||!u);f++)u=a[f](n,r,i),typeof u=="string"&&(!c||o[u]?u=t:(n.dataTypes.unshift(u),u=kn(e,n,r,i,u,o)));return(c||!u)&&!o["*"]&&(u=kn(e,n,r,i,"*",o)),u}function Ln(e,n){var r,i,s=v.ajaxSettings.flatOptions||{};for(r in n)n[r]!==t&&((s[r]?e:i||(i={}))[r]=n[r]);i&&v.extend(!0,e,i)}function An(e,n,r){var i,s,o,u,a=e.contents,f=e.dataTypes,l=e.responseFields;for(s in l)s in r&&(n[l[s]]=r[s]);while(f[0]==="*")f.shift(),i===t&&(i=e.mimeType||n.getResponseHeader("content-type"));if(i)for(s in a)if(a[s]&&a[s].test(i)){f.unshift(s);break}if(f[0]in r)o=f[0];else{for(s in r){if(!f[0]||e.converters[s+" "+f[0]]){o=s;break}u||(u=s)}o=o||u}if(o)return o!==f[0]&&f.unshift(o),r[o]}function On(e,t){var n,r,i,s,o=e.dataTypes.slice(),u=o[0],a={},f=0;e.dataFilter&&(t=e.dataFilter(t,e.dataType));if(o[1])for(n in e.converters)a[n.toLowerCase()]=e.converters[n];for(;i=o[++f];)if(i!=="*"){if(u!=="*"&&u!==i){n=a[u+" "+i]||a["* "+i];if(!n)for(r in a){s=r.split(" ");if(s[1]===i){n=a[u+" "+s[0]]||a["* "+s[0]];if(n){n===!0?n=a[r]:a[r]!==!0&&(i=s[0],o.splice(f--,0,i));break}}}if(n!==!0)if(n&&e["throws"])t=n(t);else try{t=n(t)}catch(l){return{state:"parsererror",error:n?l:"No conversion from "+u+" to "+i}}}u=i}return{state:"success",data:t}}function Fn(){try{return new e.XMLHttpRequest}catch(t){}}function In(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}function $n(){return setTimeout(function(){qn=t},0),qn=v.now()}function Jn(e,t){v.each(t,function(t,n){var r=(Vn[t]||[]).concat(Vn["*"]),i=0,s=r.length;for(;i<s;i++)if(r[i].call(e,t,n))return})}function Kn(e,t,n){var r,i=0,s=0,o=Xn.length,u=v.Deferred().always(function(){delete a.elem}),a=function(){var t=qn||$n(),n=Math.max(0,f.startTime+f.duration-t),r=n/f.duration||0,i=1-r,s=0,o=f.tweens.length;for(;s<o;s++)f.tweens[s].run(i);return u.notifyWith(e,[f,i,n]),i<1&&o?n:(u.resolveWith(e,[f]),!1)},f=u.promise({elem:e,props:v.extend({},t),opts:v.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:qn||$n(),duration:n.duration,tweens:[],createTween:function(t,n,r){var i=v.Tween(e,f.opts,t,n,f.opts.specialEasing[t]||f.opts.easing);return f.tweens.push(i),i},stop:function(t){var n=0,r=t?f.tweens.length:0;for(;n<r;n++)f.tweens[n].run(1);return t?u.resolveWith(e,[f,t]):u.rejectWith(e,[f,t]),this}}),l=f.props;Qn(l,f.opts.specialEasing);for(;i<o;i++){r=Xn[i].call(f,e,l,f.opts);if(r)return r}return Jn(f,l),v.isFunction(f.opts.start)&&f.opts.start.call(e,f),v.fx.timer(v.extend(a,{anim:f,queue:f.opts.queue,elem:e})),f.progress(f.opts.progress).done(f.opts.done,f.opts.complete).fail(f.opts.fail).always(f.opts.always)}function Qn(e,t){var n,r,i,s,o;for(n in e){r=v.camelCase(n),i=t[r],s=e[n],v.isArray(s)&&(i=s[1],s=e[n]=s[0]),n!==r&&(e[r]=s,delete e[n]),o=v.cssHooks[r];if(o&&"expand"in o){s=o.expand(s),delete e[r];for(n in s)n in e||(e[n]=s[n],t[n]=i)}else t[r]=i}}function Gn(e,t,n){var r,i,s,o,u,a,f,l,c,h=this,p=e.style,d={},m=[],g=e.nodeType&&Gt(e);n.queue||(l=v._queueHooks(e,"fx"),l.unqueued==null&&(l.unqueued=0,c=l.empty.fire,l.empty.fire=function(){l.unqueued||c()}),l.unqueued++,h.always(function(){h.always(function(){l.unqueued--,v.queue(e,"fx").length||l.empty.fire()})})),e.nodeType===1&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],v.css(e,"display")==="inline"&&v.css(e,"float")==="none"&&(!v.support.inlineBlockNeedsLayout||nn(e.nodeName)==="inline"?p.display="inline-block":p.zoom=1)),n.overflow&&(p.overflow="hidden",v.support.shrinkWrapBlocks||h.done(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t){s=t[r];if(Un.exec(s)){delete t[r],a=a||s==="toggle";if(s===(g?"hide":"show"))continue;m.push(r)}}o=m.length;if(o){u=v._data(e,"fxshow")||v._data(e,"fxshow",{}),"hidden"in u&&(g=u.hidden),a&&(u.hidden=!g),g?v(e).show():h.done(function(){v(e).hide()}),h.done(function(){var t;v.removeData(e,"fxshow",!0);for(t in d)v.style(e,t,d[t])});for(r=0;r<o;r++)i=m[r],f=h.createTween(i,g?u[i]:0),d[i]=u[i]||v.style(e,i),i in u||(u[i]=f.start,g&&(f.end=f.start,f.start=i==="width"||i==="height"?1:0))}}function Yn(e,t,n,r,i){return new Yn.prototype.init(e,t,n,r,i)}function Zn(e,t){var n,r={height:e},i=0;t=t?1:0;for(;i<4;i+=2-t)n=$t[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}function tr(e){return v.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:!1}var n,r,i=e.document,s=e.location,o=e.navigator,u=e.jQuery,a=e.$,f=Array.prototype.push,l=Array.prototype.slice,c=Array.prototype.indexOf,h=Object.prototype.toString,p=Object.prototype.hasOwnProperty,d=String.prototype.trim,v=function(e,t){return new v.fn.init(e,t,n)},m=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,g=/\S/,y=/\s+/,b=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,w=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,E=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,S=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,T=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,N=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,C=/^-ms-/,k=/-([\da-z])/gi,L=function(e,t){return(t+"").toUpperCase()},A=function(){i.addEventListener?(i.removeEventListener("DOMContentLoaded",A,!1),v.ready()):i.readyState==="complete"&&(i.detachEvent("onreadystatechange",A),v.ready())},O={};v.fn=v.prototype={constructor:v,init:function(e,n,r){var s,o,u,a;if(!e)return this;if(e.nodeType)return this.context=this[0]=e,this.length=1,this;if(typeof e=="string"){e.charAt(0)==="<"&&e.charAt(e.length-1)===">"&&e.length>=3?s=[null,e,null]:s=w.exec(e);if(s&&(s[1]||!n)){if(s[1])return n=n instanceof v?n[0]:n,a=n&&n.nodeType?n.ownerDocument||n:i,e=v.parseHTML(s[1],a,!0),E.test(s[1])&&v.isPlainObject(n)&&this.attr.call(e,n,!0),v.merge(this,e);o=i.getElementById(s[2]);if(o&&o.parentNode){if(o.id!==s[2])return r.find(e);this.length=1,this[0]=o}return this.context=i,this.selector=e,this}return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e)}return v.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),v.makeArray(e,this))},selector:"",jquery:"1.8.3",length:0,size:function(){return this.length},toArray:function(){return l.call(this)},get:function(e){return e==null?this.toArray():e<0?this[this.length+e]:this[e]},pushStack:function(e,t,n){var r=v.merge(this.constructor(),e);return r.prevObject=this,r.context=this.context,t==="find"?r.selector=this.selector+(this.selector?" ":"")+n:t&&(r.selector=this.selector+"."+t+"("+n+")"),r},each:function(e,t){return v.each(this,e,t)},ready:function(e){return v.ready.promise().done(e),this},eq:function(e){return e=+e,e===-1?this.slice(e):this.slice(e,e+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(l.apply(this,arguments),"slice",l.call(arguments).join(","))},map:function(e){return this.pushStack(v.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:[].sort,splice:[].splice},v.fn.init.prototype=v.fn,v.extend=v.fn.extend=function(){var e,n,r,i,s,o,u=arguments[0]||{},a=1,f=arguments.length,l=!1;typeof u=="boolean"&&(l=u,u=arguments[1]||{},a=2),typeof u!="object"&&!v.isFunction(u)&&(u={}),f===a&&(u=this,--a);for(;a<f;a++)if((e=arguments[a])!=null)for(n in e){r=u[n],i=e[n];if(u===i)continue;l&&i&&(v.isPlainObject(i)||(s=v.isArray(i)))?(s?(s=!1,o=r&&v.isArray(r)?r:[]):o=r&&v.isPlainObject(r)?r:{},u[n]=v.extend(l,o,i)):i!==t&&(u[n]=i)}return u},v.extend({noConflict:function(t){return e.$===v&&(e.$=a),t&&e.jQuery===v&&(e.jQuery=u),v},isReady:!1,readyWait:1,holdReady:function(e){e?v.readyWait++:v.ready(!0)},ready:function(e){if(e===!0?--v.readyWait:v.isReady)return;if(!i.body)return setTimeout(v.ready,1);v.isReady=!0;if(e!==!0&&--v.readyWait>0)return;r.resolveWith(i,[v]),v.fn.trigger&&v(i).trigger("ready").off("ready")},isFunction:function(e){return v.type(e)==="function"},isArray:Array.isArray||function(e){return v.type(e)==="array"},isWindow:function(e){return e!=null&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return e==null?String(e):O[h.call(e)]||"object"},isPlainObject:function(e){if(!e||v.type(e)!=="object"||e.nodeType||v.isWindow(e))return!1;try{if(e.constructor&&!p.call(e,"constructor")&&!p.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||p.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw new Error(e)},parseHTML:function(e,t,n){var r;return!e||typeof e!="string"?null:(typeof t=="boolean"&&(n=t,t=0),t=t||i,(r=E.exec(e))?[t.createElement(r[1])]:(r=v.buildFragment([e],t,n?null:[]),v.merge([],(r.cacheable?v.clone(r.fragment):r.fragment).childNodes)))},parseJSON:function(t){if(!t||typeof t!="string")return null;t=v.trim(t);if(e.JSON&&e.JSON.parse)return e.JSON.parse(t);if(S.test(t.replace(T,"@").replace(N,"]").replace(x,"")))return(new Function("return "+t))();v.error("Invalid JSON: "+t)},parseXML:function(n){var r,i;if(!n||typeof n!="string")return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(s){r=t}return(!r||!r.documentElement||r.getElementsByTagName("parsererror").length)&&v.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&g.test(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(C,"ms-").replace(k,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,n,r){var i,s=0,o=e.length,u=o===t||v.isFunction(e);if(r){if(u){for(i in e)if(n.apply(e[i],r)===!1)break}else for(;s<o;)if(n.apply(e[s++],r)===!1)break}else if(u){for(i in e)if(n.call(e[i],i,e[i])===!1)break}else for(;s<o;)if(n.call(e[s],s,e[s++])===!1)break;return e},trim:d&&!d.call("\ufeff\u00a0")?function(e){return e==null?"":d.call(e)}:function(e){return e==null?"":(e+"").replace(b,"")},makeArray:function(e,t){var n,r=t||[];return e!=null&&(n=v.type(e),e.length==null||n==="string"||n==="function"||n==="regexp"||v.isWindow(e)?f.call(r,e):v.merge(r,e)),r},inArray:function(e,t,n){var r;if(t){if(c)return c.call(t,e,n);r=t.length,n=n?n<0?Math.max(0,r+n):n:0;for(;n<r;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,s=0;if(typeof r=="number")for(;s<r;s++)e[i++]=n[s];else while(n[s]!==t)e[i++]=n[s++];return e.length=i,e},grep:function(e,t,n){var r,i=[],s=0,o=e.length;n=!!n;for(;s<o;s++)r=!!t(e[s],s),n!==r&&i.push(e[s]);return i},map:function(e,n,r){var i,s,o=[],u=0,a=e.length,f=e instanceof v||a!==t&&typeof a=="number"&&(a>0&&e[0]&&e[a-1]||a===0||v.isArray(e));if(f)for(;u<a;u++)i=n(e[u],u,r),i!=null&&(o[o.length]=i);else for(s in e)i=n(e[s],s,r),i!=null&&(o[o.length]=i);return o.concat.apply([],o)},guid:1,proxy:function(e,n){var r,i,s;return typeof n=="string"&&(r=e[n],n=e,e=r),v.isFunction(e)?(i=l.call(arguments,2),s=function(){return e.apply(n,i.concat(l.call(arguments)))},s.guid=e.guid=e.guid||v.guid++,s):t},access:function(e,n,r,i,s,o,u){var a,f=r==null,l=0,c=e.length;if(r&&typeof r=="object"){for(l in r)v.access(e,n,l,r[l],1,o,i);s=1}else if(i!==t){a=u===t&&v.isFunction(i),f&&(a?(a=n,n=function(e,t,n){return a.call(v(e),n)}):(n.call(e,i),n=null));if(n)for(;l<c;l++)n(e[l],r,a?i.call(e[l],l,n(e[l],r)):i,u);s=1}return s?e:f?n.call(e):c?n(e[0],r):o},now:function(){return(new Date).getTime()}}),v.ready.promise=function(t){if(!r){r=v.Deferred();if(i.readyState==="complete")setTimeout(v.ready,1);else if(i.addEventListener)i.addEventListener("DOMContentLoaded",A,!1),e.addEventListener("load",v.ready,!1);else{i.attachEvent("onreadystatechange",A),e.attachEvent("onload",v.ready);var n=!1;try{n=e.frameElement==null&&i.documentElement}catch(s){}n&&n.doScroll&&function o(){if(!v.isReady){try{n.doScroll("left")}catch(e){return setTimeout(o,50)}v.ready()}}()}}return r.promise(t)},v.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(e,t){O["[object "+t+"]"]=t.toLowerCase()}),n=v(i);var M={};v.Callbacks=function(e){e=typeof e=="string"?M[e]||_(e):v.extend({},e);var n,r,i,s,o,u,a=[],f=!e.once&&[],l=function(t){n=e.memory&&t,r=!0,u=s||0,s=0,o=a.length,i=!0;for(;a&&u<o;u++)if(a[u].apply(t[0],t[1])===!1&&e.stopOnFalse){n=!1;break}i=!1,a&&(f?f.length&&l(f.shift()):n?a=[]:c.disable())},c={add:function(){if(a){var t=a.length;(function r(t){v.each(t,function(t,n){var i=v.type(n);i==="function"?(!e.unique||!c.has(n))&&a.push(n):n&&n.length&&i!=="string"&&r(n)})})(arguments),i?o=a.length:n&&(s=t,l(n))}return this},remove:function(){return a&&v.each(arguments,function(e,t){var n;while((n=v.inArray(t,a,n))>-1)a.splice(n,1),i&&(n<=o&&o--,n<=u&&u--)}),this},has:function(e){return v.inArray(e,a)>-1},empty:function(){return a=[],this},disable:function(){return a=f=n=t,this},disabled:function(){return!a},lock:function(){return f=t,n||c.disable(),this},locked:function(){return!f},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],a&&(!r||f)&&(i?f.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!r}};return c},v.extend({Deferred:function(e){var t=[["resolve","done",v.Callbacks("once memory"),"resolved"],["reject","fail",v.Callbacks("once memory"),"rejected"],["notify","progress",v.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return v.Deferred(function(n){v.each(t,function(t,r){var s=r[0],o=e[t];i[r[1]](v.isFunction(o)?function(){var e=o.apply(this,arguments);e&&v.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===i?n:this,[e])}:n[s])}),e=null}).promise()},promise:function(e){return e!=null?v.extend(e,r):r}},i={};return r.pipe=r.then,v.each(t,function(e,s){var o=s[2],u=s[3];r[s[1]]=o.add,u&&o.add(function(){n=u},t[e^1][2].disable,t[2][2].lock),i[s[0]]=o.fire,i[s[0]+"With"]=o.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=l.call(arguments),r=n.length,i=r!==1||e&&v.isFunction(e.promise)?r:0,s=i===1?e:v.Deferred(),o=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?l.call(arguments):r,n===u?s.notifyWith(t,n):--i||s.resolveWith(t,n)}},u,a,f;if(r>1){u=new Array(r),a=new Array(r),f=new Array(r);for(;t<r;t++)n[t]&&v.isFunction(n[t].promise)?n[t].promise().done(o(t,f,n)).fail(s.reject).progress(o(t,a,u)):--i}return i||s.resolveWith(f,n),s.promise()}}),v.support=function(){var t,n,r,s,o,u,a,f,l,c,h,p=i.createElement("div");p.setAttribute("className","t"),p.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=p.getElementsByTagName("*"),r=p.getElementsByTagName("a")[0];if(!n||!r||!n.length)return{};s=i.createElement("select"),o=s.appendChild(i.createElement("option")),u=p.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:r.getAttribute("href")==="/a",opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:u.value==="on",optSelected:o.selected,getSetAttribute:p.className!=="t",enctype:!!i.createElement("form").enctype,html5Clone:i.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:i.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},u.checked=!0,t.noCloneChecked=u.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!o.disabled;try{delete p.test}catch(d){t.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",h=function(){t.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick"),p.detachEvent("onclick",h)),u=i.createElement("input"),u.value="t",u.setAttribute("type","radio"),t.radioValue=u.value==="t",u.setAttribute("checked","checked"),u.setAttribute("name","t"),p.appendChild(u),a=i.createDocumentFragment(),a.appendChild(p.lastChild),t.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,t.appendChecked=u.checked,a.removeChild(u),a.appendChild(p);if(p.attachEvent)for(l in{submit:!0,change:!0,focusin:!0})f="on"+l,c=f in p,c||(p.setAttribute(f,"return;"),c=typeof p[f]=="function"),t[l+"Bubbles"]=c;return v(function(){var n,r,s,o,u="padding:0;margin:0;border:0;display:block;overflow:hidden;",a=i.getElementsByTagName("body")[0];if(!a)return;n=i.createElement("div"),n.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",a.insertBefore(n,a.firstChild),r=i.createElement("div"),n.appendChild(r),r.innerHTML="<table><tr><td></td><td>t</td></tr></table>",s=r.getElementsByTagName("td"),s[0].style.cssText="padding:0;margin:0;border:0;display:none",c=s[0].offsetHeight===0,s[0].style.display="",s[1].style.display="none",t.reliableHiddenOffsets=c&&s[0].offsetHeight===0,r.innerHTML="",r.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=r.offsetWidth===4,t.doesNotIncludeMarginInBodyOffset=a.offsetTop!==1,e.getComputedStyle&&(t.pixelPosition=(e.getComputedStyle(r,null)||{}).top!=="1%",t.boxSizingReliable=(e.getComputedStyle(r,null)||{width:"4px"}).width==="4px",o=i.createElement("div"),o.style.cssText=r.style.cssText=u,o.style.marginRight=o.style.width="0",r.style.width="1px",r.appendChild(o),t.reliableMarginRight=!parseFloat((e.getComputedStyle(o,null)||{}).marginRight)),typeof r.style.zoom!="undefined"&&(r.innerHTML="",r.style.cssText=u+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=r.offsetWidth===3,r.style.display="block",r.style.overflow="visible",r.innerHTML="<div></div>",r.firstChild.style.width="5px",t.shrinkWrapBlocks=r.offsetWidth!==3,n.style.zoom=1),a.removeChild(n),n=r=s=o=null}),a.removeChild(p),n=r=s=o=u=a=p=null,t}();var D=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;v.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(v.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?v.cache[e[v.expando]]:e[v.expando],!!e&&!B(e)},data:function(e,n,r,i){if(!v.acceptData(e))return;var s,o,u=v.expando,a=typeof n=="string",f=e.nodeType,l=f?v.cache:e,c=f?e[u]:e[u]&&u;if((!c||!l[c]||!i&&!l[c].data)&&a&&r===t)return;c||(f?e[u]=c=v.deletedIds.pop()||v.guid++:c=u),l[c]||(l[c]={},f||(l[c].toJSON=v.noop));if(typeof n=="object"||typeof n=="function")i?l[c]=v.extend(l[c],n):l[c].data=v.extend(l[c].data,n);return s=l[c],i||(s.data||(s.data={}),s=s.data),r!==t&&(s[v.camelCase(n)]=r),a?(o=s[n],o==null&&(o=s[v.camelCase(n)])):o=s,o},removeData:function(e,t,n){if(!v.acceptData(e))return;var r,i,s,o=e.nodeType,u=o?v.cache:e,a=o?e[v.expando]:v.expando;if(!u[a])return;if(t){r=n?u[a]:u[a].data;if(r){v.isArray(t)||(t in r?t=[t]:(t=v.camelCase(t),t in r?t=[t]:t=t.split(" ")));for(i=0,s=t.length;i<s;i++)delete r[t[i]];if(!(n?B:v.isEmptyObject)(r))return}}if(!n){delete u[a].data;if(!B(u[a]))return}o?v.cleanData([e],!0):v.support.deleteExpando||u!=u.window?delete u[a]:u[a]=null},_data:function(e,t,n){return v.data(e,t,n,!0)},acceptData:function(e){var t=e.nodeName&&v.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),v.fn.extend({data:function(e,n){var r,i,s,o,u,a=this[0],f=0,l=null;if(e===t){if(this.length){l=v.data(a);if(a.nodeType===1&&!v._data(a,"parsedAttrs")){s=a.attributes;for(u=s.length;f<u;f++)o=s[f].name,o.indexOf("data-")||(o=v.camelCase(o.substring(5)),H(a,o,l[o]));v._data(a,"parsedAttrs",!0)}}return l}return typeof e=="object"?this.each(function(){v.data(this,e)}):(r=e.split(".",2),r[1]=r[1]?"."+r[1]:"",i=r[1]+"!",v.access(this,function(n){if(n===t)return l=this.triggerHandler("getData"+i,[r[0]]),l===t&&a&&(l=v.data(a,e),l=H(a,e,l)),l===t&&r[1]?this.data(r[0]):l;r[1]=n,this.each(function(){var t=v(this);t.triggerHandler("setData"+i,r),v.data(this,e,n),t.triggerHandler("changeData"+i,r)})},null,n,arguments.length>1,null,!1))},removeData:function(e){return this.each(function(){v.removeData(this,e)})}}),v.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=v._data(e,t),n&&(!r||v.isArray(n)?r=v._data(e,t,v.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=v.queue(e,t),r=n.length,i=n.shift(),s=v._queueHooks(e,t),o=function(){v.dequeue(e,t)};i==="inprogress"&&(i=n.shift(),r--),i&&(t==="fx"&&n.unshift("inprogress"),delete s.stop,i.call(e,o,s)),!r&&s&&s.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return v._data(e,n)||v._data(e,n,{empty:v.Callbacks("once memory").add(function(){v.removeData(e,t+"queue",!0),v.removeData(e,n,!0)})})}}),v.fn.extend({queue:function(e,n){var r=2;return typeof e!="string"&&(n=e,e="fx",r--),arguments.length<r?v.queue(this[0],e):n===t?this:this.each(function(){var t=v.queue(this,e,n);v._queueHooks(this,e),e==="fx"&&t[0]!=="inprogress"&&v.dequeue(this,e)})},dequeue:function(e){return this.each(function(){v.dequeue(this,e)})},delay:function(e,t){return e=v.fx?v.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,s=v.Deferred(),o=this,u=this.length,a=function(){--i||s.resolveWith(o,[o])};typeof e!="string"&&(n=e,e=t),e=e||"fx";while(u--)r=v._data(o[u],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(a));return a(),s.promise(n)}});var j,F,I,q=/[\t\r\n]/g,R=/\r/g,U=/^(?:button|input)$/i,z=/^(?:button|input|object|select|textarea)$/i,W=/^a(?:rea|)$/i,X=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,V=v.support.getSetAttribute;v.fn.extend({attr:function(e,t){return v.access(this,v.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){v.removeAttr(this,e)})},prop:function(e,t){return v.access(this,v.prop,e,t,arguments.length>1)},removeProp:function(e){return e=v.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,s,o,u;if(v.isFunction(e))return this.each(function(t){v(this).addClass(e.call(this,t,this.className))});if(e&&typeof e=="string"){t=e.split(y);for(n=0,r=this.length;n<r;n++){i=this[n];if(i.nodeType===1)if(!i.className&&t.length===1)i.className=e;else{s=" "+i.className+" ";for(o=0,u=t.length;o<u;o++)s.indexOf(" "+t[o]+" ")<0&&(s+=t[o]+" ");i.className=v.trim(s)}}}return this},removeClass:function(e){var n,r,i,s,o,u,a;if(v.isFunction(e))return this.each(function(t){v(this).removeClass(e.call(this,t,this.className))});if(e&&typeof e=="string"||e===t){n=(e||"").split(y);for(u=0,a=this.length;u<a;u++){i=this[u];if(i.nodeType===1&&i.className){r=(" "+i.className+" ").replace(q," ");for(s=0,o=n.length;s<o;s++)while(r.indexOf(" "+n[s]+" ")>=0)r=r.replace(" "+n[s]+" "," ");i.className=e?v.trim(r):""}}}return this},toggleClass:function(e,t){var n=typeof e,r=typeof t=="boolean";return v.isFunction(e)?this.each(function(n){v(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if(n==="string"){var i,s=0,o=v(this),u=t,a=e.split(y);while(i=a[s++])u=r?u:!o.hasClass(i),o[u?"addClass":"removeClass"](i)}else if(n==="undefined"||n==="boolean")this.className&&v._data(this,"__className__",this.className),this.className=this.className||e===!1?"":v._data(this,"__className__")||""})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;n<r;n++)if(this[n].nodeType===1&&(" "+this[n].className+" ").replace(q," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,s=this[0];if(!arguments.length){if(s)return n=v.valHooks[s.type]||v.valHooks[s.nodeName.toLowerCase()],n&&"get"in n&&(r=n.get(s,"value"))!==t?r:(r=s.value,typeof r=="string"?r.replace(R,""):r==null?"":r);return}return i=v.isFunction(e),this.each(function(r){var s,o=v(this);if(this.nodeType!==1)return;i?s=e.call(this,r,o.val()):s=e,s==null?s="":typeof s=="number"?s+="":v.isArray(s)&&(s=v.map(s,function(e){return e==null?"":e+""})),n=v.valHooks[this.type]||v.valHooks[this.nodeName.toLowerCase()];if(!n||!("set"in n)||n.set(this,s,"value")===t)this.value=s})}}),v.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,s=e.type==="select-one"||i<0,o=s?null:[],u=s?i+1:r.length,a=i<0?u:s?i:0;for(;a<u;a++){n=r[a];if((n.selected||a===i)&&(v.support.optDisabled?!n.disabled:n.getAttribute("disabled")===null)&&(!n.parentNode.disabled||!v.nodeName(n.parentNode,"optgroup"))){t=v(n).val();if(s)return t;o.push(t)}}return o},set:function(e,t){var n=v.makeArray(t);return v(e).find("option").each(function(){this.selected=v.inArray(v(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attrFn:{},attr:function(e,n,r,i){var s,o,u,a=e.nodeType;if(!e||a===3||a===8||a===2)return;if(i&&v.isFunction(v.fn[n]))return v(e)[n](r);if(typeof e.getAttribute=="undefined")return v.prop(e,n,r);u=a!==1||!v.isXMLDoc(e),u&&(n=n.toLowerCase(),o=v.attrHooks[n]||(X.test(n)?F:j));if(r!==t){if(r===null){v.removeAttr(e,n);return}return o&&"set"in o&&u&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r)}return o&&"get"in o&&u&&(s=o.get(e,n))!==null?s:(s=e.getAttribute(n),s===null?t:s)},removeAttr:function(e,t){var n,r,i,s,o=0;if(t&&e.nodeType===1){r=t.split(y);for(;o<r.length;o++)i=r[o],i&&(n=v.propFix[i]||i,s=X.test(i),s||v.attr(e,i,""),e.removeAttribute(V?i:n),s&&n in e&&(e[n]=!1))}},attrHooks:{type:{set:function(e,t){if(U.test(e.nodeName)&&e.parentNode)v.error("type property can't be changed");else if(!v.support.radioValue&&t==="radio"&&v.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}},value:{get:function(e,t){return j&&v.nodeName(e,"button")?j.get(e,t):t in e?e.value:null},set:function(e,t,n){if(j&&v.nodeName(e,"button"))return j.set(e,t,n);e.value=t}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,s,o,u=e.nodeType;if(!e||u===3||u===8||u===2)return;return o=u!==1||!v.isXMLDoc(e),o&&(n=v.propFix[n]||n,s=v.propHooks[n]),r!==t?s&&"set"in s&&(i=s.set(e,r,n))!==t?i:e[n]=r:s&&"get"in s&&(i=s.get(e,n))!==null?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):z.test(e.nodeName)||W.test(e.nodeName)&&e.href?0:t}}}}),F={get:function(e,n){var r,i=v.prop(e,n);return i===!0||typeof i!="boolean"&&(r=e.getAttributeNode(n))&&r.nodeValue!==!1?n.toLowerCase():t},set:function(e,t,n){var r;return t===!1?v.removeAttr(e,n):(r=v.propFix[n]||n,r in e&&(e[r]=!0),e.setAttribute(n,n.toLowerCase())),n}},V||(I={name:!0,id:!0,coords:!0},j=v.valHooks.button={get:function(e,n){var r;return r=e.getAttributeNode(n),r&&(I[n]?r.value!=="":r.specified)?r.value:t},set:function(e,t,n){var r=e.getAttributeNode(n);return r||(r=i.createAttribute(n),e.setAttributeNode(r)),r.value=t+""}},v.each(["width","height"],function(e,t){v.attrHooks[t]=v.extend(v.attrHooks[t],{set:function(e,n){if(n==="")return e.setAttribute(t,"auto"),n}})}),v.attrHooks.contenteditable={get:j.get,set:function(e,t,n){t===""&&(t="false"),j.set(e,t,n)}}),v.support.hrefNormalized||v.each(["href","src","width","height"],function(e,n){v.attrHooks[n]=v.extend(v.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return r===null?t:r}})}),v.support.style||(v.attrHooks.style={get:function(e){return e.style.cssText.toLowerCase()||t},set:function(e,t){return e.style.cssText=t+""}}),v.support.optSelected||(v.propHooks.selected=v.extend(v.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),v.support.enctype||(v.propFix.enctype="encoding"),v.support.checkOn||v.each(["radio","checkbox"],function(){v.valHooks[this]={get:function(e){return e.getAttribute("value")===null?"on":e.value}}}),v.each(["radio","checkbox"],function(){v.valHooks[this]=v.extend(v.valHooks[this],{set:function(e,t){if(v.isArray(t))return e.checked=v.inArray(v(e).val(),t)>=0}})});var $=/^(?:textarea|input|select)$/i,J=/^([^\.]*|)(?:\.(.+)|)$/,K=/(?:^|\s)hover(\.\S+|)\b/,Q=/^key/,G=/^(?:mouse|contextmenu)|click/,Y=/^(?:focusinfocus|focusoutblur)$/,Z=function(e){return v.event.special.hover?e:e.replace(K,"mouseenter$1 mouseleave$1")};v.event={add:function(e,n,r,i,s){var o,u,a,f,l,c,h,p,d,m,g;if(e.nodeType===3||e.nodeType===8||!n||!r||!(o=v._data(e)))return;r.handler&&(d=r,r=d.handler,s=d.selector),r.guid||(r.guid=v.guid++),a=o.events,a||(o.events=a={}),u=o.handle,u||(o.handle=u=function(e){return typeof v=="undefined"||!!e&&v.event.triggered===e.type?t:v.event.dispatch.apply(u.elem,arguments)},u.elem=e),n=v.trim(Z(n)).split(" ");for(f=0;f<n.length;f++){l=J.exec(n[f])||[],c=l[1],h=(l[2]||"").split(".").sort(),g=v.event.special[c]||{},c=(s?g.delegateType:g.bindType)||c,g=v.event.special[c]||{},p=v.extend({type:c,origType:l[1],data:i,handler:r,guid:r.guid,selector:s,needsContext:s&&v.expr.match.needsContext.test(s),namespace:h.join(".")},d),m=a[c];if(!m){m=a[c]=[],m.delegateCount=0;if(!g.setup||g.setup.call(e,i,h,u)===!1)e.addEventListener?e.addEventListener(c,u,!1):e.attachEvent&&e.attachEvent("on"+c,u)}g.add&&(g.add.call(e,p),p.handler.guid||(p.handler.guid=r.guid)),s?m.splice(m.delegateCount++,0,p):m.push(p),v.event.global[c]=!0}e=null},global:{},remove:function(e,t,n,r,i){var s,o,u,a,f,l,c,h,p,d,m,g=v.hasData(e)&&v._data(e);if(!g||!(h=g.events))return;t=v.trim(Z(t||"")).split(" ");for(s=0;s<t.length;s++){o=J.exec(t[s])||[],u=a=o[1],f=o[2];if(!u){for(u in h)v.event.remove(e,u+t[s],n,r,!0);continue}p=v.event.special[u]||{},u=(r?p.delegateType:p.bindType)||u,d=h[u]||[],l=d.length,f=f?new RegExp("(^|\\.)"+f.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(c=0;c<d.length;c++)m=d[c],(i||a===m.origType)&&(!n||n.guid===m.guid)&&(!f||f.test(m.namespace))&&(!r||r===m.selector||r==="**"&&m.selector)&&(d.splice(c--,1),m.selector&&d.delegateCount--,p.remove&&p.remove.call(e,m));d.length===0&&l!==d.length&&((!p.teardown||p.teardown.call(e,f,g.handle)===!1)&&v.removeEvent(e,u,g.handle),delete h[u])}v.isEmptyObject(h)&&(delete g.handle,v.removeData(e,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(n,r,s,o){if(!s||s.nodeType!==3&&s.nodeType!==8){var u,a,f,l,c,h,p,d,m,g,y=n.type||n,b=[];if(Y.test(y+v.event.triggered))return;y.indexOf("!")>=0&&(y=y.slice(0,-1),a=!0),y.indexOf(".")>=0&&(b=y.split("."),y=b.shift(),b.sort());if((!s||v.event.customEvent[y])&&!v.event.global[y])return;n=typeof n=="object"?n[v.expando]?n:new v.Event(y,n):new v.Event(y),n.type=y,n.isTrigger=!0,n.exclusive=a,n.namespace=b.join("."),n.namespace_re=n.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,h=y.indexOf(":")<0?"on"+y:"";if(!s){u=v.cache;for(f in u)u[f].events&&u[f].events[y]&&v.event.trigger(n,r,u[f].handle.elem,!0);return}n.result=t,n.target||(n.target=s),r=r!=null?v.makeArray(r):[],r.unshift(n),p=v.event.special[y]||{};if(p.trigger&&p.trigger.apply(s,r)===!1)return;m=[[s,p.bindType||y]];if(!o&&!p.noBubble&&!v.isWindow(s)){g=p.delegateType||y,l=Y.test(g+y)?s:s.parentNode;for(c=s;l;l=l.parentNode)m.push([l,g]),c=l;c===(s.ownerDocument||i)&&m.push([c.defaultView||c.parentWindow||e,g])}for(f=0;f<m.length&&!n.isPropagationStopped();f++)l=m[f][0],n.type=m[f][1],d=(v._data(l,"events")||{})[n.type]&&v._data(l,"handle"),d&&d.apply(l,r),d=h&&l[h],d&&v.acceptData(l)&&d.apply&&d.apply(l,r)===!1&&n.preventDefault();return n.type=y,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(s.ownerDocument,r)===!1)&&(y!=="click"||!v.nodeName(s,"a"))&&v.acceptData(s)&&h&&s[y]&&(y!=="focus"&&y!=="blur"||n.target.offsetWidth!==0)&&!v.isWindow(s)&&(c=s[h],c&&(s[h]=null),v.event.triggered=y,s[y](),v.event.triggered=t,c&&(s[h]=c)),n.result}return},dispatch:function(n){n=v.event.fix(n||e.event);var r,i,s,o,u,a,f,c,h,p,d=(v._data(this,"events")||{})[n.type]||[],m=d.delegateCount,g=l.call(arguments),y=!n.exclusive&&!n.namespace,b=v.event.special[n.type]||{},w=[];g[0]=n,n.delegateTarget=this;if(b.preDispatch&&b.preDispatch.call(this,n)===!1)return;if(m&&(!n.button||n.type!=="click"))for(s=n.target;s!=this;s=s.parentNode||this)if(s.disabled!==!0||n.type!=="click"){u={},f=[];for(r=0;r<m;r++)c=d[r],h=c.selector,u[h]===t&&(u[h]=c.needsContext?v(h,this).index(s)>=0:v.find(h,this,null,[s]).length),u[h]&&f.push(c);f.length&&w.push({elem:s,matches:f})}d.length>m&&w.push({elem:this,matches:d.slice(m)});for(r=0;r<w.length&&!n.isPropagationStopped();r++){a=w[r],n.currentTarget=a.elem;for(i=0;i<a.matches.length&&!n.isImmediatePropagationStopped();i++){c=a.matches[i];if(y||!n.namespace&&!c.namespace||n.namespace_re&&n.namespace_re.test(c.namespace))n.data=c.data,n.handleObj=c,o=((v.event.special[c.origType]||{}).handle||c.handler).apply(a.elem,g),o!==t&&(n.result=o,o===!1&&(n.preventDefault(),n.stopPropagation()))}}return b.postDispatch&&b.postDispatch.call(this,n),n.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return e.which==null&&(e.which=t.charCode!=null?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,s,o,u=n.button,a=n.fromElement;return e.pageX==null&&n.clientX!=null&&(r=e.target.ownerDocument||i,s=r.documentElement,o=r.body,e.pageX=n.clientX+(s&&s.scrollLeft||o&&o.scrollLeft||0)-(s&&s.clientLeft||o&&o.clientLeft||0),e.pageY=n.clientY+(s&&s.scrollTop||o&&o.scrollTop||0)-(s&&s.clientTop||o&&o.clientTop||0)),!e.relatedTarget&&a&&(e.relatedTarget=a===e.target?n.toElement:a),!e.which&&u!==t&&(e.which=u&1?1:u&2?3:u&4?2:0),e}},fix:function(e){if(e[v.expando])return e;var t,n,r=e,s=v.event.fixHooks[e.type]||{},o=s.props?this.props.concat(s.props):this.props;e=v.Event(r);for(t=o.length;t;)n=o[--t],e[n]=r[n];return e.target||(e.target=r.srcElement||i),e.target.nodeType===3&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,r):e},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(e,t,n){v.isWindow(this)&&(this.onbeforeunload=n)},teardown:function(e,t){this.onbeforeunload===t&&(this.onbeforeunload=null)}}},simulate:function(e,t,n,r){var i=v.extend(new v.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?v.event.trigger(i,null,t):v.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},v.event.handle=v.event.dispatch,v.removeEvent=i.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]=="undefined"&&(e[r]=null),e.detachEvent(r,n))},v.Event=function(e,t){if(!(this instanceof v.Event))return new v.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?tt:et):this.type=e,t&&v.extend(this,t),this.timeStamp=e&&e.timeStamp||v.now(),this[v.expando]=!0},v.Event.prototype={preventDefault:function(){this.isDefaultPrevented=tt;var e=this.originalEvent;if(!e)return;e.preventDefault?e.preventDefault():e.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=tt;var e=this.originalEvent;if(!e)return;e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=tt,this.stopPropagation()},isDefaultPrevented:et,isPropagationStopped:et,isImmediatePropagationStopped:et},v.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){v.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,s=e.handleObj,o=s.selector;if(!i||i!==r&&!v.contains(r,i))e.type=s.origType,n=s.handler.apply(this,arguments),e.type=t;return n}}}),v.support.submitBubbles||(v.event.special.submit={setup:function(){if(v.nodeName(this,"form"))return!1;v.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=v.nodeName(n,"input")||v.nodeName(n,"button")?n.form:t;r&&!v._data(r,"_submit_attached")&&(v.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),v._data(r,"_submit_attached",!0))})},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&v.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){if(v.nodeName(this,"form"))return!1;v.event.remove(this,"._submit")}}),v.support.changeBubbles||(v.event.special.change={setup:function(){if($.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")v.event.add(this,"propertychange._change",function(e){e.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),v.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),v.event.simulate("change",this,e,!0)});return!1}v.event.add(this,"beforeactivate._change",function(e){var t=e.target;$.test(t.nodeName)&&!v._data(t,"_change_attached")&&(v.event.add(t,"change._change",function(e){this.parentNode&&!e.isSimulated&&!e.isTrigger&&v.event.simulate("change",this.parentNode,e,!0)}),v._data(t,"_change_attached",!0))})},handle:function(e){var t=e.target;if(this!==t||e.isSimulated||e.isTrigger||t.type!=="radio"&&t.type!=="checkbox")return e.handleObj.handler.apply(this,arguments)},teardown:function(){return v.event.remove(this,"._change"),!$.test(this.nodeName)}}),v.support.focusinBubbles||v.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){v.event.simulate(t,e.target,v.event.fix(e),!0)};v.event.special[t]={setup:function(){n++===0&&i.addEventListener(e,r,!0)},teardown:function(){--n===0&&i.removeEventListener(e,r,!0)}}}),v.fn.extend({on:function(e,n,r,i,s){var o,u;if(typeof e=="object"){typeof n!="string"&&(r=r||n,n=t);for(u in e)this.on(u,n,r,e[u],s);return this}r==null&&i==null?(i=n,r=n=t):i==null&&(typeof n=="string"?(i=r,r=t):(i=r,r=n,n=t));if(i===!1)i=et;else if(!i)return this;return s===1&&(o=i,i=function(e){return v().off(e),o.apply(this,arguments)},i.guid=o.guid||(o.guid=v.guid++)),this.each(function(){v.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,s;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,v(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if(typeof e=="object"){for(s in e)this.off(s,n,e[s]);return this}if(n===!1||typeof n=="function")r=n,n=t;return r===!1&&(r=et),this.each(function(){v.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},live:function(e,t,n){return v(this.context).on(e,this.selector,t,n),this},die:function(e,t){return v(this.context).off(e,this.selector||"**",t),this},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return arguments.length===1?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){v.event.trigger(e,t,this)})},triggerHandler:function(e,t){if(this[0])return v.event.trigger(e,t,this[0],!0)},toggle:function(e){var t=arguments,n=e.guid||v.guid++,r=0,i=function(n){var i=(v._data(this,"lastToggle"+e.guid)||0)%r;return v._data(this,"lastToggle"+e.guid,i+1),n.preventDefault(),t[i].apply(this,arguments)||!1};i.guid=n;while(r<t.length)t[r++].guid=n;return this.click(i)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),v.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){v.fn[t]=function(e,n){return n==null&&(n=e,e=null),arguments.length>0?this.on(t,null,e,n):this.trigger(t)},Q.test(t)&&(v.event.fixHooks[t]=v.event.keyHooks),G.test(t)&&(v.event.fixHooks[t]=v.event.mouseHooks)}),function(e,t){function nt(e,t,n,r){n=n||[],t=t||g;var i,s,a,f,l=t.nodeType;if(!e||typeof e!="string")return n;if(l!==1&&l!==9)return[];a=o(t);if(!a&&!r)if(i=R.exec(e))if(f=i[1]){if(l===9){s=t.getElementById(f);if(!s||!s.parentNode)return n;if(s.id===f)return n.push(s),n}else if(t.ownerDocument&&(s=t.ownerDocument.getElementById(f))&&u(t,s)&&s.id===f)return n.push(s),n}else{if(i[2])return S.apply(n,x.call(t.getElementsByTagName(e),0)),n;if((f=i[3])&&Z&&t.getElementsByClassName)return S.apply(n,x.call(t.getElementsByClassName(f),0)),n}return vt(e.replace(j,"$1"),t,n,r,a)}function rt(e){return function(t){var n=t.nodeName.toLowerCase();return n==="input"&&t.type===e}}function it(e){return function(t){var n=t.nodeName.toLowerCase();return(n==="input"||n==="button")&&t.type===e}}function st(e){return N(function(t){return t=+t,N(function(n,r){var i,s=e([],n.length,t),o=s.length;while(o--)n[i=s[o]]&&(n[i]=!(r[i]=n[i]))})})}function ot(e,t,n){if(e===t)return n;var r=e.nextSibling;while(r){if(r===t)return-1;r=r.nextSibling}return 1}function ut(e,t){var n,r,s,o,u,a,f,l=L[d][e+" "];if(l)return t?0:l.slice(0);u=e,a=[],f=i.preFilter;while(u){if(!n||(r=F.exec(u)))r&&(u=u.slice(r[0].length)||u),a.push(s=[]);n=!1;if(r=I.exec(u))s.push(n=new m(r.shift())),u=u.slice(n.length),n.type=r[0].replace(j," ");for(o in i.filter)(r=J[o].exec(u))&&(!f[o]||(r=f[o](r)))&&(s.push(n=new m(r.shift())),u=u.slice(n.length),n.type=o,n.matches=r);if(!n)break}return t?u.length:u?nt.error(e):L(e,a).slice(0)}function at(e,t,r){var i=t.dir,s=r&&t.dir==="parentNode",o=w++;return t.first?function(t,n,r){while(t=t[i])if(s||t.nodeType===1)return e(t,n,r)}:function(t,r,u){if(!u){var a,f=b+" "+o+" ",l=f+n;while(t=t[i])if(s||t.nodeType===1){if((a=t[d])===l)return t.sizset;if(typeof a=="string"&&a.indexOf(f)===0){if(t.sizset)return t}else{t[d]=l;if(e(t,r,u))return t.sizset=!0,t;t.sizset=!1}}}else while(t=t[i])if(s||t.nodeType===1)if(e(t,r,u))return t}}function ft(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function lt(e,t,n,r,i){var s,o=[],u=0,a=e.length,f=t!=null;for(;u<a;u++)if(s=e[u])if(!n||n(s,r,i))o.push(s),f&&t.push(u);return o}function ct(e,t,n,r,i,s){return r&&!r[d]&&(r=ct(r)),i&&!i[d]&&(i=ct(i,s)),N(function(s,o,u,a){var f,l,c,h=[],p=[],d=o.length,v=s||dt(t||"*",u.nodeType?[u]:u,[]),m=e&&(s||!t)?lt(v,h,e,u,a):v,g=n?i||(s?e:d||r)?[]:o:m;n&&n(m,g,u,a);if(r){f=lt(g,p),r(f,[],u,a),l=f.length;while(l--)if(c=f[l])g[p[l]]=!(m[p[l]]=c)}if(s){if(i||e){if(i){f=[],l=g.length;while(l--)(c=g[l])&&f.push(m[l]=c);i(null,g=[],f,a)}l=g.length;while(l--)(c=g[l])&&(f=i?T.call(s,c):h[l])>-1&&(s[f]=!(o[f]=c))}}else g=lt(g===o?g.splice(d,g.length):g),i?i(null,o,g,a):S.apply(o,g)})}function ht(e){var t,n,r,s=e.length,o=i.relative[e[0].type],u=o||i.relative[" "],a=o?1:0,f=at(function(e){return e===t},u,!0),l=at(function(e){return T.call(t,e)>-1},u,!0),h=[function(e,n,r){return!o&&(r||n!==c)||((t=n).nodeType?f(e,n,r):l(e,n,r))}];for(;a<s;a++)if(n=i.relative[e[a].type])h=[at(ft(h),n)];else{n=i.filter[e[a].type].apply(null,e[a].matches);if(n[d]){r=++a;for(;r<s;r++)if(i.relative[e[r].type])break;return ct(a>1&&ft(h),a>1&&e.slice(0,a-1).join("").replace(j,"$1"),n,a<r&&ht(e.slice(a,r)),r<s&&ht(e=e.slice(r)),r<s&&e.join(""))}h.push(n)}return ft(h)}function pt(e,t){var r=t.length>0,s=e.length>0,o=function(u,a,f,l,h){var p,d,v,m=[],y=0,w="0",x=u&&[],T=h!=null,N=c,C=u||s&&i.find.TAG("*",h&&a.parentNode||a),k=b+=N==null?1:Math.E;T&&(c=a!==g&&a,n=o.el);for(;(p=C[w])!=null;w++){if(s&&p){for(d=0;v=e[d];d++)if(v(p,a,f)){l.push(p);break}T&&(b=k,n=++o.el)}r&&((p=!v&&p)&&y--,u&&x.push(p))}y+=w;if(r&&w!==y){for(d=0;v=t[d];d++)v(x,m,a,f);if(u){if(y>0)while(w--)!x[w]&&!m[w]&&(m[w]=E.call(l));m=lt(m)}S.apply(l,m),T&&!u&&m.length>0&&y+t.length>1&&nt.uniqueSort(l)}return T&&(b=k,c=N),x};return o.el=0,r?N(o):o}function dt(e,t,n){var r=0,i=t.length;for(;r<i;r++)nt(e,t[r],n);return n}function vt(e,t,n,r,s){var o,u,f,l,c,h=ut(e),p=h.length;if(!r&&h.length===1){u=h[0]=h[0].slice(0);if(u.length>2&&(f=u[0]).type==="ID"&&t.nodeType===9&&!s&&i.relative[u[1].type]){t=i.find.ID(f.matches[0].replace($,""),t,s)[0];if(!t)return n;e=e.slice(u.shift().length)}for(o=J.POS.test(e)?-1:u.length-1;o>=0;o--){f=u[o];if(i.relative[l=f.type])break;if(c=i.find[l])if(r=c(f.matches[0].replace($,""),z.test(u[0].type)&&t.parentNode||t,s)){u.splice(o,1),e=r.length&&u.join("");if(!e)return S.apply(n,x.call(r,0)),n;break}}}return a(e,h)(r,t,s,n,z.test(e)),n}function mt(){}var n,r,i,s,o,u,a,f,l,c,h=!0,p="undefined",d=("sizcache"+Math.random()).replace(".",""),m=String,g=e.document,y=g.documentElement,b=0,w=0,E=[].pop,S=[].push,x=[].slice,T=[].indexOf||function(e){var t=0,n=this.length;for(;t<n;t++)if(this[t]===e)return t;return-1},N=function(e,t){return e[d]=t==null||t,e},C=function(){var e={},t=[];return N(function(n,r){return t.push(n)>i.cacheLength&&delete e[t.shift()],e[n+" "]=r},e)},k=C(),L=C(),A=C(),O="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",_=M.replace("w","w#"),D="([*^$|!~]?=)",P="\\["+O+"*("+M+")"+O+"*(?:"+D+O+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+_+")|)|)"+O+"*\\]",H=":("+M+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+P+")|[^:]|\\\\.)*|.*))\\)|)",B=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+O+"*((?:-\\d)?\\d*)"+O+"*\\)|)(?=[^-]|$)",j=new RegExp("^"+O+"+|((?:^|[^\\\\])(?:\\\\.)*)"+O+"+$","g"),F=new RegExp("^"+O+"*,"+O+"*"),I=new RegExp("^"+O+"*([\\x20\\t\\r\\n\\f>+~])"+O+"*"),q=new RegExp(H),R=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,U=/^:not/,z=/[\x20\t\r\n\f]*[+~]/,W=/:not\($/,X=/h\d/i,V=/input|select|textarea|button/i,$=/\\(?!\\)/g,J={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),NAME:new RegExp("^\\[name=['\"]?("+M+")['\"]?\\]"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+H),POS:new RegExp(B,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+O+"*(even|odd|(([+-]|)(\\d*)n|)"+O+"*(?:([+-]|)"+O+"*(\\d+)|))"+O+"*\\)|)","i"),needsContext:new RegExp("^"+O+"*[>+~]|"+B,"i")},K=function(e){var t=g.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}},Q=K(function(e){return e.appendChild(g.createComment("")),!e.getElementsByTagName("*").length}),G=K(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==p&&e.firstChild.getAttribute("href")==="#"}),Y=K(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return t!=="boolean"&&t!=="string"}),Z=K(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!e.getElementsByClassName||!e.getElementsByClassName("e").length?!1:(e.lastChild.className="e",e.getElementsByClassName("e").length===2)}),et=K(function(e){e.id=d+0,e.innerHTML="<a name='"+d+"'></a><div name='"+d+"'></div>",y.insertBefore(e,y.firstChild);var t=g.getElementsByName&&g.getElementsByName(d).length===2+g.getElementsByName(d+0).length;return r=!g.getElementById(d),y.removeChild(e),t});try{x.call(y.childNodes,0)[0].nodeType}catch(tt){x=function(e){var t,n=[];for(;t=this[e];e++)n.push(t);return n}}nt.matches=function(e,t){return nt(e,null,null,t)},nt.matchesSelector=function(e,t){return nt(t,null,null,[e]).length>0},s=nt.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(i===1||i===9||i===11){if(typeof e.textContent=="string")return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=s(e)}else if(i===3||i===4)return e.nodeValue}else for(;t=e[r];r++)n+=s(t);return n},o=nt.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?t.nodeName!=="HTML":!1},u=nt.contains=y.contains?function(e,t){var n=e.nodeType===9?e.documentElement:e,r=t&&t.parentNode;return e===r||!!(r&&r.nodeType===1&&n.contains&&n.contains(r))}:y.compareDocumentPosition?function(e,t){return t&&!!(e.compareDocumentPosition(t)&16)}:function(e,t){while(t=t.parentNode)if(t===e)return!0;return!1},nt.attr=function(e,t){var n,r=o(e);return r||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):r||Y?e.getAttribute(t):(n=e.getAttributeNode(t),n?typeof e[t]=="boolean"?e[t]?t:null:n.specified?n.value:null:null)},i=nt.selectors={cacheLength:50,createPseudo:N,match:J,attrHandle:G?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},find:{ID:r?function(e,t,n){if(typeof t.getElementById!==p&&!n){var r=t.getElementById(e);return r&&r.parentNode?[r]:[]}}:function(e,n,r){if(typeof n.getElementById!==p&&!r){var i=n.getElementById(e);return i?i.id===e||typeof i.getAttributeNode!==p&&i.getAttributeNode("id").value===e?[i]:t:[]}},TAG:Q?function(e,t){if(typeof t.getElementsByTagName!==p)return t.getElementsByTagName(e)}:function(e,t){var n=t.getElementsByTagName(e);if(e==="*"){var r,i=[],s=0;for(;r=n[s];s++)r.nodeType===1&&i.push(r);return i}return n},NAME:et&&function(e,t){if(typeof t.getElementsByName!==p)return t.getElementsByName(name)},CLASS:Z&&function(e,t,n){if(typeof t.getElementsByClassName!==p&&!n)return t.getElementsByClassName(e)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace($,""),e[3]=(e[4]||e[5]||"").replace($,""),e[2]==="~="&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),e[1]==="nth"?(e[2]||nt.error(e[0]),e[3]=+(e[3]?e[4]+(e[5]||1):2*(e[2]==="even"||e[2]==="odd")),e[4]=+(e[6]+e[7]||e[2]==="odd")):e[2]&&nt.error(e[0]),e},PSEUDO:function(e){var t,n;if(J.CHILD.test(e[0]))return null;if(e[3])e[2]=e[3];else if(t=e[4])q.test(t)&&(n=ut(t,!0))&&(n=t.indexOf(")",t.length-n)-t.length)&&(t=t.slice(0,n),e[0]=e[0].slice(0,n)),e[2]=t;return e.slice(0,3)}},filter:{ID:r?function(e){return e=e.replace($,""),function(t){return t.getAttribute("id")===e}}:function(e){return e=e.replace($,""),function(t){var n=typeof t.getAttributeNode!==p&&t.getAttributeNode("id");return n&&n.value===e}},TAG:function(e){return e==="*"?function(){return!0}:(e=e.replace($,"").toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[d][e+" "];return t||(t=new RegExp("(^|"+O+")"+e+"("+O+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==p&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r,i){var s=nt.attr(r,e);return s==null?t==="!=":t?(s+="",t==="="?s===n:t==="!="?s!==n:t==="^="?n&&s.indexOf(n)===0:t==="*="?n&&s.indexOf(n)>-1:t==="$="?n&&s.substr(s.length-n.length)===n:t==="~="?(" "+s+" ").indexOf(n)>-1:t==="|="?s===n||s.substr(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r){return e==="nth"?function(e){var t,i,s=e.parentNode;if(n===1&&r===0)return!0;if(s){i=0;for(t=s.firstChild;t;t=t.nextSibling)if(t.nodeType===1){i++;if(e===t)break}}return i-=r,i===n||i%n===0&&i/n>=0}:function(t){var n=t;switch(e){case"only":case"first":while(n=n.previousSibling)if(n.nodeType===1)return!1;if(e==="first")return!0;n=t;case"last":while(n=n.nextSibling)if(n.nodeType===1)return!1;return!0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||nt.error("unsupported pseudo: "+e);return r[d]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?N(function(e,n){var i,s=r(e,t),o=s.length;while(o--)i=T.call(e,s[o]),e[i]=!(n[i]=s[o])}):function(e){return r(e,0,n)}):r}},pseudos:{not:N(function(e){var t=[],n=[],r=a(e.replace(j,"$1"));return r[d]?N(function(e,t,n,i){var s,o=r(e,null,i,[]),u=e.length;while(u--)if(s=o[u])e[u]=!(t[u]=s)}):function(e,i,s){return t[0]=e,r(t,null,s,n),!n.pop()}}),has:N(function(e){return function(t){return nt(e,t).length>0}}),contains:N(function(e){return function(t){return(t.textContent||t.innerText||s(t)).indexOf(e)>-1}}),enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&!!e.checked||t==="option"&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},parent:function(e){return!i.pseudos.empty(e)},empty:function(e){var t;e=e.firstChild;while(e){if(e.nodeName>"@"||(t=e.nodeType)===3||t===4)return!1;e=e.nextSibling}return!0},header:function(e){return X.test(e.nodeName)},text:function(e){var t,n;return e.nodeName.toLowerCase()==="input"&&(t=e.type)==="text"&&((n=e.getAttribute("type"))==null||n.toLowerCase()===t)},radio:rt("radio"),checkbox:rt("checkbox"),file:rt("file"),password:rt("password"),image:rt("image"),submit:it("submit"),reset:it("reset"),button:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type==="button"||t==="button"},input:function(e){return V.test(e.nodeName)},focus:function(e){var t=e.ownerDocument;return e===t.activeElement&&(!t.hasFocus||t.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},active:function(e){return e===e.ownerDocument.activeElement},first:st(function(){return[0]}),last:st(function(e,t){return[t-1]}),eq:st(function(e,t,n){return[n<0?n+t:n]}),even:st(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:st(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:st(function(e,t,n){for(var r=n<0?n+t:n;--r>=0;)e.push(r);return e}),gt:st(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}},f=y.compareDocumentPosition?function(e,t){return e===t?(l=!0,0):(!e.compareDocumentPosition||!t.compareDocumentPosition?e.compareDocumentPosition:e.compareDocumentPosition(t)&4)?-1:1}:function(e,t){if(e===t)return l=!0,0;if(e.sourceIndex&&t.sourceIndex)return e.sourceIndex-t.sourceIndex;var n,r,i=[],s=[],o=e.parentNode,u=t.parentNode,a=o;if(o===u)return ot(e,t);if(!o)return-1;if(!u)return 1;while(a)i.unshift(a),a=a.parentNode;a=u;while(a)s.unshift(a),a=a.parentNode;n=i.length,r=s.length;for(var f=0;f<n&&f<r;f++)if(i[f]!==s[f])return ot(i[f],s[f]);return f===n?ot(e,s[f],-1):ot(i[f],t,1)},[0,0].sort(f),h=!l,nt.uniqueSort=function(e){var t,n=[],r=1,i=0;l=h,e.sort(f);if(l){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e},nt.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},a=nt.compile=function(e,t){var n,r=[],i=[],s=A[d][e+" "];if(!s){t||(t=ut(e)),n=t.length;while(n--)s=ht(t[n]),s[d]?r.push(s):i.push(s);s=A(e,pt(i,r))}return s},g.querySelectorAll&&function(){var e,t=vt,n=/'|\\/g,r=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,i=[":focus"],s=[":active"],u=y.matchesSelector||y.mozMatchesSelector||y.webkitMatchesSelector||y.oMatchesSelector||y.msMatchesSelector;K(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||i.push("\\["+O+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||i.push(":checked")}),K(function(e){e.innerHTML="<p test=''></p>",e.querySelectorAll("[test^='']").length&&i.push("[*^$]="+O+"*(?:\"\"|'')"),e.innerHTML="<input type='hidden'/>",e.querySelectorAll(":enabled").length||i.push(":enabled",":disabled")}),i=new RegExp(i.join("|")),vt=function(e,r,s,o,u){if(!o&&!u&&!i.test(e)){var a,f,l=!0,c=d,h=r,p=r.nodeType===9&&e;if(r.nodeType===1&&r.nodeName.toLowerCase()!=="object"){a=ut(e),(l=r.getAttribute("id"))?c=l.replace(n,"\\$&"):r.setAttribute("id",c),c="[id='"+c+"'] ",f=a.length;while(f--)a[f]=c+a[f].join("");h=z.test(e)&&r.parentNode||r,p=a.join(",")}if(p)try{return S.apply(s,x.call(h.querySelectorAll(p),0)),s}catch(v){}finally{l||r.removeAttribute("id")}}return t(e,r,s,o,u)},u&&(K(function(t){e=u.call(t,"div");try{u.call(t,"[test!='']:sizzle"),s.push("!=",H)}catch(n){}}),s=new RegExp(s.join("|")),nt.matchesSelector=function(t,n){n=n.replace(r,"='$1']");if(!o(t)&&!s.test(n)&&!i.test(n))try{var a=u.call(t,n);if(a||e||t.document&&t.document.nodeType!==11)return a}catch(f){}return nt(n,null,null,[t]).length>0})}(),i.pseudos.nth=i.pseudos.eq,i.filters=mt.prototype=i.pseudos,i.setFilters=new mt,nt.attr=v.attr,v.find=nt,v.expr=nt.selectors,v.expr[":"]=v.expr.pseudos,v.unique=nt.uniqueSort,v.text=nt.getText,v.isXMLDoc=nt.isXML,v.contains=nt.contains}(e);var nt=/Until$/,rt=/^(?:parents|prev(?:Until|All))/,it=/^.[^:#\[\.,]*$/,st=v.expr.match.needsContext,ot={children:!0,contents:!0,next:!0,prev:!0};v.fn.extend({find:function(e){var t,n,r,i,s,o,u=this;if(typeof e!="string")return v(e).filter(function(){for(t=0,n=u.length;t<n;t++)if(v.contains(u[t],this))return!0});o=this.pushStack("","find",e);for(t=0,n=this.length;t<n;t++){r=o.length,v.find(e,this[t],o);if(t>0)for(i=r;i<o.length;i++)for(s=0;s<r;s++)if(o[s]===o[i]){o.splice(i--,1);break}}return o},has:function(e){var t,n=v(e,this),r=n.length;return this.filter(function(){for(t=0;t<r;t++)if(v.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1),"not",e)},filter:function(e){return this.pushStack(ft(this,e,!0),"filter",e)},is:function(e){return!!e&&(typeof e=="string"?st.test(e)?v(e,this.context).index(this[0])>=0:v.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,s=[],o=st.test(e)||typeof e!="string"?v(e,t||this.context):0;for(;r<i;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&n.nodeType!==11){if(o?o.index(n)>-1:v.find.matchesSelector(n,e)){s.push(n);break}n=n.parentNode}}return s=s.length>1?v.unique(s):s,this.pushStack(s,"closest",e)},index:function(e){return e?typeof e=="string"?v.inArray(this[0],v(e)):v.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(e,t){var n=typeof e=="string"?v(e,t):v.makeArray(e&&e.nodeType?[e]:e),r=v.merge(this.get(),n);return this.pushStack(ut(n[0])||ut(r[0])?r:v.unique(r))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}}),v.fn.andSelf=v.fn.addBack,v.each({parent:function(e){var t=e.parentNode;return t&&t.nodeType!==11?t:null},parents:function(e){return v.dir(e,"parentNode")},parentsUntil:function(e,t,n){return v.dir(e,"parentNode",n)},next:function(e){return at(e,"nextSibling")},prev:function(e){return at(e,"previousSibling")},nextAll:function(e){return v.dir(e,"nextSibling")},prevAll:function(e){return v.dir(e,"previousSibling")},nextUntil:function(e,t,n){return v.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return v.dir(e,"previousSibling",n)},siblings:function(e){return v.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return v.sibling(e.firstChild)},contents:function(e){return v.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:v.merge([],e.childNodes)}},function(e,t){v.fn[e]=function(n,r){var i=v.map(this,t,n);return nt.test(e)||(r=n),r&&typeof r=="string"&&(i=v.filter(r,i)),i=this.length>1&&!ot[e]?v.unique(i):i,this.length>1&&rt.test(e)&&(i=i.reverse()),this.pushStack(i,e,l.call(arguments).join(","))}}),v.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),t.length===1?v.find.matchesSelector(t[0],e)?[t[0]]:[]:v.find.matches(e,t)},dir:function(e,n,r){var i=[],s=e[n];while(s&&s.nodeType!==9&&(r===t||s.nodeType!==1||!v(s).is(r)))s.nodeType===1&&i.push(s),s=s[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)e.nodeType===1&&e!==t&&n.push(e);return n}});var ct="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ht=/ jQuery\d+="(?:null|\d+)"/g,pt=/^\s+/,dt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,vt=/<([\w:]+)/,mt=/<tbody/i,gt=/<|&#?\w+;/,yt=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,wt=new RegExp("<(?:"+ct+")[\\s/>]","i"),Et=/^(?:checkbox|radio)$/,St=/checked\s*(?:[^=]|=\s*.checked.)/i,xt=/\/(java|ecma)script/i,Tt=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,Nt={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},Ct=lt(i),kt=Ct.appendChild(i.createElement("div"));Nt.optgroup=Nt.option,Nt.tbody=Nt.tfoot=Nt.colgroup=Nt.caption=Nt.thead,Nt.th=Nt.td,v.support.htmlSerialize||(Nt._default=[1,"X<div>","</div>"]),v.fn.extend({text:function(e){return v.access(this,function(e){return e===t?v.text(this):this.empty().append((this[0]&&this[0].ownerDocument||i).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(v.isFunction(e))return this.each(function(t){v(this).wrapAll(e.call(this,t))});if(this[0]){var t=v(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&e.firstChild.nodeType===1)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return v.isFunction(e)?this.each(function(t){v(this).wrapInner(e.call(this,t))}):this.each(function(){var t=v(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=v.isFunction(e);return this.each(function(n){v(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){v.nodeName(this,"body")||v(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(this.nodeType===1||this.nodeType===11)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(e,this.firstChild)})},before:function(){if(!ut(this[0]))return this.domManip(arguments,!1,function(e){this.parentNode.insertBefore(e,this)});if(arguments.length){var e=v.clean(arguments);return this.pushStack(v.merge(e,this),"before",this.selector)}},after:function(){if(!ut(this[0]))return this.domManip(arguments,!1,function(e){this.parentNode.insertBefore(e,this.nextSibling)});if(arguments.length){var e=v.clean(arguments);return this.pushStack(v.merge(this,e),"after",this.selector)}},remove:function(e,t){var n,r=0;for(;(n=this[r])!=null;r++)if(!e||v.filter(e,[n]).length)!t&&n.nodeType===1&&(v.cleanData(n.getElementsByTagName("*")),v.cleanData([n])),n.parentNode&&n.parentNode.removeChild(n);return this},empty:function(){var e,t=0;for(;(e=this[t])!=null;t++){e.nodeType===1&&v.cleanData(e.getElementsByTagName("*"));while(e.firstChild)e.removeChild(e.firstChild)}return this},clone:function(e,t){return e=e==null?!1:e,t=t==null?e:t,this.map(function(){return v.clone(this,e,t)})},html:function(e){return v.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return n.nodeType===1?n.innerHTML.replace(ht,""):t;if(typeof e=="string"&&!yt.test(e)&&(v.support.htmlSerialize||!wt.test(e))&&(v.support.leadingWhitespace||!pt.test(e))&&!Nt[(vt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(dt,"<$1></$2>");try{for(;r<i;r++)n=this[r]||{},n.nodeType===1&&(v.cleanData(n.getElementsByTagName("*")),n.innerHTML=e);n=0}catch(s){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){return ut(this[0])?this.length?this.pushStack(v(v.isFunction(e)?e():e),"replaceWith",e):this:v.isFunction(e)?this.each(function(t){var n=v(this),r=n.html();n.replaceWith(e.call(this,t,r))}):(typeof e!="string"&&(e=v(e).detach()),this.each(function(){var t=this.nextSibling,n=this.parentNode;v(this).remove(),t?v(t).before(e):v(n).append(e)}))},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=[].concat.apply([],e);var i,s,o,u,a=0,f=e[0],l=[],c=this.length;if(!v.support.checkClone&&c>1&&typeof f=="string"&&St.test(f))return this.each(function(){v(this).domManip(e,n,r)});if(v.isFunction(f))return this.each(function(i){var s=v(this);e[0]=f.call(this,i,n?s.html():t),s.domManip(e,n,r)});if(this[0]){i=v.buildFragment(e,this,l),o=i.fragment,s=o.firstChild,o.childNodes.length===1&&(o=s);if(s){n=n&&v.nodeName(s,"tr");for(u=i.cacheable||c-1;a<c;a++)r.call(n&&v.nodeName(this[a],"table")?Lt(this[a],"tbody"):this[a],a===u?o:v.clone(o,!0,!0))}o=s=null,l.length&&v.each(l,function(e,t){t.src?v.ajax?v.ajax({url:t.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):v.error("no ajax"):v.globalEval((t.text||t.textContent||t.innerHTML||"").replace(Tt,"")),t.parentNode&&t.parentNode.removeChild(t)})}return this}}),v.buildFragment=function(e,n,r){var s,o,u,a=e[0];return n=n||i,n=!n.nodeType&&n[0]||n,n=n.ownerDocument||n,e.length===1&&typeof a=="string"&&a.length<512&&n===i&&a.charAt(0)==="<"&&!bt.test(a)&&(v.support.checkClone||!St.test(a))&&(v.support.html5Clone||!wt.test(a))&&(o=!0,s=v.fragments[a],u=s!==t),s||(s=n.createDocumentFragment(),v.clean(e,n,s,r),o&&(v.fragments[a]=u&&s)),{fragment:s,cacheable:o}},v.fragments={},v.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){v.fn[e]=function(n){var r,i=0,s=[],o=v(n),u=o.length,a=this.length===1&&this[0].parentNode;if((a==null||a&&a.nodeType===11&&a.childNodes.length===1)&&u===1)return o[t](this[0]),this;for(;i<u;i++)r=(i>0?this.clone(!0):this).get(),v(o[i])[t](r),s=s.concat(r);return this.pushStack(s,e,o.selector)}}),v.extend({clone:function(e,t,n){var r,i,s,o;v.support.html5Clone||v.isXMLDoc(e)||!wt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(kt.innerHTML=e.outerHTML,kt.removeChild(o=kt.firstChild));if((!v.support.noCloneEvent||!v.support.noCloneChecked)&&(e.nodeType===1||e.nodeType===11)&&!v.isXMLDoc(e)){Ot(e,o),r=Mt(e),i=Mt(o);for(s=0;r[s];++s)i[s]&&Ot(r[s],i[s])}if(t){At(e,o);if(n){r=Mt(e),i=Mt(o);for(s=0;r[s];++s)At(r[s],i[s])}}return r=i=null,o},clean:function(e,t,n,r){var s,o,u,a,f,l,c,h,p,d,m,g,y=t===i&&Ct,b=[];if(!t||typeof t.createDocumentFragment=="undefined")t=i;for(s=0;(u=e[s])!=null;s++){typeof u=="number"&&(u+="");if(!u)continue;if(typeof u=="string")if(!gt.test(u))u=t.createTextNode(u);else{y=y||lt(t),c=t.createElement("div"),y.appendChild(c),u=u.replace(dt,"<$1></$2>"),a=(vt.exec(u)||["",""])[1].toLowerCase(),f=Nt[a]||Nt._default,l=f[0],c.innerHTML=f[1]+u+f[2];while(l--)c=c.lastChild;if(!v.support.tbody){h=mt.test(u),p=a==="table"&&!h?c.firstChild&&c.firstChild.childNodes:f[1]==="<table>"&&!h?c.childNodes:[];for(o=p.length-1;o>=0;--o)v.nodeName(p[o],"tbody")&&!p[o].childNodes.length&&p[o].parentNode.removeChild(p[o])}!v.support.leadingWhitespace&&pt.test(u)&&c.insertBefore(t.createTextNode(pt.exec(u)[0]),c.firstChild),u=c.childNodes,c.parentNode.removeChild(c)}u.nodeType?b.push(u):v.merge(b,u)}c&&(u=c=y=null);if(!v.support.appendChecked)for(s=0;(u=b[s])!=null;s++)v.nodeName(u,"input")?_t(u):typeof u.getElementsByTagName!="undefined"&&v.grep(u.getElementsByTagName("input"),_t);if(n){m=function(e){if(!e.type||xt.test(e.type))return r?r.push(e.parentNode?e.parentNode.removeChild(e):e):n.appendChild(e)};for(s=0;(u=b[s])!=null;s++)if(!v.nodeName(u,"script")||!m(u))n.appendChild(u),typeof u.getElementsByTagName!="undefined"&&(g=v.grep(v.merge([],u.getElementsByTagName("script")),m),b.splice.apply(b,[s+1,0].concat(g)),s+=g.length)}return b},cleanData:function(e,t){var n,r,i,s,o=0,u=v.expando,a=v.cache,f=v.support.deleteExpando,l=v.event.special;for(;(i=e[o])!=null;o++)if(t||v.acceptData(i)){r=i[u],n=r&&a[r];if(n){if(n.events)for(s in n.events)l[s]?v.event.remove(i,s):v.removeEvent(i,s,n.handle);a[r]&&(delete a[r],f?delete i[u]:i.removeAttribute?i.removeAttribute(u):i[u]=null,v.deletedIds.push(r))}}}}),function(){var e,t;v.uaMatch=function(e){e=e.toLowerCase();var t=/(chrome)[ \/]([\w.]+)/.exec(e)||/(webkit)[ \/]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[];return{browser:t[1]||"",version:t[2]||"0"}},e=v.uaMatch(o.userAgent),t={},e.browser&&(t[e.browser]=!0,t.version=e.version),t.chrome?t.webkit=!0:t.webkit&&(t.safari=!0),v.browser=t,v.sub=function(){function e(t,n){return new e.fn.init(t,n)}v.extend(!0,e,this),e.superclass=this,e.fn=e.prototype=this(),e.fn.constructor=e,e.sub=this.sub,e.fn.init=function(r,i){return i&&i instanceof v&&!(i instanceof e)&&(i=e(i)),v.fn.init.call(this,r,i,t)},e.fn.init.prototype=e.fn;var t=e(i);return e}}();var Dt,Pt,Ht,Bt=/alpha\([^)]*\)/i,jt=/opacity=([^)]*)/,Ft=/^(top|right|bottom|left)$/,It=/^(none|table(?!-c[ea]).+)/,qt=/^margin/,Rt=new RegExp("^("+m+")(.*)$","i"),Ut=new RegExp("^("+m+")(?!px)[a-z%]+$","i"),zt=new RegExp("^([-+])=("+m+")","i"),Wt={BODY:"block"},Xt={position:"absolute",visibility:"hidden",display:"block"},Vt={letterSpacing:0,fontWeight:400},$t=["Top","Right","Bottom","Left"],Jt=["Webkit","O","Moz","ms"],Kt=v.fn.toggle;v.fn.extend({css:function(e,n){return v.access(this,function(e,n,r){return r!==t?v.style(e,n,r):v.css(e,n)},e,n,arguments.length>1)},show:function(){return Yt(this,!0)},hide:function(){return Yt(this)},toggle:function(e,t){var n=typeof e=="boolean";return v.isFunction(e)&&v.isFunction(t)?Kt.apply(this,arguments):this.each(function(){(n?e:Gt(this))?v(this).show():v(this).hide()})}}),v.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Dt(e,"opacity");return n===""?"1":n}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":v.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(!e||e.nodeType===3||e.nodeType===8||!e.style)return;var s,o,u,a=v.camelCase(n),f=e.style;n=v.cssProps[a]||(v.cssProps[a]=Qt(f,a)),u=v.cssHooks[n]||v.cssHooks[a];if(r===t)return u&&"get"in u&&(s=u.get(e,!1,i))!==t?s:f[n];o=typeof r,o==="string"&&(s=zt.exec(r))&&(r=(s[1]+1)*s[2]+parseFloat(v.css(e,n)),o="number");if(r==null||o==="number"&&isNaN(r))return;o==="number"&&!v.cssNumber[a]&&(r+="px");if(!u||!("set"in u)||(r=u.set(e,r,i))!==t)try{f[n]=r}catch(l){}},css:function(e,n,r,i){var s,o,u,a=v.camelCase(n);return n=v.cssProps[a]||(v.cssProps[a]=Qt(e.style,a)),u=v.cssHooks[n]||v.cssHooks[a],u&&"get"in u&&(s=u.get(e,!0,i)),s===t&&(s=Dt(e,n)),s==="normal"&&n in Vt&&(s=Vt[n]),r||i!==t?(o=parseFloat(s),r||v.isNumeric(o)?o||0:s):s},swap:function(e,t,n){var r,i,s={};for(i in t)s[i]=e.style[i],e.style[i]=t[i];r=n.call(e);for(i in t)e.style[i]=s[i];return r}}),e.getComputedStyle?Dt=function(t,n){var r,i,s,o,u=e.getComputedStyle(t,null),a=t.style;return u&&(r=u.getPropertyValue(n)||u[n],r===""&&!v.contains(t.ownerDocument,t)&&(r=v.style(t,n)),Ut.test(r)&&qt.test(n)&&(i=a.width,s=a.minWidth,o=a.maxWidth,a.minWidth=a.maxWidth=a.width=r,r=u.width,a.width=i,a.minWidth=s,a.maxWidth=o)),r}:i.documentElement.currentStyle&&(Dt=function(e,t){var n,r,i=e.currentStyle&&e.currentStyle[t],s=e.style;return i==null&&s&&s[t]&&(i=s[t]),Ut.test(i)&&!Ft.test(t)&&(n=s.left,r=e.runtimeStyle&&e.runtimeStyle.left,r&&(e.runtimeStyle.left=e.currentStyle.left),s.left=t==="fontSize"?"1em":i,i=s.pixelLeft+"px",s.left=n,r&&(e.runtimeStyle.left=r)),i===""?"auto":i}),v.each(["height","width"],function(e,t){v.cssHooks[t]={get:function(e,n,r){if(n)return e.offsetWidth===0&&It.test(Dt(e,"display"))?v.swap(e,Xt,function(){return tn(e,t,r)}):tn(e,t,r)},set:function(e,n,r){return Zt(e,n,r?en(e,t,r,v.support.boxSizing&&v.css(e,"boxSizing")==="border-box"):0)}}}),v.support.opacity||(v.cssHooks.opacity={get:function(e,t){return jt.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=v.isNumeric(t)?"alpha(opacity="+t*100+")":"",s=r&&r.filter||n.filter||"";n.zoom=1;if(t>=1&&v.trim(s.replace(Bt,""))===""&&n.removeAttribute){n.removeAttribute("filter");if(r&&!r.filter)return}n.filter=Bt.test(s)?s.replace(Bt,i):s+" "+i}}),v(function(){v.support.reliableMarginRight||(v.cssHooks.marginRight={get:function(e,t){return v.swap(e,{display:"inline-block"},function(){if(t)return Dt(e,"marginRight")})}}),!v.support.pixelPosition&&v.fn.position&&v.each(["top","left"],function(e,t){v.cssHooks[t]={get:function(e,n){if(n){var r=Dt(e,t);return Ut.test(r)?v(e).position()[t]+"px":r}}}})}),v.expr&&v.expr.filters&&(v.expr.filters.hidden=function(e){return e.offsetWidth===0&&e.offsetHeight===0||!v.support.reliableHiddenOffsets&&(e.style&&e.style.display||Dt(e,"display"))==="none"},v.expr.filters.visible=function(e){return!v.expr.filters.hidden(e)}),v.each({margin:"",padding:"",border:"Width"},function(e,t){v.cssHooks[e+t]={expand:function(n){var r,i=typeof n=="string"?n.split(" "):[n],s={};for(r=0;r<4;r++)s[e+$t[r]+t]=i[r]||i[r-2]||i[0];return s}},qt.test(e)||(v.cssHooks[e+t].set=Zt)});var rn=/%20/g,sn=/\[\]$/,on=/\r?\n/g,un=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,an=/^(?:select|textarea)/i;v.fn.extend({serialize:function(){return v.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?v.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||an.test(this.nodeName)||un.test(this.type))}).map(function(e,t){var n=v(this).val();return n==null?null:v.isArray(n)?v.map(n,function(e,n){return{name:t.name,value:e.replace(on,"\r\n")}}):{name:t.name,value:n.replace(on,"\r\n")}}).get()}}),v.param=function(e,n){var r,i=[],s=function(e,t){t=v.isFunction(t)?t():t==null?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};n===t&&(n=v.ajaxSettings&&v.ajaxSettings.traditional);if(v.isArray(e)||e.jquery&&!v.isPlainObject(e))v.each(e,function(){s(this.name,this.value)});else for(r in e)fn(r,e[r],n,s);return i.join("&").replace(rn,"+")};var ln,cn,hn=/#.*$/,pn=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,dn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,vn=/^(?:GET|HEAD)$/,mn=/^\/\//,gn=/\?/,yn=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bn=/([?&])_=[^&]*/,wn=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,En=v.fn.load,Sn={},xn={},Tn=["*/"]+["*"];try{cn=s.href}catch(Nn){cn=i.createElement("a"),cn.href="",cn=cn.href}ln=wn.exec(cn.toLowerCase())||[],v.fn.load=function(e,n,r){if(typeof e!="string"&&En)return En.apply(this,arguments);if(!this.length)return this;var i,s,o,u=this,a=e.indexOf(" ");return a>=0&&(i=e.slice(a,e.length),e=e.slice(0,a)),v.isFunction(n)?(r=n,n=t):n&&typeof n=="object"&&(s="POST"),v.ajax({url:e,type:s,dataType:"html",data:n,complete:function(e,t){r&&u.each(r,o||[e.responseText,t,e])}}).done(function(e){o=arguments,u.html(i?v("<div>").append(e.replace(yn,"")).find(i):e)}),this},v.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,t){v.fn[t]=function(e){return this.on(t,e)}}),v.each(["get","post"],function(e,n){v[n]=function(e,r,i,s){return v.isFunction(r)&&(s=s||i,i=r,r=t),v.ajax({type:n,url:e,data:r,success:i,dataType:s})}}),v.extend({getScript:function(e,n){return v.get(e,t,n,"script")},getJSON:function(e,t,n){return v.get(e,t,n,"json")},ajaxSetup:function(e,t){return t?Ln(e,v.ajaxSettings):(t=e,e=v.ajaxSettings),Ln(e,t),e},ajaxSettings:{url:cn,isLocal:dn.test(ln[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":Tn},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":v.parseJSON,"text xml":v.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:Cn(Sn),ajaxTransport:Cn(xn),ajax:function(e,n){function T(e,n,s,a){var l,y,b,w,S,T=n;if(E===2)return;E=2,u&&clearTimeout(u),o=t,i=a||"",x.readyState=e>0?4:0,s&&(w=An(c,x,s));if(e>=200&&e<300||e===304)c.ifModified&&(S=x.getResponseHeader("Last-Modified"),S&&(v.lastModified[r]=S),S=x.getResponseHeader("Etag"),S&&(v.etag[r]=S)),e===304?(T="notmodified",l=!0):(l=On(c,w),T=l.state,y=l.data,b=l.error,l=!b);else{b=T;if(!T||e)T="error",e<0&&(e=0)}x.status=e,x.statusText=(n||T)+"",l?d.resolveWith(h,[y,T,x]):d.rejectWith(h,[x,T,b]),x.statusCode(g),g=t,f&&p.trigger("ajax"+(l?"Success":"Error"),[x,c,l?y:b]),m.fireWith(h,[x,T]),f&&(p.trigger("ajaxComplete",[x,c]),--v.active||v.event.trigger("ajaxStop"))}typeof e=="object"&&(n=e,e=t),n=n||{};var r,i,s,o,u,a,f,l,c=v.ajaxSetup({},n),h=c.context||c,p=h!==c&&(h.nodeType||h instanceof v)?v(h):v.event,d=v.Deferred(),m=v.Callbacks("once memory"),g=c.statusCode||{},b={},w={},E=0,S="canceled",x={readyState:0,setRequestHeader:function(e,t){if(!E){var n=e.toLowerCase();e=w[n]=w[n]||e,b[e]=t}return this},getAllResponseHeaders:function(){return E===2?i:null},getResponseHeader:function(e){var n;if(E===2){if(!s){s={};while(n=pn.exec(i))s[n[1].toLowerCase()]=n[2]}n=s[e.toLowerCase()]}return n===t?null:n},overrideMimeType:function(e){return E||(c.mimeType=e),this},abort:function(e){return e=e||S,o&&o.abort(e),T(0,e),this}};d.promise(x),x.success=x.done,x.error=x.fail,x.complete=m.add,x.statusCode=function(e){if(e){var t;if(E<2)for(t in e)g[t]=[g[t],e[t]];else t=e[x.status],x.always(t)}return this},c.url=((e||c.url)+"").replace(hn,"").replace(mn,ln[1]+"//"),c.dataTypes=v.trim(c.dataType||"*").toLowerCase().split(y),c.crossDomain==null&&(a=wn.exec(c.url.toLowerCase()),c.crossDomain=!(!a||a[1]===ln[1]&&a[2]===ln[2]&&(a[3]||(a[1]==="http:"?80:443))==(ln[3]||(ln[1]==="http:"?80:443)))),c.data&&c.processData&&typeof c.data!="string"&&(c.data=v.param(c.data,c.traditional)),kn(Sn,c,n,x);if(E===2)return x;f=c.global,c.type=c.type.toUpperCase(),c.hasContent=!vn.test(c.type),f&&v.active++===0&&v.event.trigger("ajaxStart");if(!c.hasContent){c.data&&(c.url+=(gn.test(c.url)?"&":"?")+c.data,delete c.data),r=c.url;if(c.cache===!1){var N=v.now(),C=c.url.replace(bn,"$1_="+N);c.url=C+(C===c.url?(gn.test(c.url)?"&":"?")+"_="+N:"")}}(c.data&&c.hasContent&&c.contentType!==!1||n.contentType)&&x.setRequestHeader("Content-Type",c.contentType),c.ifModified&&(r=r||c.url,v.lastModified[r]&&x.setRequestHeader("If-Modified-Since",v.lastModified[r]),v.etag[r]&&x.setRequestHeader("If-None-Match",v.etag[r])),x.setRequestHeader("Accept",c.dataTypes[0]&&c.accepts[c.dataTypes[0]]?c.accepts[c.dataTypes[0]]+(c.dataTypes[0]!=="*"?", "+Tn+"; q=0.01":""):c.accepts["*"]);for(l in c.headers)x.setRequestHeader(l,c.headers[l]);if(!c.beforeSend||c.beforeSend.call(h,x,c)!==!1&&E!==2){S="abort";for(l in{success:1,error:1,complete:1})x[l](c[l]);o=kn(xn,c,n,x);if(!o)T(-1,"No Transport");else{x.readyState=1,f&&p.trigger("ajaxSend",[x,c]),c.async&&c.timeout>0&&(u=setTimeout(function(){x.abort("timeout")},c.timeout));try{E=1,o.send(b,T)}catch(k){if(!(E<2))throw k;T(-1,k)}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var Mn=[],_n=/\?/,Dn=/(=)\?(?=&|$)|\?\?/,Pn=v.now();v.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Mn.pop()||v.expando+"_"+Pn++;return this[e]=!0,e}}),v.ajaxPrefilter("json jsonp",function(n,r,i){var s,o,u,a=n.data,f=n.url,l=n.jsonp!==!1,c=l&&Dn.test(f),h=l&&!c&&typeof a=="string"&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Dn.test(a);if(n.dataTypes[0]==="jsonp"||c||h)return s=n.jsonpCallback=v.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,o=e[s],c?n.url=f.replace(Dn,"$1"+s):h?n.data=a.replace(Dn,"$1"+s):l&&(n.url+=(_n.test(f)?"&":"?")+n.jsonp+"="+s),n.converters["script json"]=function(){return u||v.error(s+" was not called"),u[0]},n.dataTypes[0]="json",e[s]=function(){u=arguments},i.always(function(){e[s]=o,n[s]&&(n.jsonpCallback=r.jsonpCallback,Mn.push(s)),u&&v.isFunction(o)&&o(u[0]),u=o=t}),"script"}),v.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(e){return v.globalEval(e),e}}}),v.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),v.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=i.head||i.getElementsByTagName("head")[0]||i.documentElement;return{send:function(s,o){n=i.createElement("script"),n.async="async",e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,i){if(i||!n.readyState||/loaded|complete/.test(n.readyState))n.onload=n.onreadystatechange=null,r&&n.parentNode&&r.removeChild(n),n=t,i||o(200,"success")},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(0,1)}}}});var Hn,Bn=e.ActiveXObject?function(){for(var e in Hn)Hn[e](0,1)}:!1,jn=0;v.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&Fn()||In()}:Fn,function(e){v.extend(v.support,{ajax:!!e,cors:!!e&&"withCredentials"in e})}(v.ajaxSettings.xhr()),v.support.ajax&&v.ajaxTransport(function(n){if(!n.crossDomain||v.support.cors){var r;return{send:function(i,s){var o,u,a=n.xhr();n.username?a.open(n.type,n.url,n.async,n.username,n.password):a.open(n.type,n.url,n.async);if(n.xhrFields)for(u in n.xhrFields)a[u]=n.xhrFields[u];n.mimeType&&a.overrideMimeType&&a.overrideMimeType(n.mimeType),!n.crossDomain&&!i["X-Requested-With"]&&(i["X-Requested-With"]="XMLHttpRequest");try{for(u in i)a.setRequestHeader(u,i[u])}catch(f){}a.send(n.hasContent&&n.data||null),r=function(e,i){var u,f,l,c,h;try{if(r&&(i||a.readyState===4)){r=t,o&&(a.onreadystatechange=v.noop,Bn&&delete Hn[o]);if(i)a.readyState!==4&&a.abort();else{u=a.status,l=a.getAllResponseHeaders(),c={},h=a.responseXML,h&&h.documentElement&&(c.xml=h);try{c.text=a.responseText}catch(p){}try{f=a.statusText}catch(p){f=""}!u&&n.isLocal&&!n.crossDomain?u=c.text?200:404:u===1223&&(u=204)}}}catch(d){i||s(-1,d)}c&&s(u,f,c,l)},n.async?a.readyState===4?setTimeout(r,0):(o=++jn,Bn&&(Hn||(Hn={},v(e).unload(Bn)),Hn[o]=r),a.onreadystatechange=r):r()},abort:function(){r&&r(0,1)}}}});var qn,Rn,Un=/^(?:toggle|show|hide)$/,zn=new RegExp("^(?:([-+])=|)("+m+")([a-z%]*)$","i"),Wn=/queueHooks$/,Xn=[Gn],Vn={"*":[function(e,t){var n,r,i=this.createTween(e,t),s=zn.exec(t),o=i.cur(),u=+o||0,a=1,f=20;if(s){n=+s[2],r=s[3]||(v.cssNumber[e]?"":"px");if(r!=="px"&&u){u=v.css(i.elem,e,!0)||n||1;do a=a||".5",u/=a,v.style(i.elem,e,u+r);while(a!==(a=i.cur()/o)&&a!==1&&--f)}i.unit=r,i.start=u,i.end=s[1]?u+(s[1]+1)*n:n}return i}]};v.Animation=v.extend(Kn,{tweener:function(e,t){v.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;r<i;r++)n=e[r],Vn[n]=Vn[n]||[],Vn[n].unshift(t)},prefilter:function(e,t){t?Xn.unshift(e):Xn.push(e)}}),v.Tween=Yn,Yn.prototype={constructor:Yn,init:function(e,t,n,r,i,s){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=s||(v.cssNumber[n]?"":"px")},cur:function(){var e=Yn.propHooks[this.prop];return e&&e.get?e.get(this):Yn.propHooks._default.get(this)},run:function(e){var t,n=Yn.propHooks[this.prop];return this.options.duration?this.pos=t=v.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):Yn.propHooks._default.set(this),this}},Yn.prototype.init.prototype=Yn.prototype,Yn.propHooks={_default:{get:function(e){var t;return e.elem[e.prop]==null||!!e.elem.style&&e.elem.style[e.prop]!=null?(t=v.css(e.elem,e.prop,!1,""),!t||t==="auto"?0:t):e.elem[e.prop]},set:function(e){v.fx.step[e.prop]?v.fx.step[e.prop](e):e.elem.style&&(e.elem.style[v.cssProps[e.prop]]!=null||v.cssHooks[e.prop])?v.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},Yn.propHooks.scrollTop=Yn.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},v.each(["toggle","show","hide"],function(e,t){var n=v.fn[t];v.fn[t]=function(r,i,s){return r==null||typeof r=="boolean"||!e&&v.isFunction(r)&&v.isFunction(i)?n.apply(this,arguments):this.animate(Zn(t,!0),r,i,s)}}),v.fn.extend({fadeTo:function(e,t,n,r){return this.filter(Gt).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=v.isEmptyObject(e),s=v.speed(t,n,r),o=function(){var t=Kn(this,v.extend({},e),s);i&&t.stop(!0)};return i||s.queue===!1?this.each(o):this.queue(s.queue,o)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return typeof e!="string"&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=e!=null&&e+"queueHooks",s=v.timers,o=v._data(this);if(n)o[n]&&o[n].stop&&i(o[n]);else for(n in o)o[n]&&o[n].stop&&Wn.test(n)&&i(o[n]);for(n=s.length;n--;)s[n].elem===this&&(e==null||s[n].queue===e)&&(s[n].anim.stop(r),t=!1,s.splice(n,1));(t||!r)&&v.dequeue(this,e)})}}),v.each({slideDown:Zn("show"),slideUp:Zn("hide"),slideToggle:Zn("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){v.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),v.speed=function(e,t,n){var r=e&&typeof e=="object"?v.extend({},e):{complete:n||!n&&t||v.isFunction(e)&&e,duration:e,easing:n&&t||t&&!v.isFunction(t)&&t};r.duration=v.fx.off?0:typeof r.duration=="number"?r.duration:r.duration in v.fx.speeds?v.fx.speeds[r.duration]:v.fx.speeds._default;if(r.queue==null||r.queue===!0)r.queue="fx";return r.old=r.complete,r.complete=function(){v.isFunction(r.old)&&r.old.call(this),r.queue&&v.dequeue(this,r.queue)},r},v.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},v.timers=[],v.fx=Yn.prototype.init,v.fx.tick=function(){var e,n=v.timers,r=0;qn=v.now();for(;r<n.length;r++)e=n[r],!e()&&n[r]===e&&n.splice(r--,1);n.length||v.fx.stop(),qn=t},v.fx.timer=function(e){e()&&v.timers.push(e)&&!Rn&&(Rn=setInterval(v.fx.tick,v.fx.interval))},v.fx.interval=13,v.fx.stop=function(){clearInterval(Rn),Rn=null},v.fx.speeds={slow:600,fast:200,_default:400},v.fx.step={},v.expr&&v.expr.filters&&(v.expr.filters.animated=function(e){return v.grep(v.timers,function(t){return e===t.elem}).length});var er=/^(?:body|html)$/i;v.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){v.offset.setOffset(this,e,t)});var n,r,i,s,o,u,a,f={top:0,left:0},l=this[0],c=l&&l.ownerDocument;if(!c)return;return(r=c.body)===l?v.offset.bodyOffset(l):(n=c.documentElement,v.contains(n,l)?(typeof l.getBoundingClientRect!="undefined"&&(f=l.getBoundingClientRect()),i=tr(c),s=n.clientTop||r.clientTop||0,o=n.clientLeft||r.clientLeft||0,u=i.pageYOffset||n.scrollTop,a=i.pageXOffset||n.scrollLeft,{top:f.top+u-s,left:f.left+a-o}):f)},v.offset={bodyOffset:function(e){var t=e.offsetTop,n=e.offsetLeft;return v.support.doesNotIncludeMarginInBodyOffset&&(t+=parseFloat(v.css(e,"marginTop"))||0,n+=parseFloat(v.css(e,"marginLeft"))||0),{top:t,left:n}},setOffset:function(e,t,n){var r=v.css(e,"position");r==="static"&&(e.style.position="relative");var i=v(e),s=i.offset(),o=v.css(e,"top"),u=v.css(e,"left"),a=(r==="absolute"||r==="fixed")&&v.inArray("auto",[o,u])>-1,f={},l={},c,h;a?(l=i.position(),c=l.top,h=l.left):(c=parseFloat(o)||0,h=parseFloat(u)||0),v.isFunction(t)&&(t=t.call(e,n,s)),t.top!=null&&(f.top=t.top-s.top+c),t.left!=null&&(f.left=t.left-s.left+h),"using"in t?t.using.call(e,f):i.css(f)}},v.fn.extend({position:function(){if(!this[0])return;var e=this[0],t=this.offsetParent(),n=this.offset(),r=er.test(t[0].nodeName)?{top:0,left:0}:t.offset();return n.top-=parseFloat(v.css(e,"marginTop"))||0,n.left-=parseFloat(v.css(e,"marginLeft"))||0,r.top+=parseFloat(v.css(t[0],"borderTopWidth"))||0,r.left+=parseFloat(v.css(t[0],"borderLeftWidth"))||0,{top:n.top-r.top,left:n.left-r.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||i.body;while(e&&!er.test(e.nodeName)&&v.css(e,"position")==="static")e=e.offsetParent;return e||i.body})}}),v.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);v.fn[e]=function(i){return v.access(this,function(e,i,s){var o=tr(e);if(s===t)return o?n in o?o[n]:o.document.documentElement[i]:e[i];o?o.scrollTo(r?v(o).scrollLeft():s,r?s:v(o).scrollTop()):e[i]=s},e,i,arguments.length,null)}}),v.each({Height:"height",Width:"width"},function(e,n){v.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){v.fn[i]=function(i,s){var o=arguments.length&&(r||typeof i!="boolean"),u=r||(i===!0||s===!0?"margin":"border");return v.access(this,function(n,r,i){var s;return v.isWindow(n)?n.document.documentElement["client"+e]:n.nodeType===9?(s=n.documentElement,Math.max(n.body["scroll"+e],s["scroll"+e],n.body["offset"+e],s["offset"+e],s["client"+e])):i===t?v.css(n,r,i,u):v.style(n,r,i,u)},n,o?i:t,o,null)}})}),e.jQuery=e.$=v,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return v})})(window);
static/js/jquery.easing.min.js ADDED
@@ -0,0 +1 @@
 
 
1
+ jQuery.easing["jswing"]=jQuery.easing["swing"];jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d)},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*(--t*(t-2)-1)+b},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b},easeInExpo:function(x,t,b,c,d){return t==0?b:c*Math.pow(2,10*(t/d-1))+b},easeOutExpo:function(x,t,b,c,d){return t==d?b+c:c*(-Math.pow(2,-10*t/d)+1)+b},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*2*Math.PI/p))+b},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*2*Math.PI/p)+c+b},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*.3*1.5;if(a<Math.abs(c)){a=c;var s=p/4}else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*2*Math.PI/p)+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*2*Math.PI/p)*.5+c+b},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*t*t*(((s*=1.525)+1)*t-s)+b;return c/2*((t-=2)*t*(((s*=1.525)+1)*t+s)+2)+b},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b},easeOutBounce:function(x,t,b,c,d){if((t/=d)<1/2.75){return c*7.5625*t*t+b}else if(t<2/2.75){return c*(7.5625*(t-=1.5/2.75)*t+.75)+b}else if(t<2.5/2.75){return c*(7.5625*(t-=2.25/2.75)*t+.9375)+b}else{return c*(7.5625*(t-=2.625/2.75)*t+.984375)+b}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b}});
static/js/jquery.enllax.min.js ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ /* jQuery.enllax.js - v1.1.0 | copyright 2015, MMK Jony | https://github.com/mmkjony/enllax.js | released under the MIT license */
2
+ !function(t){"use strict";t.fn.enllax=function(r){var a=t(window).height(),n=t(document).height(),o=t.extend({ratio:0,type:"background",direction:"vertical"},r),e=t("[data-enllax-ratio]");e.each(function(){var r,e,s,i=t(this),c=i.offset().top,l=i.outerHeight(),p=i.data("enllax-ratio"),d=i.data("enllax-type"),x=i.data("enllax-direction");r=p?p:o.ratio,e=d?d:o.type,s=x?x:o.direction;var f=Math.round(c*r),u=Math.round((c-a/2+l)*r);"background"==e?"vertical"==s?i.css({"background-position":"center "+-f+"px"}):"horizontal"==s&&i.css({"background-position":-f+"px center"}):"foreground"==e&&("vertical"==s?i.css({"-webkit-transform":"translateY("+u+"px)","-moz-transform":"translateY("+u+"px)",transform:"translateY("+u+"px)"}):"horizontal"==s&&i.css({"-webkit-transform":"translateX("+u+"px)","-moz-transform":"translateX("+u+"px)",transform:"translateX("+u+"px)"})),t(window).on("scroll",function(){var o=t(this).scrollTop();f=Math.round((c-o)*r),u=Math.round((c-a/2+l-o)*r),"background"==e?"vertical"==s?i.css({"background-position":"center "+-f+"px"}):"horizontal"==s&&i.css({"background-position":-f+"px center"}):"foreground"==e&&n>o&&("vertical"==s?i.css({"-webkit-transform":"translateY("+u+"px)","-moz-transform":"translateY("+u+"px)",transform:"translateY("+u+"px)"}):"horizontal"==s&&i.css({"-webkit-transform":"translateX("+u+"px)","-moz-transform":"translateX("+u+"px)",transform:"translateX("+u+"px)"}))})})}}(jQuery);
static/js/jquery.scrollUp.min.js ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * scrollup v2.4.1
3
+ * Url: http://markgoodyear.com/labs/scrollup/
4
+ * Copyright (c) Mark Goodyear — @markgdyr — http://markgoodyear.com
5
+ * License: MIT
6
+ */
7
+ !function(l,o,e){"use strict";l.fn.scrollUp=function(o){l.data(e.body,"scrollUp")||(l.data(e.body,"scrollUp",!0),l.fn.scrollUp.init(o))},l.fn.scrollUp.init=function(r){var s,t,c,i,n,a,d,p=l.fn.scrollUp.settings=l.extend({},l.fn.scrollUp.defaults,r),f=!1;switch(d=p.scrollTrigger?l(p.scrollTrigger):l("<a/>",{id:p.scrollName,href:"#top"}),p.scrollTitle&&d.attr("title",p.scrollTitle),d.appendTo("body"),p.scrollImg||p.scrollTrigger||d.html(p.scrollText),d.css({display:"none",position:"fixed",zIndex:p.zIndex}),p.activeOverlay&&l("<div/>",{id:p.scrollName+"-active"}).css({position:"absolute",top:p.scrollDistance+"px",width:"100%",borderTop:"1px dotted"+p.activeOverlay,zIndex:p.zIndex}).appendTo("body"),p.animation){case"fade":s="fadeIn",t="fadeOut",c=p.animationSpeed;break;case"slide":s="slideDown",t="slideUp",c=p.animationSpeed;break;default:s="show",t="hide",c=0}i="top"===p.scrollFrom?p.scrollDistance:l(e).height()-l(o).height()-p.scrollDistance,n=l(o).scroll(function(){l(o).scrollTop()>i?f||(d[s](c),f=!0):f&&(d[t](c),f=!1)}),p.scrollTarget?"number"==typeof p.scrollTarget?a=p.scrollTarget:"string"==typeof p.scrollTarget&&(a=Math.floor(l(p.scrollTarget).offset().top)):a=0,d.click(function(o){o.preventDefault(),l("html, body").animate({scrollTop:a},p.scrollSpeed,p.easingType)})},l.fn.scrollUp.defaults={scrollName:"scrollUp",scrollDistance:300,scrollFrom:"top",scrollSpeed:300,easingType:"linear",animation:"slide",animationSpeed:200,scrollTrigger:!1,scrollTarget:!1,scrollText:"",scrollTitle:!1,scrollImg:!1,activeOverlay:!1,zIndex:2147483647},l.fn.scrollUp.destroy=function(r){l.removeData(e.body,"scrollUp"),l("#"+l.fn.scrollUp.settings.scrollName).remove(),l("#"+l.fn.scrollUp.settings.scrollName+"-active").remove(),l.fn.jquery.split(".")[1]>=7?l(o).off("scroll",r):l(o).unbind("scroll",r)},l.scrollUp=l.fn.scrollUp}(jQuery,window,document);