diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..cea1d1fbcce1c992dd5e3a83f8ad8217da9f5dc0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +static/images/GenericBlog_Social-Selling_CD909_SJ.png filter=lfs diff=lfs merge=lfs -text diff --git a/Freq.py b/Freq.py new file mode 100644 index 0000000000000000000000000000000000000000..fb44ba1670bf9d1fe45ebb09e48d94357e3ab810 --- /dev/null +++ b/Freq.py @@ -0,0 +1,24 @@ + +# Python program to count the frequency of +# elements in a list using a dictionary + +def CountFrequency(my_list): + + # Creating an empty dictionary + freq = {} + for item in my_list: + if (item in freq): + freq[item] += 1 + else: + freq[item] = 1 + print(freq) + return freq; + + + + +# Driver function +if __name__ == "__main__": + my_list =['sajid', 'sajid', 'sajid', 'ali', 'ali', 'sajid', 'sajid', 'nashu', 'nashu', 'nashu', 'nashu'] + + CountFrequency(my_list) diff --git a/Graphs.py b/Graphs.py new file mode 100644 index 0000000000000000000000000000000000000000..d4af0fba2b40f91c5094d29a01b0566c52de5226 --- /dev/null +++ b/Graphs.py @@ -0,0 +1,41 @@ +import numpy as np +import matplotlib.pyplot as plt +import matplotlib.pyplot as plt1 +import sys +import sqlite3 + +def viewg(g1): + + + for row in g1.values(): + pass + + height=[] + bars = () + bars= tuple(g1.keys()) + + plt.clf() + + + + print(type(g1.values())) + height= list(g1.values()) + print(bars, height) + + y_pos = np.arange(len(bars)) + plt.bar(bars,height, color=['blue', 'cyan', 'orange']) + plt.xlabel('Sentiment Analysis') + plt.ylabel('No.of Tweets') + plt.title('Features') + from PIL import Image + plt.savefig('g1.jpg') + #im = Image.open(r"g1.jpg") + + #im.show() + +if __name__ == "__main__": + d={'jan':2,'feb':23} + viewg(d) + + + diff --git a/LSTM.py b/LSTM.py index 7c5c6a663d51abcb7148b2c4bd93071abfd72b9f..ef4233a79cdda712514fab4810cc3ece78503abf 100644 --- a/LSTM.py +++ b/LSTM.py @@ -59,24 +59,32 @@ def get_embedding_vectors(tokenizer, dim=100): -def get_predictions(text): +def get_predictions(stmts): tokenizer = Tokenizer() + res=[] model_path = 'lstm_model.h5' model = load_model(model_path) - sequence = tokenizer.texts_to_sequences(text) - # pad the sequence - sequence = pad_sequences(sequence, maxlen=SEQUENCE_LENGTH) - # get the prediction - prediction = model.predict(sequence) - - res=[] - - for p1 in prediction: - res.append(int2label[np.argmax(p1)]) + model_path2="tokenizer.pickle" + with open(model_path2,'rb') as f: + tokenizer=pickle.load(f) + + + for text in stmts: + print("text=",text) + sequence = tokenizer.texts_to_sequences([text]) + # pad the sequence + sequence = pad_sequences(sequence, maxlen=SEQUENCE_LENGTH) + # get the prediction + prediction = model.predict(sequence) + sentmnt=int2label[np.argmax(prediction)] + res.append(sentmnt) + + + return res if __name__ == '__main__': - t=[' Sooo SAD I will miss you here in San Diego!!!', 'Stolen iPhone 15 pro', 'iPhone 15 Pro and iPhone 15 Pro Max Feature Increased 8GB of RAM', 'Apple announces iPhone 15 Pro and Pro Max', 'Temperature of my iPhone 15 Pro Max while on the phone for 5 mins.', 'I traded in my iPhone 14 Pro for the iPhone 15 Pro Max, then FedEx lost the old phone', 'iPhone 15 Pro Max crushes Google Pixel 8 Pro in speed test', 'Apple Design Team Making The New iPhone 15 Pro Max', 'iPhone 15 Pro Could Be Most Lightweight Pro Model Since iPhone XS', ' iPhone 15 Pro/Pro Max is so sad'] + t=['Apple announces iPhone 15 Pro and iPhone 15 Pro Max with titanium case and USB-C - 9to5Mac', 'Stolen iPhone 15 pro', 'iPhone 15 Pro and iPhone 15 Pro Max Feature Increased 8GB of RAM', 'Apple announces iPhone 15 Pro and Pro Max', 'Temperature of my iPhone 15 Pro Max while on the phone for 5 mins.', 'I traded in my iPhone 14 Pro for the iPhone 15 Pro Max, then FedEx lost the old phone', 'iPhone 15 Pro Max crushes Google Pixel 8 Pro in speed test', 'Apple Design Team Making The New iPhone 15 Pro Max', 'iPhone 15 Pro Could Be Most Lightweight Pro Model Since iPhone XS', 'PSA: iPhone 15 Pro/Pro Max Titanium Scratches'] print(get_predictions(t)) diff --git a/Train_ANN.py b/Train_ANN.py index d9cd929f33a63b69dc3d5301983c9abc3b12dcf2..002dbd59bf405a55554180111280e374956e9185 100644 --- a/Train_ANN.py +++ b/Train_ANN.py @@ -108,7 +108,7 @@ def dl_evaluation_process(): print('Train...') model.fit(X, y, batch_size=batch_size, - epochs=2, + epochs=20, validation_data=(X_test, y_test)) y_test = np.argmax(y_test, axis=1) diff --git a/Train_CNN.py b/Train_CNN.py index d48f35dbbe5fa749647b420e36def767231c70dc..8d1e64c4b2fe7011f3abdc2e76998f69d1fcb681 100644 --- a/Train_CNN.py +++ b/Train_CNN.py @@ -101,7 +101,7 @@ def dl_evaluation_process(): model.fit(X, y, epochs=20, verbose=1, validation_data=(X_test, y_test), batch_size=128) #print("saving") - model.save('cnn_model.h5') + #model.save('cnn_model.h5') #model.summary() y_test = np.argmax(y_test, axis=1) @@ -181,4 +181,5 @@ def get_embedding_vectors(tokenizer, dim=100): text = "Need a loan? We offer quick and easy approval. Apply now for cash in minutes!." print(get_predictions(text))''' -dl_evaluation_process() \ No newline at end of file +if __name__ == '__main__': + dl_evaluation_process() \ No newline at end of file diff --git a/Train_LSTM.py b/Train_LSTM.py new file mode 100644 index 0000000000000000000000000000000000000000..0d5716aac5e88e3470e6780917216ff3e799b100 --- /dev/null +++ b/Train_LSTM.py @@ -0,0 +1,185 @@ +import time +import pickle +import tensorflow as tf +import pandas as pd +import tqdm +import numpy as np +import os +import matplotlib +matplotlib.use('Agg') +import matplotlib.pyplot as plt +from tensorflow.keras.preprocessing.text import Tokenizer +from tensorflow.keras.preprocessing.sequence import pad_sequences +from tensorflow.keras.utils import to_categorical +from tensorflow.keras.callbacks import ModelCheckpoint, TensorBoard +from sklearn.model_selection import train_test_split +#from tensorflow.keras.layers import Embedding, Dropout, Dense +from tensorflow.keras.models import Sequential +from keras.models import load_model + +from sklearn.metrics import f1_score, precision_score, accuracy_score, recall_score + +from tensorflow.keras.layers import LSTM, GlobalMaxPooling1D, Dropout, Dense, Input, Embedding, MaxPooling1D, Flatten,BatchNormalization + +SEQUENCE_LENGTH = 100 # the length of all sequences (number of words per sample) +EMBEDDING_SIZE = 100 # Using 100-Dimensional GloVe embedding vectors +TEST_SIZE = 0.25 # ratio of testing set + +BATCH_SIZE = 64 +EPOCHS = 20 # number of epochs + +label2int = {"frustrated": 0, "negative": 1,"neutral":2,"positive":3,"satisfied":4} + +int2label = {0: "frustrated", 1: "negative",2:"neutral",3:"positive",4:"satisfied"} + +def load_data(): + data = pd.read_csv("train.csv",encoding='latin-1') + texts = data['feedback'].values + labels=data['sentiment'].values + return texts, labels + +def dl_evaluation_process(): + print("loading data") + X, y = load_data() + + # Text tokenization + # vectorizing text, turning each text into sequence of integers + tokenizer = Tokenizer() + tokenizer.fit_on_texts(X) + # lets dump it to a file, so we can use it in testing + pickle.dump(tokenizer, open("tokenizer.pickle", "wb")) + # convert to sequence of integers + X = tokenizer.texts_to_sequences(X) + + # convert to numpy arrays + X = np.array(X) + y = np.array(y) + # pad sequences at the beginning of each sequence with 0's + # for example if SEQUENCE_LENGTH=4: + # [[5, 3, 2], [5, 1, 2, 3], [3, 4]] + # will be transformed to: + # [[0, 5, 3, 2], [5, 1, 2, 3], [0, 0, 3, 4]] + X = pad_sequences(X, maxlen=SEQUENCE_LENGTH) + + + + y = [label2int[label] for label in y] + y = to_categorical(y) + + # split and shuffle + X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=TEST_SIZE, random_state=7) + + #print("EMD Matrix") + print("Starting...") + embedding_matrix = get_embedding_vectors(tokenizer) + + if os.path.exists("lstm_model.h5"): + + model_path = 'lstm_model.h5' + + model = load_model(model_path) + + y_test = np.argmax(y_test, axis=1) + + y_pred = np.argmax(model.predict(X_test), axis=1) + + acc = accuracy_score(y_test, y_pred) * 100 + + precsn = precision_score(y_test, y_pred, average="macro") * 100 + + recall = recall_score(y_test, y_pred, average="macro") * 100 + + f1score = f1_score(y_test, y_pred, average="macro") * 100 + + print("acc=", acc) + + print("precsn=", precsn) + + print("recall=", recall) + + print("f1score=", f1score) + + + else: + model = Sequential() + model.add(Embedding(len(tokenizer.word_index) + 1, + EMBEDDING_SIZE, + weights=[embedding_matrix], + trainable=False, + input_length=SEQUENCE_LENGTH)) + + model.add(LSTM(32, return_sequences=True)) + model.add(BatchNormalization()) + + model.add(LSTM(64)) + model.add(BatchNormalization()) + + model.add(Dense(64, activation='relu')) + model.add(Dense(5, activation="softmax")) + model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['acc']) + + model.fit(X, y, epochs=50, verbose=1, validation_data=(X_test, y_test), batch_size=64) + #print("saving") + #model.save('lstm_model.h5') + #model.summary() + + y_test = np.argmax(y_test, axis=1) + y_pred = np.argmax(model.predict(X_test), axis=1) + + acc = accuracy_score(y_test, y_pred) * 100 + + precsn = precision_score(y_test, y_pred, average="macro") * 100 + + recall = recall_score(y_test, y_pred, average="macro") * 100 + + f1score = f1_score(y_test, y_pred, average="macro") * 100 + + print("acc=", acc) + + print("precsn=", precsn) + + print("recall=", recall) + + print("f1score=", f1score) + + + + + return acc, precsn, recall, f1score + + +def get_embedding_vectors(tokenizer, dim=100): + embedding_index = {} + with open(f"data/glove.6B.{dim}d.txt", encoding='utf8') as f: + for line in tqdm.tqdm(f, "Reading GloVe"): + values = line.split() + word = values[0] + vectors = np.asarray(values[1:], dtype='float32') + embedding_index[word] = vectors + + word_index = tokenizer.word_index + embedding_matrix = np.zeros((len(word_index) + 1, dim)) + for word, i in word_index.items(): + embedding_vector = embedding_index.get(word) + if embedding_vector is not None: + # words not found will be 0s + embedding_matrix[i] = embedding_vector + + return embedding_matrix + + + +'''def get_predictions(text): + sequence = tokenizer.texts_to_sequences([text]) + # pad the sequence + sequence = pad_sequences(sequence, maxlen=SEQUENCE_LENGTH) + # get the prediction + prediction = model.predict(sequence)[0] + # one-hot encoded vector, revert using np.argmax + return int2label[np.argmax(prediction)] + +text = "Need a loan? We offer quick and easy approval. Apply now for cash in minutes!." +print(get_predictions(text))''' + +if __name__ == '__main__': + dl_evaluation_process() \ No newline at end of file diff --git a/TweetSearch.py b/TweetSearch.py new file mode 100644 index 0000000000000000000000000000000000000000..84aeb7e757c587da5d10e05269323899495a31a5 --- /dev/null +++ b/TweetSearch.py @@ -0,0 +1,34 @@ +import sys, re + +import praw +class TweetSearch: + + def search(keys): + tweetset = [] + + try: + + + client_id = 'msVOcvbKWhwpdfqFJLrlZw' + client_secret = 'rK_rRaeS3DOj2Fp_lP2ecFW_b4vHNg' + user_agent = 'praw_scraper_1' + + reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent=user_agent)# input for term to be searched and how many tweets to search + + + + searchTerm = keys + max_posts = 10 + posts = reddit.subreddit('all').search(searchTerm, limit=max_posts) + for post in posts: + tweetset.append(str(post.title)) + + + except Exception as e: + print(e) + print("SSSSSSSSSSS") + return tweetset + + +if __name__ == '__main__': + TweetSearch.search('Telangana') \ No newline at end of file diff --git a/__pycache__/DTTest.cpython-36.pyc b/__pycache__/DTTest.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4b9b222709ca2e0b0966e092565d3d0ea5567095 Binary files /dev/null and b/__pycache__/DTTest.cpython-36.pyc differ diff --git a/__pycache__/Freq.cpython-36.pyc b/__pycache__/Freq.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8ccd60d5fe8b21acfab8ae76f4839287d30669c Binary files /dev/null and b/__pycache__/Freq.cpython-36.pyc differ diff --git a/__pycache__/Graphs.cpython-36.pyc b/__pycache__/Graphs.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fce15f16ecbca9117303ea9354d60712c983049e Binary files /dev/null and b/__pycache__/Graphs.cpython-36.pyc differ diff --git a/__pycache__/LRTest.cpython-36.pyc b/__pycache__/LRTest.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b40d750b409029b54e588e019da4e952a79e877 Binary files /dev/null and b/__pycache__/LRTest.cpython-36.pyc differ diff --git a/__pycache__/LSTM.cpython-36.pyc b/__pycache__/LSTM.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19f9082d47dfcddf941f83beafbfe8c18dc3e3ce Binary files /dev/null and b/__pycache__/LSTM.cpython-36.pyc differ diff --git a/__pycache__/NB.cpython-36.pyc b/__pycache__/NB.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d49d9425358aff9db6b5986b7bf74156f917ff3a Binary files /dev/null and b/__pycache__/NB.cpython-36.pyc differ diff --git a/__pycache__/NBTest.cpython-36.pyc b/__pycache__/NBTest.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..596c35f640dba25b9ebe47845d3c9e33f5da1f4a Binary files /dev/null and b/__pycache__/NBTest.cpython-36.pyc differ diff --git a/__pycache__/Predict.cpython-36.pyc b/__pycache__/Predict.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..11dbdf1ab3da78a6d4628e63a02d0b98710287db Binary files /dev/null and b/__pycache__/Predict.cpython-36.pyc differ diff --git a/__pycache__/RFTest.cpython-36.pyc b/__pycache__/RFTest.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b4925faf07674b2f9b2407f6c0519e07fe35916 Binary files /dev/null and b/__pycache__/RFTest.cpython-36.pyc differ diff --git a/__pycache__/SVM.cpython-36.pyc b/__pycache__/SVM.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3843e05637d18df6e5c0b9536cf92b10ea520fbf Binary files /dev/null and b/__pycache__/SVM.cpython-36.pyc differ diff --git a/__pycache__/SVMTest.cpython-36.pyc b/__pycache__/SVMTest.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98e93cdc574cc718591fab7abef5e76f63246ceb Binary files /dev/null and b/__pycache__/SVMTest.cpython-36.pyc differ diff --git a/__pycache__/Testing.cpython-36.pyc b/__pycache__/Testing.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..78256beaf1c9ee645f0dce29d11065da29055c91 Binary files /dev/null and b/__pycache__/Testing.cpython-36.pyc differ diff --git a/__pycache__/Train_ANN.cpython-36.pyc b/__pycache__/Train_ANN.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7880b8f670e63a8341f05ee426ca1c885828700 Binary files /dev/null and b/__pycache__/Train_ANN.cpython-36.pyc differ diff --git a/__pycache__/Train_CNN.cpython-36.pyc b/__pycache__/Train_CNN.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0aa6c684f0aafaa21b7ddf5b6557a921f0af041d Binary files /dev/null and b/__pycache__/Train_CNN.cpython-36.pyc differ diff --git a/__pycache__/Train_LSTM.cpython-36.pyc b/__pycache__/Train_LSTM.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7da9885a9a9b0f5d2385b2113684044ab9c13313 Binary files /dev/null and b/__pycache__/Train_LSTM.cpython-36.pyc differ diff --git a/__pycache__/TweetSearch.cpython-36.pyc b/__pycache__/TweetSearch.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57999c508999545e4a003a2c9833917730179fbe Binary files /dev/null and b/__pycache__/TweetSearch.cpython-36.pyc differ diff --git a/__pycache__/XGBTest.cpython-36.pyc b/__pycache__/XGBTest.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..361c507314b4ac6f4379d486304660c70b91543a Binary files /dev/null and b/__pycache__/XGBTest.cpython-36.pyc differ diff --git a/__pycache__/__init__.cpython-36.pyc b/__pycache__/__init__.cpython-36.pyc index 29203023ff79ce637744c378a6b34c6d3e01d3af..345ba05ab4dc02302e53561af5b5c99fb5683d2f 100644 Binary files a/__pycache__/__init__.cpython-36.pyc and b/__pycache__/__init__.cpython-36.pyc differ diff --git a/__pycache__/admin.cpython-36.pyc b/__pycache__/admin.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88876276820921dae18c8c58be2d419f45e9a162 Binary files /dev/null and b/__pycache__/admin.cpython-36.pyc differ diff --git a/__pycache__/bargraph.cpython-36.pyc b/__pycache__/bargraph.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0834d181c93d33d6a1524d1a7a2283f4ea5410a Binary files /dev/null and b/__pycache__/bargraph.cpython-36.pyc differ diff --git a/__pycache__/models.cpython-36.pyc b/__pycache__/models.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0b1d2695c2b116cde0c17e4a773b8302aea3ff2a Binary files /dev/null and b/__pycache__/models.cpython-36.pyc differ diff --git a/__pycache__/urls.cpython-36.pyc b/__pycache__/urls.cpython-36.pyc index e2ed931dacc1bd4a9fd405df11ece74c6872a4a2..597f4e947bab72bfc932474c48ab651a19ca3640 100644 Binary files a/__pycache__/urls.cpython-36.pyc and b/__pycache__/urls.cpython-36.pyc differ diff --git a/__pycache__/views.cpython-36.pyc b/__pycache__/views.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2a71b3a5a8293edbb25b6b627b9984437cc2c9a3 Binary files /dev/null and b/__pycache__/views.cpython-36.pyc differ diff --git a/admin.py b/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..ea5d68b7c457cb7f92da9c00a5c4df77ace36cef --- /dev/null +++ b/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/apps.py b/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..5fb0de7de37da0799182243916dd21e4e8505094 --- /dev/null +++ b/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class WebappConfig(AppConfig): + name = 'webapp' diff --git a/bargraph.py b/bargraph.py new file mode 100644 index 0000000000000000000000000000000000000000..c68a9369340e0d27a530a98fd1dcafab00fca578 --- /dev/null +++ b/bargraph.py @@ -0,0 +1,45 @@ +import numpy as np +import matplotlib.pyplot as plt + + +# set width of bar +class bargraph: + def view(d, img, word): + img='D:\\Django\\Sentiment Reddit\\Sentiment\\Sentiment\\webapp\\static\\images\\'+img + try: + a1 = [] + a2 = [] + a3 = [] + a4 = [] + algo = [] + + for r in d: + print(r) + algo.append(r) + a1.append(round(float(d[r][0]), 2)) + + + + k = [] + v = [] + barWidth = 0.25 + fig = plt.subplots(figsize=(10, 7)) + br1 = np.arange(len(a1)) + br2 = [x + barWidth for x in br1] + + plt.bar(br1, a1, color='purple', width=barWidth, + edgecolor='grey', label=word) + + plt.xlabel('Algorithms ', fontweight='bold', fontsize=15) + plt.ylabel(word, fontweight='bold', fontsize=15) + plt.xticks([r + barWidth for r in range(len(a1))], algo) + plt.legend() + plt.savefig(img, dpi=(200)) + except Exception as e: + print(e) + + + + +if __name__ == '__main__': + bargraph.view({'a1': [1, 2], 'a2': [1, 3], 'a3': [1, 2]},'g1.jpg','ACC') diff --git a/migrations/0001_initial.py b/migrations/0001_initial.py new file mode 100644 index 0000000000000000000000000000000000000000..ccf312361ecb5d8e63f50d02404f99353f0d5cbe --- /dev/null +++ b/migrations/0001_initial.py @@ -0,0 +1,46 @@ +# Generated by Django 3.1.3 on 2024-03-26 17:26 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='accuracysc', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('algo', models.CharField(max_length=100)), + ('accuracyv', models.FloatField(max_length=1000)), + ('prec', models.FloatField(max_length=1000)), + ('recall', models.FloatField(max_length=1000)), + ('f1sc', models.FloatField(max_length=1000)), + ], + ), + migrations.CreateModel( + name='tweets', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('sno', models.CharField(max_length=100)), + ('tweet', models.TextField()), + ('sentiment', models.CharField(max_length=100)), + ], + ), + migrations.CreateModel( + name='user', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=100)), + ('email', models.CharField(max_length=100)), + ('pwd', models.CharField(max_length=100)), + ('zip', models.CharField(max_length=100)), + ('gender', models.CharField(max_length=100)), + ('age', models.CharField(max_length=100)), + ], + ), + ] diff --git a/migrations/__init__.py b/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/migrations/__pycache__/0001_initial.cpython-36.pyc b/migrations/__pycache__/0001_initial.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..470a120c667d36cdeb73e65786cdcd6c600d2c07 Binary files /dev/null and b/migrations/__pycache__/0001_initial.cpython-36.pyc differ diff --git a/migrations/__pycache__/__init__.cpython-36.pyc b/migrations/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d972c1fece643587dc7743f14cea383f3fd3e436 Binary files /dev/null and b/migrations/__pycache__/__init__.cpython-36.pyc differ diff --git a/models.py b/models.py new file mode 100644 index 0000000000000000000000000000000000000000..8c2eefad1cf04f7d3d984e5f735a4c1d53b44ff2 --- /dev/null +++ b/models.py @@ -0,0 +1,29 @@ +from django.db import models + + +# Create your models here. +class user(models.Model): + name=models.CharField(max_length=100); + email=models.CharField(max_length=100); + pwd=models.CharField(max_length=100); + zip=models.CharField(max_length=100); + gender=models.CharField(max_length=100); + age=models.CharField(max_length=100); + +class accuracysc(models.Model): + algo=models.CharField(max_length=100); + accuracyv=models.FloatField(max_length=1000) + prec=models.FloatField(max_length=1000) + recall=models.FloatField(max_length=1000) + f1sc=models.FloatField(max_length=1000) + + + + +class tweets(models.Model): + sno = models.CharField(max_length=100); + tweet = models.TextField(); + sentiment=models.CharField(max_length=100); + + + diff --git a/static/css/bootstrap.css b/static/css/bootstrap.css new file mode 100644 index 0000000000000000000000000000000000000000..fb15e3d69c352f7e0a7fc4c20fb9d16721a05171 --- /dev/null +++ b/static/css/bootstrap.css @@ -0,0 +1,6584 @@ +/*! + * Bootstrap v3.3.4 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ +html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +body { + margin: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + margin: .67em 0; + font-size: 2em; +} +mark { + color: #000; + background: #ff0; +} +small { + font-size: 80%; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sup { + top: -.5em; +} +sub { + bottom: -.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + height: 0; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + margin: 0; + font: inherit; + color: inherit; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + padding: .35em .625em .75em; + margin: 0 2px; + border: 1px solid #c0c0c0; +} +legend { + padding: 0; + border: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +table { + border-spacing: 0; + border-collapse: collapse; +} +td, +th { + padding: 0; +} +/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ +@media print { + *, + *:before, + *:after { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + select { + background: #fff !important; + } + .navbar { + display: none; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +@font-face { + font-family: 'Glyphicons Halflings'; + + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.glyphicon-asterisk:before { + content: "\2a"; +} +.glyphicon-plus:before { + content: "\2b"; +} +.glyphicon-euro:before, +.glyphicon-eur:before { + content: "\20ac"; +} +.glyphicon-minus:before { + content: "\2212"; +} +.glyphicon-cloud:before { + content: "\2601"; +} +.glyphicon-envelope:before { + content: "\2709"; +} +.glyphicon-pencil:before { + content: "\270f"; +} +.glyphicon-glass:before { + content: "\e001"; +} +.glyphicon-music:before { + content: "\e002"; +} +.glyphicon-search:before { + content: "\e003"; +} +.glyphicon-heart:before { + content: "\e005"; +} +.glyphicon-star:before { + content: "\e006"; +} +.glyphicon-star-empty:before { + content: "\e007"; +} +.glyphicon-user:before { + content: "\e008"; +} +.glyphicon-film:before { + content: "\e009"; +} +.glyphicon-th-large:before { + content: "\e010"; +} +.glyphicon-th:before { + content: "\e011"; +} +.glyphicon-th-list:before { + content: "\e012"; +} +.glyphicon-ok:before { + content: "\e013"; +} +.glyphicon-remove:before { + content: "\e014"; +} +.glyphicon-zoom-in:before { + content: "\e015"; +} +.glyphicon-zoom-out:before { + content: "\e016"; +} +.glyphicon-off:before { + content: "\e017"; +} +.glyphicon-signal:before { + content: "\e018"; +} +.glyphicon-cog:before { + content: "\e019"; +} +.glyphicon-trash:before { + content: "\e020"; +} +.glyphicon-home:before { + content: "\e021"; +} +.glyphicon-file:before { + content: "\e022"; +} +.glyphicon-time:before { + content: "\e023"; +} +.glyphicon-road:before { + content: "\e024"; +} +.glyphicon-download-alt:before { + content: "\e025"; +} +.glyphicon-download:before { + content: "\e026"; +} +.glyphicon-upload:before { + content: "\e027"; +} +.glyphicon-inbox:before { + content: "\e028"; +} +.glyphicon-play-circle:before { + content: "\e029"; +} +.glyphicon-repeat:before { + content: "\e030"; +} +.glyphicon-refresh:before { + content: "\e031"; +} +.glyphicon-list-alt:before { + content: "\e032"; +} +.glyphicon-lock:before { + content: "\e033"; +} +.glyphicon-flag:before { + content: "\e034"; +} +.glyphicon-headphones:before { + content: "\e035"; +} +.glyphicon-volume-off:before { + content: "\e036"; +} +.glyphicon-volume-down:before { + content: "\e037"; +} +.glyphicon-volume-up:before { + content: "\e038"; +} +.glyphicon-qrcode:before { + content: "\e039"; +} +.glyphicon-barcode:before { + content: "\e040"; +} +.glyphicon-tag:before { + content: "\e041"; +} +.glyphicon-tags:before { + content: "\e042"; +} +.glyphicon-book:before { + content: "\e043"; +} +.glyphicon-bookmark:before { + content: "\e044"; +} +.glyphicon-print:before { + content: "\e045"; +} +.glyphicon-camera:before { + content: "\e046"; +} +.glyphicon-font:before { + content: "\e047"; +} +.glyphicon-bold:before { + content: "\e048"; +} +.glyphicon-italic:before { + content: "\e049"; +} +.glyphicon-text-height:before { + content: "\e050"; +} +.glyphicon-text-width:before { + content: "\e051"; +} +.glyphicon-align-left:before { + content: "\e052"; +} +.glyphicon-align-center:before { + content: "\e053"; +} +.glyphicon-align-right:before { + content: "\e054"; +} +.glyphicon-align-justify:before { + content: "\e055"; +} +.glyphicon-list:before { + content: "\e056"; +} +.glyphicon-indent-left:before { + content: "\e057"; +} +.glyphicon-indent-right:before { + content: "\e058"; +} +.glyphicon-facetime-video:before { + content: "\e059"; +} +.glyphicon-picture:before { + content: "\e060"; +} +.glyphicon-map-marker:before { + content: "\e062"; +} +.glyphicon-adjust:before { + content: "\e063"; +} +.glyphicon-tint:before { + content: "\e064"; +} +.glyphicon-edit:before { + content: "\e065"; +} +.glyphicon-share:before { + content: "\e066"; +} +.glyphicon-check:before { + content: "\e067"; +} +.glyphicon-move:before { + content: "\e068"; +} +.glyphicon-step-backward:before { + content: "\e069"; +} +.glyphicon-fast-backward:before { + content: "\e070"; +} +.glyphicon-backward:before { + content: "\e071"; +} +.glyphicon-play:before { + content: "\e072"; +} +.glyphicon-pause:before { + content: "\e073"; +} +.glyphicon-stop:before { + content: "\e074"; +} +.glyphicon-forward:before { + content: "\e075"; +} +.glyphicon-fast-forward:before { + content: "\e076"; +} +.glyphicon-step-forward:before { + content: "\e077"; +} +.glyphicon-eject:before { + content: "\e078"; +} +.glyphicon-chevron-left:before { + content: "\e079"; +} +.glyphicon-chevron-right:before { + content: "\e080"; +} +.glyphicon-plus-sign:before { + content: "\e081"; +} +.glyphicon-minus-sign:before { + content: "\e082"; +} +.glyphicon-remove-sign:before { + content: "\e083"; +} +.glyphicon-ok-sign:before { + content: "\e084"; +} +.glyphicon-question-sign:before { + content: "\e085"; +} +.glyphicon-info-sign:before { + content: "\e086"; +} +.glyphicon-screenshot:before { + content: "\e087"; +} +.glyphicon-remove-circle:before { + content: "\e088"; +} +.glyphicon-ok-circle:before { + content: "\e089"; +} +.glyphicon-ban-circle:before { + content: "\e090"; +} +.glyphicon-arrow-left:before { + content: "\e091"; +} +.glyphicon-arrow-right:before { + content: "\e092"; +} +.glyphicon-arrow-up:before { + content: "\e093"; +} +.glyphicon-arrow-down:before { + content: "\e094"; +} +.glyphicon-share-alt:before { + content: "\e095"; +} +.glyphicon-resize-full:before { + content: "\e096"; +} +.glyphicon-resize-small:before { + content: "\e097"; +} +.glyphicon-exclamation-sign:before { + content: "\e101"; +} +.glyphicon-gift:before { + content: "\e102"; +} +.glyphicon-leaf:before { + content: "\e103"; +} +.glyphicon-fire:before { + content: "\e104"; +} +.glyphicon-eye-open:before { + content: "\e105"; +} +.glyphicon-eye-close:before { + content: "\e106"; +} +.glyphicon-warning-sign:before { + content: "\e107"; +} +.glyphicon-plane:before { + content: "\e108"; +} +.glyphicon-calendar:before { + content: "\e109"; +} +.glyphicon-random:before { + content: "\e110"; +} +.glyphicon-comment:before { + content: "\e111"; +} +.glyphicon-magnet:before { + content: "\e112"; +} +.glyphicon-chevron-up:before { + content: "\e113"; +} +.glyphicon-chevron-down:before { + content: "\e114"; +} +.glyphicon-retweet:before { + content: "\e115"; +} +.glyphicon-shopping-cart:before { + content: "\e116"; +} +.glyphicon-folder-close:before { + content: "\e117"; +} +.glyphicon-folder-open:before { + content: "\e118"; +} +.glyphicon-resize-vertical:before { + content: "\e119"; +} +.glyphicon-resize-horizontal:before { + content: "\e120"; +} +.glyphicon-hdd:before { + content: "\e121"; +} +.glyphicon-bullhorn:before { + content: "\e122"; +} +.glyphicon-bell:before { + content: "\e123"; +} +.glyphicon-certificate:before { + content: "\e124"; +} +.glyphicon-thumbs-up:before { + content: "\e125"; +} +.glyphicon-thumbs-down:before { + content: "\e126"; +} +.glyphicon-hand-right:before { + content: "\e127"; +} +.glyphicon-hand-left:before { + content: "\e128"; +} +.glyphicon-hand-up:before { + content: "\e129"; +} +.glyphicon-hand-down:before { + content: "\e130"; +} +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} +.glyphicon-globe:before { + content: "\e135"; +} +.glyphicon-wrench:before { + content: "\e136"; +} +.glyphicon-tasks:before { + content: "\e137"; +} +.glyphicon-filter:before { + content: "\e138"; +} +.glyphicon-briefcase:before { + content: "\e139"; +} +.glyphicon-fullscreen:before { + content: "\e140"; +} +.glyphicon-dashboard:before { + content: "\e141"; +} +.glyphicon-paperclip:before { + content: "\e142"; +} +.glyphicon-heart-empty:before { + content: "\e143"; +} +.glyphicon-link:before { + content: "\e144"; +} +.glyphicon-phone:before { + content: "\e145"; +} +.glyphicon-pushpin:before { + content: "\e146"; +} +.glyphicon-usd:before { + content: "\e148"; +} +.glyphicon-gbp:before { + content: "\e149"; +} +.glyphicon-sort:before { + content: "\e150"; +} +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} +.glyphicon-sort-by-order:before { + content: "\e153"; +} +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} +.glyphicon-unchecked:before { + content: "\e157"; +} +.glyphicon-expand:before { + content: "\e158"; +} +.glyphicon-collapse-down:before { + content: "\e159"; +} +.glyphicon-collapse-up:before { + content: "\e160"; +} +.glyphicon-log-in:before { + content: "\e161"; +} +.glyphicon-flash:before { + content: "\e162"; +} +.glyphicon-log-out:before { + content: "\e163"; +} +.glyphicon-new-window:before { + content: "\e164"; +} +.glyphicon-record:before { + content: "\e165"; +} +.glyphicon-save:before { + content: "\e166"; +} +.glyphicon-open:before { + content: "\e167"; +} +.glyphicon-saved:before { + content: "\e168"; +} +.glyphicon-import:before { + content: "\e169"; +} +.glyphicon-export:before { + content: "\e170"; +} +.glyphicon-send:before { + content: "\e171"; +} +.glyphicon-floppy-disk:before { + content: "\e172"; +} +.glyphicon-floppy-saved:before { + content: "\e173"; +} +.glyphicon-floppy-remove:before { + content: "\e174"; +} +.glyphicon-floppy-save:before { + content: "\e175"; +} +.glyphicon-floppy-open:before { + content: "\e176"; +} +.glyphicon-credit-card:before { + content: "\e177"; +} +.glyphicon-transfer:before { + content: "\e178"; +} +.glyphicon-cutlery:before { + content: "\e179"; +} +.glyphicon-header:before { + content: "\e180"; +} +.glyphicon-compressed:before { + content: "\e181"; +} +.glyphicon-earphone:before { + content: "\e182"; +} +.glyphicon-phone-alt:before { + content: "\e183"; +} +.glyphicon-tower:before { + content: "\e184"; +} +.glyphicon-stats:before { + content: "\e185"; +} +.glyphicon-sd-video:before { + content: "\e186"; +} +.glyphicon-hd-video:before { + content: "\e187"; +} +.glyphicon-subtitles:before { + content: "\e188"; +} +.glyphicon-sound-stereo:before { + content: "\e189"; +} +.glyphicon-sound-dolby:before { + content: "\e190"; +} +.glyphicon-sound-5-1:before { + content: "\e191"; +} +.glyphicon-sound-6-1:before { + content: "\e192"; +} +.glyphicon-sound-7-1:before { + content: "\e193"; +} +.glyphicon-copyright-mark:before { + content: "\e194"; +} +.glyphicon-registration-mark:before { + content: "\e195"; +} +.glyphicon-cloud-download:before { + content: "\e197"; +} +.glyphicon-cloud-upload:before { + content: "\e198"; +} +.glyphicon-tree-conifer:before { + content: "\e199"; +} +.glyphicon-tree-deciduous:before { + content: "\e200"; +} +.glyphicon-cd:before { + content: "\e201"; +} +.glyphicon-save-file:before { + content: "\e202"; +} +.glyphicon-open-file:before { + content: "\e203"; +} +.glyphicon-level-up:before { + content: "\e204"; +} +.glyphicon-copy:before { + content: "\e205"; +} +.glyphicon-paste:before { + content: "\e206"; +} +.glyphicon-alert:before { + content: "\e209"; +} +.glyphicon-equalizer:before { + content: "\e210"; +} +.glyphicon-king:before { + content: "\e211"; +} +.glyphicon-queen:before { + content: "\e212"; +} +.glyphicon-pawn:before { + content: "\e213"; +} +.glyphicon-bishop:before { + content: "\e214"; +} +.glyphicon-knight:before { + content: "\e215"; +} +.glyphicon-baby-formula:before { + content: "\e216"; +} +.glyphicon-tent:before { + content: "\26fa"; +} +.glyphicon-blackboard:before { + content: "\e218"; +} +.glyphicon-bed:before { + content: "\e219"; +} +.glyphicon-apple:before { + content: "\f8ff"; +} +.glyphicon-erase:before { + content: "\e221"; +} +.glyphicon-hourglass:before { + content: "\231b"; +} +.glyphicon-lamp:before { + content: "\e223"; +} +.glyphicon-duplicate:before { + content: "\e224"; +} +.glyphicon-piggy-bank:before { + content: "\e225"; +} +.glyphicon-scissors:before { + content: "\e226"; +} +.glyphicon-bitcoin:before { + content: "\e227"; +} +.glyphicon-btc:before { + content: "\e227"; +} +.glyphicon-xbt:before { + content: "\e227"; +} +.glyphicon-yen:before { + content: "\00a5"; +} +.glyphicon-jpy:before { + content: "\00a5"; +} +.glyphicon-ruble:before { + content: "\20bd"; +} +.glyphicon-rub:before { + content: "\20bd"; +} +.glyphicon-scale:before { + content: "\e230"; +} +.glyphicon-ice-lolly:before { + content: "\e231"; +} +.glyphicon-ice-lolly-tasted:before { + content: "\e232"; +} +.glyphicon-education:before { + content: "\e233"; +} +.glyphicon-option-horizontal:before { + content: "\e234"; +} +.glyphicon-option-vertical:before { + content: "\e235"; +} +.glyphicon-menu-hamburger:before { + content: "\e236"; +} +.glyphicon-modal-window:before { + content: "\e237"; +} +.glyphicon-oil:before { + content: "\e238"; +} +.glyphicon-grain:before { + content: "\e239"; +} +.glyphicon-sunglasses:before { + content: "\e240"; +} +.glyphicon-text-size:before { + content: "\e241"; +} +.glyphicon-text-color:before { + content: "\e242"; +} +.glyphicon-text-background:before { + content: "\e243"; +} +.glyphicon-object-align-top:before { + content: "\e244"; +} +.glyphicon-object-align-bottom:before { + content: "\e245"; +} +.glyphicon-object-align-horizontal:before { + content: "\e246"; +} +.glyphicon-object-align-left:before { + content: "\e247"; +} +.glyphicon-object-align-vertical:before { + content: "\e248"; +} +.glyphicon-object-align-right:before { + content: "\e249"; +} +.glyphicon-triangle-right:before { + content: "\e250"; +} +.glyphicon-triangle-left:before { + content: "\e251"; +} +.glyphicon-triangle-bottom:before { + content: "\e252"; +} +.glyphicon-triangle-top:before { + content: "\e253"; +} +.glyphicon-console:before { + content: "\e254"; +} +.glyphicon-superscript:before { + content: "\e255"; +} +.glyphicon-subscript:before { + content: "\e256"; +} +.glyphicon-menu-left:before { + content: "\e257"; +} +.glyphicon-menu-right:before { + content: "\e258"; +} +.glyphicon-menu-down:before { + content: "\e259"; +} +.glyphicon-menu-up:before { + content: "\e260"; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 10px; + + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.42857143; + color: #333; + background-color: #fff; +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #337ab7; + text-decoration: none; +} +a:hover, +a:focus { + color: #23527c; + text-decoration: underline; +} +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +figure { + margin: 0; +} +img { + vertical-align: middle; +} +.img-responsive, +.thumbnail > img, +.thumbnail a > img, +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} +.img-thumbnail { + display: inline-block; + max-width: 100%; + height: auto; + padding: 4px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; +} +.img-circle { + border-radius: 50%; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eee; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + 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; +} +[role="button"] { + cursor: pointer; +} +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small, +h1 .small, +h2 .small, +h3 .small, +h4 .small, +h5 .small, +h6 .small, +.h1 .small, +.h2 .small, +.h3 .small, +.h4 .small, +.h5 .small, +.h6 .small { + font-weight: normal; + line-height: 1; + color: #777; +} +h1, +.h1, +h2, +.h2, +h3, +.h3 { + margin-top: 20px; + margin-bottom: 10px; +} +h1 small, +.h1 small, +h2 small, +.h2 small, +h3 small, +.h3 small, +h1 .small, +.h1 .small, +h2 .small, +.h2 .small, +h3 .small, +.h3 .small { + font-size: 65%; +} +h4, +.h4, +h5, +.h5, +h6, +.h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +.h4 small, +h5 small, +.h5 small, +h6 small, +.h6 small, +h4 .small, +.h4 .small, +h5 .small, +.h5 .small, +h6 .small, +.h6 .small { + font-size: 75%; +} +h1, +.h1 { + font-size: 36px; +} +h2, +.h2 { + font-size: 30px; +} +h3, +.h3 { + font-size: 24px; +} +h4, +.h4 { + font-size: 18px; +} +h5, +.h5 { + font-size: 14px; +} +h6, +.h6 { + font-size: 12px; +} +p { + margin: 0 0 10px; +} +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; +} +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} +small, +.small { + font-size: 85%; +} +mark, +.mark { + padding: .2em; + background-color: #fcf8e3; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +.text-justify { + text-align: justify; +} +.text-nowrap { + white-space: nowrap; +} +.text-lowercase { + text-transform: lowercase; +} +.text-uppercase { + text-transform: uppercase; +} +.text-capitalize { + text-transform: capitalize; +} +.text-muted { + color: #777; +} +.text-primary { + color: #337ab7; +} +a.text-primary:hover { + color: #286090; +} +.text-success { + color: #3c763d; +} +a.text-success:hover { + color: #2b542c; +} +.text-info { + color: #31708f; +} +a.text-info:hover { + color: #245269; +} +.text-warning { + color: #8a6d3b; +} +a.text-warning:hover { + color: #66512c; +} +.text-danger { + color: #a94442; +} +a.text-danger:hover { + color: #843534; +} +.bg-primary { + color: #fff; + background-color: #337ab7; +} +a.bg-primary:hover { + background-color: #286090; +} +.bg-success { + background-color: #dff0d8; +} +a.bg-success:hover { + background-color: #c1e2b3; +} +.bg-info { + background-color: #d9edf7; +} +a.bg-info:hover { + background-color: #afd9ee; +} +.bg-warning { + background-color: #fcf8e3; +} +a.bg-warning:hover { + background-color: #f7ecb5; +} +.bg-danger { + background-color: #f2dede; +} +a.bg-danger:hover { + background-color: #e4b9b9; +} +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eee; +} +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} +.list-unstyled { + padding-left: 0; + list-style: none; +} +.list-inline { + padding-left: 0; + margin-left: -5px; + list-style: none; +} +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} +dl { + margin-top: 0; + margin-bottom: 20px; +} +dt, +dd { + line-height: 1.42857143; +} +dt { + font-weight: bold; +} +dd { + margin-left: 0; +} +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } +} +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #777; +} +.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.42857143; + color: #777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: '\2014 \00A0'; +} +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + text-align: right; + border-right: 5px solid #eee; + border-left: 0; +} +.blockquote-reverse footer:before, +blockquote.pull-right footer:before, +.blockquote-reverse small:before, +blockquote.pull-right small:before, +.blockquote-reverse .small:before, +blockquote.pull-right .small:before { + content: ''; +} +.blockquote-reverse footer:after, +blockquote.pull-right footer:after, +.blockquote-reverse small:after, +blockquote.pull-right small:after, +.blockquote-reverse .small:after, +blockquote.pull-right .small:after { + content: '\00A0 \2014'; +} +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.42857143; +} +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 3px; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: bold; + -webkit-box-shadow: none; + box-shadow: none; +} +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.42857143; + color: #333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +.container-fluid { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.row { + margin-right: -15px; + margin-left: -15px; +} +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0; +} +@media (min-width: 768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0; + } +} +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0; + } +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0; + } +} +table { + background-color: transparent; +} +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777; + text-align: left; +} +th { + text-align: left; +} +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; +} +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #ddd; +} +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; +} +.table > caption + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > th, +.table > thead:first-child > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} +.table > tbody + tbody { + border-top: 2px solid #ddd; +} +.table .table { + background-color: #fff; +} +.table-condensed > thead > tr > th, +.table-condensed > tbody > tr > th, +.table-condensed > tfoot > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > td { + padding: 5px; +} +.table-bordered { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.table-striped > tbody > tr:nth-of-type(odd) { + background-color: #f9f9f9; +} +.table-hover > tbody > tr:hover { + background-color: #f5f5f5; +} +table col[class*="col-"] { + position: static; + display: table-column; + float: none; +} +table td[class*="col-"], +table th[class*="col-"] { + position: static; + display: table-cell; + float: none; +} +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, +.table-hover > tbody > tr.active:hover > td, +.table-hover > tbody > tr:hover > .active, +.table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; +} +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; +} +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td, +.table-hover > tbody > tr:hover > .success, +.table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} +.table > thead > tr > td.info, +.table > tbody > tr > td.info, +.table > tfoot > tr > td.info, +.table > thead > tr > th.info, +.table > tbody > tr > th.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > tbody > tr.info > td, +.table > tfoot > tr.info > td, +.table > thead > tr.info > th, +.table > tbody > tr.info > th, +.table > tfoot > tr.info > th { + background-color: #d9edf7; +} +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, +.table-hover > tbody > tr.info:hover > td, +.table-hover > tbody > tr:hover > .info, +.table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td, +.table-hover > tbody > tr:hover > .warning, +.table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; +} +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td, +.table-hover > tbody > tr:hover > .danger, +.table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} +.table-responsive { + min-height: .01%; + overflow-x: auto; +} +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold; +} +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal; +} +input[type="file"] { + display: block; +} +input[type="range"] { + display: block; + width: 100%; +} +select[multiple], +select[size] { + height: auto; +} +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.42857143; + color: #555; +} +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + color: #555; + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); + box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); +} +.form-control::-moz-placeholder { + color: #999; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #999; +} +.form-control::-webkit-input-placeholder { + color: #999; +} +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + background-color: #eee; + opacity: 1; +} +.form-control[disabled], +fieldset[disabled] .form-control { + cursor: not-allowed; +} +textarea.form-control { + height: auto; +} +input[type="search"] { + -webkit-appearance: none; +} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type="date"], + input[type="time"], + input[type="datetime-local"], + input[type="month"] { + line-height: 34px; + } + input[type="date"].input-sm, + input[type="time"].input-sm, + input[type="datetime-local"].input-sm, + input[type="month"].input-sm, + .input-group-sm input[type="date"], + .input-group-sm input[type="time"], + .input-group-sm input[type="datetime-local"], + .input-group-sm input[type="month"] { + line-height: 30px; + } + input[type="date"].input-lg, + input[type="time"].input-lg, + input[type="datetime-local"].input-lg, + input[type="month"].input-lg, + .input-group-lg input[type="date"], + .input-group-lg input[type="time"], + .input-group-lg input[type="datetime-local"], + .input-group-lg input[type="month"] { + line-height: 46px; + } +} +.form-group { + margin-bottom: 15px; +} +.radio, +.checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px; +} +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + position: absolute; + margin-top: 4px \9; + margin-left: -20px; +} +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} +.radio-inline, +.checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"].disabled, +input[type="checkbox"].disabled, +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed; +} +.radio-inline.disabled, +.checkbox-inline.disabled, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} +.radio.disabled label, +.checkbox.disabled label, +fieldset[disabled] .radio label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.form-control-static { + min-height: 34px; + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; +} +.form-control-static.input-lg, +.form-control-static.input-sm { + padding-right: 0; + padding-left: 0; +} +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-sm { + height: 30px; + line-height: 30px; +} +textarea.input-sm, +select[multiple].input-sm { + height: auto; +} +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.form-group-sm .form-control { + height: 30px; + line-height: 30px; +} +textarea.form-group-sm .form-control, +select[multiple].form-group-sm .form-control { + height: auto; +} +.form-group-sm .form-control-static { + height: 30px; + min-height: 32px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; +} +.input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-lg { + height: 46px; + line-height: 46px; +} +textarea.input-lg, +select[multiple].input-lg { + height: auto; +} +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.form-group-lg .form-control { + height: 46px; + line-height: 46px; +} +textarea.form-group-lg .form-control, +select[multiple].form-group-lg .form-control { + height: auto; +} +.form-group-lg .form-control-static { + height: 46px; + min-height: 38px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.has-feedback { + position: relative; +} +.has-feedback .form-control { + padding-right: 42.5px; +} +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none; +} +.input-lg + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; +} +.input-sm + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; +} +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline, +.has-success.radio label, +.has-success.checkbox label, +.has-success.radio-inline label, +.has-success.checkbox-inline label { + color: #3c763d; +} +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; +} +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d; +} +.has-success .form-control-feedback { + color: #3c763d; +} +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline, +.has-warning.radio label, +.has-warning.checkbox label, +.has-warning.radio-inline label, +.has-warning.checkbox-inline label { + color: #8a6d3b; +} +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; +} +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b; +} +.has-warning .form-control-feedback { + color: #8a6d3b; +} +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline, +.has-error.radio label, +.has-error.checkbox label, +.has-error.radio-inline label, +.has-error.checkbox-inline label { + color: #a94442; +} +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; +} +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442; +} +.has-error .form-control-feedback { + color: #a94442; +} +.has-feedback label ~ .form-control-feedback { + top: 25px; +} +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; +} +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-static { + display: inline-block; + } + .form-inline .input-group { + display: inline-table; + vertical-align: middle; + } + .form-inline .input-group .input-group-addon, + .form-inline .input-group .input-group-btn, + .form-inline .input-group .form-control { + width: auto; + } + .form-inline .input-group > .form-control { + width: 100%; + } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio label, + .form-inline .checkbox label { + padding-left: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .form-inline .has-feedback .form-control-feedback { + top: 0; + } +} +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; +} +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 7px; + margin-bottom: 0; + text-align: right; + } +} +.form-horizontal .has-feedback .form-control-feedback { + right: 15px; +} +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 14.333333px; + } +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + } +} +.btn { + display: inline-block; + padding: 6px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: normal; + line-height: 1.42857143; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.btn:focus, +.btn:active:focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn.active.focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, +.btn:focus, +.btn.focus { + color: #333; + text-decoration: none; +} +.btn:active, +.btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + pointer-events: none; + cursor: not-allowed; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; + opacity: .65; +} +.btn-default { + color: #333; + background-color: #fff; + border-color: #ccc; +} +.btn-default:hover, +.btn-default:focus, +.btn-default.focus, +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + background-image: none; +} +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #fff; + border-color: #ccc; +} +.btn-default .badge { + color: #fff; + background-color: #333; +} +.btn-primary { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary:hover, +.btn-primary:focus, +.btn-primary.focus, +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + color: #fff; + background-color: #286090; + border-color: #204d74; +} +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + background-image: none; +} +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary .badge { + color: #337ab7; + background-color: #fff; +} +.btn-success { + color: #fff; + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success:hover, +.btn-success:focus, +.btn-success.focus, +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + color: #fff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + background-image: none; +} +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #fff; +} +.btn-info { + color: #fff; + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info:hover, +.btn-info:focus, +.btn-info.focus, +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + background-image: none; +} +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #fff; +} +.btn-warning { + color: #fff; + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning:hover, +.btn-warning:focus, +.btn-warning.focus, +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + color: #fff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + background-image: none; +} +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; +} +.btn-danger { + color: #fff; + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger:hover, +.btn-danger:focus, +.btn-danger.focus, +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + background-image: none; +} +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger .badge { + color: #d9534f; + background-color: #fff; +} +.btn-link { + font-weight: normal; + color: #337ab7; + border-radius: 0; +} +.btn-link, +.btn-link:active, +.btn-link.active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} +.btn-link:hover, +.btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #777; + text-decoration: none; +} +.btn-lg, +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +.btn-sm, +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-xs, +.btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-block { + display: block; + width: 100%; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.fade { + opacity: 0; + -webkit-transition: opacity .15s linear; + -o-transition: opacity .15s linear; + transition: opacity .15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + display: none; +} +.collapse.in { + display: block; +} +tr.collapse.in { + display: table-row; +} +tbody.collapse.in { + display: table-row-group; +} +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-timing-function: ease; + -o-transition-timing-function: ease; + transition-timing-function: ease; + -webkit-transition-duration: .35s; + -o-transition-duration: .35s; + transition-duration: .35s; + -webkit-transition-property: height, visibility; + -o-transition-property: height, visibility; + transition-property: height, visibility; +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} +.dropup, +.dropdown { + position: relative; +} +.dropdown-toggle:focus { + outline: 0; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); + box-shadow: 0 6px 12px rgba(0, 0, 0, .175); +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.42857143; + color: #333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0; +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #777; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.open > .dropdown-menu { + display: block; +} +.open > a { + outline: 0; +} +.dropdown-menu-right { + right: 0; + left: auto; +} +.dropdown-menu-left { + right: auto; + left: 0; +} +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.42857143; + color: #777; + white-space: nowrap; +} +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + content: ""; + border-top: 0; + border-bottom: 4px solid; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px; +} +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; + } + .navbar-right .dropdown-menu-left { + right: auto; + left: 0; + } +} +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.btn-toolbar { + margin-left: -5px; +} +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; +} +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.btn-group > .btn:first-child { + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group > .btn-group { + float: left; +} +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} +.btn-group > .btn-lg + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn .caret { + margin-left: 0; +} +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-left-radius: 4px; +} +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} +[data-toggle="buttons"] > .btn input[type="radio"], +[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], +[data-toggle="buttons"] > .btn input[type="checkbox"], +[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.input-group { + position: relative; + display: table; + border-collapse: separate; +} +.input-group[class*="col-"] { + float: none; + padding-right: 0; + padding-left: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 46px; + line-height: 46px; +} +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn, +select[multiple].input-group-lg > .form-control, +select[multiple].input-group-lg > .input-group-addon, +select[multiple].input-group-lg > .input-group-btn > .btn { + height: auto; +} +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn, +select[multiple].input-group-sm > .form-control, +select[multiple].input-group-sm > .input-group-addon, +select[multiple].input-group-sm > .input-group-btn > .btn { + height: auto; +} +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #555; + text-align: center; + background-color: #eee; + border: 1px solid #ccc; + border-radius: 4px; +} +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group-addon:first-child { + border-right: 0; +} +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group-addon:last-child { + border-left: 0; +} +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; +} +.input-group-btn > .btn { + position: relative; +} +.input-group-btn > .btn + .btn { + margin-left: -1px; +} +.input-group-btn > .btn:hover, +.input-group-btn > .btn:focus, +.input-group-btn > .btn:active { + z-index: 2; +} +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + margin-left: -1px; +} +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.nav > li { + position: relative; + display: block; +} +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eee; +} +.nav > li.disabled > a { + color: #777; +} +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eee; + border-color: #337ab7; +} +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.nav > li > a > img { + max-width: none; +} +.nav-tabs { + border-bottom: 1px solid #ddd; +} +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.42857143; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover { + border-color: #eee #eee #ddd; +} +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} +.nav-tabs.nav-justified > li { + float: none; +} +.nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs.nav-justified > .active > a, +.nav-tabs.nav-justified > .active > a:hover, +.nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs.nav-justified > .active > a, + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.nav-pills > li { + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #fff; + background-color: #337ab7; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} +.nav-justified { + width: 100%; +} +.nav-justified > li { + float: none; +} +.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs-justified { + border-bottom: 0; +} +.nav-tabs-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} +@media (min-width: 768px) { + .navbar-header { + float: left; + } +} +.navbar-collapse { + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + -webkit-overflow-scrolling: touch; + border-top: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); +} +.navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } +} +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-device-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } +} +.container > .navbar-header, +.container-fluid > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .container > .navbar-header, + .container-fluid > .navbar-header, + .container > .navbar-collapse, + .container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; +} +@media (min-width: 768px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; +} +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; +} +.navbar-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} +.navbar-brand > img { + display: block; +} +@media (min-width: 768px) { + .navbar > .container .navbar-brand, + .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } +} +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-top: 8px; + margin-right: 15px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} +.navbar-nav { + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +.navbar-form { + padding: 10px 15px; + margin-top: 8px; + margin-right: -15px; + margin-bottom: 8px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); +} +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .form-control-static { + display: inline-block; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, + .navbar-form .input-group .input-group-btn, + .navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, + .navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } +} +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } + .navbar-form .form-group:last-child { + margin-bottom: 0; + } +} +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + margin-bottom: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px; +} +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; + } +} +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + .navbar-right { + float: right !important; + margin-right: -15px; + } + .navbar-right ~ .navbar-right { + margin-right: 0; + } +} +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777; +} +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777; +} +.navbar-default .navbar-nav > li > a { + color: #777; +} +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; +} +.navbar-default .navbar-toggle { + border-color: #ddd; +} +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #ddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; +} +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #ccc; + background-color: transparent; + } +} +.navbar-default .navbar-link { + color: #777; +} +.navbar-default .navbar-link:hover { + color: #333; +} +.navbar-default .btn-link { + color: #777; +} +.navbar-default .btn-link:hover, +.navbar-default .btn-link:focus { + color: #333; +} +.navbar-default .btn-link[disabled]:hover, +fieldset[disabled] .navbar-default .btn-link:hover, +.navbar-default .btn-link[disabled]:focus, +fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc; +} +.navbar-inverse { + background-color: #222; + border-color: #080808; +} +.navbar-inverse .navbar-brand { + color: #9d9d9d; +} +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #fff; + background-color: #080808; +} +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444; + background-color: transparent; +} +.navbar-inverse .navbar-toggle { + border-color: #333; +} +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + color: #fff; + background-color: #080808; +} +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #fff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444; + background-color: transparent; + } +} +.navbar-inverse .navbar-link { + color: #9d9d9d; +} +.navbar-inverse .navbar-link:hover { + color: #fff; +} +.navbar-inverse .btn-link { + color: #9d9d9d; +} +.navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link:focus { + color: #fff; +} +.navbar-inverse .btn-link[disabled]:hover, +fieldset[disabled] .navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link[disabled]:focus, +fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444; +} +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: "/\00a0"; +} +.breadcrumb > .active { + color: #777; +} +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.42857143; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + color: #23527c; + background-color: #eee; + border-color: #ddd; +} +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 2; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd; +} +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; +} +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; +} +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777; + cursor: not-allowed; + background-color: #fff; +} +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} +a.label:hover, +a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} +.label-default { + background-color: #777; +} +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #5e5e5e; +} +.label-primary { + background-color: #337ab7; +} +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #286090; +} +.label-success { + background-color: #5cb85c; +} +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} +.label-info { + background-color: #5bc0de; +} +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} +.label-warning { + background-color: #f0ad4e; +} +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} +.label-danger { + background-color: #d9534f; +} +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + background-color: #777; + border-radius: 10px; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.btn-xs .badge, +.btn-group-xs > .btn .badge { + top: 0; + padding: 1px 5px; +} +a.badge:hover, +a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #fff; +} +.list-group-item > .badge { + float: right; +} +.list-group-item > .badge + .badge { + margin-right: 5px; +} +.nav-pills > li > a > .badge { + margin-left: 3px; +} +.jumbotron { + padding: 30px 15px; + margin-bottom: 30px; + color: inherit; + background-color: #eee; +} +.jumbotron h1, +.jumbotron .h1 { + color: inherit; +} +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; +} +.jumbotron > hr { + border-top-color: #d5d5d5; +} +.container .jumbotron, +.container-fluid .jumbotron { + border-radius: 6px; +} +.jumbotron .container { + max-width: 100%; +} +@media screen and (min-width: 768px) { + .jumbotron { + padding: 48px 0; + } + .container .jumbotron, + .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px; + } + .jumbotron h1, + .jumbotron .h1 { + font-size: 63px; + } +} +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: border .2s ease-in-out; + -o-transition: border .2s ease-in-out; + transition: border .2s ease-in-out; +} +.thumbnail > img, +.thumbnail a > img { + margin-right: auto; + margin-left: auto; +} +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #337ab7; +} +.thumbnail .caption { + padding: 9px; + color: #333; +} +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} +.alert h4 { + margin-top: 0; + color: inherit; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, +.alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; +} +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.alert-success hr { + border-top-color: #c9e2b3; +} +.alert-success .alert-link { + color: #2b542c; +} +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.alert-info hr { + border-top-color: #a6e1ec; +} +.alert-info .alert-link { + color: #245269; +} +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.alert-warning hr { + border-top-color: #f7e1b5; +} +.alert-warning .alert-link { + color: #66512c; +} +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.alert-danger hr { + border-top-color: #e4b9c0; +} +.alert-danger .alert-link { + color: #843534; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); +} +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + -webkit-transition: width .6s ease; + -o-transition: width .6s ease; + transition: width .6s ease; +} +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + background-size: 40px 40px; +} +.progress.active .progress-bar, +.progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-bar-success { + background-color: #5cb85c; +} +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media, +.media-body { + overflow: hidden; + zoom: 1; +} +.media-body { + width: 10000px; +} +.media-object { + display: block; +} +.media-right, +.media > .pull-right { + padding-left: 10px; +} +.media-left, +.media > .pull-left { + padding-right: 10px; +} +.media-left, +.media-right, +.media-body { + display: table-cell; + vertical-align: top; +} +.media-middle { + vertical-align: middle; +} +.media-bottom { + vertical-align: bottom; +} +.media-heading { + margin-top: 0; + margin-bottom: 5px; +} +.media-list { + padding-left: 0; + list-style: none; +} +.list-group { + padding-left: 0; + margin-bottom: 20px; +} +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd; +} +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +a.list-group-item { + color: #555; +} +a.list-group-item .list-group-item-heading { + color: #333; +} +a.list-group-item:hover, +a.list-group-item:focus { + color: #555; + text-decoration: none; + background-color: #f5f5f5; +} +.list-group-item.disabled, +.list-group-item.disabled:hover, +.list-group-item.disabled:focus { + color: #777; + cursor: not-allowed; + background-color: #eee; +} +.list-group-item.disabled .list-group-item-heading, +.list-group-item.disabled:hover .list-group-item-heading, +.list-group-item.disabled:focus .list-group-item-heading { + color: inherit; +} +.list-group-item.disabled .list-group-item-text, +.list-group-item.disabled:hover .list-group-item-text, +.list-group-item.disabled:focus .list-group-item-text { + color: #777; +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.list-group-item.active .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, +.list-group-item.active:hover .list-group-item-heading > .small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; +} +.list-group-item.active .list-group-item-text, +.list-group-item.active:hover .list-group-item-text, +.list-group-item.active:focus .list-group-item-text { + color: #c7ddef; +} +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; +} +a.list-group-item-success { + color: #3c763d; +} +a.list-group-item-success .list-group-item-heading { + color: inherit; +} +a.list-group-item-success:hover, +a.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; +} +a.list-group-item-success.active, +a.list-group-item-success.active:hover, +a.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; +} +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; +} +a.list-group-item-info { + color: #31708f; +} +a.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, +a.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, +a.list-group-item-info.active:hover, +a.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; +} +a.list-group-item-warning { + color: #8a6d3b; +} +a.list-group-item-warning .list-group-item-heading { + color: inherit; +} +a.list-group-item-warning:hover, +a.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; +} +a.list-group-item-warning.active, +a.list-group-item-warning.active:hover, +a.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; +} +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; +} +a.list-group-item-danger { + color: #a94442; +} +a.list-group-item-danger .list-group-item-heading { + color: inherit; +} +a.list-group-item-danger:hover, +a.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; +} +a.list-group-item-danger.active, +a.list-group-item-danger.active:hover, +a.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; +} +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} +.panel { + margin-bottom: 20px; + background-color: #fff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: 0 1px 1px rgba(0, 0, 0, .05); +} +.panel-body { + padding: 15px; +} +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; +} +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; +} +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .list-group, +.panel > .panel-collapse > .list-group { + margin-bottom: 0; +} +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; +} +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} +.list-group + .panel-footer { + border-top-width: 0; +} +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; +} +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; +} +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; +} +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; +} +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { + border-top: 1px solid #ddd; +} +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; +} +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; +} +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; +} +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; +} +.panel > .table-responsive { + margin-bottom: 0; + border: 0; +} +.panel-group { + margin-bottom: 20px; +} +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; +} +.panel-group .panel + .panel { + margin-top: 5px; +} +.panel-group .panel-heading { + border-bottom: 0; +} +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #ddd; +} +.panel-group .panel-footer { + border-top: 0; +} +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; +} +.panel-default { + border-color: #ddd; +} +.panel-default > .panel-heading { + color: #333; + background-color: #f5f5f5; + border-color: #ddd; +} +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; +} +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333; +} +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; +} +.panel-primary { + border-color: #337ab7; +} +.panel-primary > .panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; +} +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #fff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; +} +.panel-success { + border-color: #d6e9c6; +} +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; +} +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} +.panel-info { + border-color: #bce8f1; +} +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; +} +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} +.panel-warning { + border-color: #faebcc; +} +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; +} +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} +.panel-danger { + border-color: #ebccd1; +} +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} +.embed-responsive-16by9 { + padding-bottom: 56.25%; +} +.embed-responsive-4by3 { + padding-bottom: 75%; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, .15); +} +.well-lg { + padding: 24px; + border-radius: 6px; +} +.well-sm { + padding: 9px; + border-radius: 3px; +} +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + filter: alpha(opacity=20); + opacity: .2; +} +.close:hover, +.close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: .5; +} +button.close { + -webkit-appearance: none; + padding: 0; + cursor: pointer; + background: transparent; + border: 0; +} +.modal-open { + overflow: hidden; +} +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0; +} +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform .3s ease-out; + -o-transition: -o-transform .3s ease-out; + transition: transform .3s ease-out; + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); +} +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} +.modal-dialog { + position: relative; + width: auto; + margin: 10px; +} +.modal-content { + position: relative; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + outline: 0; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); + box-shadow: 0 3px 9px rgba(0, 0, 0, .5); +} +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; +} +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0; +} +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: .5; +} +.modal-header { + min-height: 16.42857143px; + padding: 15px; + border-bottom: 1px solid #e5e5e5; +} +.modal-header .close { + margin-top: -2px; +} +.modal-title { + margin: 0; + line-height: 1.42857143; +} +.modal-body { + position: relative; + padding: 15px; +} +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); + box-shadow: 0 5px 15px rgba(0, 0, 0, .5); + } + .modal-sm { + width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg { + width: 900px; + } +} +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 12px; + font-weight: normal; + line-height: 1.4; + filter: alpha(opacity=0); + opacity: 0; +} +.tooltip.in { + filter: alpha(opacity=90); + opacity: .9; +} +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + text-decoration: none; + background-color: #000; + border-radius: 4px; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + font-weight: normal; + line-height: 1.42857143; + text-align: left; + white-space: normal; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); + box-shadow: 0 5px 10px rgba(0, 0, 0, .2); +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} +.popover-content { + padding: 9px 14px; +} +.popover > .arrow, +.popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow:after { + content: ""; + border-width: 10px; +} +.popover.top > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, .25); + border-bottom-width: 0; +} +.popover.top > .arrow:after { + bottom: 1px; + margin-left: -10px; + content: " "; + border-top-color: #fff; + border-bottom-width: 0; +} +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, .25); + border-left-width: 0; +} +.popover.right > .arrow:after { + bottom: -10px; + left: 1px; + content: " "; + border-right-color: #fff; + border-left-width: 0; +} +.popover.bottom > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, .25); +} +.popover.bottom > .arrow:after { + top: 1px; + margin-left: -10px; + content: " "; + border-top-width: 0; + border-bottom-color: #fff; +} +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, .25); +} +.popover.left > .arrow:after { + right: 1px; + bottom: -10px; + content: " "; + border-right-width: 0; + border-left-color: #fff; +} +.carousel { + position: relative; +} +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: .6s ease-in-out left; + -o-transition: .6s ease-in-out left; + transition: .6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner > .item { + -webkit-transition: -webkit-transform .6s ease-in-out; + -o-transition: -o-transform .6s ease-in-out; + transition: transform .6s ease-in-out; + + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000; + perspective: 1000; + } + .carousel-inner > .item.next, + .carousel-inner > .item.active.right { + left: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + .carousel-inner > .item.prev, + .carousel-inner > .item.active.left { + left: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + .carousel-inner > .item.next.left, + .carousel-inner > .item.prev.right, + .carousel-inner > .item.active { + left: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); + filter: alpha(opacity=50); + opacity: .5; +} +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control:hover, +.carousel-control:focus { + color: #fff; + text-decoration: none; + filter: alpha(opacity=90); + outline: 0; + opacity: .9; +} +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; +} +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + font-family: serif; + line-height: 1; +} +.carousel-control .icon-prev:before { + content: '\2039'; +} +.carousel-control .icon-next:before { + content: '\203a'; +} +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; +} +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; +} +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #fff; +} +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); +} +.carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + font-size: 30px; + } + .carousel-control .glyphicon-chevron-left, + .carousel-control .icon-prev { + margin-left: -15px; + } + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next { + margin-right: -15px; + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} +.clearfix:before, +.clearfix:after, +.dl-horizontal dd:before, +.dl-horizontal dd:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after, +.form-horizontal .form-group:before, +.form-horizontal .form-group:after, +.btn-toolbar:before, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after, +.nav:before, +.nav:after, +.navbar:before, +.navbar:after, +.navbar-header:before, +.navbar-header:after, +.navbar-collapse:before, +.navbar-collapse:after, +.pager:before, +.pager:after, +.panel-body:before, +.panel-body:after, +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} +.clearfix:after, +.dl-horizontal dd:after, +.container:after, +.container-fluid:after, +.row:after, +.form-horizontal .form-group:after, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:after, +.nav:after, +.navbar:after, +.navbar-header:after, +.navbar-collapse:after, +.pager:after, +.panel-body:after, +.modal-footer:after { + clear: both; +} +.center-block { + display: block; + margin-right: auto; + margin-left: auto; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; +} +.affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: block !important; + } + table.visible-print { + display: table; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } +} +.visible-print-block { + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } +} +.visible-print-inline { + display: none !important; +} +@media print { + .visible-print-inline { + display: inline !important; + } +} +.visible-print-inline-block { + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } +} +@media print { + .hidden-print { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap.css.map */ diff --git a/static/css/font-awesome.css b/static/css/font-awesome.css new file mode 100644 index 0000000000000000000000000000000000000000..74e77d0ebc3efc364c8fb0e4bf651f0866ce4b15 --- /dev/null +++ b/static/css/font-awesome.css @@ -0,0 +1,2199 @@ +/*! + * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.6.3'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.3#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; +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.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: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.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; +} +/* Deprecated as of 4.4.0 */ +.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; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.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-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"; +} +.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; +} diff --git a/static/css/skdslider.css b/static/css/skdslider.css new file mode 100644 index 0000000000000000000000000000000000000000..87e58f00f9f5f9905b631ee10e196a9bca91d883 --- /dev/null +++ b/static/css/skdslider.css @@ -0,0 +1,369 @@ +.skdslider{ + width:100%; + position: relative; + display: block; + overflow:hidden; + height: 500px; +} + +.skdslider:after { + content: ''; + padding-top: 50%; + display: block; +} + +.skdslider ul.slides{ margin:0; padding:0; list-style-type:none;} +.skdslider ul.slides li +{ + display: none; +} +.skdslider ul.slides li img{ + width: 100%; + border:0; +} + +.skdslider ul.slide-navs { + bottom: 20px; + left: 50%; + position: absolute; + list-style-type: none; + margin: 0; + padding: 0; +} + + +.skdslider ul.slide-navs li { + float: left; + height:12px; + width:12px; + margin-right:4px; + cursor:pointer; +} +.skdslider ul.slide-navs li.current-slide { +} + +.skdslider .slide-desc { + left: 0; + padding: 20px; + position: absolute; + bottom: 28%; + width: 100%; + display: inline-block; + text-align:center; +} +.skdslider .slide-desc > h3 { + color: #ffffff; + font-size: 50px; + margin-bottom: 20px; + padding: 10px; + width: 54%; + line-height:65px; + margin: 0 auto; + font-weight:600; + letter-spacing: 2px; + text-transform:uppercase; +} + +.skdslider .slide-desc > p { + color: #FFFFFF; + font-size: 15px; + line-height: 28px; + margin: 0px auto 20px; + width: 65%; + + padding: 12px; +} +.skdslider .slide-desc > a.more { + color:#990000; + font-size:25px; + text-decoration:none; +} +.skdslider .slide-desc > a.more:hover { +text-decoration:underline; +} + +.skdslider a.prev{ + background: url("../images/") no-repeat scroll 0 0 transparent; + width:35px; + height:35px; + display:block; + cursor:pointer; + position:absolute; + top:55%; + left:2%; + margin-top:-17px; +} + +.skdslider a.next{ + background: url("../images/") no-repeat scroll 0 0 transparent; + width:35px; + height:35px; + display:block; + cursor:pointer; + position:absolute; + top:55%; + right:2%; + margin-top:-17px; +} +.skdslider a.prev:hover{ + +} +.skdslider a.next:hover{ + +} + +.skdslider a.play{ + background: url("../images/") no-repeat scroll center center transparent; + width:35px; + height:35px; + display:none; + cursor:pointer; + position:absolute; + bottom : 6%; + right: 2%; + margin-top:-17px; +} + +.skdslider a.pause{ + background: url(../images/) no-repeat scroll center center transparent; + width: 35px; + height: 35px; + display: none; + cursor: pointer; + position: absolute; + bottom : 6%; + right: 2%; + margin-top: -17px; +} + +/*-- responsive media queries --*/ +/*Some Responsive CSS */ +@media (max-width: 1440px){ + .skdslider .slide-desc > p { + width: 70%; + } + .skdslider .slide-desc > h3 { + font-size: 38px; + } + .skdslider .slide-desc { + bottom: 42%; + } + .skdslider { + height: 556px; + } +} +@media (max-width: 1366px){ + .skdslider { + height: 527px; + } + .skdslider .slide-desc > h3 { + font-size: 36px; + } + .skdslider .slide-desc > p { + width: 75%; + } + .skdslider .slide-desc { + bottom: 41%; + } +} +@media (max-width: 1280px){ + .skdslider { + height: 493px; + } + .skdslider .slide-desc > p { + font-size: 14px; + } + .skdslider .slide-desc { + bottom: 27%; +} +} +@media (max-width: 1080px){ + .skdslider { + height: 550px; + } + .skdslider .slide-desc > p { + font-size: 13px; + width: 85%; + } + .skdslider .slide-desc > h3 { + font-size: 34px; + } +} +@media (max-width: 1050px){ + .skdslider { + height:393px; + } + .skdslider .slide-desc > h3 { + font-size: 32px; + } + .skdslider .slide-desc { + bottom: 22%; +} +.skdslider .slide-desc > h3 { + width: 64%; + line-height: 58px; +} +} +@media (max-width: 1024px){ + .skdslider { + height: 393px; + } + .skdslider .slide-desc > h3 { + font-size: 30px; + } +} +@media (max-width: 991px){ + .skdslider { + height: 330px; + } + .skdslider .slide-desc { + bottom: 22%; + } + .skdslider .slide-desc > p { + line-height: 24px; + letter-spacing: 1px; + } + .skdslider .slide-desc > h3 { + line-height: 48px; +} +.skdslider ul.slides li img { + width: none; +} +} +@media (max-width: 800px){ + .skdslider .slide-desc > h3 { + font-size: 26px; + } + .skdslider { + height: 307px; + } + .skdslider .slide-desc > p { + line-height: 22px; + letter-spacing: 0.5px; + } + .skdslider .slide-desc > p { + font-size: 12.5px; + width: 90%; + } +} +@media screen and (max-width:768px) { + .skdslider .slide-desc > h3 { + font-size: 24px; + } + .skdslider { + height: 295px; + } + .skdslider .slide-desc > p a.more { + font-size:14px; + } +} +@media screen and (max-width:736px) { + .skdslider { + height: 281px; + } + .skdslider .slide-desc { + bottom: 18%; + } +} +@media screen and (max-width:667px) { + .skdslider { + height: 254px; + } + .skdslider .slide-desc { + bottom: 14%; + } + .skdslider .slide-desc > p { + padding: 10px; + } +} +@media screen and (max-width:640px) { + .skdslider { + height: 243px; + } + .skdslider .slide-desc > h3 { + width: 100%; + font-size: 22px; + } + .skdslider .slide-desc > p { + padding: 8px; + } +} +@media screen and (max-width:600px) { + .skdslider { + height: 229px; + } + .skdslider .slide-desc > h3 { + font-size: 22px; + letter-spacing: 2px; + width: 100%; + } + .skdslider .slide-desc > p { + padding: 6px; + font-size: 12px; + } +} +@media (max-width: 568px){ + .skdslider { + height: 216px; + } + .skdslider .slide-desc > p { + line-height: 20px; + letter-spacing: 0px; + } +} +@media (max-width: 480px){ + .skdslider { + height: 181px; + } + .skdslider .slide-desc > p { + width:93%; + padding: 8px; + } + .skdslider .slide-desc > h3 { + line-height: 34px; +} +} +@media (max-width: 414px){ + .skdslider { + height: 154px; + } + .skdslider .slide-desc { + bottom: 10%; + } + .skdslider .slide-desc > h3 { + font-size: 18px; + width: 100%; + } + .skdslider .slide-desc > h3 { + line-height: 30px; +} +} +@media (max-width: 384px){ + .skdslider { + height: 144px; + } + .skdslider .slide-desc { + bottom: 2%; + } +} +@media (max-width: 375px){ + .skdslider { + height: 142px; + } + .skdslider .slide-desc { + bottom: 1.5%; + } +} +@media (max-width: 320px){ + .skdslider { + height: 119px; + } + .skdslider .slide-desc { + bottom:0%; + } + .skdslider .slide-desc > h3 { + font-size: 14px; + width: 100%; + line-height: 26px; +} +} \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000000000000000000000000000000000000..c5a8bfd9fabc554761a3753b9b51abb7f476866a --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,3396 @@ +/*-- +Author: W3layouts +Author URL: http://w3layouts.com +License: Creative Commons Attribution 3.0 Unported +License URL: http://creativecommons.org/licenses/by/3.0/ +--*/ +html, body{ + font-size: 100%; + font-family: 'Century Gothic'; + background:#ffffff; + font-weight:700; + font-size:14px; +} +ul li,ol li{ + font-size:14px; + font-weight:1000; +} +p{ + margin:0; +} +h1,h2,h3,h4,h5,h6,a{ + font-family: 'Century Gothic'; + margin:0; + font-weight:1000; +} +ul,label{ + margin:0; + padding:0; +} +body a:hover{ + text-decoration:none; +} +/*-- header --*/ +span.glyphicon.glyphicon-shopping-cart.my-cart-icon.my-cart-icon-affix { + position: relative !important; +} +.btn-danger { + color: #fff; + background-color: #3399cc; + border-color: #3399cc; +} +.modal-dialog { + width: 850px; + margin:75px auto 30px; +} +.snipcart-thumb a { + display: block; + text-align: center; +} +.my-cart-icon-affix i { + background: #52bfe9 !important; +} +.agile_top_brand_left_grid { + position: relative; + display: block; +} +i.badge.badge-notify.my-cart-badge { + font-style: normal; + background: #3399cc; + font-size: 14px; + position: absolute; + top: -10px; + right:-22px; +} +.product_list_header span { + font-size: 1em; + color: #fff; + top: 1em; +} +input[type="submit"],#PPMiniCart .minicart-submit,.w3ls_vegetables ul li a,input[type="reset"],.agileinfo_mail_grid_left ul li a,.events_bottom_left2 ul li a,.w3ls_service_grids1_right a,ul.agileits_social_icons li a,.w3l_banner_nav_right_banner_pet a,.w3ls_w3l_banner_nav_right_grid_head_grid ul li a,.products-breadcrumb ul li a,.w3_footer_grid ul li a,.w3l_fresh_vegetables_grid ul li a,.wthree_footer_copy p a,.agile_top_brand_left_grid1 .button,.w3ls_logo_products_left1 ul.special_items li a,.w3ls_logo_products_left1 ul.phone_email li a{ + transition: .5s ease-in; + -webkit-transition: .5s ease-in; + -moz-transition: .5s ease-in; + -o-transition: .5s ease-in; + -ms-transition: .5s ease-in; +} +.agileits_header { + background: #333333; + padding: 12px 0; +} +.w3l_offers { + float: left; + padding: 9px 0; + width: 47%; +} +.w3l_offers p { + font-size: 15px; + color: #fff; +} +.w3l_offers p a { + color: #52bfe9; + text-decoration: none; +} +.w3l_search { + float: right; + width: 25.33%; + margin: 0em 0 0em 0em; +} +.w3l_search input[type="search"] { + width: 83%; + padding:10px; + font-size: 14px; + color: #999; + outline: none; + border: 1px solid #cccccc; + background: none; + -webkit-appearance: none; + transition: 0.5s all; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; +} +i.fa.fa-angle-right { + font-size: 15px; + margin-right: 5px; +} +i.fa.fa-phone { + margin-right: 10px; + font-size: 20px; +} +button.btn.btn-default.search { + background: #52bfe9; + padding: 11px 12px 11px; + float: right; + outline: none; + border: none; +} +button.btn.btn-default.search:hover { + background:#333; + +} +.agile-login { + float: left; + width: 40%; + text-align: center; + padding: 9px 0; +} +.agile-login ul li { + display: inline-block; + padding: 0em 1em; +} +.agile-login ul li a { + font-size: 1em; + text-transform: capitalize; + color: #fff; + text-decoration: none; +} +.w3l_search input[type="search"] { + margin-top:0px; +} +.w3l_search i.fa.fa-search { + font-size: 17px; + color:#fff; +} +button.w3l_search { + border: none; + position: absolute; + top: 4px; + right: 11px; + width: 47px; + height: 43px; + outline: none; + box-shadow: none; + background:#00e58b; + padding: 0; + border-radius: inherit; + -webkit-appearance: none; + -webkit-transition: .5s all; + -moz-transition: .5s all; + transition: .5s all; +} +.btn-default:hover { + background-color:#000; + border:none; +} +.cart-wthree .fa { + font-size: 34px; + margin-top: 7px; +} +button.w3view-cart { + background: transparent; + border: none; +} +button.w3view-cart:focus{ + outline:none; +} +.logo_products { + padding: 2em 0; +} +.w3ls_logo_products_left { + float: left; + text-align: center; + width: 100%; +} +.w3ls_logo_products_left h1 a{ + font-size: 40px; + color: #52bfe9; + text-decoration: none; + text-transform: uppercase; + display: block; + line-height: 1; +} +.w3ls_logo_products_left1 { + float: left; + margin-top: 0.6em; + width: 33.33%; +} +.w3ls_logo_products_left1 ul.phone_email li{ + display:inline-block; + color:#212121; +} +/*-- //header --*/ +.navbar-default .navbar-nav > li > a { + color: #fff; + font-size: 16px; + font-weight: 500; +} +.logo-nav-left1 ul li.active a.act{ + color:#fff !important; +} +.multi-column-dropdown li a { + color: #999 !important; +} +.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { + background-color: transparent; + color: #fff !important; +} +.navbar-default .navbar-collapse, .navbar-default .navbar-form { + border: none; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 10px; + border: 1px solid transparent; +} +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { + color: #fff; +} +.navbar-default { + background: none; + border: none; +} +.navbar-collapse { + padding: 0; +} +ul.multi-column-dropdown h6 { + font-size: 20px; + color:#52bfe9; + margin: 0 0 0em; + padding-bottom: 1em; + border-bottom: 1px solid #E4E4E4; + text-transform: capitalize; +} +.multi-column-dropdown li { + list-style-type: none; + margin: 14px 0; +} +.multi-column-dropdown li a { + display: block; + clear: both; + line-height: 1.428571429; + color: #999 !important; + white-space: normal; + font-weight:500 !important; +} +.dropdown-menu.columns-3 { + min-width: 190px; + padding: 20px 30px; +} +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { + background: none; + border: none; +} +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + background-color: transparent; +} +.nav > li > a:hover, .nav > li > a:focus { + background: none; + color:#fff !important; +} +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + color: #fff; +} +.multi-gd-img img { + width: 100%; +} +.navigation-agileits { + background: #52bfe9; +} +.navbar-nav > li { + float: left; + margin-left: 17px; +} +.navbar-nav > li:nth-child(1) { + margin-left: 0px; +} +/*-- banner --*/ +.navbar-collapse { + padding: 0; + box-shadow: none; +} +.navbar { + margin-bottom: 0; + border: none; +} +/*-- cart --*/ +/*-- cart-box --*/ +.w3view-cart { + background: #3399cc; + border: none; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + -ms-border-radius: 50%; + border-radius: 50%; + width: 40px; + height: 40px; + text-align: center; + outline: none; +} +.w3view-cart i.fa { + font-size: 24px; + color: #ffffff; + vertical-align: middle; +} +/*-- //cart-box --*/ +/*-- top-brands --*/ +.tag { + position: absolute; + top: -1%; + right: 10%; +} +.top-brands h2,.newproducts-w3agile h3,.login h2,.register h2,.faq-w3agile h3,.brands h3{ + text-align:center; + color:#212121; + padding-bottom:.5em; + position:relative; + font-size: 2.5em; + text-transform: uppercase; +} +.top-brands h2:after,.newproducts-w3agile h3:after,.login h2:after,.register h2:after,.faq-w3agile h3:after,.brands h3:after{ + content: ''; + background: #3399cc; + height: 2px; + width: 15%; + position: absolute; + bottom: 0%; + left: 43%; +} +.agile_top_brand_left_grid{ + background: #FFFFFF; + padding: .5em; + position:relative; +} +.agile_top_brand_left_grid_pos{ + position:absolute; + top:0%; + right:0%; +} +.agile_top_brand_left_grid1{ + padding:1em; +} +.agile_top_brand_left_grid1 img{ + margin:0 auto; +} +.top-brands{ + background: #f5f5f5; + padding:5em 0; +} +.agile_top_brand_left_grid1 p{ + color:#212121; + margin:1.5em 0 1em; + line-height:1.5em; + text-transform:capitalize; + font-size:14px; + text-align: center; +} +.agile_top_brand_left_grid1 h4,.agileinfo_single_right_snipcart h4{ + font-weight:600; + font-size:1em; + color:#212121; + text-align: center; +} +.agile_top_brand_left_grid1 h4 span,.agileinfo_single_right_snipcart h4 span{ + font-weight:300; + text-decoration:line-through; + padding-left:1em; +} +/*-- cart --*/ +.product_list_header { + float: right; +} +.snipcart-details { + text-align: center; + margin: 1.5em auto 1em; + width:77%; +} +.btn-danger.my-cart-btn:focus { + outline: none; +} +.snipcart-details input.button { + font-size: 14px; + color: #fff; + background: #3399cc; + text-decoration: none; + position: relative; + border: none; + border-radius: 0; + width: 100%; + text-transform: uppercase; + padding: .5em 0; + outline: none; +} +.agile_top_brand_left_grid:hover .snipcart-details input.button,.snipcart-details input.button:hover{ + background: #52bfe9; +} +.product_list_header input.button { + color: #fff; + font-size: 14px; + outline: none; + text-transform: capitalize; + padding: .5em 2.5em .5em 1em; + border: 1px solid #52bfe9; + margin: .35em 0 0; + background: url(../images/cart.png) no-repeat 116px 9px; +} +#PPMiniCart form { + width: 590px !important; + padding: 10px 20px 40px !important; + max-height:450px !important; +} +#PPMiniCart ul { + width: 548px !important; +} +#PPMiniCart .minicart-item a { + color: #212121 !important; + font-size: 1em; + display: block; + margin-bottom: .5em; + text-transform: capitalize; +} +#PPMiniCart .minicart-item { + min-height:60px !important; +} +#PPMiniCart .minicart-attributes li { + color: #999; +} +#PPMiniCart .minicart-remove { + background: #3399cc !important; + border: 1px solid #3399cc !important; + opacity: 1 !important; + outline:none; +} +#PPMiniCart .minicart-submit { + display: none; +} +#PPMiniCart .minicart-submit:hover{ + background:#52bfe9 !important; + border-color: #5b951a !important; +} +#PPMiniCart .minicart-subtotal { + padding-left: 25px !important; + bottom: -17px !important; +} +#PPMiniCart { + left: 44% !important; +} +.minicart-showing #PPMiniCart form{ + overflow-x: hidden; + overflow-y: auto; +} +#PPMiniCart .minicart-footer { + position: relative; + width: 80%; +} +/*-- //cart --*/ +.column div.agile_top_brand_left_grid { + position: relative; + margin:0; +} +.agile_top_brand_left_grid figure { + margin: 0; + padding: 0; + background:transparent; + overflow: hidden; + z-index: 0; +} +/* Shine */ +.hover14 figure { + position: relative; +} +.hover14 figure::before { + position: absolute; + top: 0; + left: -75%; + z-index: 2; + display: block; + content: ''; + width: 50%; + height: 100%; + background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%); + background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%); + -webkit-transform: skewX(-25deg); + transform: skewX(-25deg); +} +.hover14 figure:hover::before,.top_brand_left:hover .hover14 figure::before{ + -webkit-animation: shine .75s; + animation: shine .75s; +} +@-webkit-keyframes shine { + 100% { + left: 125%; + } +} +@keyframes shine { + 100% { + left: 125%; + } +} +/*-- //top-brands --*/ +div#myTabContent { + padding: 40px 40px; +} +.nav-tabs > li { + width: 50%; +} +.nav-tabs>li>a { + margin: 0 0px; + padding: 10px 53px; + line-height: 1.42857143; + font-size: 20px; + text-align:center; + text-transform:uppercase; + font-weight: 600; + border: 0px solid transparent; + border-radius: 0px 0px 0 0; + color: #016773; +} +.nav-tabs>li>a:hover, .nav>li>a:focus { + text-decoration: none; + background: #52bfe9; + color: #FFF; + border: 0px solid transparent; +} +.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { + color: #FFF; + background: #52bfe9; + border: 0px solid transparent; +} +.nav-tabs { + border-bottom: 1px solid #fff; +} +.grid_3.grid_5 { + margin-top: 5em; + border: 1px solid #BEBEBE; +} +.grid_3.grid_5 h5 { + font-size: 20px; + color: #000; + margin-bottom: 16px; +} +p.w3l-ad { + font-size: 14px; + color: #777; + width: 42%; + line-height: 28px; +} +.agile_top_brands_grids { + margin-top: 40px; +} +.hover14.column { + border: 1px solid #c0bebe; +} +.stars { + text-align: center; + margin-bottom: 13px; +} +i.blue-star { + color: #3399cc; +} +i.gray-star { + color: #808080; +} +/*-- to-top --*/ +#toTop { + display: none; + text-decoration: none; + position: fixed; + bottom: 20px; + right: 2%; + overflow: hidden; + z-index: 999; + width: 32px; + height: 32px; + border: none; + text-indent: 100%; + background: url(../images/arrow.png) no-repeat 0px 0px; +} +#toTopHover { + width: 32px; + height: 32px; + display: block; + overflow: hidden; + float: right; + opacity: 0; + -moz-opacity: 0; + filter: alpha(opacity=0); +} +/*-- //to-top --*/ +.ban-bottom-w3l { + padding: 5em 0; +} +.ban-bottom1 { + float: left; + width: 48%; + margin-right:2% +} +.ban-bottom2 { + float: left; + width: 48%; + margin-left:2% +} +.ban-img { + margin-top: 2.1em; +} +.ban-top{ + position: relative; + overflow: hidden; +} +.ban-top img { + -moz-transition: all 1s; + -o-transition: all 1s; + -webkit-transition: all 1s; + transition: all 1s; + width: 100%; +} +.ban-top:hover img { + -moz-transform: scale3d(1.1, 1.1, 1); + -o-transform: scale3d(1.1, 1.1, 1); + -ms-transform: scale3d(1.1, 1.1, 1); + -webkit-transform: scale3d(1.1, 1.1, 1); + transform: scale3d(1.1, 1.1, 1); +} +.ban-text { + position: absolute; + top: 50%; + left: 25%; + background: rgb(254, 145, 38); + padding: 10px 30px; +} +.ban-text1 { + position: absolute; + top: 40%; + left: 25%; + background: rgb(254, 145, 38); + padding: 10px 30px; +} +.ban-text h4 { + font-size: 22px; + color: #fff; +} +.ban-text1 h4 { + font-size: 22px; + color: #fff; +} +.ban-text2 h4 { + font-size: 1.5em; + color: #fff; +} +.ban-text2 span{ + display:block; + line-height:1.5em; +} +/* Sweep To Top */ +.hvr-sweep-to-top { + display: inline-block; + vertical-align: middle; + -webkit-transform: translateZ(0); + transform: translateZ(0); + box-shadow: 0 0 1px rgba(0, 0, 0, 0); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -moz-osx-font-smoothing: grayscale; + position: relative; + -webkit-transition-property: color; + transition-property: color; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} +.hvr-sweep-to-top:before { + content: ""; + position: absolute; + z-index: -1; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: #F19E1F; + border-radius: 50%; + -webkit-border-radius: 60%; + -moz-border-radius: 60%; + -o-border-radius: 60%; + -ms-border-radius: 60%; + -webkit-transform: scaleY(0); + transform: scaleY(0); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + -webkit-transition-property: transform; + transition-property: transform; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; + -webkit-transition-timing-function: ease-out; + transition-timing-function: ease-out; +} +.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active { + color: white; +} +.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before,.services-grid:hover .hvr-sweep-to-top:before{ + -webkit-transform: scaleY(1); + transform: scaleY(1); +} +.ban-text2 { + position: absolute; + top: 14%; + left: 45%; + background: #3399cc; + padding: 1.5em; + border-radius: 60px; + text-align: center; + width: 18%; +} +/*--causel--*/ +.carousel-indicators { + position: absolute; + bottom: -45px; + left: 48%; + z-index: 15; + width: auto; + padding-left: 0; + margin: 0; + text-align: center; + list-style: none; +} + + +.carousel-indicators li { + display: inline-block; + width: 12px; + height: 12px; + margin:0 6px; + text-indent: -999px; + cursor: pointer; + background-color: #029241; + border: none; + border-radius: 10px; +} +.carousel-indicators .active { + background-color: #FAB005; + margin: 0 6px; +} +/*-- footer --*/ +.footer { + padding: 5em 0 2em; + background: #2b2a2a; +} +.w3_footer_grid h3 { + color: #ffffff; + font-size: 1.5em; + margin-bottom: 1.8em; + text-transform: uppercase; +} +.w3_footer_grid p{ + color:#afafaf; + line-height:1.8em; + margin-bottom:2em; +} +.w3_footer_grid ul li { + list-style-type: none; + margin-bottom: 1em; + color: #afafaf; + font-size: 14px; +} +.w3_footer_grid ul.address li i { + color:#52bfe9; + border: 1px solid #52bfe9; + padding: .5em; + margin-right: 1em; +} +.w3_footer_grid ul.address li span { + display: block; + margin-left: 3em; +} +.w3_footer_grid ul li a { + color: #afafaf; + text-decoration: none; +} +.w3_footer_grid ul li a:hover { + color:#52bfe9; +} +.w3_footer_grid h4{ + margin:2em 0 1em; + font-size:1.2em; + color:#ff9b05; +} +i.fa.fa-arrow-right { + color: #52bfe9; + margin-right: 10px; +} +.footer-copy1{ + position:relative; + padding: 2em 0 0; + border-bottom: 1px solid #F4F4F4; +} +.footer-copy-pos{ + position: absolute; + right: 14%; + bottom: -75%; + width: 50px; + height: 50px; + border: 3px solid rgba(254, 155, 5, 0.69); + border-radius: 25px; + -webkit-border-radius: 25px; + -moz-border-radius: 25px; + -o-border-radius: 25px; + -ms-border-radius: 25px; + box-shadow: 0px 0px 15px rgba(255, 155, 5, 0.49); +} +.footer-copy p{ + margin:4em 0 0; + text-align:center; + color:#999; + line-height:1.8em; +} +.footer-copy p a{ + color:#ff9b05; + text-decoration:none; +} +.footer-copy p a:hover{ + color:#999; +} +.w3layouts-foot ul li{ + display:inline-block; +} +.w3layouts-foot ul li a { + width: 32px; + height: 32px; + color: #fff; + border: 1px solid #fff; + text-align: center; + display: inline-block; + font-size: 18px; + line-height: 32px; + border-radius: 50%; +} +a.w3_agile_facebook:hover{ + background:#3b5998; + border: 1px solid #3b5998; +} +a.agile_twitter:hover{ + background:#1da1f2; + border: 1px solid #1da1f2; +} +a.w3_agile_dribble:hover{ + background:#ea4c89; + border: 1px solid #ea4c89; +} +a.w3_agile_vimeo:hover{ + background:#1ab7ea; + border: 1px solid #1ab7ea; +} +.w3layouts-foot { + float: left; +} +.payment-w3ls { + float: right; +} +.footer-botm { + background: #393737; + padding: 16px 0; +} +/*-- //footer --*/ +.newproducts-w3agile { + padding: 5em 0; + background: #f5f5f5; +} +.breadcrumb1 li span { + left: 0em; + padding-right: 1em; + color: #3399cc; +} +.breadcrumbs { + padding: 1.5em 0; + background: #f5f5f5; +} +.breadcrumb { + margin-bottom: 0 !important; + padding: 0 !important; +} +.breadcrumb1 li { + font-size: 1em; + color: #999; +} +.breadcrumb1 li a { + color: #3399cc; + text-decoration: none; +} +/*-- login --*/ +.login-form-grids{ + width: 45%; + padding: 3em; + background:#F7F7F9; + margin:3em auto 0; +} +.login-form-grids input[type="email"],.login-form-grids input[type="password"],.login-form-grids input[type="text"]{ + outline: none; + border: 1px solid #DBDBDB; + padding: 10px 10px 10px 10px; + font-size: 14px; + color: #999; + display: block; + width: 100%; +} + +.login-form-grids input[type="password"]{ + margin:1em 0 0; +} +.forgot { + margin: 1.5em 0 0; +} +.login-form-grids input[type="submit"]{ + outline: none; + border: none; + padding: 10px 0; + font-size: 1em; + color: #fff; + display: block; + width: 100%; + background:#3399cc; + margin: 1.5em 0 0; +} +.login-form-grids input[type="submit"]:hover{ + background:#52bfe9; +} +.login-form-grids ::-webkit-input-placeholder{ + color:#999; +} +.forgot a{ + color:#212121; + font-size:14px; + text-decoration:none; +} +.forgot a:hover{ + color:#d8703f; +} +.login h4{ + margin: 2em 0 0.5em; + font-size: 1.5em; + color: #212121; + text-align: center; + text-transform: uppercase; +} +.login p{ + font-size:14px; + color:#999; + line-height:1.8em; + margin:0; + text-align:center; +} +.login p a{ + color:#52bfe9; + text-decoration:none; + font-size: 1.2em; + padding: 0 .5em; +} +.login p a:hover{ + color:#212121; +} +.login p a span{ + top: 0.1em; + font-size: .7em; + left: 0.3em; +} +.login { + padding: 5em 0; +} +/*-- //login --*/ +/*-- register --*/ +.register { + padding: 5em 0; +} +.login-form-grids h5,.login-form-grids h6{ + font-size:1em; + color:#212121; + text-transform:uppercase; + margin:0 0 2em; +} +.login-form-grids input[type="text"]{ + background:url(../images/img-sp.png) no-repeat 5px -259px #fff; +} +.login-form-grids input[type="text"]:nth-child(2){ + background:url(../images/img-sp.png) no-repeat 0px -298px #fff; + margin:1em 0; +} +.register-check-box label{ + font-size:14px; + font-weight:500; + color:#999; + margin: 1.5em 0 0 0em; +} +.checkbox { + position: relative; + padding-left: 38px !important; + cursor: pointer; +} +.checkbox i { + position: absolute; + bottom: -2px; + left: 0; + display: block; + width: 25px; + height: 25px; + outline: none; + border: 2px solid #EDEDED; + background: #FFF; +} +.checkbox input + i:after,.radio input + i:after { + position: absolute; + opacity: 0; + transition: opacity 0.1s; + -o-transition: opacity 0.1s; + -ms-transition: opacity 0.1s; + -moz-transition: opacity 0.1s; + -webkit-transition: opacity 0.1s; +} +.checkbox input:checked + i:after,.radio input:checked + i:after{ + opacity: 1; +} +.checkbox input,.radio input { + position: absolute; + left: -9999px; +} +.checkbox input + i:after { + content: ''; + background: url("../images/check.png") no-repeat 1px 2px; + top: 0px; + left: 2px; + width: 16px; + height: 16px; + font: normal 12px/16px FontAwesome; + text-align: center; +} +.login-form-grids h6{ + margin:3em 0 2em !important; +} +.login-form-grids input[type="password"]:nth-child(3) { + margin:1em 0; +} +.register-home{ + margin:2em 0 0; + text-align:center; +} +.register-home a{ + padding: 8px 45px; + background: #9F9F9F; + color:#fff; + font-size:1em; + text-decoration:none; +} +.register-home a:hover{ + background:#52bfe9; +} +/*-- //register --*/ +/*-- checkout --*/ +.checkout h2{ + font-size:1em; + color:#212121; + text-transform:uppercase; + margin:0 0 3em; +} +.checkout h2 span{ + color:#3399cc; +} +table.timetable_sub { + width:100%; + margin:0 auto; +} +.timetable_sub thead { + background: #004284; +} +.timetable_sub th { + background: #52bfe9; + color: #fff !important; + text-transform: capitalize; + font-size: 13px; + border-right: 1px solid #52bfe9; +} +.timetable_sub th, .timetable_sub td { + text-align: center; + padding: 7px; + font-size: 14px; + color: #212121; +} +.timetable_sub td { + border:1px solid #CDCDCD; +} +td.invert-image a img { + width:30%; + margin: 0 auto; +} +.rem{ + position:relative; +} +.close1,.close2,.close3 { + background: url('../images/close_1.png') no-repeat 0px 0px; + cursor: pointer; + width: 28px; + height: 28px; + position: absolute; + right: 15px; + top: -13px; + -webkit-transition: color 0.2s ease-in-out; + -moz-transition: color 0.2s ease-in-out; + -o-transition: color 0.2s ease-in-out; + transition: color 0.2s ease-in-out; +} +/*-- quantity-starts --*/ + .value-minus, +.value-plus{ + height: 40px; + line-height: 24px; + width: 40px; + margin-right: 3px; + display: inline-block; + cursor: pointer; + position: relative; + font-size: 18px; + color: #fff; + text-align: center; + -webkit-user-select: none; + -moz-user-select: none; + border:1px solid #b2b2b2; + vertical-align: bottom; +} +.quantity-select .entry.value-minus:before, +.quantity-select .entry.value-plus:before{ + content: ""; + width: 13px; + height: 2px; + background: #000; + left: 50%; + margin-left: -7px; + top: 50%; + margin-top: -0.5px; + position: absolute; +} +.quantity-select .entry.value-plus:after{ + content: ""; + height: 13px; + width: 2px; + background: #000; + left: 50%; + margin-left: -1.4px; + top: 50%; + margin-top: -6.2px; + position: absolute; +} +.value { + cursor: default; + width: 40px; + height:40px; + padding: 8px 0px; + color: #A9A9A9; + line-height: 24px; + border: 1px solid #E5E5E5; + background-color: #E5E5E5; + text-align: center; + display: inline-block; + margin-right: 3px; +} +.quantity-select .entry.value-minus:hover, + .quantity-select .entry.value-plus:hover{ + background: #E5E5E5; +} + +.quantity-select .entry.value-minus{ + margin-left: 0; +} +/*-- quantity-end --*/ +.checkout-left-basket h4{ + padding: 1em; + background:#3399cc; + font-size: 1.1em; + color: #fff; + text-transform: uppercase; + text-align: center; + margin: 0 0 1em; +} +.checkout-left { + margin: 2em 0 0; +} +.checkout-left-basket ul li{ + list-style-type:none; + margin-bottom:1em; + font-size:14px; + color:#999; +} +.checkout-left-basket { + float: left; + width: 25%; +} +.checkout-right-basket{ + float: right; + margin: 8em 0 0 0em; +} +.checkout-left-basket ul li span { + float: right; +} +.checkout-left-basket ul li:nth-child(5) { + font-size: 1em; + color: #212121; + font-weight: 600; + padding: 1em 0; + border-top: 1px solid #DDD; + border-bottom: 1px solid #DDD; + margin: 2em 0 0; +} +.checkout-right-basket a{ + padding:10px 30px; + color:#fff; + font-size:1em; + background:#212121; + text-decoration:none; +} +.checkout-right-basket a:hover{ + background:#52bfe9; +} +.checkout-right-basket a span { + left: -.5em; + top: 0.1em; +} +.checkout { + padding: 5em 0; +} +/*-- //checkout --*/ +/*-- faq --*/ +h3.w3ls-title.w3ls-title1 { + text-align: center; + margin: 0 0 1.5em; + font-size: 2.5em; +} +.faq > li > a { + width: 100%; + display: block; + position: relative; + color: #fff; + font-size: 1em; + font-weight: 400; + text-decoration: none; +} +.faq-w3agile .faq li { + margin-top: 2em; + list-style-type: decimal; + padding-left: 0.5em; +} +.faq-w3agile .faq > li > a { + color: #999; +} +.faq-w3agile .faq li li.subitem1 { + display: block; + margin-top: 1em; +} +.faq-w3agile { + padding: 5em 0; +} +ul.faq { + margin-top: 5em; +} +/*-- //faq-page --*/ +/*-- single --*/ +.agileinfo_single h2{ + font-size: 1.8em; + color: #212121; + line-height: 1.5em; + text-transform: uppercase; + margin-bottom: 1em; +} +.agileinfo_single_left { + padding: 2em; + box-shadow: 0px 0px 5px #b2afaf; +} +/*-- Ratings --*/ +.rating1 { + direction:ltr; +} +.starRating:not(old) { + display: inline-block; + height: 17px; + width:100px; + overflow: hidden; +} + +.starRating:not(old) > input{ + margin-right :-26%; + opacity : 0; +} + +.starRating:not(old) > label { + float: right; + background: url(../images/star.png); + background-size: contain; + margin-right: 2px; +} + +.starRating:not(old) > label:before{ + content : ''; + display : block; + width : 16px; + height : 16px; + background : url(../images/star1.png); + background-size : contain; + opacity : 0; + transition : opacity 0.2s linear; +} + +.starRating:not(old) > label:hover:before, +.starRating:not(old) > label:hover ~ label:before, +.starRating:not(:hover) > :checked ~ label:before{ + opacity : 1; +} +/*-- //Ratings --*/ +.agileinfo_single_right { + padding-left: 5em; +} +.agileinfo_single_right_snipcart{ + margin:0 0 2em; +} +.agileinfo_single_right_details { + margin: 0 !important; + width: 25% !important; +} +.w3agile_description h4{ + font-size:1em; + color:#212121; + text-transform:uppercase; +} +.w3agile_description p{ + font-size:14px; + color:#999; + line-height:2em; + margin:.5em 0 0; + width:80%; +} +.w3agile_description { + margin: 2em 0; +} +.w3ls_w3l_banner_nav_right_grid_popular{ + background:#f5f5f5; + padding:5em 0 !important; +} +/*-- //single --*/ +.brands { + padding: 5em 0; + background: #eed3b6; +} +.brands-w3l { + text-align: center; + +} +.brands-w3l p a{ + font-size: 17px; + font-weight: 700; + text-transform: uppercase; + color: #39c; + background: #fff; + padding: 16px; + display: block; + border: 1px solid #e1e1e1; +} +.brands-w3l p a:hover{ + box-shadow: 0 0 6px 1px #b6b6b6; +} +.brands-agile-1 { + margin: 20px 0; +} +.brands-agile { + margin-top: 5em; +} +/*-- products --*/ +.products { + padding: 5em 0; +} +.sorting{ + float:right; + width: 35%; +} +.sorting-left{ + float: right; + margin-right: 2em; + width: 25%; +} +select#country,select#country1 { + border: 1px solid #212121; + outline: none; + font-size: 14px; + color: #212121; + padding: 0.5em; + width: 100%; + cursor: pointer; +} +.products-right-grids{ + margin-bottom: 2em; +} +.numbering{ + text-align:right; +} +ul.paging { + margin: 4em auto 0; +} +.paging > .active > a,.paging > .active > a:hover { + background-color:#ffc229; + border-color:#EDB62B; +} +.pagination > li > a{ + color:#212121; +} +.categories,.new-products{ + border:1px solid #999; +} +.categories h2{ + font-size: 1.5em; + color: #212121; + margin: 0; + padding: .5em; + background: #f5f5f5; + text-transform: uppercase; + text-align: center; + letter-spacing: 5px; +} +.filter-price h3{ + background:none; +} +.categories ul.cate,.new-products-grids{ + padding:2em; +} +.categories ul li{ + display:block; + color:#999; + font-size:14px; + margin-bottom:1em; +} +.categories ul li a{ + color:#999; + text-decoration:none; +} +.categories ul li a:hover{ + color:#3399cc; +} +.categories ul li span{ + float:right; +} +ul.cate ul{ + margin-left:2em; +} +ul.dropdown-menu1 li{ + display:block; + font-size:14px; +} +ul.dropdown-menu1 li a{ + color:#212121; + text-decoration:none; +} +input#amount { + outline: none; + margin: 0 auto; + text-align: center; + width: 100%; +} +.new-products-grid-left{ + float:left; + width:35%; +} +.new-products-grid-right{ + float:right; + width:60%; +} +/*-- //products --*/ +/*-- about --*/ +.about,.about-team, .contact,.codes { + padding: 5em 0; +} +h3.w3_agile_header,h2.w3_agile_header { + text-align: center; + color: #212121; + padding-bottom: .5em; + position: relative; + font-size: 2.5em; + text-transform: uppercase +} +h3.w3_agile_header:after,h2.w3_agile_header:after{ + content: ''; + background: #3399cc; + height: 2px; + width: 15%; + position: absolute; + bottom: 0%; + left: 43%; +} +.icons { + margin: 50px 0; +} +.about-agileinfo { + margin-top: 4em; +} +.about .grid-top h4 { + font-size: 1.5em; + color: #222; + letter-spacing: 4px; +} +.about img { + width: 100%; +} +.about-w3imgs { + padding: 0; + overflow: hidden; +} +.about .grid-top p { + font-size: 1em; + color: #999; + line-height: 1.8em; + margin: 1em 0 2.5em; +} +.about .grid-top p.top { + margin: 1em 0; +} +.offic-time { + text-align: center; +} +.time-top { + padding: 1em; + background-color: #52bfe9; +} +.time-top h4 { + font-size: 1.7em; + color: #fff; +} +.time-bottom { + padding: 1.6em 2em; + background-color: #212121; +} +.time-bottom h5 { + font-size: 1.1em; + color: #FFF; + line-height: 1.8em; + letter-spacing: 1px; +} +.time-bottom p { + font-size: 1em; + color: #BBBBBB; + margin-top: 0.5em; + line-height: 1.8em; +} +/*-- //about-page --*/ +.testi { + width: 100%; + margin-top: 3em; + position: relative; +} +.testi h3.w3ls-title1 { + text-align: left; + font-size: 2.5em; +} +.testi h4 { + color: #FFFFFF; + font-size: 1.4em; + letter-spacing: 1px; +} +.testi p { + font-style: italic; + color: #000; + font-size: 1em; + margin-top: 1em; + line-height: 1.5em; + font-weight: 300; +} +.testi-subscript p { + margin: 1em 2.8em 0 0; +} +.testi p a { + font-size: 1em; + font-weight: 600; + color: #000; + margin: 0 5px; + text-decoration: none; + text-transform: capitalize; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + transition: 0.5s all; +} +.testi p a:hover{ + color: #fff; +} +.testi-subscript { + position: relative; + display: inline-block; +} +.testi span.w3-agilesub { + position: absolute; + background: url(../images/icon3.png) no-repeat 0px 0px; + display: block; + width: 30px; + height: 29px; + top: 0%; + right: 0%; +} +.testi-slider { + padding: 4em 2em 3em; + background: #3399cc; + margin-top: 2em; +} +/*-- slider start here --*/ +#slider3,#slider4 { + box-shadow: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + margin: 0 auto; +} +.rslides_tabs { + list-style: none; + padding: 0; + background: rgba(0,0,0,.25); + box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0); + -moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0); + -webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0); + font-size: 18px; + list-style: none; + margin: 0 auto 50px; + max-width: 540px; + padding: 10px 0; + text-align: center; + width: 100%; +} +.rslides_tabs li { + display: inline; + float: none; + margin-right: 1px; +} +.rslides_tabs a { + width: auto; + line-height: 20px; + padding: 9px 20px; + height: auto; + background: transparent; + display: inline; +} +.rslides_tabs li:first-child { + margin-left: 0; +} +.rslides_tabs .rslides_here a { + background: rgba(255,255,255,.1); + color: #fff; + font-weight: bold; +} +.events { + list-style: none; +} +.callbacks_container { + float: left; + width: 100%; +} +.callbacks { + position: relative; + list-style: none; + overflow: hidden; + width: 100%; + padding: 0; + margin: 0; +} +.callbacks li { + position: absolute; + width: 100%; + left: 0; + top: 0; +} +.callbacks img { + position: relative; + z-index: 1; + height: auto; + border: 0; +} +.callbacks_nav { + position: absolute; + -webkit-tap-highlight-color: rgba(0,0,0,0); + top: 15%; + right: 0%; + opacity: 0.7; + z-index: 3; + text-indent: -9999px; + overflow: hidden; + text-decoration: none; + height: 30px; + width: 25px; + background: url("../images/icon1.png")no-repeat center center; +} +.callbacks_nav:active { + opacity: 1.0; +} +.callbacks_nav.next { + right: 7%; + background: url("../images/icon2.png")no-repeat center center; +} +#slider3-pager a ,#slider4-pager a { + display: inline-block; +} +#slider3-pager span, #slider4-pager span{ + float: left; +} +#slider3-pager span,#slider4-pager span{ + width:100px; + height:15px; + background:#fff; + display:inline-block; + border-radius:30em; + opacity:0.6; +} +#slider3-pager .rslides_here a , #slider4-pager .rslides_here a { + background: #FFF; + border-radius:30em; + opacity:1; +} +#slider3-pager a ,#slider4-pager a{ + padding: 0; +} +#slider3-pager li ,#slider4-pager li{ + display:inline-block; +} +.rslides { + position: relative; + list-style: none; + overflow: hidden; + width: 100%; + padding: 0; + margin: 0; +} +.rslides li { + -webkit-backface-visibility: hidden; + position: absolute; + display: none; + width: 100%; + left: 0; + top: 0; +} +.rslides li{ + position: relative; + display: block; + float: left; +} +.rslides img { + height: auto; + border: 0; + width:100%; +} +.callbacks_tabs a{ + font-size: 30px; + color: #70664c; + font-weight: 600; + padding: 0px 18px; + background: rgba(222, 208, 157, 0.89); +} +.callbacks_here a:after{ + color: black; + text-decoration: none; + background: rgba(245, 179, 3, 0.56); +} +.callbacks_tabs a:hover, .callbacks_tabs a:active { + color: black; + text-decoration: none; + background: rgba(245, 179, 3, 0.56); +} +.callbacks_tabs a:after{ + color: black; + text-decoration: none; + background: rgba(245, 179, 3, 0.56); +} +li.callbacks1_s1.callbacks_here a.callbacks1_s1:after, li.callbacks1_s1.callbacks_here a.callbacks1_s1:active{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +li.callbacks1_s1.callbacks_here a.callbacks1_s1:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +a.callbacks1_s4.active,a.callbacks1_s4:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +a.callbacks1_s2.active,a.callbacks1_s2:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +a.callbacks1_s3.active,a.callbacks1_s3:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +/*--//slider end here--*/ +/*-- about-slid --*/ +.about-slid{ + background: url(../images/22.jpg)no-repeat 0px center fixed; + background-size: cover; + text-align: center; + padding: 6em 0; +} +.about-slid-info { + width: 75%; + margin: 0 auto; +} +.about-slid h2 { + color: #fff; + font-size: 3.5em; + font-family: 'Abel', sans-serif; +} +.about-slid p { + color: #fff; + font-size: 1em; + margin-top: 2em; + line-height: 1.8em; +} +/*-- team-agileitsinfo --*/ +.team-agileitsinfo { + margin-top: 4em; +} +.about-team-grids { + background: #3399cc; + padding: 2em 1em; + margin-left: 5px; + width: 24.5%; +} +.about-team-grids img { + width: 100%; +} +.about-team-grids h4 { + color: #000; + font-size: 1.1em; + margin: 1.5em 0 0.5em; +} +.about-team-grids h4 span { + font-size: 1.3em; + color: #000; + margin-right: 10px; +} +.team-w3lstext h6 { + color: #67686b; + font-size: 16px; + font-weight: 400; + margin: 0; + letter-spacing: 0px; +} +.about-team-grids p { + color: #fff; + font-size: 14PX; + line-height: 1.8em; + font-weight: 400; + margin-top: 1em; +} +.about-grid1 .thumb .caption { + float: left; + width: 100%; + height: 70px; + position: absolute; + left: 0; + bottom: 0; + padding: 13px 30px; + text-align: center; + background-color:rgba(81, 92, 142, 0.55); + -o-transition: all 0.3s ease; + -moz-transition: all 0.3s ease; + -ms-transition: all 0.3s ease; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.about-grid1 .thumb:hover .caption { + height: 100%; + padding: 40px 30px; + opacity: 1; + visibility: visible; +} +.caption { + opacity: 0; + top: 0%; + position: absolute; + background-color:rgba(51, 153, 204, 0.58); + width: 100%; + left: 0; + text-align: center; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + transition: 0.5s all; +} +.social-icons ul li { + display: inline-block; + font-size: inherit; + text-align: center; + margin: 0; +} +.social-icons ul li a.fa { + font-size: 1em; + color: #fff; + line-height: 2.6em; +} +.social-icons.caption ul li a.fa { + margin: 0 .5em; + line-height: inherit; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + transition: 0.5s all; +} +.about-team-grids:hover .caption{ + display:block; + top: 49.2%; + opacity:1; +} +.caption ul { + padding: 1em 0; +} +.caption ul li a:hover{ + color:#000; +} +/*-- contact --*/ +.agile_map iframe{ + width:100%; + min-height:580px; +} +.w3_agileits_contact_grid_left{ + padding:0; + position:relative; +} +.agileits_w3layouts_map_pos{ + position: absolute; + right: -15%; + top: 22%; + width: 50%; + padding: 2em; + background: #3399cc; +} +.agileits_w3layouts_map_pos h3{ + font-size:1.5em; + color:#212121; +} +.agileits_w3layouts_map_pos p{ + color:#fff; + line-height:2em; + margin:.5em 0 1.5em; + font-weight:600; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li{ + list-style-type:none; + margin-bottom:1em; + color:#fff; + font-weight:600; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li i{ + padding-right:1em; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li a{ + color:#fff; + text-decoration:none; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li a:hover{ + color:#212121; +} +.w3_agile_social_icons_contact ul li a { + text-align: center; +} +.agileits_w3layouts_map_pos1{ + padding:2em; + border:3px double #fff; +} +.w3_agileits_contact_grid_right{ + padding:0 4em 0 12em; +} +.w3_agileits_contact_grid_right form{ + padding:1em 0 0; +} +/*-- effect --*/ +.input { + position: relative; + z-index: 1; + display: inline-block; + margin: 0; + max-width: 100%; + width: calc(100% - 0em); + vertical-align: top; +} + +.input__field { + position: relative; + display: block; + float: right; + padding: 0.8em; + width: 60%; + border: none; + border-radius: 0; + background: #f0f0f0; + color: #aaa; + -webkit-appearance: none; /* for box shadows to show on iOS */ + font-size: 14px; +} + +.input__field:focus { + outline: none; +} + +.input__label { + display: inline-block; + float: right; + padding: 0 1em; + width: 40%; + color: #212121; + font-size: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.input__label-content { + position: relative; + display: block; + padding:1em 0; + width: 100%; +} +/* Ichiro */ +.input--ichiro { + margin-top: 2em; +} + +.input__field--ichiro { + position: absolute; + top: 4px; + left: 4px; + z-index: 100; + display: block; + padding: 0 1em; + width: calc(100% - 8px); + height: calc(100% - 8px); + background: #fff; + color: #212121; + opacity: 0; + -webkit-transform: scale3d(1, 0, 1); + transform: scale3d(1, 0, 1); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; + transition: opacity 0.3s, transform 0.3s; +} + +.input__label--ichiro { + width: 100%; + text-align: left; + cursor: text; +} + +.input__label--ichiro::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #f5f5f5; + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + -webkit-transition: -webkit-transform 0.3s; + transition: transform 0.3s; + border: 1px solid #e4e4e4; +} + +.input__label-content--ichiro { + -webkit-transform-origin: 0% 50%; + transform-origin: 0% 50%; + -webkit-transition: -webkit-transform 0.3s; + transition: transform 0.3s; +} + +.input__field--ichiro:focus, +.input--filled .input__field--ichiro { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); +} + +.input__field--ichiro:focus + .input__label--ichiro, +.input--filled .input__label--ichiro { + cursor: default; + pointer-events: none; +} + +.input__field--ichiro:focus + .input__label--ichiro::before, +.input--filled .input__label--ichiro::before { + -webkit-transform: scale3d(1, 1.5, 1); + transform: scale3d(1, 1.5, 1); + border: none; +} + +.input__field--ichiro:focus + .input__label--ichiro .input__label-content--ichiro, +.input--filled .input__label-content--ichiro { + -webkit-transform: translate3d(0, -2.4em, 0) scale3d(0.8, 0.8, 1); + transform:translate3d(0, -2.4em, 0) scale3d(0.8, 0.8, 1) translateZ(1px); +} +.w3_agileits_contact_grid_right textarea { + outline: none; + width: 100%; + background: #f5f5f5; + color: #212121; + padding: 10px; + font-size: 14px; + border: 1px solid #e4e4e4; + min-height: 200px; + font-weight: bold; + margin: 2em 0 0; +} +.w3_agileits_contact_grid_right textarea::-webkit-input-placeholder { + color: #212121 !important; +} +.w3_agileits_contact_grid_right input[type="submit"] { + outline: none; + width: 100%; + background: #212121; + color: #fff; + padding: 0.8em 0; + font-size: 1em; + font-weight: bold; + border: none; + text-transform: uppercase; + margin: 1em 0 0; + letter-spacing: 5px; +} +.w3_agileits_contact_grid_right input[type="submit"]:hover{ + background:#3399cc; +} +/*-- //contact --*/ +/*-- social-icons --*/ +.w3_agile_social_icons ul li{ + display:inline-block; +} +.icon { + display: inline-block; + vertical-align: top; + overflow: hidden; + width: 35px; + height: 35px; +} +.icon-cube { + position: relative; + -webkit-perspective: 100px; + perspective: 100px; + overflow: visible; +} + +/*-- agileits --*/ +.icon-cube::before, +.icon-cube::after { + display: block; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + font-family: FontAwesome; + font-size: 1em; + -webkit-transition: all 0.3s; + transition: all 0.3s; + line-height: 2.6em; +} + +.icon-cube::before { + z-index: 2; + background-color:#fff; +} + +.icon-cube::after { + z-index: 1; + opacity: 0; + -webkit-transform:translateY(25px) rotateX(-90deg); + transform:translateY(25px) rotateX(-90deg); +} + +.icon-cube:hover::before { + opacity: 0; + -webkit-transform: translateY(-25px) rotateX(90deg); + transform: translateY(-25px) rotateX(90deg); +} + +.icon-cube:hover::after { + opacity: 1; + -webkit-transform: rotateX(0); + transform: rotateX(0); +} + +/*-- facebook --*/ +/*-- w3layouts --*/ +.icon-cube.agile_facebook::before, +.icon-cube.agile_facebook::after { + content: "\f09a"; + color: #3b5998; +} + +.icon-cube.agile_facebook::after { + background-color:#3b5998; + color:#fff; +} +/*-- rss --*/ +.icon-cube.agile_rss::before, +.icon-cube.agile_rss::after { + content:"\f09e"; + color: #f26522; +} + +.icon-cube.agile_rss::after { + background-color:#f26522; + color: #fff; +} +/*-- instagram --*/ +.icon-cube.agile_instagram::before, +.icon-cube.agile_instagram::after { + content:"\f16d"; + color: #833ab4; +} + +.icon-cube.agile_instagram::after { + background-color:#833ab4; + color: #fff; +} +/*-- t --*/ +.icon-cube.agile_t::before, +.icon-cube.agile_t::after { + content:"\f173"; + color: #35465c; +} + +.icon-cube.agile_t::after { + background-color:#35465c; + color: #fff; +} +/*-- //social-icons --*/ +/*-- icons --*/ +.codes a { + color: #999; +} +.icon-box { + padding: 8px 15px; + background:rgba(149, 149, 149, 0.18); + margin: 1em 0 1em 0; + border: 5px solid #ffffff; + text-align: left; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + font-size: 13px; + transition: 0.5s all; + -webkit-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + -moz-transition: 0.5s all; + cursor: pointer; +} +.icon-box:hover { + background: #000; + transition:0.5s all; + -webkit-transition:0.5s all; + -o-transition:0.5s all; + -ms-transition:0.5s all; + -moz-transition:0.5s all; +} +.icon-box:hover i.fa { + color:#fff !important; +} +.icon-box:hover a.agile-icon { + color:#fff !important; +} +.codes .bs-glyphicons li { + float: left; + width: 12.5%; + height: 115px; + padding: 10px; + line-height: 1.4; + text-align: center; + font-size: 12px; + list-style-type: none; +} +.codes .bs-glyphicons .glyphicon { + margin-top: 5px; + margin-bottom: 10px; + font-size: 24px; +} +.codes .glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #777; +} +.codes .bs-glyphicons .glyphicon-class { + display: block; + text-align: center; + word-wrap: break-word; +} +h4.m-sing { + text-align: left; +} +h3.icon-subheading { + font-size: 28px; + color: #52bfe9 !important; + margin: 30px 0 15px; + font-weight: 600; + letter-spacing: 2px; +} +h3.agileits-icons-title { + text-align: center; + font-size: 33px; + color: #222222; + font-weight: 600; + letter-spacing: 2px; +} +.icons a { + color: #999; +} +.icon-box i { + margin-right: 10px !important; + font-size: 20px !important; + color: #282a2b !important; +} +.bs-glyphicons li { + float: left; + width: 18%; + height: 115px; + padding: 10px; + line-height: 1.4; + text-align: center; + font-size: 12px; + list-style-type: none; + background:rgba(149, 149, 149, 0.18); + margin: 1%; +} +.bs-glyphicons .glyphicon { + margin-top: 5px; + margin-bottom: 10px; + font-size: 24px; + color: #282a2b; +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #777; +} +.bs-glyphicons .glyphicon-class { + display: block; + text-align: center; + word-wrap: break-word; +} +@media (max-width:991px){ + h3.agileits-icons-title { + font-size: 28px; + } + h3.icon-subheading { + font-size: 22px; + } +} +@media (max-width:768px){ + h3.agileits-icons-title { + font-size: 28px; + } + h3.icon-subheading { + font-size: 25px; + } + .row { + margin-right: 0; + margin-left: 0; + } + .icon-box { + margin: 0; + } +} +@media (max-width: 640px){ + .icon-box { + float: left; + width: 50%; + } +} +@media (max-width: 480px){ + .bs-glyphicons li { + width: 31%; + } + .icon-box { + float: none; + width: 100%; +} +} +@media (max-width: 414px){ + h3.agileits-icons-title { + font-size: 23px; + } + h3.icon-subheading { + font-size: 18px; + } + .bs-glyphicons li { + width: 31.33%; + } +} +@media (max-width: 384px){ + .icon-box { + float: none; + width: 100%; + } +} +/*-- //icons --*/ +.w3_wthree_agileits_icons.main-grid-border { + padding: 5em 0; +} +/*-----start-responsive-design------*/ +@media (max-width:1680px){ +} +@media (max-width:1600px){ +} +@media (max-width:1440px){ +} +@media (max-width:1366px){ +} +@media (max-width: 1280px){ +} +@media (max-width: 1080px){ +#PPMiniCart { + left: 42% !important; +} +#Awesome h4 { + padding: 1.9em 0 0; +} +.w3ls_logo_products_left h1 a { + font-size: 34px; +} +.w3l_search input[type="search"] { + width: 81%; +} +.navbar-nav > li { + margin-left: 8px; +} +.nav > li > a { + padding: 10px 8px !important; +} +.top-brands h2, .newproducts-w3agile h3, .login h2, .register h2, .faq-w3agile h3, .brands h3 { + font-size: 2em; +} +.w3_footer_grid h3 { + font-size: 1.4em; +} +.products-right { + padding: 0; +} +.snipcart-details { + width: 81%; +} +h3.w3_agile_header, h2.w3_agile_header { + font-size: 2em; +} +.w3_agileits_contact_grid_right { + padding: 0 2em 0 6em; +} +.agileits_w3layouts_map_pos { + width: 65%; +} +.about-team-grids { + width: 24.4%; +} +.about-team-grids h4 { + font-size: 0.9em; +} +.about-team-grids:hover .caption { + top: 42.2%; +} +.testi h4 { + font-size: 1.1em; +} +} +@media (max-width: 1024px){ +} +@media (max-width: 991px){ +.w3l_offers p { + font-size: 14px; +} +.w3l_offers { + width: 52%; +} +.agile-login { + padding: 6px 0; +} +.w3view-cart { + height: 36px; +} +.agileits_header { + padding: 12px 0 8px; +} +.w3ls_logo_products_left h1 a { + font-size: 30px; +} +i.fa.fa-phone { + margin-right: 7px; + font-size: 15px; +} +ul.phone_email li { + font-size: 13px; +} +.w3ls_logo_products_left1 { + margin-top: 0; + width: 38%; +} +.w3l_search { + width: 27%; + margin: 0em 0 0em 0em; +} +.w3l_search input[type="search"] { + width: 76%; +} +.navbar-default .navbar-nav > li > a { + font-size: 14px; +} +.nav > li > a { + padding: 10px 2px !important; +} +.navbar-nav > li { + margin-left: 5px; +} +.navbar { + min-height: 43px; +} +.top_brand_left { + float: left; + width: 33.33%; +} +.agile_top_brand_left_grid1 img { + max-width: 100% ! important ; +} +.brands-agile-1 { + margin: 0; +} +.w3layouts-brand { + float: left; + width: 33.33%; + margin-bottom: 3%; +} +.top_brand_left-1 { + width: 50%; + float: left; + margin-bottom: 3%; +} +.newproducts-w3agile { + padding: 3em 0 2em; +} +.footer { + padding: 3em 0 2em; +} +.w3_footer_grid { + float: left; + width: 50%; + margin-bottom: 1em; +} +.footer-copy p { + margin: 1.5em 0 0; +} +.ban-bottom3 { + margin: 2em 0; +} +.products-left { + padding: 0; + margin-bottom: 24px; +} +.w3_agileits_contact_grid_right { + padding: 0 1em 0 1em; + margin-top:2em; +} +.agileits_w3layouts_map_pos { + right: 6%; + width: 38%; +} +.about-w3imgs { + float: left; + width: 33.33%; +} +.about-wthree-grids { + margin-top: 2em; +} +.about-slid h2 { + font-size: 2.5em; +} +.about-slid-info { + width: 100%; +} +.about-team-grids { + margin-left: 16px; + width: 47%; + float: left; + padding: 2em 2em; + margin-bottom: 20px; +} +.login-form-grids { + width: 65%; +} +.login h4 { + font-size: 1.3em; +} +.timetable_sub th, .timetable_sub td { + font-size: 12px; +} +.checkout-left-basket { + width: 34%; +} +.agileinfo_single_left { + float: left; + width: 40%; +} +.agileinfo_single_right { + padding-left: 2em; + float: left; + width: 60%; +} +.agileinfo_single h2 { + font-size: 1.4em; +} +.w3agile_description p { + font-size: 14px; + width: 100%; +} +.agileinfo_single_right_details { + width: 36% !important; +} +} +@media (max-width:800px){ +} +@media (max-width: 768px){ +#PPMiniCart { + left: 39% !important; +} +.top-brands { + padding: 3em 0; +} +p.w3l-ad { + width: 80%; +} +.brands { + padding: 3em 0; +} +.ban-bottom-w3l { + padding: 3em 0; +} +.brands-agile { + margin-top: 3em; +} +.grid_3.grid_5 { + margin-top: 3em; +} +.products { + padding: 3em 0; +} +ul.paging { + margin: 2em auto 0; +} +.about, .about-team, .contact, .codes { + padding: 3em 0; +} +.about-agileinfo { + margin-top: 3em; +} +.team-agileitsinfo { + margin-top: 3em; +} +.register { + padding: 3em 0; +} +.login { + padding: 3em 0; +} +.checkout { + padding: 3em 0; +} +} +@media (max-width: 767px){ + .navbar-nav > li { + float: none; + margin-left: 0px; + text-align: center; +} +.navbar-nav { + margin: 0; +} +.about, .about-team, .contact, .codes { + padding: 3em 0; +} +.agileits_w3layouts_map_pos { + width: 45%; +} +ul.faq { + margin-top: 3em; + padding: 0 1.5em; +} +.faq-w3agile { + padding: 3em 0em; +} +.navbar-nav .open .dropdown-menu { + background: #fff; +} +.navbar-default { + background: none; + border: none; + text-align: center; +} +} +@media (max-width: 736px){ +#PPMiniCart { + top: 140px !important; +} +#PPMiniCart form { + max-height: 185px !important; +} +.w3l_offers p { + font-size: 13px; +} +.w3ls_logo_products_left h1 a { + font-size: 26px; +} +.logo_products { + padding: 1.5em 0; +} +.skdslider { + height: 281px; +} +.snipcart-details { + width: 100%; +} +.agile_top_brand_left_grid1 p { + font-size: 13px; +} +.agile_top_brand_left_grid1 h4, .agileinfo_single_right_snipcart h4 { + font-size: 0.9em; +} +.value { + width: 27px; + height: 27px; + padding: 8px 0px; + line-height: 13px; +} +.value-minus, .value-plus { + height: 27px; + line-height: 13px; + width: 27px; + font-size: 16px; +} +.agileinfo_single h2 { + font-size: 1.3em; +} +} +@media (max-width: 667px){ +#PPMiniCart { + left: 36% !important; +} +#PPMiniCart form { + max-height: 165px !important; +} +.agile-login { + width: 37%; +} +.w3l_offers { + width: 56%; +} +.agile-login ul li { + padding: 0em 0.4em; +} +.w3ls_logo_products_left1 { + width: 100%; + text-align: center; +} +.w3ls_logo_products_left { + width: 100%; + margin: 20px 0; +} +.w3ls_logo_products_left h1 a { + display: inline-block; +} +.w3l_search { + width: 100%; +} +.w3l_search input[type="search"] { + width: 92%; +} +.logo_products { + padding: 1em 0; +} +.top_brand_left { + width: 100%; + margin-bottom: 3%; +} +.snipcart-details input.button { + width: 54%; +} +.agile_top_brands_grids { + margin-top: 2em; +} +.agileits_w3layouts_map_pos { + width: 51%; +} +.login-form-grids { + width: 71%; +} +.checkout-left-basket { + width: 42%; +} +.agileinfo_single h2 { + font-size: 1.2em; +} +.agileinfo_single_right_details { + width: 73% !important; + text-align: left; +} +} +@media (max-width: 640px){ +#PPMiniCart form { + max-height: 400px !important; +} +.w3l_offers { + width: 100%; + text-align: center; +} +.agile-login { + width: 38%; +} +.about .grid-top h4 { + font-size: 1.3em; +} +.about-slid h2 { + font-size: 2em; +} +.about-slid { + padding: 4em 0; +} +.about-slid p { + font-size: 0.9em; +} +.login-form-grids { + width: 76%; +} +.agileinfo_single_left { + padding: 1em; +} +.agileinfo_single_right { + padding-left: 1em; +} +} +@media (max-width: 600px){ +#PPMiniCart form { + width: 506px !important; +} +#PPMiniCart { + left: 41% !important; +} +#PPMiniCart ul { + width: 464px !important; +} +#PPMiniCart form { + max-height: 210px !important; +} +.agile-login { + width: 40%; +} +.value-minus, .value-plus { + height: 22px; + width: 22px; +} +.value { + width: 22px; + height: 22px; + line-height: 6px; +} +} +@media (max-width: 568px){ +#PPMiniCart form { + max-height: 100px !important; +} +.snipcart-details input.button { + width: 64%; +} +.agile-login { + width: 43%; +} +.w3l_search input[type="search"] { + width: 91%; +} +.agileits_w3layouts_map_pos { + width: 58%; +} +.about-team-grids { + width: 46%; +} +.checkout-left-basket { + width: 49%; +} +td.invert-image a img { + width: 65%; +} +.timetable_sub th, .timetable_sub td { + width: 50px; +} +.value { + width: 17px; + height: 17px; + line-height: 0px; +} +.value-minus, .value-plus { + height: 17px; + width: 17px; +} +.timetable_sub th, .timetable_sub td { + padding: 7px 0px; +} +} +@media (max-width: 480px){ +#PPMiniCart form { + max-height: 350px !important; +} +#PPMiniCart form { + width: 400px !important; +} +#PPMiniCart ul { + width: 358px !important; +} +#PPMiniCart { + left: 51% !important; +} +.top_brand_left-1 { + width: 100%; +} +.w3layouts-brand { + float: left; + width: 50%; + margin-bottom: 3%; +} +.nav-tabs>li>a { + font-size: 14px; +} +.w3l_search input[type="search"] { + width: 90%; +} +.agile-login { + width: 50%; +} +.top-brands h2, .newproducts-w3agile h3, .login h2, .register h2, .faq-w3agile h3, .brands h3 { + font-size: 1.7em; +} +p.w3l-ad { + width: 100%; +} +.grid_3.grid_5 h5 { + font-size: 18px; +} +.w3_footer_grid { + width: 100%; +} +.w3_footer_grid h3 { + margin-bottom: 1em; +} +.sorting { + width: 44%; +} +.sorting-left { + width: 42%; +} +h3.w3_agile_header, h2.w3_agile_header { + font-size: 1.7em; +} +.agileits_w3layouts_map_pos { + + width: 70%; +} +.about-team-grids { + width: 65%; + float: none; + margin: 0 auto 20px; +} +.about-slid h2 { + font-size: 1.7em; +} +.login-form-grids { + width: 90%; +} +.checkout-left-basket { + width: 57%; +} +.checkout-right-basket { + margin: 3em 0 0 0em; +} +.agileinfo_single_left { + width: 100%; + margin-bottom: 2em; + padding: 3em 4em; +} +.agileinfo_single_right { + padding-left: 0em; + width: 100%; +} +} +@media (max-width: 414px){ +#PPMiniCart form { + width: 360px !important; +} +#PPMiniCart ul { + width: 318px !important; +} +#PPMiniCart { + left: 55% !important; +} +.agile-login { + width: 61%; +} +.w3l_search input[type="search"] { + width: 87%; +} +.w3ls_logo_products_left { + margin: 12px 0; +} +.ban-text1 h4 { + font-size: 16px; +} +.ban-text1 { + left: 18%; +} +.footer-copy p { + font-size: 14px; +} +.agileits_w3layouts_map_pos { + width: 80%; +} +.about-wthree-grids { + margin-top: 0em; +} +.about .grid-top h4 { + font-size: 1.1em; + line-height: 24px; +} +.about .grid-top p { + font-size: 0.875em; +} +.about-team-grids { + width: 80%; +} +.login-form-grids { + padding: 2em; +} +.checkout h2 { + font-size: 0.95em; + margin: 0 0 2em; +} +.value-minus, .value-plus { + margin: 4px 15px; + display: inline-block; +} +.value { + margin: 4px 15px; + display: inline-block; +} +.quantity-select .entry.value-minus { + margin-left: 15px; +} +.checkout-left-basket { + width: 100%; +} +.agileinfo_single_left { + padding: 2em 2em; +} +} +@media (max-width: 384px){ +#PPMiniCart form { + width: 300px !important; + padding: 10px 10px 40px !important; +} +#PPMiniCart ul { + width: 278px !important; +} +#PPMiniCart .minicart-remove { + width: 11px !important; + height: 11px !important; + line-height: 0; + margin: 3px 0 0 !important; +} +#PPMiniCart { + left: 64% !important; +} +#PPMiniCart .minicart-item a { + font-size: 13px; +} +#PPMiniCart .minicart-attributes li { + font-size: 12px; +} +span.minicart-price { + font-size: 12px; +} +#PPMiniCart .minicart-quantity { + font-size: 11px; +} +.w3l_offers p { + font-size: 12px; +} +.agile-login { + width: 67%; +} +.w3l_search input[type="search"] { + width: 86%; +} +.w3layouts-foot { + width: 100%; + text-align: center; + margin-bottom: 20px; +} +.payment-w3ls { + width: 100%; + text-align: center; +} +.payment-w3ls img{ + display:inline-block; +} +.agileits_w3layouts_map_pos { + width: 90%; +} +.about-slid h2 { + font-size: 1.5em; +} +.about-slid p { + font-size: 0.875em; +} +.login-form-grids { + width: 95%; +} +.checkout h2 { + font-size: 0.9em; +} +} +@media (max-width: 375px){ + .login-form-grids { + width: 100%; +} +.checkout h2 { + font-size: 0.875em; +} +.agileinfo_single_left { + padding: 1em 1em; +} +.agileinfo_single h2 { + font-size: 1.1em; +} +} +@media (max-width: 320px){ +#PPMiniCart form { + width: 285px !important; +} +#PPMiniCart ul { + width: 263px !important; +} +#PPMiniCart { + left: 69% !important; +} +#PPMiniCart .minicart-subtotal { + padding-left: 5px !important; + font-size: 13px !important; +} +.agile-login { + width: 79%; +} +.w3l_offers p { + font-size: 10px; +} +.w3l_offers { + padding: 9px 0 5px; +} +.w3ls_logo_products_left { + margin: 3px 0 12px; +} +.w3l_search input[type="search"] { + width: 83%; +} +.top-brands h2, .newproducts-w3agile h3, .login h2, .register h2, .faq-w3agile h3, .brands h3 { + font-size: 1.4em; +} +.nav-tabs>li>a { + font-size: 12px; +} +div#myTabContent { + padding: 20px 20px; +} +p.w3l-ad { + font-size: 13px; + line-height: 24px; +} +.top_brand_left { + padding: 0; +} +.ban-text1 h4 { + font-size: 14px; +} +.ban-text1 { + left: 17%; + padding: 8px 18px; +} +.top-brands { + padding: 2em 0; +} +.grid_3.grid_5 { + margin-top: 2em; +} +.ban-bottom-w3l { + padding: 2em 0; +} +.brands { + padding: 2em 0; +} +.w3layouts-brand { + width: 46%; + padding: 0; + margin: 2%; +} +.brands-agile { + margin-top: 2em; +} +.newproducts-w3agile { + padding: 2em 0 1em; +} +.footer-copy p { + margin: 0 0 0; +} +.footer { + padding: 2em 0 1.5em; +} +.w3_footer_grid h3 { + font-size: 1.3em; +} +.w3_footer_grid { + padding: 0; +} +.sorting-left { + width: 47%; + margin-right: 2%; +} +.sorting { + width: 51%; +} +.products { + padding: 2em 0; +} +.categories ul.cate, .new-products-grids { + padding: 1em; +} +ul.cate ul { + margin-left: 1.5em; +} +.about, .about-team, .contact, .codes { + padding: 2em 0; +} +.agileits_w3layouts_map_pos1 { + padding: 1em; +} +.agileits_w3layouts_map_pos { + padding: 1em; +} +.agileits_w3layouts_map_pos { + top: 13%; +} +.agile_map iframe { + min-height: 430px; +} +h3.w3_agile_header, h2.w3_agile_header { + font-size: 1.4em; +} +.about-agileinfo { + margin-top: 2em; +} +.about-wthree-grids { + padding: 0; +} +.about .grid-top h4 { + font-size: 1em; + letter-spacing: 1px; +} +.time-top h4 { + font-size: 1.5em; +} +.about-slid { + padding: 3em 0; +} +.about-slid h2 { + font-size: 1.3em; +} +.about-team-grids { + width: 100%; +} +.faq-w3agile { + padding: 2em 0em; +} +ul.faq { + margin-top: 2em; + padding: 0 1em; +} +.faq-w3agile .faq li { + margin-top: 1em; +} +.faq > li > a { + line-height: 23px; +} +.register { + padding: 2em 0; +} +.login-form-grids { + margin: 2em auto 0; +} +.login-form-grids { + padding: 1.2em; +} +.register-check-box label { + font-size: 13px; +} +.checkbox { + padding-left: 30px !important; +} +.login { + padding: 2em 0; +} +.login p a { + font-size: 1em; +} +.checkout h2 { + font-size: 0.875em; + line-height: 22px; +} +.checkout { + padding: 2em 0; +} +.value-minus, .value-plus { + margin: 4px 10px; +} +.quantity-select .entry.value-minus { + margin-left: 10px; +} +.value { + margin: 4px 10px; +} +td.invert-image a img { + width: 72%; +} +.agileinfo_single h2 { + font-size: 0.95em; +} +.w3agile_description h4 { + font-size: 0.875em; +} +.w3agile_description { + margin: 1em 0; +} +.w3agile_description p { + font-size: 13px; +} +} \ No newline at end of file diff --git a/static/css/style.css.bak b/static/css/style.css.bak new file mode 100644 index 0000000000000000000000000000000000000000..7fce45c8d39d8f3de2bddab2ce660740c07438f7 --- /dev/null +++ b/static/css/style.css.bak @@ -0,0 +1,3396 @@ +/*-- +Author: W3layouts +Author URL: http://w3layouts.com +License: Creative Commons Attribution 3.0 Unported +License URL: http://creativecommons.org/licenses/by/3.0/ +--*/ +html, body{ + font-size: 100%; + font-family: 'Century Gothic'; + background:#ffffff; + font-weight:700; + font-size:14px; +} +ul li,ol li{ + font-size:14px; + font-weight:1000; +} +p{ + margin:0; +} +h1,h2,h3,h4,h5,h6,a{ + font-family: 'Century Gothic'; + margin:0; + font-weight:1000; +} +ul,label{ + margin:0; + padding:0; +} +body a:hover{ + text-decoration:none; +} +/*-- header --*/ +span.glyphicon.glyphicon-shopping-cart.my-cart-icon.my-cart-icon-affix { + position: relative !important; +} +.btn-danger { + color: #fff; + background-color: #3399cc; + border-color: #3399cc; +} +.modal-dialog { + width: 850px; + margin:75px auto 30px; +} +.snipcart-thumb a { + display: block; + text-align: center; +} +.my-cart-icon-affix i { + background: #0066ff !important; +} +.agile_top_brand_left_grid { + position: relative; + display: block; +} +i.badge.badge-notify.my-cart-badge { + font-style: normal; + background: #3399cc; + font-size: 14px; + position: absolute; + top: -10px; + right:-22px; +} +.product_list_header span { + font-size: 1em; + color: #fff; + top: 1em; +} +input[type="submit"],#PPMiniCart .minicart-submit,.w3ls_vegetables ul li a,input[type="reset"],.agileinfo_mail_grid_left ul li a,.events_bottom_left2 ul li a,.w3ls_service_grids1_right a,ul.agileits_social_icons li a,.w3l_banner_nav_right_banner_pet a,.w3ls_w3l_banner_nav_right_grid_head_grid ul li a,.products-breadcrumb ul li a,.w3_footer_grid ul li a,.w3l_fresh_vegetables_grid ul li a,.wthree_footer_copy p a,.agile_top_brand_left_grid1 .button,.w3ls_logo_products_left1 ul.special_items li a,.w3ls_logo_products_left1 ul.phone_email li a{ + transition: .5s ease-in; + -webkit-transition: .5s ease-in; + -moz-transition: .5s ease-in; + -o-transition: .5s ease-in; + -ms-transition: .5s ease-in; +} +.agileits_header { + background: #333333; + padding: 12px 0; +} +.w3l_offers { + float: left; + padding: 9px 0; + width: 47%; +} +.w3l_offers p { + font-size: 15px; + color: #fff; +} +.w3l_offers p a { + color: #0066ff; + text-decoration: none; +} +.w3l_search { + float: right; + width: 25.33%; + margin: 0em 0 0em 0em; +} +.w3l_search input[type="search"] { + width: 83%; + padding:10px; + font-size: 14px; + color: #999; + outline: none; + border: 1px solid #cccccc; + background: none; + -webkit-appearance: none; + transition: 0.5s all; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; +} +i.fa.fa-angle-right { + font-size: 15px; + margin-right: 5px; +} +i.fa.fa-phone { + margin-right: 10px; + font-size: 20px; +} +button.btn.btn-default.search { + background: #0066ff; + padding: 11px 12px 11px; + float: right; + outline: none; + border: none; +} +button.btn.btn-default.search:hover { + background:#333; + +} +.agile-login { + float: left; + width: 40%; + text-align: center; + padding: 9px 0; +} +.agile-login ul li { + display: inline-block; + padding: 0em 1em; +} +.agile-login ul li a { + font-size: 1em; + text-transform: capitalize; + color: #fff; + text-decoration: none; +} +.w3l_search input[type="search"] { + margin-top:0px; +} +.w3l_search i.fa.fa-search { + font-size: 17px; + color:#fff; +} +button.w3l_search { + border: none; + position: absolute; + top: 4px; + right: 11px; + width: 47px; + height: 43px; + outline: none; + box-shadow: none; + background:#00e58b; + padding: 0; + border-radius: inherit; + -webkit-appearance: none; + -webkit-transition: .5s all; + -moz-transition: .5s all; + transition: .5s all; +} +.btn-default:hover { + background-color:#000; + border:none; +} +.cart-wthree .fa { + font-size: 34px; + margin-top: 7px; +} +button.w3view-cart { + background: transparent; + border: none; +} +button.w3view-cart:focus{ + outline:none; +} +.logo_products { + padding: 2em 0; +} +.w3ls_logo_products_left { + float: left; + text-align: center; + width: 100%; +} +.w3ls_logo_products_left h1 a{ + font-size: 40px; + color: #0066ff; + text-decoration: none; + text-transform: uppercase; + display: block; + line-height: 1; +} +.w3ls_logo_products_left1 { + float: left; + margin-top: 0.6em; + width: 33.33%; +} +.w3ls_logo_products_left1 ul.phone_email li{ + display:inline-block; + color:#212121; +} +/*-- //header --*/ +.navbar-default .navbar-nav > li > a { + color: #fff; + font-size: 16px; + font-weight: 500; +} +.logo-nav-left1 ul li.active a.act{ + color:#fff !important; +} +.multi-column-dropdown li a { + color: #999 !important; +} +.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { + background-color: transparent; + color: #fff !important; +} +.navbar-default .navbar-collapse, .navbar-default .navbar-form { + border: none; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 10px; + border: 1px solid transparent; +} +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { + color: #fff; +} +.navbar-default { + background: none; + border: none; +} +.navbar-collapse { + padding: 0; +} +ul.multi-column-dropdown h6 { + font-size: 20px; + color:#0066ff; + margin: 0 0 0em; + padding-bottom: 1em; + border-bottom: 1px solid #E4E4E4; + text-transform: capitalize; +} +.multi-column-dropdown li { + list-style-type: none; + margin: 14px 0; +} +.multi-column-dropdown li a { + display: block; + clear: both; + line-height: 1.428571429; + color: #999 !important; + white-space: normal; + font-weight:500 !important; +} +.dropdown-menu.columns-3 { + min-width: 190px; + padding: 20px 30px; +} +.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { + background: none; + border: none; +} +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + background-color: transparent; +} +.nav > li > a:hover, .nav > li > a:focus { + background: none; + color:#fff !important; +} +.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { + color: #fff; +} +.multi-gd-img img { + width: 100%; +} +.navigation-agileits { + background: #0066ff; +} +.navbar-nav > li { + float: left; + margin-left: 17px; +} +.navbar-nav > li:nth-child(1) { + margin-left: 0px; +} +/*-- banner --*/ +.navbar-collapse { + padding: 0; + box-shadow: none; +} +.navbar { + margin-bottom: 0; + border: none; +} +/*-- cart --*/ +/*-- cart-box --*/ +.w3view-cart { + background: #3399cc; + border: none; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -o-border-radius: 50%; + -ms-border-radius: 50%; + border-radius: 50%; + width: 40px; + height: 40px; + text-align: center; + outline: none; +} +.w3view-cart i.fa { + font-size: 24px; + color: #ffffff; + vertical-align: middle; +} +/*-- //cart-box --*/ +/*-- top-brands --*/ +.tag { + position: absolute; + top: -1%; + right: 10%; +} +.top-brands h2,.newproducts-w3agile h3,.login h2,.register h2,.faq-w3agile h3,.brands h3{ + text-align:center; + color:#212121; + padding-bottom:.5em; + position:relative; + font-size: 2.5em; + text-transform: uppercase; +} +.top-brands h2:after,.newproducts-w3agile h3:after,.login h2:after,.register h2:after,.faq-w3agile h3:after,.brands h3:after{ + content: ''; + background: #3399cc; + height: 2px; + width: 15%; + position: absolute; + bottom: 0%; + left: 43%; +} +.agile_top_brand_left_grid{ + background: #FFFFFF; + padding: .5em; + position:relative; +} +.agile_top_brand_left_grid_pos{ + position:absolute; + top:0%; + right:0%; +} +.agile_top_brand_left_grid1{ + padding:1em; +} +.agile_top_brand_left_grid1 img{ + margin:0 auto; +} +.top-brands{ + background: #f5f5f5; + padding:5em 0; +} +.agile_top_brand_left_grid1 p{ + color:#212121; + margin:1.5em 0 1em; + line-height:1.5em; + text-transform:capitalize; + font-size:14px; + text-align: center; +} +.agile_top_brand_left_grid1 h4,.agileinfo_single_right_snipcart h4{ + font-weight:600; + font-size:1em; + color:#212121; + text-align: center; +} +.agile_top_brand_left_grid1 h4 span,.agileinfo_single_right_snipcart h4 span{ + font-weight:300; + text-decoration:line-through; + padding-left:1em; +} +/*-- cart --*/ +.product_list_header { + float: right; +} +.snipcart-details { + text-align: center; + margin: 1.5em auto 1em; + width:77%; +} +.btn-danger.my-cart-btn:focus { + outline: none; +} +.snipcart-details input.button { + font-size: 14px; + color: #fff; + background: #3399cc; + text-decoration: none; + position: relative; + border: none; + border-radius: 0; + width: 100%; + text-transform: uppercase; + padding: .5em 0; + outline: none; +} +.agile_top_brand_left_grid:hover .snipcart-details input.button,.snipcart-details input.button:hover{ + background: #0066ff; +} +.product_list_header input.button { + color: #fff; + font-size: 14px; + outline: none; + text-transform: capitalize; + padding: .5em 2.5em .5em 1em; + border: 1px solid #0066ff; + margin: .35em 0 0; + background: url(../images/cart.png) no-repeat 116px 9px; +} +#PPMiniCart form { + width: 590px !important; + padding: 10px 20px 40px !important; + max-height:450px !important; +} +#PPMiniCart ul { + width: 548px !important; +} +#PPMiniCart .minicart-item a { + color: #212121 !important; + font-size: 1em; + display: block; + margin-bottom: .5em; + text-transform: capitalize; +} +#PPMiniCart .minicart-item { + min-height:60px !important; +} +#PPMiniCart .minicart-attributes li { + color: #999; +} +#PPMiniCart .minicart-remove { + background: #3399cc !important; + border: 1px solid #3399cc !important; + opacity: 1 !important; + outline:none; +} +#PPMiniCart .minicart-submit { + display: none; +} +#PPMiniCart .minicart-submit:hover{ + background:#0066ff !important; + border-color: #5b951a !important; +} +#PPMiniCart .minicart-subtotal { + padding-left: 25px !important; + bottom: -17px !important; +} +#PPMiniCart { + left: 44% !important; +} +.minicart-showing #PPMiniCart form{ + overflow-x: hidden; + overflow-y: auto; +} +#PPMiniCart .minicart-footer { + position: relative; + width: 80%; +} +/*-- //cart --*/ +.column div.agile_top_brand_left_grid { + position: relative; + margin:0; +} +.agile_top_brand_left_grid figure { + margin: 0; + padding: 0; + background:transparent; + overflow: hidden; + z-index: 0; +} +/* Shine */ +.hover14 figure { + position: relative; +} +.hover14 figure::before { + position: absolute; + top: 0; + left: -75%; + z-index: 2; + display: block; + content: ''; + width: 50%; + height: 100%; + background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%); + background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%); + -webkit-transform: skewX(-25deg); + transform: skewX(-25deg); +} +.hover14 figure:hover::before,.top_brand_left:hover .hover14 figure::before{ + -webkit-animation: shine .75s; + animation: shine .75s; +} +@-webkit-keyframes shine { + 100% { + left: 125%; + } +} +@keyframes shine { + 100% { + left: 125%; + } +} +/*-- //top-brands --*/ +div#myTabContent { + padding: 40px 40px; +} +.nav-tabs > li { + width: 50%; +} +.nav-tabs>li>a { + margin: 0 0px; + padding: 10px 53px; + line-height: 1.42857143; + font-size: 20px; + text-align:center; + text-transform:uppercase; + font-weight: 600; + border: 0px solid transparent; + border-radius: 0px 0px 0 0; + color: #016773; +} +.nav-tabs>li>a:hover, .nav>li>a:focus { + text-decoration: none; + background: #0066ff; + color: #FFF; + border: 0px solid transparent; +} +.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus { + color: #FFF; + background: #0066ff; + border: 0px solid transparent; +} +.nav-tabs { + border-bottom: 1px solid #fff; +} +.grid_3.grid_5 { + margin-top: 5em; + border: 1px solid #BEBEBE; +} +.grid_3.grid_5 h5 { + font-size: 20px; + color: #000; + margin-bottom: 16px; +} +p.w3l-ad { + font-size: 14px; + color: #777; + width: 42%; + line-height: 28px; +} +.agile_top_brands_grids { + margin-top: 40px; +} +.hover14.column { + border: 1px solid #c0bebe; +} +.stars { + text-align: center; + margin-bottom: 13px; +} +i.blue-star { + color: #3399cc; +} +i.gray-star { + color: #808080; +} +/*-- to-top --*/ +#toTop { + display: none; + text-decoration: none; + position: fixed; + bottom: 20px; + right: 2%; + overflow: hidden; + z-index: 999; + width: 32px; + height: 32px; + border: none; + text-indent: 100%; + background: url(../images/arrow.png) no-repeat 0px 0px; +} +#toTopHover { + width: 32px; + height: 32px; + display: block; + overflow: hidden; + float: right; + opacity: 0; + -moz-opacity: 0; + filter: alpha(opacity=0); +} +/*-- //to-top --*/ +.ban-bottom-w3l { + padding: 5em 0; +} +.ban-bottom1 { + float: left; + width: 48%; + margin-right:2% +} +.ban-bottom2 { + float: left; + width: 48%; + margin-left:2% +} +.ban-img { + margin-top: 2.1em; +} +.ban-top{ + position: relative; + overflow: hidden; +} +.ban-top img { + -moz-transition: all 1s; + -o-transition: all 1s; + -webkit-transition: all 1s; + transition: all 1s; + width: 100%; +} +.ban-top:hover img { + -moz-transform: scale3d(1.1, 1.1, 1); + -o-transform: scale3d(1.1, 1.1, 1); + -ms-transform: scale3d(1.1, 1.1, 1); + -webkit-transform: scale3d(1.1, 1.1, 1); + transform: scale3d(1.1, 1.1, 1); +} +.ban-text { + position: absolute; + top: 50%; + left: 25%; + background: rgb(254, 145, 38); + padding: 10px 30px; +} +.ban-text1 { + position: absolute; + top: 40%; + left: 25%; + background: rgb(254, 145, 38); + padding: 10px 30px; +} +.ban-text h4 { + font-size: 22px; + color: #fff; +} +.ban-text1 h4 { + font-size: 22px; + color: #fff; +} +.ban-text2 h4 { + font-size: 1.5em; + color: #fff; +} +.ban-text2 span{ + display:block; + line-height:1.5em; +} +/* Sweep To Top */ +.hvr-sweep-to-top { + display: inline-block; + vertical-align: middle; + -webkit-transform: translateZ(0); + transform: translateZ(0); + box-shadow: 0 0 1px rgba(0, 0, 0, 0); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -moz-osx-font-smoothing: grayscale; + position: relative; + -webkit-transition-property: color; + transition-property: color; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} +.hvr-sweep-to-top:before { + content: ""; + position: absolute; + z-index: -1; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: #F19E1F; + border-radius: 50%; + -webkit-border-radius: 60%; + -moz-border-radius: 60%; + -o-border-radius: 60%; + -ms-border-radius: 60%; + -webkit-transform: scaleY(0); + transform: scaleY(0); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + -webkit-transition-property: transform; + transition-property: transform; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; + -webkit-transition-timing-function: ease-out; + transition-timing-function: ease-out; +} +.hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active { + color: white; +} +.hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before,.services-grid:hover .hvr-sweep-to-top:before{ + -webkit-transform: scaleY(1); + transform: scaleY(1); +} +.ban-text2 { + position: absolute; + top: 14%; + left: 45%; + background: #3399cc; + padding: 1.5em; + border-radius: 60px; + text-align: center; + width: 18%; +} +/*--causel--*/ +.carousel-indicators { + position: absolute; + bottom: -45px; + left: 48%; + z-index: 15; + width: auto; + padding-left: 0; + margin: 0; + text-align: center; + list-style: none; +} + + +.carousel-indicators li { + display: inline-block; + width: 12px; + height: 12px; + margin:0 6px; + text-indent: -999px; + cursor: pointer; + background-color: #029241; + border: none; + border-radius: 10px; +} +.carousel-indicators .active { + background-color: #FAB005; + margin: 0 6px; +} +/*-- footer --*/ +.footer { + padding: 5em 0 2em; + background: #2b2a2a; +} +.w3_footer_grid h3 { + color: #ffffff; + font-size: 1.5em; + margin-bottom: 1.8em; + text-transform: uppercase; +} +.w3_footer_grid p{ + color:#afafaf; + line-height:1.8em; + margin-bottom:2em; +} +.w3_footer_grid ul li { + list-style-type: none; + margin-bottom: 1em; + color: #afafaf; + font-size: 14px; +} +.w3_footer_grid ul.address li i { + color:#0066ff; + border: 1px solid #0066ff; + padding: .5em; + margin-right: 1em; +} +.w3_footer_grid ul.address li span { + display: block; + margin-left: 3em; +} +.w3_footer_grid ul li a { + color: #afafaf; + text-decoration: none; +} +.w3_footer_grid ul li a:hover { + color:#0066ff; +} +.w3_footer_grid h4{ + margin:2em 0 1em; + font-size:1.2em; + color:#ff9b05; +} +i.fa.fa-arrow-right { + color: #0066ff; + margin-right: 10px; +} +.footer-copy1{ + position:relative; + padding: 2em 0 0; + border-bottom: 1px solid #F4F4F4; +} +.footer-copy-pos{ + position: absolute; + right: 14%; + bottom: -75%; + width: 50px; + height: 50px; + border: 3px solid rgba(254, 155, 5, 0.69); + border-radius: 25px; + -webkit-border-radius: 25px; + -moz-border-radius: 25px; + -o-border-radius: 25px; + -ms-border-radius: 25px; + box-shadow: 0px 0px 15px rgba(255, 155, 5, 0.49); +} +.footer-copy p{ + margin:4em 0 0; + text-align:center; + color:#999; + line-height:1.8em; +} +.footer-copy p a{ + color:#ff9b05; + text-decoration:none; +} +.footer-copy p a:hover{ + color:#999; +} +.w3layouts-foot ul li{ + display:inline-block; +} +.w3layouts-foot ul li a { + width: 32px; + height: 32px; + color: #fff; + border: 1px solid #fff; + text-align: center; + display: inline-block; + font-size: 18px; + line-height: 32px; + border-radius: 50%; +} +a.w3_agile_facebook:hover{ + background:#3b5998; + border: 1px solid #3b5998; +} +a.agile_twitter:hover{ + background:#1da1f2; + border: 1px solid #1da1f2; +} +a.w3_agile_dribble:hover{ + background:#ea4c89; + border: 1px solid #ea4c89; +} +a.w3_agile_vimeo:hover{ + background:#1ab7ea; + border: 1px solid #1ab7ea; +} +.w3layouts-foot { + float: left; +} +.payment-w3ls { + float: right; +} +.footer-botm { + background: #393737; + padding: 16px 0; +} +/*-- //footer --*/ +.newproducts-w3agile { + padding: 5em 0; + background: #f5f5f5; +} +.breadcrumb1 li span { + left: 0em; + padding-right: 1em; + color: #3399cc; +} +.breadcrumbs { + padding: 1.5em 0; + background: #f5f5f5; +} +.breadcrumb { + margin-bottom: 0 !important; + padding: 0 !important; +} +.breadcrumb1 li { + font-size: 1em; + color: #999; +} +.breadcrumb1 li a { + color: #3399cc; + text-decoration: none; +} +/*-- login --*/ +.login-form-grids{ + width: 45%; + padding: 3em; + background:#F7F7F9; + margin:3em auto 0; +} +.login-form-grids input[type="email"],.login-form-grids input[type="password"],.login-form-grids input[type="text"]{ + outline: none; + border: 1px solid #DBDBDB; + padding: 10px 10px 10px 10px; + font-size: 14px; + color: #999; + display: block; + width: 100%; +} + +.login-form-grids input[type="password"]{ + margin:1em 0 0; +} +.forgot { + margin: 1.5em 0 0; +} +.login-form-grids input[type="submit"]{ + outline: none; + border: none; + padding: 10px 0; + font-size: 1em; + color: #fff; + display: block; + width: 100%; + background:#3399cc; + margin: 1.5em 0 0; +} +.login-form-grids input[type="submit"]:hover{ + background:#0066ff; +} +.login-form-grids ::-webkit-input-placeholder{ + color:#999; +} +.forgot a{ + color:#212121; + font-size:14px; + text-decoration:none; +} +.forgot a:hover{ + color:#d8703f; +} +.login h4{ + margin: 2em 0 0.5em; + font-size: 1.5em; + color: #212121; + text-align: center; + text-transform: uppercase; +} +.login p{ + font-size:14px; + color:#999; + line-height:1.8em; + margin:0; + text-align:center; +} +.login p a{ + color:#0066ff; + text-decoration:none; + font-size: 1.2em; + padding: 0 .5em; +} +.login p a:hover{ + color:#212121; +} +.login p a span{ + top: 0.1em; + font-size: .7em; + left: 0.3em; +} +.login { + padding: 5em 0; +} +/*-- //login --*/ +/*-- register --*/ +.register { + padding: 5em 0; +} +.login-form-grids h5,.login-form-grids h6{ + font-size:1em; + color:#212121; + text-transform:uppercase; + margin:0 0 2em; +} +.login-form-grids input[type="text"]{ + background:url(../images/img-sp.png) no-repeat 5px -259px #fff; +} +.login-form-grids input[type="text"]:nth-child(2){ + background:url(../images/img-sp.png) no-repeat 0px -298px #fff; + margin:1em 0; +} +.register-check-box label{ + font-size:14px; + font-weight:500; + color:#999; + margin: 1.5em 0 0 0em; +} +.checkbox { + position: relative; + padding-left: 38px !important; + cursor: pointer; +} +.checkbox i { + position: absolute; + bottom: -2px; + left: 0; + display: block; + width: 25px; + height: 25px; + outline: none; + border: 2px solid #EDEDED; + background: #FFF; +} +.checkbox input + i:after,.radio input + i:after { + position: absolute; + opacity: 0; + transition: opacity 0.1s; + -o-transition: opacity 0.1s; + -ms-transition: opacity 0.1s; + -moz-transition: opacity 0.1s; + -webkit-transition: opacity 0.1s; +} +.checkbox input:checked + i:after,.radio input:checked + i:after{ + opacity: 1; +} +.checkbox input,.radio input { + position: absolute; + left: -9999px; +} +.checkbox input + i:after { + content: ''; + background: url("../images/check.png") no-repeat 1px 2px; + top: 0px; + left: 2px; + width: 16px; + height: 16px; + font: normal 12px/16px FontAwesome; + text-align: center; +} +.login-form-grids h6{ + margin:3em 0 2em !important; +} +.login-form-grids input[type="password"]:nth-child(3) { + margin:1em 0; +} +.register-home{ + margin:2em 0 0; + text-align:center; +} +.register-home a{ + padding: 8px 45px; + background: #9F9F9F; + color:#fff; + font-size:1em; + text-decoration:none; +} +.register-home a:hover{ + background:#0066ff; +} +/*-- //register --*/ +/*-- checkout --*/ +.checkout h2{ + font-size:1em; + color:#212121; + text-transform:uppercase; + margin:0 0 3em; +} +.checkout h2 span{ + color:#3399cc; +} +table.timetable_sub { + width:100%; + margin:0 auto; +} +.timetable_sub thead { + background: #004284; +} +.timetable_sub th { + background: #0066ff; + color: #fff !important; + text-transform: capitalize; + font-size: 13px; + border-right: 1px solid #0066ff; +} +.timetable_sub th, .timetable_sub td { + text-align: center; + padding: 7px; + font-size: 14px; + color: #212121; +} +.timetable_sub td { + border:1px solid #CDCDCD; +} +td.invert-image a img { + width:30%; + margin: 0 auto; +} +.rem{ + position:relative; +} +.close1,.close2,.close3 { + background: url('../images/close_1.png') no-repeat 0px 0px; + cursor: pointer; + width: 28px; + height: 28px; + position: absolute; + right: 15px; + top: -13px; + -webkit-transition: color 0.2s ease-in-out; + -moz-transition: color 0.2s ease-in-out; + -o-transition: color 0.2s ease-in-out; + transition: color 0.2s ease-in-out; +} +/*-- quantity-starts --*/ + .value-minus, +.value-plus{ + height: 40px; + line-height: 24px; + width: 40px; + margin-right: 3px; + display: inline-block; + cursor: pointer; + position: relative; + font-size: 18px; + color: #fff; + text-align: center; + -webkit-user-select: none; + -moz-user-select: none; + border:1px solid #b2b2b2; + vertical-align: bottom; +} +.quantity-select .entry.value-minus:before, +.quantity-select .entry.value-plus:before{ + content: ""; + width: 13px; + height: 2px; + background: #000; + left: 50%; + margin-left: -7px; + top: 50%; + margin-top: -0.5px; + position: absolute; +} +.quantity-select .entry.value-plus:after{ + content: ""; + height: 13px; + width: 2px; + background: #000; + left: 50%; + margin-left: -1.4px; + top: 50%; + margin-top: -6.2px; + position: absolute; +} +.value { + cursor: default; + width: 40px; + height:40px; + padding: 8px 0px; + color: #A9A9A9; + line-height: 24px; + border: 1px solid #E5E5E5; + background-color: #E5E5E5; + text-align: center; + display: inline-block; + margin-right: 3px; +} +.quantity-select .entry.value-minus:hover, + .quantity-select .entry.value-plus:hover{ + background: #E5E5E5; +} + +.quantity-select .entry.value-minus{ + margin-left: 0; +} +/*-- quantity-end --*/ +.checkout-left-basket h4{ + padding: 1em; + background:#3399cc; + font-size: 1.1em; + color: #fff; + text-transform: uppercase; + text-align: center; + margin: 0 0 1em; +} +.checkout-left { + margin: 2em 0 0; +} +.checkout-left-basket ul li{ + list-style-type:none; + margin-bottom:1em; + font-size:14px; + color:#999; +} +.checkout-left-basket { + float: left; + width: 25%; +} +.checkout-right-basket{ + float: right; + margin: 8em 0 0 0em; +} +.checkout-left-basket ul li span { + float: right; +} +.checkout-left-basket ul li:nth-child(5) { + font-size: 1em; + color: #212121; + font-weight: 600; + padding: 1em 0; + border-top: 1px solid #DDD; + border-bottom: 1px solid #DDD; + margin: 2em 0 0; +} +.checkout-right-basket a{ + padding:10px 30px; + color:#fff; + font-size:1em; + background:#212121; + text-decoration:none; +} +.checkout-right-basket a:hover{ + background:#0066ff; +} +.checkout-right-basket a span { + left: -.5em; + top: 0.1em; +} +.checkout { + padding: 5em 0; +} +/*-- //checkout --*/ +/*-- faq --*/ +h3.w3ls-title.w3ls-title1 { + text-align: center; + margin: 0 0 1.5em; + font-size: 2.5em; +} +.faq > li > a { + width: 100%; + display: block; + position: relative; + color: #fff; + font-size: 1em; + font-weight: 400; + text-decoration: none; +} +.faq-w3agile .faq li { + margin-top: 2em; + list-style-type: decimal; + padding-left: 0.5em; +} +.faq-w3agile .faq > li > a { + color: #999; +} +.faq-w3agile .faq li li.subitem1 { + display: block; + margin-top: 1em; +} +.faq-w3agile { + padding: 5em 0; +} +ul.faq { + margin-top: 5em; +} +/*-- //faq-page --*/ +/*-- single --*/ +.agileinfo_single h2{ + font-size: 1.8em; + color: #212121; + line-height: 1.5em; + text-transform: uppercase; + margin-bottom: 1em; +} +.agileinfo_single_left { + padding: 2em; + box-shadow: 0px 0px 5px #b2afaf; +} +/*-- Ratings --*/ +.rating1 { + direction:ltr; +} +.starRating:not(old) { + display: inline-block; + height: 17px; + width:100px; + overflow: hidden; +} + +.starRating:not(old) > input{ + margin-right :-26%; + opacity : 0; +} + +.starRating:not(old) > label { + float: right; + background: url(../images/star.png); + background-size: contain; + margin-right: 2px; +} + +.starRating:not(old) > label:before{ + content : ''; + display : block; + width : 16px; + height : 16px; + background : url(../images/star1.png); + background-size : contain; + opacity : 0; + transition : opacity 0.2s linear; +} + +.starRating:not(old) > label:hover:before, +.starRating:not(old) > label:hover ~ label:before, +.starRating:not(:hover) > :checked ~ label:before{ + opacity : 1; +} +/*-- //Ratings --*/ +.agileinfo_single_right { + padding-left: 5em; +} +.agileinfo_single_right_snipcart{ + margin:0 0 2em; +} +.agileinfo_single_right_details { + margin: 0 !important; + width: 25% !important; +} +.w3agile_description h4{ + font-size:1em; + color:#212121; + text-transform:uppercase; +} +.w3agile_description p{ + font-size:14px; + color:#999; + line-height:2em; + margin:.5em 0 0; + width:80%; +} +.w3agile_description { + margin: 2em 0; +} +.w3ls_w3l_banner_nav_right_grid_popular{ + background:#f5f5f5; + padding:5em 0 !important; +} +/*-- //single --*/ +.brands { + padding: 5em 0; + background: #eed3b6; +} +.brands-w3l { + text-align: center; + +} +.brands-w3l p a{ + font-size: 17px; + font-weight: 700; + text-transform: uppercase; + color: #39c; + background: #fff; + padding: 16px; + display: block; + border: 1px solid #e1e1e1; +} +.brands-w3l p a:hover{ + box-shadow: 0 0 6px 1px #b6b6b6; +} +.brands-agile-1 { + margin: 20px 0; +} +.brands-agile { + margin-top: 5em; +} +/*-- products --*/ +.products { + padding: 5em 0; +} +.sorting{ + float:right; + width: 35%; +} +.sorting-left{ + float: right; + margin-right: 2em; + width: 25%; +} +select#country,select#country1 { + border: 1px solid #212121; + outline: none; + font-size: 14px; + color: #212121; + padding: 0.5em; + width: 100%; + cursor: pointer; +} +.products-right-grids{ + margin-bottom: 2em; +} +.numbering{ + text-align:right; +} +ul.paging { + margin: 4em auto 0; +} +.paging > .active > a,.paging > .active > a:hover { + background-color:#ffc229; + border-color:#EDB62B; +} +.pagination > li > a{ + color:#212121; +} +.categories,.new-products{ + border:1px solid #999; +} +.categories h2{ + font-size: 1.5em; + color: #212121; + margin: 0; + padding: .5em; + background: #f5f5f5; + text-transform: uppercase; + text-align: center; + letter-spacing: 5px; +} +.filter-price h3{ + background:none; +} +.categories ul.cate,.new-products-grids{ + padding:2em; +} +.categories ul li{ + display:block; + color:#999; + font-size:14px; + margin-bottom:1em; +} +.categories ul li a{ + color:#999; + text-decoration:none; +} +.categories ul li a:hover{ + color:#3399cc; +} +.categories ul li span{ + float:right; +} +ul.cate ul{ + margin-left:2em; +} +ul.dropdown-menu1 li{ + display:block; + font-size:14px; +} +ul.dropdown-menu1 li a{ + color:#212121; + text-decoration:none; +} +input#amount { + outline: none; + margin: 0 auto; + text-align: center; + width: 100%; +} +.new-products-grid-left{ + float:left; + width:35%; +} +.new-products-grid-right{ + float:right; + width:60%; +} +/*-- //products --*/ +/*-- about --*/ +.about,.about-team, .contact,.codes { + padding: 5em 0; +} +h3.w3_agile_header,h2.w3_agile_header { + text-align: center; + color: #212121; + padding-bottom: .5em; + position: relative; + font-size: 2.5em; + text-transform: uppercase +} +h3.w3_agile_header:after,h2.w3_agile_header:after{ + content: ''; + background: #3399cc; + height: 2px; + width: 15%; + position: absolute; + bottom: 0%; + left: 43%; +} +.icons { + margin: 50px 0; +} +.about-agileinfo { + margin-top: 4em; +} +.about .grid-top h4 { + font-size: 1.5em; + color: #222; + letter-spacing: 4px; +} +.about img { + width: 100%; +} +.about-w3imgs { + padding: 0; + overflow: hidden; +} +.about .grid-top p { + font-size: 1em; + color: #999; + line-height: 1.8em; + margin: 1em 0 2.5em; +} +.about .grid-top p.top { + margin: 1em 0; +} +.offic-time { + text-align: center; +} +.time-top { + padding: 1em; + background-color: #0066ff; +} +.time-top h4 { + font-size: 1.7em; + color: #fff; +} +.time-bottom { + padding: 1.6em 2em; + background-color: #212121; +} +.time-bottom h5 { + font-size: 1.1em; + color: #FFF; + line-height: 1.8em; + letter-spacing: 1px; +} +.time-bottom p { + font-size: 1em; + color: #BBBBBB; + margin-top: 0.5em; + line-height: 1.8em; +} +/*-- //about-page --*/ +.testi { + width: 100%; + margin-top: 3em; + position: relative; +} +.testi h3.w3ls-title1 { + text-align: left; + font-size: 2.5em; +} +.testi h4 { + color: #FFFFFF; + font-size: 1.4em; + letter-spacing: 1px; +} +.testi p { + font-style: italic; + color: #000; + font-size: 1em; + margin-top: 1em; + line-height: 1.5em; + font-weight: 300; +} +.testi-subscript p { + margin: 1em 2.8em 0 0; +} +.testi p a { + font-size: 1em; + font-weight: 600; + color: #000; + margin: 0 5px; + text-decoration: none; + text-transform: capitalize; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + transition: 0.5s all; +} +.testi p a:hover{ + color: #fff; +} +.testi-subscript { + position: relative; + display: inline-block; +} +.testi span.w3-agilesub { + position: absolute; + background: url(../images/icon3.png) no-repeat 0px 0px; + display: block; + width: 30px; + height: 29px; + top: 0%; + right: 0%; +} +.testi-slider { + padding: 4em 2em 3em; + background: #3399cc; + margin-top: 2em; +} +/*-- slider start here --*/ +#slider3,#slider4 { + box-shadow: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + margin: 0 auto; +} +.rslides_tabs { + list-style: none; + padding: 0; + background: rgba(0,0,0,.25); + box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0); + -moz-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0); + -webkit-box-shadow: 0 0 1px rgba(255,255,255,.3), inset 0 0 5px rgba(0,0,0,1.0); + font-size: 18px; + list-style: none; + margin: 0 auto 50px; + max-width: 540px; + padding: 10px 0; + text-align: center; + width: 100%; +} +.rslides_tabs li { + display: inline; + float: none; + margin-right: 1px; +} +.rslides_tabs a { + width: auto; + line-height: 20px; + padding: 9px 20px; + height: auto; + background: transparent; + display: inline; +} +.rslides_tabs li:first-child { + margin-left: 0; +} +.rslides_tabs .rslides_here a { + background: rgba(255,255,255,.1); + color: #fff; + font-weight: bold; +} +.events { + list-style: none; +} +.callbacks_container { + float: left; + width: 100%; +} +.callbacks { + position: relative; + list-style: none; + overflow: hidden; + width: 100%; + padding: 0; + margin: 0; +} +.callbacks li { + position: absolute; + width: 100%; + left: 0; + top: 0; +} +.callbacks img { + position: relative; + z-index: 1; + height: auto; + border: 0; +} +.callbacks_nav { + position: absolute; + -webkit-tap-highlight-color: rgba(0,0,0,0); + top: 15%; + right: 0%; + opacity: 0.7; + z-index: 3; + text-indent: -9999px; + overflow: hidden; + text-decoration: none; + height: 30px; + width: 25px; + background: url("../images/icon1.png")no-repeat center center; +} +.callbacks_nav:active { + opacity: 1.0; +} +.callbacks_nav.next { + right: 7%; + background: url("../images/icon2.png")no-repeat center center; +} +#slider3-pager a ,#slider4-pager a { + display: inline-block; +} +#slider3-pager span, #slider4-pager span{ + float: left; +} +#slider3-pager span,#slider4-pager span{ + width:100px; + height:15px; + background:#fff; + display:inline-block; + border-radius:30em; + opacity:0.6; +} +#slider3-pager .rslides_here a , #slider4-pager .rslides_here a { + background: #FFF; + border-radius:30em; + opacity:1; +} +#slider3-pager a ,#slider4-pager a{ + padding: 0; +} +#slider3-pager li ,#slider4-pager li{ + display:inline-block; +} +.rslides { + position: relative; + list-style: none; + overflow: hidden; + width: 100%; + padding: 0; + margin: 0; +} +.rslides li { + -webkit-backface-visibility: hidden; + position: absolute; + display: none; + width: 100%; + left: 0; + top: 0; +} +.rslides li{ + position: relative; + display: block; + float: left; +} +.rslides img { + height: auto; + border: 0; + width:100%; +} +.callbacks_tabs a{ + font-size: 30px; + color: #70664c; + font-weight: 600; + padding: 0px 18px; + background: rgba(222, 208, 157, 0.89); +} +.callbacks_here a:after{ + color: black; + text-decoration: none; + background: rgba(245, 179, 3, 0.56); +} +.callbacks_tabs a:hover, .callbacks_tabs a:active { + color: black; + text-decoration: none; + background: rgba(245, 179, 3, 0.56); +} +.callbacks_tabs a:after{ + color: black; + text-decoration: none; + background: rgba(245, 179, 3, 0.56); +} +li.callbacks1_s1.callbacks_here a.callbacks1_s1:after, li.callbacks1_s1.callbacks_here a.callbacks1_s1:active{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +li.callbacks1_s1.callbacks_here a.callbacks1_s1:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +a.callbacks1_s4.active,a.callbacks1_s4:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +a.callbacks1_s2.active,a.callbacks1_s2:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +a.callbacks1_s3.active,a.callbacks1_s3:focus{ + color: black; + background: rgba(245, 179, 3, 0.79); + text-decoration: none; + outline: none; +} +/*--//slider end here--*/ +/*-- about-slid --*/ +.about-slid{ + background: url(../images/22.jpg)no-repeat 0px center fixed; + background-size: cover; + text-align: center; + padding: 6em 0; +} +.about-slid-info { + width: 75%; + margin: 0 auto; +} +.about-slid h2 { + color: #fff; + font-size: 3.5em; + font-family: 'Abel', sans-serif; +} +.about-slid p { + color: #fff; + font-size: 1em; + margin-top: 2em; + line-height: 1.8em; +} +/*-- team-agileitsinfo --*/ +.team-agileitsinfo { + margin-top: 4em; +} +.about-team-grids { + background: #3399cc; + padding: 2em 1em; + margin-left: 5px; + width: 24.5%; +} +.about-team-grids img { + width: 100%; +} +.about-team-grids h4 { + color: #000; + font-size: 1.1em; + margin: 1.5em 0 0.5em; +} +.about-team-grids h4 span { + font-size: 1.3em; + color: #000; + margin-right: 10px; +} +.team-w3lstext h6 { + color: #67686b; + font-size: 16px; + font-weight: 400; + margin: 0; + letter-spacing: 0px; +} +.about-team-grids p { + color: #fff; + font-size: 14PX; + line-height: 1.8em; + font-weight: 400; + margin-top: 1em; +} +.about-grid1 .thumb .caption { + float: left; + width: 100%; + height: 70px; + position: absolute; + left: 0; + bottom: 0; + padding: 13px 30px; + text-align: center; + background-color:rgba(81, 92, 142, 0.55); + -o-transition: all 0.3s ease; + -moz-transition: all 0.3s ease; + -ms-transition: all 0.3s ease; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.about-grid1 .thumb:hover .caption { + height: 100%; + padding: 40px 30px; + opacity: 1; + visibility: visible; +} +.caption { + opacity: 0; + top: 0%; + position: absolute; + background-color:rgba(51, 153, 204, 0.58); + width: 100%; + left: 0; + text-align: center; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + transition: 0.5s all; +} +.social-icons ul li { + display: inline-block; + font-size: inherit; + text-align: center; + margin: 0; +} +.social-icons ul li a.fa { + font-size: 1em; + color: #fff; + line-height: 2.6em; +} +.social-icons.caption ul li a.fa { + margin: 0 .5em; + line-height: inherit; + -webkit-transition: 0.5s all; + -moz-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + transition: 0.5s all; +} +.about-team-grids:hover .caption{ + display:block; + top: 49.2%; + opacity:1; +} +.caption ul { + padding: 1em 0; +} +.caption ul li a:hover{ + color:#000; +} +/*-- contact --*/ +.agile_map iframe{ + width:100%; + min-height:580px; +} +.w3_agileits_contact_grid_left{ + padding:0; + position:relative; +} +.agileits_w3layouts_map_pos{ + position: absolute; + right: -15%; + top: 22%; + width: 50%; + padding: 2em; + background: #3399cc; +} +.agileits_w3layouts_map_pos h3{ + font-size:1.5em; + color:#212121; +} +.agileits_w3layouts_map_pos p{ + color:#fff; + line-height:2em; + margin:.5em 0 1.5em; + font-weight:600; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li{ + list-style-type:none; + margin-bottom:1em; + color:#fff; + font-weight:600; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li i{ + padding-right:1em; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li a{ + color:#fff; + text-decoration:none; +} +.agileits_w3layouts_map_pos ul.wthree_contact_info_address li a:hover{ + color:#212121; +} +.w3_agile_social_icons_contact ul li a { + text-align: center; +} +.agileits_w3layouts_map_pos1{ + padding:2em; + border:3px double #fff; +} +.w3_agileits_contact_grid_right{ + padding:0 4em 0 12em; +} +.w3_agileits_contact_grid_right form{ + padding:1em 0 0; +} +/*-- effect --*/ +.input { + position: relative; + z-index: 1; + display: inline-block; + margin: 0; + max-width: 100%; + width: calc(100% - 0em); + vertical-align: top; +} + +.input__field { + position: relative; + display: block; + float: right; + padding: 0.8em; + width: 60%; + border: none; + border-radius: 0; + background: #f0f0f0; + color: #aaa; + -webkit-appearance: none; /* for box shadows to show on iOS */ + font-size: 14px; +} + +.input__field:focus { + outline: none; +} + +.input__label { + display: inline-block; + float: right; + padding: 0 1em; + width: 40%; + color: #212121; + font-size: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.input__label-content { + position: relative; + display: block; + padding:1em 0; + width: 100%; +} +/* Ichiro */ +.input--ichiro { + margin-top: 2em; +} + +.input__field--ichiro { + position: absolute; + top: 4px; + left: 4px; + z-index: 100; + display: block; + padding: 0 1em; + width: calc(100% - 8px); + height: calc(100% - 8px); + background: #fff; + color: #212121; + opacity: 0; + -webkit-transform: scale3d(1, 0, 1); + transform: scale3d(1, 0, 1); + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + -webkit-transition: opacity 0.3s, -webkit-transform 0.3s; + transition: opacity 0.3s, transform 0.3s; +} + +.input__label--ichiro { + width: 100%; + text-align: left; + cursor: text; +} + +.input__label--ichiro::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: #f5f5f5; + -webkit-transform-origin: 50% 100%; + transform-origin: 50% 100%; + -webkit-transition: -webkit-transform 0.3s; + transition: transform 0.3s; + border: 1px solid #e4e4e4; +} + +.input__label-content--ichiro { + -webkit-transform-origin: 0% 50%; + transform-origin: 0% 50%; + -webkit-transition: -webkit-transform 0.3s; + transition: transform 0.3s; +} + +.input__field--ichiro:focus, +.input--filled .input__field--ichiro { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); +} + +.input__field--ichiro:focus + .input__label--ichiro, +.input--filled .input__label--ichiro { + cursor: default; + pointer-events: none; +} + +.input__field--ichiro:focus + .input__label--ichiro::before, +.input--filled .input__label--ichiro::before { + -webkit-transform: scale3d(1, 1.5, 1); + transform: scale3d(1, 1.5, 1); + border: none; +} + +.input__field--ichiro:focus + .input__label--ichiro .input__label-content--ichiro, +.input--filled .input__label-content--ichiro { + -webkit-transform: translate3d(0, -2.4em, 0) scale3d(0.8, 0.8, 1); + transform:translate3d(0, -2.4em, 0) scale3d(0.8, 0.8, 1) translateZ(1px); +} +.w3_agileits_contact_grid_right textarea { + outline: none; + width: 100%; + background: #f5f5f5; + color: #212121; + padding: 10px; + font-size: 14px; + border: 1px solid #e4e4e4; + min-height: 200px; + font-weight: bold; + margin: 2em 0 0; +} +.w3_agileits_contact_grid_right textarea::-webkit-input-placeholder { + color: #212121 !important; +} +.w3_agileits_contact_grid_right input[type="submit"] { + outline: none; + width: 100%; + background: #212121; + color: #fff; + padding: 0.8em 0; + font-size: 1em; + font-weight: bold; + border: none; + text-transform: uppercase; + margin: 1em 0 0; + letter-spacing: 5px; +} +.w3_agileits_contact_grid_right input[type="submit"]:hover{ + background:#3399cc; +} +/*-- //contact --*/ +/*-- social-icons --*/ +.w3_agile_social_icons ul li{ + display:inline-block; +} +.icon { + display: inline-block; + vertical-align: top; + overflow: hidden; + width: 35px; + height: 35px; +} +.icon-cube { + position: relative; + -webkit-perspective: 100px; + perspective: 100px; + overflow: visible; +} + +/*-- agileits --*/ +.icon-cube::before, +.icon-cube::after { + display: block; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + font-family: FontAwesome; + font-size: 1em; + -webkit-transition: all 0.3s; + transition: all 0.3s; + line-height: 2.6em; +} + +.icon-cube::before { + z-index: 2; + background-color:#fff; +} + +.icon-cube::after { + z-index: 1; + opacity: 0; + -webkit-transform:translateY(25px) rotateX(-90deg); + transform:translateY(25px) rotateX(-90deg); +} + +.icon-cube:hover::before { + opacity: 0; + -webkit-transform: translateY(-25px) rotateX(90deg); + transform: translateY(-25px) rotateX(90deg); +} + +.icon-cube:hover::after { + opacity: 1; + -webkit-transform: rotateX(0); + transform: rotateX(0); +} + +/*-- facebook --*/ +/*-- w3layouts --*/ +.icon-cube.agile_facebook::before, +.icon-cube.agile_facebook::after { + content: "\f09a"; + color: #3b5998; +} + +.icon-cube.agile_facebook::after { + background-color:#3b5998; + color:#fff; +} +/*-- rss --*/ +.icon-cube.agile_rss::before, +.icon-cube.agile_rss::after { + content:"\f09e"; + color: #f26522; +} + +.icon-cube.agile_rss::after { + background-color:#f26522; + color: #fff; +} +/*-- instagram --*/ +.icon-cube.agile_instagram::before, +.icon-cube.agile_instagram::after { + content:"\f16d"; + color: #833ab4; +} + +.icon-cube.agile_instagram::after { + background-color:#833ab4; + color: #fff; +} +/*-- t --*/ +.icon-cube.agile_t::before, +.icon-cube.agile_t::after { + content:"\f173"; + color: #35465c; +} + +.icon-cube.agile_t::after { + background-color:#35465c; + color: #fff; +} +/*-- //social-icons --*/ +/*-- icons --*/ +.codes a { + color: #999; +} +.icon-box { + padding: 8px 15px; + background:rgba(149, 149, 149, 0.18); + margin: 1em 0 1em 0; + border: 5px solid #ffffff; + text-align: left; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + font-size: 13px; + transition: 0.5s all; + -webkit-transition: 0.5s all; + -o-transition: 0.5s all; + -ms-transition: 0.5s all; + -moz-transition: 0.5s all; + cursor: pointer; +} +.icon-box:hover { + background: #000; + transition:0.5s all; + -webkit-transition:0.5s all; + -o-transition:0.5s all; + -ms-transition:0.5s all; + -moz-transition:0.5s all; +} +.icon-box:hover i.fa { + color:#fff !important; +} +.icon-box:hover a.agile-icon { + color:#fff !important; +} +.codes .bs-glyphicons li { + float: left; + width: 12.5%; + height: 115px; + padding: 10px; + line-height: 1.4; + text-align: center; + font-size: 12px; + list-style-type: none; +} +.codes .bs-glyphicons .glyphicon { + margin-top: 5px; + margin-bottom: 10px; + font-size: 24px; +} +.codes .glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #777; +} +.codes .bs-glyphicons .glyphicon-class { + display: block; + text-align: center; + word-wrap: break-word; +} +h4.m-sing { + text-align: left; +} +h3.icon-subheading { + font-size: 28px; + color: #0066ff !important; + margin: 30px 0 15px; + font-weight: 600; + letter-spacing: 2px; +} +h3.agileits-icons-title { + text-align: center; + font-size: 33px; + color: #222222; + font-weight: 600; + letter-spacing: 2px; +} +.icons a { + color: #999; +} +.icon-box i { + margin-right: 10px !important; + font-size: 20px !important; + color: #282a2b !important; +} +.bs-glyphicons li { + float: left; + width: 18%; + height: 115px; + padding: 10px; + line-height: 1.4; + text-align: center; + font-size: 12px; + list-style-type: none; + background:rgba(149, 149, 149, 0.18); + margin: 1%; +} +.bs-glyphicons .glyphicon { + margin-top: 5px; + margin-bottom: 10px; + font-size: 24px; + color: #282a2b; +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: 400; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: #777; +} +.bs-glyphicons .glyphicon-class { + display: block; + text-align: center; + word-wrap: break-word; +} +@media (max-width:991px){ + h3.agileits-icons-title { + font-size: 28px; + } + h3.icon-subheading { + font-size: 22px; + } +} +@media (max-width:768px){ + h3.agileits-icons-title { + font-size: 28px; + } + h3.icon-subheading { + font-size: 25px; + } + .row { + margin-right: 0; + margin-left: 0; + } + .icon-box { + margin: 0; + } +} +@media (max-width: 640px){ + .icon-box { + float: left; + width: 50%; + } +} +@media (max-width: 480px){ + .bs-glyphicons li { + width: 31%; + } + .icon-box { + float: none; + width: 100%; +} +} +@media (max-width: 414px){ + h3.agileits-icons-title { + font-size: 23px; + } + h3.icon-subheading { + font-size: 18px; + } + .bs-glyphicons li { + width: 31.33%; + } +} +@media (max-width: 384px){ + .icon-box { + float: none; + width: 100%; + } +} +/*-- //icons --*/ +.w3_wthree_agileits_icons.main-grid-border { + padding: 5em 0; +} +/*-----start-responsive-design------*/ +@media (max-width:1680px){ +} +@media (max-width:1600px){ +} +@media (max-width:1440px){ +} +@media (max-width:1366px){ +} +@media (max-width: 1280px){ +} +@media (max-width: 1080px){ +#PPMiniCart { + left: 42% !important; +} +#Awesome h4 { + padding: 1.9em 0 0; +} +.w3ls_logo_products_left h1 a { + font-size: 34px; +} +.w3l_search input[type="search"] { + width: 81%; +} +.navbar-nav > li { + margin-left: 8px; +} +.nav > li > a { + padding: 10px 8px !important; +} +.top-brands h2, .newproducts-w3agile h3, .login h2, .register h2, .faq-w3agile h3, .brands h3 { + font-size: 2em; +} +.w3_footer_grid h3 { + font-size: 1.4em; +} +.products-right { + padding: 0; +} +.snipcart-details { + width: 81%; +} +h3.w3_agile_header, h2.w3_agile_header { + font-size: 2em; +} +.w3_agileits_contact_grid_right { + padding: 0 2em 0 6em; +} +.agileits_w3layouts_map_pos { + width: 65%; +} +.about-team-grids { + width: 24.4%; +} +.about-team-grids h4 { + font-size: 0.9em; +} +.about-team-grids:hover .caption { + top: 42.2%; +} +.testi h4 { + font-size: 1.1em; +} +} +@media (max-width: 1024px){ +} +@media (max-width: 991px){ +.w3l_offers p { + font-size: 14px; +} +.w3l_offers { + width: 52%; +} +.agile-login { + padding: 6px 0; +} +.w3view-cart { + height: 36px; +} +.agileits_header { + padding: 12px 0 8px; +} +.w3ls_logo_products_left h1 a { + font-size: 30px; +} +i.fa.fa-phone { + margin-right: 7px; + font-size: 15px; +} +ul.phone_email li { + font-size: 13px; +} +.w3ls_logo_products_left1 { + margin-top: 0; + width: 38%; +} +.w3l_search { + width: 27%; + margin: 0em 0 0em 0em; +} +.w3l_search input[type="search"] { + width: 76%; +} +.navbar-default .navbar-nav > li > a { + font-size: 14px; +} +.nav > li > a { + padding: 10px 2px !important; +} +.navbar-nav > li { + margin-left: 5px; +} +.navbar { + min-height: 43px; +} +.top_brand_left { + float: left; + width: 33.33%; +} +.agile_top_brand_left_grid1 img { + max-width: 100% ! important ; +} +.brands-agile-1 { + margin: 0; +} +.w3layouts-brand { + float: left; + width: 33.33%; + margin-bottom: 3%; +} +.top_brand_left-1 { + width: 50%; + float: left; + margin-bottom: 3%; +} +.newproducts-w3agile { + padding: 3em 0 2em; +} +.footer { + padding: 3em 0 2em; +} +.w3_footer_grid { + float: left; + width: 50%; + margin-bottom: 1em; +} +.footer-copy p { + margin: 1.5em 0 0; +} +.ban-bottom3 { + margin: 2em 0; +} +.products-left { + padding: 0; + margin-bottom: 24px; +} +.w3_agileits_contact_grid_right { + padding: 0 1em 0 1em; + margin-top:2em; +} +.agileits_w3layouts_map_pos { + right: 6%; + width: 38%; +} +.about-w3imgs { + float: left; + width: 33.33%; +} +.about-wthree-grids { + margin-top: 2em; +} +.about-slid h2 { + font-size: 2.5em; +} +.about-slid-info { + width: 100%; +} +.about-team-grids { + margin-left: 16px; + width: 47%; + float: left; + padding: 2em 2em; + margin-bottom: 20px; +} +.login-form-grids { + width: 65%; +} +.login h4 { + font-size: 1.3em; +} +.timetable_sub th, .timetable_sub td { + font-size: 12px; +} +.checkout-left-basket { + width: 34%; +} +.agileinfo_single_left { + float: left; + width: 40%; +} +.agileinfo_single_right { + padding-left: 2em; + float: left; + width: 60%; +} +.agileinfo_single h2 { + font-size: 1.4em; +} +.w3agile_description p { + font-size: 14px; + width: 100%; +} +.agileinfo_single_right_details { + width: 36% !important; +} +} +@media (max-width:800px){ +} +@media (max-width: 768px){ +#PPMiniCart { + left: 39% !important; +} +.top-brands { + padding: 3em 0; +} +p.w3l-ad { + width: 80%; +} +.brands { + padding: 3em 0; +} +.ban-bottom-w3l { + padding: 3em 0; +} +.brands-agile { + margin-top: 3em; +} +.grid_3.grid_5 { + margin-top: 3em; +} +.products { + padding: 3em 0; +} +ul.paging { + margin: 2em auto 0; +} +.about, .about-team, .contact, .codes { + padding: 3em 0; +} +.about-agileinfo { + margin-top: 3em; +} +.team-agileitsinfo { + margin-top: 3em; +} +.register { + padding: 3em 0; +} +.login { + padding: 3em 0; +} +.checkout { + padding: 3em 0; +} +} +@media (max-width: 767px){ + .navbar-nav > li { + float: none; + margin-left: 0px; + text-align: center; +} +.navbar-nav { + margin: 0; +} +.about, .about-team, .contact, .codes { + padding: 3em 0; +} +.agileits_w3layouts_map_pos { + width: 45%; +} +ul.faq { + margin-top: 3em; + padding: 0 1.5em; +} +.faq-w3agile { + padding: 3em 0em; +} +.navbar-nav .open .dropdown-menu { + background: #fff; +} +.navbar-default { + background: none; + border: none; + text-align: center; +} +} +@media (max-width: 736px){ +#PPMiniCart { + top: 140px !important; +} +#PPMiniCart form { + max-height: 185px !important; +} +.w3l_offers p { + font-size: 13px; +} +.w3ls_logo_products_left h1 a { + font-size: 26px; +} +.logo_products { + padding: 1.5em 0; +} +.skdslider { + height: 281px; +} +.snipcart-details { + width: 100%; +} +.agile_top_brand_left_grid1 p { + font-size: 13px; +} +.agile_top_brand_left_grid1 h4, .agileinfo_single_right_snipcart h4 { + font-size: 0.9em; +} +.value { + width: 27px; + height: 27px; + padding: 8px 0px; + line-height: 13px; +} +.value-minus, .value-plus { + height: 27px; + line-height: 13px; + width: 27px; + font-size: 16px; +} +.agileinfo_single h2 { + font-size: 1.3em; +} +} +@media (max-width: 667px){ +#PPMiniCart { + left: 36% !important; +} +#PPMiniCart form { + max-height: 165px !important; +} +.agile-login { + width: 37%; +} +.w3l_offers { + width: 56%; +} +.agile-login ul li { + padding: 0em 0.4em; +} +.w3ls_logo_products_left1 { + width: 100%; + text-align: center; +} +.w3ls_logo_products_left { + width: 100%; + margin: 20px 0; +} +.w3ls_logo_products_left h1 a { + display: inline-block; +} +.w3l_search { + width: 100%; +} +.w3l_search input[type="search"] { + width: 92%; +} +.logo_products { + padding: 1em 0; +} +.top_brand_left { + width: 100%; + margin-bottom: 3%; +} +.snipcart-details input.button { + width: 54%; +} +.agile_top_brands_grids { + margin-top: 2em; +} +.agileits_w3layouts_map_pos { + width: 51%; +} +.login-form-grids { + width: 71%; +} +.checkout-left-basket { + width: 42%; +} +.agileinfo_single h2 { + font-size: 1.2em; +} +.agileinfo_single_right_details { + width: 73% !important; + text-align: left; +} +} +@media (max-width: 640px){ +#PPMiniCart form { + max-height: 400px !important; +} +.w3l_offers { + width: 100%; + text-align: center; +} +.agile-login { + width: 38%; +} +.about .grid-top h4 { + font-size: 1.3em; +} +.about-slid h2 { + font-size: 2em; +} +.about-slid { + padding: 4em 0; +} +.about-slid p { + font-size: 0.9em; +} +.login-form-grids { + width: 76%; +} +.agileinfo_single_left { + padding: 1em; +} +.agileinfo_single_right { + padding-left: 1em; +} +} +@media (max-width: 600px){ +#PPMiniCart form { + width: 506px !important; +} +#PPMiniCart { + left: 41% !important; +} +#PPMiniCart ul { + width: 464px !important; +} +#PPMiniCart form { + max-height: 210px !important; +} +.agile-login { + width: 40%; +} +.value-minus, .value-plus { + height: 22px; + width: 22px; +} +.value { + width: 22px; + height: 22px; + line-height: 6px; +} +} +@media (max-width: 568px){ +#PPMiniCart form { + max-height: 100px !important; +} +.snipcart-details input.button { + width: 64%; +} +.agile-login { + width: 43%; +} +.w3l_search input[type="search"] { + width: 91%; +} +.agileits_w3layouts_map_pos { + width: 58%; +} +.about-team-grids { + width: 46%; +} +.checkout-left-basket { + width: 49%; +} +td.invert-image a img { + width: 65%; +} +.timetable_sub th, .timetable_sub td { + width: 50px; +} +.value { + width: 17px; + height: 17px; + line-height: 0px; +} +.value-minus, .value-plus { + height: 17px; + width: 17px; +} +.timetable_sub th, .timetable_sub td { + padding: 7px 0px; +} +} +@media (max-width: 480px){ +#PPMiniCart form { + max-height: 350px !important; +} +#PPMiniCart form { + width: 400px !important; +} +#PPMiniCart ul { + width: 358px !important; +} +#PPMiniCart { + left: 51% !important; +} +.top_brand_left-1 { + width: 100%; +} +.w3layouts-brand { + float: left; + width: 50%; + margin-bottom: 3%; +} +.nav-tabs>li>a { + font-size: 14px; +} +.w3l_search input[type="search"] { + width: 90%; +} +.agile-login { + width: 50%; +} +.top-brands h2, .newproducts-w3agile h3, .login h2, .register h2, .faq-w3agile h3, .brands h3 { + font-size: 1.7em; +} +p.w3l-ad { + width: 100%; +} +.grid_3.grid_5 h5 { + font-size: 18px; +} +.w3_footer_grid { + width: 100%; +} +.w3_footer_grid h3 { + margin-bottom: 1em; +} +.sorting { + width: 44%; +} +.sorting-left { + width: 42%; +} +h3.w3_agile_header, h2.w3_agile_header { + font-size: 1.7em; +} +.agileits_w3layouts_map_pos { + + width: 70%; +} +.about-team-grids { + width: 65%; + float: none; + margin: 0 auto 20px; +} +.about-slid h2 { + font-size: 1.7em; +} +.login-form-grids { + width: 90%; +} +.checkout-left-basket { + width: 57%; +} +.checkout-right-basket { + margin: 3em 0 0 0em; +} +.agileinfo_single_left { + width: 100%; + margin-bottom: 2em; + padding: 3em 4em; +} +.agileinfo_single_right { + padding-left: 0em; + width: 100%; +} +} +@media (max-width: 414px){ +#PPMiniCart form { + width: 360px !important; +} +#PPMiniCart ul { + width: 318px !important; +} +#PPMiniCart { + left: 55% !important; +} +.agile-login { + width: 61%; +} +.w3l_search input[type="search"] { + width: 87%; +} +.w3ls_logo_products_left { + margin: 12px 0; +} +.ban-text1 h4 { + font-size: 16px; +} +.ban-text1 { + left: 18%; +} +.footer-copy p { + font-size: 14px; +} +.agileits_w3layouts_map_pos { + width: 80%; +} +.about-wthree-grids { + margin-top: 0em; +} +.about .grid-top h4 { + font-size: 1.1em; + line-height: 24px; +} +.about .grid-top p { + font-size: 0.875em; +} +.about-team-grids { + width: 80%; +} +.login-form-grids { + padding: 2em; +} +.checkout h2 { + font-size: 0.95em; + margin: 0 0 2em; +} +.value-minus, .value-plus { + margin: 4px 15px; + display: inline-block; +} +.value { + margin: 4px 15px; + display: inline-block; +} +.quantity-select .entry.value-minus { + margin-left: 15px; +} +.checkout-left-basket { + width: 100%; +} +.agileinfo_single_left { + padding: 2em 2em; +} +} +@media (max-width: 384px){ +#PPMiniCart form { + width: 300px !important; + padding: 10px 10px 40px !important; +} +#PPMiniCart ul { + width: 278px !important; +} +#PPMiniCart .minicart-remove { + width: 11px !important; + height: 11px !important; + line-height: 0; + margin: 3px 0 0 !important; +} +#PPMiniCart { + left: 64% !important; +} +#PPMiniCart .minicart-item a { + font-size: 13px; +} +#PPMiniCart .minicart-attributes li { + font-size: 12px; +} +span.minicart-price { + font-size: 12px; +} +#PPMiniCart .minicart-quantity { + font-size: 11px; +} +.w3l_offers p { + font-size: 12px; +} +.agile-login { + width: 67%; +} +.w3l_search input[type="search"] { + width: 86%; +} +.w3layouts-foot { + width: 100%; + text-align: center; + margin-bottom: 20px; +} +.payment-w3ls { + width: 100%; + text-align: center; +} +.payment-w3ls img{ + display:inline-block; +} +.agileits_w3layouts_map_pos { + width: 90%; +} +.about-slid h2 { + font-size: 1.5em; +} +.about-slid p { + font-size: 0.875em; +} +.login-form-grids { + width: 95%; +} +.checkout h2 { + font-size: 0.9em; +} +} +@media (max-width: 375px){ + .login-form-grids { + width: 100%; +} +.checkout h2 { + font-size: 0.875em; +} +.agileinfo_single_left { + padding: 1em 1em; +} +.agileinfo_single h2 { + font-size: 1.1em; +} +} +@media (max-width: 320px){ +#PPMiniCart form { + width: 285px !important; +} +#PPMiniCart ul { + width: 263px !important; +} +#PPMiniCart { + left: 69% !important; +} +#PPMiniCart .minicart-subtotal { + padding-left: 5px !important; + font-size: 13px !important; +} +.agile-login { + width: 79%; +} +.w3l_offers p { + font-size: 10px; +} +.w3l_offers { + padding: 9px 0 5px; +} +.w3ls_logo_products_left { + margin: 3px 0 12px; +} +.w3l_search input[type="search"] { + width: 83%; +} +.top-brands h2, .newproducts-w3agile h3, .login h2, .register h2, .faq-w3agile h3, .brands h3 { + font-size: 1.4em; +} +.nav-tabs>li>a { + font-size: 12px; +} +div#myTabContent { + padding: 20px 20px; +} +p.w3l-ad { + font-size: 13px; + line-height: 24px; +} +.top_brand_left { + padding: 0; +} +.ban-text1 h4 { + font-size: 14px; +} +.ban-text1 { + left: 17%; + padding: 8px 18px; +} +.top-brands { + padding: 2em 0; +} +.grid_3.grid_5 { + margin-top: 2em; +} +.ban-bottom-w3l { + padding: 2em 0; +} +.brands { + padding: 2em 0; +} +.w3layouts-brand { + width: 46%; + padding: 0; + margin: 2%; +} +.brands-agile { + margin-top: 2em; +} +.newproducts-w3agile { + padding: 2em 0 1em; +} +.footer-copy p { + margin: 0 0 0; +} +.footer { + padding: 2em 0 1.5em; +} +.w3_footer_grid h3 { + font-size: 1.3em; +} +.w3_footer_grid { + padding: 0; +} +.sorting-left { + width: 47%; + margin-right: 2%; +} +.sorting { + width: 51%; +} +.products { + padding: 2em 0; +} +.categories ul.cate, .new-products-grids { + padding: 1em; +} +ul.cate ul { + margin-left: 1.5em; +} +.about, .about-team, .contact, .codes { + padding: 2em 0; +} +.agileits_w3layouts_map_pos1 { + padding: 1em; +} +.agileits_w3layouts_map_pos { + padding: 1em; +} +.agileits_w3layouts_map_pos { + top: 13%; +} +.agile_map iframe { + min-height: 430px; +} +h3.w3_agile_header, h2.w3_agile_header { + font-size: 1.4em; +} +.about-agileinfo { + margin-top: 2em; +} +.about-wthree-grids { + padding: 0; +} +.about .grid-top h4 { + font-size: 1em; + letter-spacing: 1px; +} +.time-top h4 { + font-size: 1.5em; +} +.about-slid { + padding: 3em 0; +} +.about-slid h2 { + font-size: 1.3em; +} +.about-team-grids { + width: 100%; +} +.faq-w3agile { + padding: 2em 0em; +} +ul.faq { + margin-top: 2em; + padding: 0 1em; +} +.faq-w3agile .faq li { + margin-top: 1em; +} +.faq > li > a { + line-height: 23px; +} +.register { + padding: 2em 0; +} +.login-form-grids { + margin: 2em auto 0; +} +.login-form-grids { + padding: 1.2em; +} +.register-check-box label { + font-size: 13px; +} +.checkbox { + padding-left: 30px !important; +} +.login { + padding: 2em 0; +} +.login p a { + font-size: 1em; +} +.checkout h2 { + font-size: 0.875em; + line-height: 22px; +} +.checkout { + padding: 2em 0; +} +.value-minus, .value-plus { + margin: 4px 10px; +} +.quantity-select .entry.value-minus { + margin-left: 10px; +} +.value { + margin: 4px 10px; +} +td.invert-image a img { + width: 72%; +} +.agileinfo_single h2 { + font-size: 0.95em; +} +.w3agile_description h4 { + font-size: 0.875em; +} +.w3agile_description { + margin: 1em 0; +} +.w3agile_description p { + font-size: 13px; +} +} \ No newline at end of file diff --git a/static/fonts/FontAwesome.otf b/static/fonts/FontAwesome.otf new file mode 100644 index 0000000000000000000000000000000000000000..d4de13e832d567ff29c5b4e9561b8c370348cc9c Binary files /dev/null and b/static/fonts/FontAwesome.otf differ diff --git a/static/fonts/fontawesome-webfont.eot b/static/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000000000000000000000000000000000000..c7b00d2ba8896fd29de846b19f89fcf0d56ad152 Binary files /dev/null and b/static/fonts/fontawesome-webfont.eot differ diff --git a/static/fonts/fontawesome-webfont.ttf b/static/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..f221e50a2ef60738ba30932d834530cdfe55cb3e Binary files /dev/null and b/static/fonts/fontawesome-webfont.ttf differ diff --git a/static/fonts/fontawesome-webfont.woff b/static/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000000000000000000000000000000000000..6e7483cf61b490c08ed644d6ef802c69472eb247 Binary files /dev/null and b/static/fonts/fontawesome-webfont.woff differ diff --git a/static/fonts/fontawesome-webfont.woff2 b/static/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..7eb74fd127ee5eddf3b95fee6a20dc1684b0963b Binary files /dev/null and b/static/fonts/fontawesome-webfont.woff2 differ diff --git a/static/fonts/glyphicons-halflings-regular.eot b/static/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000000000000000000000000000000000000..b93a4953fff68df523aa7656497ee339d6026d64 Binary files /dev/null and b/static/fonts/glyphicons-halflings-regular.eot differ diff --git a/static/fonts/glyphicons-halflings-regular.ttf b/static/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..1413fc609ab6f21774de0cb7e01360095584f65b Binary files /dev/null and b/static/fonts/glyphicons-halflings-regular.ttf differ diff --git a/static/fonts/glyphicons-halflings-regular.woff b/static/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000000000000000000000000000000000000..9e612858f802245ddcbf59788a0db942224bab35 Binary files /dev/null and b/static/fonts/glyphicons-halflings-regular.woff differ diff --git a/static/fonts/glyphicons-halflings-regular.woff2 b/static/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..64539b54c3751a6d9adb44c8e3a45ba5a73b77f0 Binary files /dev/null and b/static/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/static/images/0046329-realme-mobile-narzo-20-blue4gb-ram128gb-storage.png b/static/images/0046329-realme-mobile-narzo-20-blue4gb-ram128gb-storage.png new file mode 100644 index 0000000000000000000000000000000000000000..2d3c5594a11a26d58816d7d85d8f4d388dbea4fd Binary files /dev/null and b/static/images/0046329-realme-mobile-narzo-20-blue4gb-ram128gb-storage.png differ diff --git a/static/images/11.jpg b/static/images/11.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca3954c9a57c92c8dfadbc52ad872224f0da8702 Binary files /dev/null and b/static/images/11.jpg differ diff --git a/static/images/1617333699447.png b/static/images/1617333699447.png new file mode 100644 index 0000000000000000000000000000000000000000..0f3b4fd90eefc664b0a20d5f3ddefc8e9cfdadb9 Binary files /dev/null and b/static/images/1617333699447.png differ diff --git a/static/images/22.jpg b/static/images/22.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ae5136520c79b4a51297471a9563cc7dbb5631d9 Binary files /dev/null and b/static/images/22.jpg differ diff --git a/static/images/44.jpg b/static/images/44.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fafbfca8a48e173bf7c335d390b928084736f2c9 Binary files /dev/null and b/static/images/44.jpg differ diff --git a/static/images/960x0.jpg b/static/images/960x0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca3954c9a57c92c8dfadbc52ad872224f0da8702 Binary files /dev/null and b/static/images/960x0.jpg differ diff --git a/static/images/GenericBlog_Social-Selling_CD909_SJ.png b/static/images/GenericBlog_Social-Selling_CD909_SJ.png new file mode 100644 index 0000000000000000000000000000000000000000..7d1d031a9781d4971ec2f202bec6442a737729f9 --- /dev/null +++ b/static/images/GenericBlog_Social-Selling_CD909_SJ.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d929f99b28c2f8807b9ad3cfe15f0d71ca06dcc9f924bec441708537f6420d73 +size 2282574 diff --git a/static/images/acc.jpg b/static/images/acc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a8b472c71a17875084c33263ff3faf7911c7485 Binary files /dev/null and b/static/images/acc.jpg differ diff --git a/static/images/card.png b/static/images/card.png new file mode 100644 index 0000000000000000000000000000000000000000..cc5984fd0a17d28ac198780e3cf96c742eb3f104 Binary files /dev/null and b/static/images/card.png differ diff --git a/static/images/check.png b/static/images/check.png new file mode 100644 index 0000000000000000000000000000000000000000..8e312401d0fd11072f471155e781936941b7435c Binary files /dev/null and b/static/images/check.png differ diff --git a/static/images/close_1.png b/static/images/close_1.png new file mode 100644 index 0000000000000000000000000000000000000000..a701ba391f04336eda542705f92435a79cccfb62 Binary files /dev/null and b/static/images/close_1.png differ diff --git a/static/images/ecommerce-dribble-shot_4x.jpg b/static/images/ecommerce-dribble-shot_4x.jpg new file mode 100644 index 0000000000000000000000000000000000000000..773b80d239bb1fdabab7e52284c83c59dbb02c79 Binary files /dev/null and b/static/images/ecommerce-dribble-shot_4x.jpg differ diff --git a/static/images/f1sc.jpg b/static/images/f1sc.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de5fa6baf83ea8d57c5f63106a444324b230c241 Binary files /dev/null and b/static/images/f1sc.jpg differ diff --git a/static/images/g1.jpg b/static/images/g1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f4d71ba75a1a0bcf86a2e2db46a4310bff5c05e Binary files /dev/null and b/static/images/g1.jpg differ diff --git a/static/images/icon1.png b/static/images/icon1.png new file mode 100644 index 0000000000000000000000000000000000000000..0dedde6e95dea8792466f1ffc6be834cfb6e443f Binary files /dev/null and b/static/images/icon1.png differ diff --git a/static/images/icon2.png b/static/images/icon2.png new file mode 100644 index 0000000000000000000000000000000000000000..dfd1b21e77bea73a07b67d0d7b3cc81d235cbd3d Binary files /dev/null and b/static/images/icon2.png differ diff --git a/static/images/offer.png b/static/images/offer.png new file mode 100644 index 0000000000000000000000000000000000000000..735347265f1d63857f3dd10b707915a4afa59241 Binary files /dev/null and b/static/images/offer.png differ diff --git a/static/images/prec.jpg b/static/images/prec.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e0928b8605733b9b63559e7bff3238df46758cf9 Binary files /dev/null and b/static/images/prec.jpg differ diff --git a/static/images/recall.jpg b/static/images/recall.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7b57de1792749286d7473fb562352f2bbfd2471 Binary files /dev/null and b/static/images/recall.jpg differ diff --git a/static/images/star.png b/static/images/star.png new file mode 100644 index 0000000000000000000000000000000000000000..8ab99bccdd090451a758be0f93e89b239bfe9980 Binary files /dev/null and b/static/images/star.png differ diff --git a/static/images/star1.png b/static/images/star1.png new file mode 100644 index 0000000000000000000000000000000000000000..88e849da56a3b201fdd44bdf76d54caf7bda4cfb Binary files /dev/null and b/static/images/star1.png differ diff --git a/static/images/t1.jpg b/static/images/t1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3ac59dfff65bca121293dcd8bbb42e8727044190 Binary files /dev/null and b/static/images/t1.jpg differ diff --git a/static/images/t2.jpg b/static/images/t2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4d3ab0acf507c691204d68b7c92aa372893b0cd5 Binary files /dev/null and b/static/images/t2.jpg differ diff --git a/static/images/t3.jpg b/static/images/t3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4b5b782c13ecd6346831e0a9d306c0ea18a8a546 Binary files /dev/null and b/static/images/t3.jpg differ diff --git a/static/images/t4.jpg b/static/images/t4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7b8f1542c60678fd094e0e004c161888d4a81e3 Binary files /dev/null and b/static/images/t4.jpg differ diff --git a/static/images/tick.png b/static/images/tick.png new file mode 100644 index 0000000000000000000000000000000000000000..35a2e4f8ed56a40d4bca0295445bb51cf30ada75 Binary files /dev/null and b/static/images/tick.png differ diff --git a/static/js/bootstrap.min.js b/static/js/bootstrap.min.js new file mode 100644 index 0000000000000000000000000000000000000000..0382509f3c31af41a1488e4434d2682479835c5c --- /dev/null +++ b/static/js/bootstrap.min.js @@ -0,0 +1,8 @@ +/*! + * Bootstrap v3.3.4 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-mp.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); + diff --git a/static/js/easing.js b/static/js/easing.js new file mode 100644 index 0000000000000000000000000000000000000000..b5fc28cfc77dd44b722405ba9d41aa2e1675b52e --- /dev/null +++ b/static/js/easing.js @@ -0,0 +1,140 @@ +/* + * jQuery EasIng v1.1.2 - http://gsgd.co.uk/sandbox/jquery.easIng.php + * + * Uses the built In easIng capabilities added In jQuery 1.1 + * to offer multiple easIng options + * + * Copyright (c) 2007 George Smith + * Licensed under the MIT License: + * http://www.opensource.org/licenses/mit-license.php + */ + +// t: current time, b: begInnIng value, c: change In value, d: duration + +jQuery.extend( jQuery.easing, +{ + 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; + } +}); diff --git a/static/js/jquery-1.11.1.min.js b/static/js/jquery-1.11.1.min.js new file mode 100644 index 0000000000000000000000000000000000000000..ab28a24729b320bffd3d2f60302af949db39ab85 --- /dev/null +++ b/static/js/jquery-1.11.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h; +if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function ab(){return!0}function bb(){return!1}function cb(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),hb=/^\s+/,ib=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,jb=/<([\w:]+)/,kb=/\s*$/g,rb={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:k.htmlSerialize?[0,"",""]:[1,"X
","
"]},sb=db(y),tb=sb.appendChild(y.createElement("div"));rb.optgroup=rb.option,rb.tbody=rb.tfoot=rb.colgroup=rb.caption=rb.thead,rb.th=rb.td;function ub(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ub(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function vb(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wb(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xb(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function yb(a){var b=pb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function zb(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Ab(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Bb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xb(b).text=a.text,yb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!gb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(tb.innerHTML=a.outerHTML,tb.removeChild(f=tb.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ub(f),h=ub(a),g=0;null!=(e=h[g]);++g)d[g]&&Bb(e,d[g]);if(b)if(c)for(h=h||ub(a),d=d||ub(f),g=0;null!=(e=h[g]);g++)Ab(e,d[g]);else Ab(a,f);return d=ub(f,"script"),d.length>0&&zb(d,!i&&ub(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=db(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(lb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(jb.exec(f)||["",""])[1].toLowerCase(),l=rb[i]||rb._default,h.innerHTML=l[1]+f.replace(ib,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&hb.test(f)&&p.push(b.createTextNode(hb.exec(f)[0])),!k.tbody){f="table"!==i||kb.test(f)?""!==l[1]||kb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ub(p,"input"),vb),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ub(o.appendChild(f),"script"),g&&zb(h),c)){e=0;while(f=h[e++])ob.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ub(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&zb(ub(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ub(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fb,""):void 0;if(!("string"!=typeof a||mb.test(a)||!k.htmlSerialize&&gb.test(a)||!k.leadingWhitespace&&hb.test(a)||rb[(jb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ib,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ub(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ub(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&nb.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ub(i,"script"),xb),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ub(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,yb),j=0;f>j;j++)d=g[j],ob.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qb,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Cb,Db={};function Eb(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fb(a){var b=y,c=Db[a];return c||(c=Eb(a,b),"none"!==c&&c||(Cb=(Cb||m("