diff --git a/.gitignore b/.gitignore
index 723ef36..e86fe25 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,69 @@
-.idea
\ No newline at end of file
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# nyc test coverage
+.nyc_output
+
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# Bower dependency directory (https://bower.io/)
+bower_components
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (http://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directories
+node_modules/
+jspm_packages/
+
+# Typescript v1 declaration files
+typings/
+
+# Optional npm cache directory
+.npm
+
+# Optional eslint cache
+.eslintcache
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# dotenv environment variables file
+.env
+
+# gatsby files
+.cache/
+public
+
+# Mac files
+.DS_Store
+
+# Yarn
+yarn-error.log
+.pnp/
+.pnp.js
+# Yarn Integrity file
+.yarn-integrity
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 0000000..48e90e8
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,7 @@
+{
+ "endOfLine": "lf",
+ "semi": false,
+ "singleQuote": false,
+ "tabWidth": 2,
+ "trailingComma": "es5"
+}
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..93ea035
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 controlsystemstudio
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
diff --git a/README.md b/README.md
index 05b7f91..aa4ad3c 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,68 @@
-controlsystemstudio.github.io
-==============================
+
-cs-studio webpage
+# controlsystemstudio.org [](https://app.netlify.com/sites/lucid-clarke-a55e88/deploys)
-served from:
-http://controlsystemstudio.org
+Redesign of the website for Control System Studio (CS-Studio). Made using GatsbyJS and hosted on netlify.
-Most data comes from google docs and github api
+https://lucid-clarke-a55e88.netlify.com/
+
+## Developing/Testing locally
+Gatsby has a fantastic development server feature, which allows you to preview the page immediately without building it. Make sure to install all npm dependencies using `npm install` the first time you run the site.
+
+ $ npm start
+
+## Building
+To run the site on a server, it needs to be built first.
+
+ $ npm install
+ $ npm run build
+
+The website files can be found in `public`.
+
+## Editing content
+The pages can be found in the folder `src/pages`, whereas resuable parts can be found in `src/components` as React components.
+Pages are written in the JSX format, which is similar to HTML, but behaves differently in certain usecases.
+Simple paragraphs and lists can be written in the familiar HTML format, but for example images are embedded in a different way.
+Images are placed inside `src/images` and queried using GraphQL.
+
+ opi: file(
+ relativePath: { eq: "CS-Studio-OPIs_and_Keyvisual_v03_big.png" }
+ ) {
+ childImageSharp {
+ fluid(maxWidth: 3840, maxHeight: 2160) {
+ ...GatsbyImageSharpFluid_withWebp
+ }
+ }
+ }
+
+When running the development server, you can go to [localhost:8000/__graphql](http://localhost:8000/__graphql) to test out GraphQL queries.
+
+This query is included inside of the useStaticQuery hook inside of the main component of the page like this:
+
+ // First import the relevant functions and components
+ import { graphql, useStaticQuery } from 'gatsby'
+ import Img from 'gatsby-images'
+
+ // Then query inside the main component
+ const Component = () => {
+ const images = useStaticQuery(graphql`
+ query {
+ // <- image query here
+ }
+ `)
+
+ return (
+ // ...
+ )
+ }
+
+The image can then be displayed using gatsby-images' `Img` component.
+
+
+
+For more detail please refer to the [Gatsby documentation](https://www.gatsbyjs.org/docs/working-with-images/).
+
+## Downloads
+Because links to downloads can be updated quite frequently, they are separated from the Download page to make editing them a little easier. You can find the file where you can define each link necessary in `src/utils/downloadinfo.js`
diff --git a/assets/css/animate.css b/assets/css/animate.css
deleted file mode 100644
index 6cf784c..0000000
--- a/assets/css/animate.css
+++ /dev/null
@@ -1,3261 +0,0 @@
-@charset "UTF-8";
-/*
-Animate.css - http://daneden.me/animate
-Licensed under the ☺ license (http://licence.visualidiot.com/)
-
-Copyright (c) 2012 Dan Eden
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-*/
-
-.animated {
- -webkit-animation-duration: 1s;
- -moz-animation-duration: 1s;
- -o-animation-duration: 1s;
- animation-duration: 1s;
- -webkit-animation-fill-mode: both;
- -moz-animation-fill-mode: both;
- -o-animation-fill-mode: both;
- animation-fill-mode: both;
-}
-
-.animated.hinge {
- -webkit-animation-duration: 2s;
- -moz-animation-duration: 2s;
- -o-animation-duration: 2s;
- animation-duration: 2s;
-}
-
-@-webkit-keyframes flash {
- 0%, 50%, 100% {opacity: 1;}
- 25%, 75% {opacity: 0;}
-}
-
-@-moz-keyframes flash {
- 0%, 50%, 100% {opacity: 1;}
- 25%, 75% {opacity: 0;}
-}
-
-@-o-keyframes flash {
- 0%, 50%, 100% {opacity: 1;}
- 25%, 75% {opacity: 0;}
-}
-
-@keyframes flash {
- 0%, 50%, 100% {opacity: 1;}
- 25%, 75% {opacity: 0;}
-}
-
-.flash {
- -webkit-animation-name: flash;
- -moz-animation-name: flash;
- -o-animation-name: flash;
- animation-name: flash;
-}
-@-webkit-keyframes shake {
- 0%, 100% {-webkit-transform: translateX(0);}
- 10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
- 20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
-}
-
-@-moz-keyframes shake {
- 0%, 100% {-moz-transform: translateX(0);}
- 10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
- 20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
-}
-
-@-o-keyframes shake {
- 0%, 100% {-o-transform: translateX(0);}
- 10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
- 20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
-}
-
-@keyframes shake {
- 0%, 100% {transform: translateX(0);}
- 10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
- 20%, 40%, 60%, 80% {transform: translateX(10px);}
-}
-
-.shake {
- -webkit-animation-name: shake;
- -moz-animation-name: shake;
- -o-animation-name: shake;
- animation-name: shake;
-}
-@-webkit-keyframes bounce {
- 0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
- 40% {-webkit-transform: translateY(-30px);}
- 60% {-webkit-transform: translateY(-15px);}
-}
-
-@-moz-keyframes bounce {
- 0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
- 40% {-moz-transform: translateY(-30px);}
- 60% {-moz-transform: translateY(-15px);}
-}
-
-@-o-keyframes bounce {
- 0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
- 40% {-o-transform: translateY(-30px);}
- 60% {-o-transform: translateY(-15px);}
-}
-@keyframes bounce {
- 0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
- 40% {transform: translateY(-30px);}
- 60% {transform: translateY(-15px);}
-}
-
-.bounce {
- -webkit-animation-name: bounce;
- -moz-animation-name: bounce;
- -o-animation-name: bounce;
- animation-name: bounce;
-}
-@-webkit-keyframes tada {
- 0% {-webkit-transform: scale(1);}
- 10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
- 30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
- 40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
- 100% {-webkit-transform: scale(1) rotate(0);}
-}
-
-@-moz-keyframes tada {
- 0% {-moz-transform: scale(1);}
- 10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
- 30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
- 40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
- 100% {-moz-transform: scale(1) rotate(0);}
-}
-
-@-o-keyframes tada {
- 0% {-o-transform: scale(1);}
- 10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
- 30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
- 40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
- 100% {-o-transform: scale(1) rotate(0);}
-}
-
-@keyframes tada {
- 0% {transform: scale(1);}
- 10%, 20% {transform: scale(0.9) rotate(-3deg);}
- 30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
- 40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
- 100% {transform: scale(1) rotate(0);}
-}
-
-.tada {
- -webkit-animation-name: tada;
- -moz-animation-name: tada;
- -o-animation-name: tada;
- animation-name: tada;
-}
-@-webkit-keyframes swing {
- 20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
- 20% { -webkit-transform: rotate(15deg); }
- 40% { -webkit-transform: rotate(-10deg); }
- 60% { -webkit-transform: rotate(5deg); }
- 80% { -webkit-transform: rotate(-5deg); }
- 100% { -webkit-transform: rotate(0deg); }
-}
-
-@-moz-keyframes swing {
- 20% { -moz-transform: rotate(15deg); }
- 40% { -moz-transform: rotate(-10deg); }
- 60% { -moz-transform: rotate(5deg); }
- 80% { -moz-transform: rotate(-5deg); }
- 100% { -moz-transform: rotate(0deg); }
-}
-
-@-o-keyframes swing {
- 20% { -o-transform: rotate(15deg); }
- 40% { -o-transform: rotate(-10deg); }
- 60% { -o-transform: rotate(5deg); }
- 80% { -o-transform: rotate(-5deg); }
- 100% { -o-transform: rotate(0deg); }
-}
-
-@keyframes swing {
- 20% { transform: rotate(15deg); }
- 40% { transform: rotate(-10deg); }
- 60% { transform: rotate(5deg); }
- 80% { transform: rotate(-5deg); }
- 100% { transform: rotate(0deg); }
-}
-
-.swing {
- -webkit-transform-origin: top center;
- -moz-transform-origin: top center;
- -o-transform-origin: top center;
- transform-origin: top center;
- -webkit-animation-name: swing;
- -moz-animation-name: swing;
- -o-animation-name: swing;
- animation-name: swing;
-}
-/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
-
-@-webkit-keyframes wobble {
- 0% { -webkit-transform: translateX(0%); }
- 15% { -webkit-transform: translateX(-25%) rotate(-5deg); }
- 30% { -webkit-transform: translateX(20%) rotate(3deg); }
- 45% { -webkit-transform: translateX(-15%) rotate(-3deg); }
- 60% { -webkit-transform: translateX(10%) rotate(2deg); }
- 75% { -webkit-transform: translateX(-5%) rotate(-1deg); }
- 100% { -webkit-transform: translateX(0%); }
-}
-
-@-moz-keyframes wobble {
- 0% { -moz-transform: translateX(0%); }
- 15% { -moz-transform: translateX(-25%) rotate(-5deg); }
- 30% { -moz-transform: translateX(20%) rotate(3deg); }
- 45% { -moz-transform: translateX(-15%) rotate(-3deg); }
- 60% { -moz-transform: translateX(10%) rotate(2deg); }
- 75% { -moz-transform: translateX(-5%) rotate(-1deg); }
- 100% { -moz-transform: translateX(0%); }
-}
-
-@-o-keyframes wobble {
- 0% { -o-transform: translateX(0%); }
- 15% { -o-transform: translateX(-25%) rotate(-5deg); }
- 30% { -o-transform: translateX(20%) rotate(3deg); }
- 45% { -o-transform: translateX(-15%) rotate(-3deg); }
- 60% { -o-transform: translateX(10%) rotate(2deg); }
- 75% { -o-transform: translateX(-5%) rotate(-1deg); }
- 100% { -o-transform: translateX(0%); }
-}
-
-@keyframes wobble {
- 0% { transform: translateX(0%); }
- 15% { transform: translateX(-25%) rotate(-5deg); }
- 30% { transform: translateX(20%) rotate(3deg); }
- 45% { transform: translateX(-15%) rotate(-3deg); }
- 60% { transform: translateX(10%) rotate(2deg); }
- 75% { transform: translateX(-5%) rotate(-1deg); }
- 100% { transform: translateX(0%); }
-}
-
-.wobble {
- -webkit-animation-name: wobble;
- -moz-animation-name: wobble;
- -o-animation-name: wobble;
- animation-name: wobble;
-}
-/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
-
-@-webkit-keyframes pulse {
- 0% { -webkit-transform: scale(1); }
- 50% { -webkit-transform: scale(1.1); }
- 100% { -webkit-transform: scale(1); }
-}
-@-moz-keyframes pulse {
- 0% { -moz-transform: scale(1); }
- 50% { -moz-transform: scale(1.1); }
- 100% { -moz-transform: scale(1); }
-}
-@-o-keyframes pulse {
- 0% { -o-transform: scale(1); }
- 50% { -o-transform: scale(1.1); }
- 100% { -o-transform: scale(1); }
-}
-@keyframes pulse {
- 0% { transform: scale(1); }
- 50% { transform: scale(1.1); }
- 100% { transform: scale(1); }
-}
-
-.pulse {
- -webkit-animation-name: pulse;
- -moz-animation-name: pulse;
- -o-animation-name: pulse;
- animation-name: pulse;
-}
-@-webkit-keyframes flip {
- 0% {
- -webkit-transform: perspective(400px) rotateY(0);
- -webkit-animation-timing-function: ease-out;
- }
- 40% {
- -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
- -webkit-animation-timing-function: ease-out;
- }
- 50% {
- -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
- -webkit-animation-timing-function: ease-in;
- }
- 80% {
- -webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
- -webkit-animation-timing-function: ease-in;
- }
- 100% {
- -webkit-transform: perspective(400px) scale(1);
- -webkit-animation-timing-function: ease-in;
- }
-}
-@-moz-keyframes flip {
- 0% {
- -moz-transform: perspective(400px) rotateY(0);
- -moz-animation-timing-function: ease-out;
- }
- 40% {
- -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
- -moz-animation-timing-function: ease-out;
- }
- 50% {
- -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
- -moz-animation-timing-function: ease-in;
- }
- 80% {
- -moz-transform: perspective(400px) rotateY(360deg) scale(.95);
- -moz-animation-timing-function: ease-in;
- }
- 100% {
- -moz-transform: perspective(400px) scale(1);
- -moz-animation-timing-function: ease-in;
- }
-}
-@-o-keyframes flip {
- 0% {
- -o-transform: perspective(400px) rotateY(0);
- -o-animation-timing-function: ease-out;
- }
- 40% {
- -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
- -o-animation-timing-function: ease-out;
- }
- 50% {
- -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
- -o-animation-timing-function: ease-in;
- }
- 80% {
- -o-transform: perspective(400px) rotateY(360deg) scale(.95);
- -o-animation-timing-function: ease-in;
- }
- 100% {
- -o-transform: perspective(400px) scale(1);
- -o-animation-timing-function: ease-in;
- }
-}
-@keyframes flip {
- 0% {
- transform: perspective(400px) rotateY(0);
- animation-timing-function: ease-out;
- }
- 40% {
- transform: perspective(400px) translateZ(150px) rotateY(170deg);
- animation-timing-function: ease-out;
- }
- 50% {
- transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
- animation-timing-function: ease-in;
- }
- 80% {
- transform: perspective(400px) rotateY(360deg) scale(.95);
- animation-timing-function: ease-in;
- }
- 100% {
- transform: perspective(400px) scale(1);
- animation-timing-function: ease-in;
- }
-}
-
-.flip {
- -webkit-backface-visibility: visible !important;
- -webkit-animation-name: flip;
- -moz-backface-visibility: visible !important;
- -moz-animation-name: flip;
- -o-backface-visibility: visible !important;
- -o-animation-name: flip;
- backface-visibility: visible !important;
- animation-name: flip;
-}
-@-webkit-keyframes flipInX {
- 0% {
- -webkit-transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-
- 40% {
- -webkit-transform: perspective(400px) rotateX(-10deg);
- }
-
- 70% {
- -webkit-transform: perspective(400px) rotateX(10deg);
- }
-
- 100% {
- -webkit-transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
-}
-@-moz-keyframes flipInX {
- 0% {
- -moz-transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-
- 40% {
- -moz-transform: perspective(400px) rotateX(-10deg);
- }
-
- 70% {
- -moz-transform: perspective(400px) rotateX(10deg);
- }
-
- 100% {
- -moz-transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
-}
-@-o-keyframes flipInX {
- 0% {
- -o-transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-
- 40% {
- -o-transform: perspective(400px) rotateX(-10deg);
- }
-
- 70% {
- -o-transform: perspective(400px) rotateX(10deg);
- }
-
- 100% {
- -o-transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
-}
-@keyframes flipInX {
- 0% {
- transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-
- 40% {
- transform: perspective(400px) rotateX(-10deg);
- }
-
- 70% {
- transform: perspective(400px) rotateX(10deg);
- }
-
- 100% {
- transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
-}
-
-.flipInX {
- -webkit-backface-visibility: visible !important;
- -webkit-animation-name: flipInX;
- -moz-backface-visibility: visible !important;
- -moz-animation-name: flipInX;
- -o-backface-visibility: visible !important;
- -o-animation-name: flipInX;
- backface-visibility: visible !important;
- animation-name: flipInX;
-}
-@-webkit-keyframes flipOutX {
- 0% {
- -webkit-transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
- 100% {
- -webkit-transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-}
-
-@-moz-keyframes flipOutX {
- 0% {
- -moz-transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
- 100% {
- -moz-transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-}
-
-@-o-keyframes flipOutX {
- 0% {
- -o-transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
- 100% {
- -o-transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-}
-
-@keyframes flipOutX {
- 0% {
- transform: perspective(400px) rotateX(0deg);
- opacity: 1;
- }
- 100% {
- transform: perspective(400px) rotateX(90deg);
- opacity: 0;
- }
-}
-
-.flipOutX {
- -webkit-animation-name: flipOutX;
- -webkit-backface-visibility: visible !important;
- -moz-animation-name: flipOutX;
- -moz-backface-visibility: visible !important;
- -o-animation-name: flipOutX;
- -o-backface-visibility: visible !important;
- animation-name: flipOutX;
- backface-visibility: visible !important;
-}
-@-webkit-keyframes flipInY {
- 0% {
- -webkit-transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-
- 40% {
- -webkit-transform: perspective(400px) rotateY(-10deg);
- }
-
- 70% {
- -webkit-transform: perspective(400px) rotateY(10deg);
- }
-
- 100% {
- -webkit-transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
-}
-@-moz-keyframes flipInY {
- 0% {
- -moz-transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-
- 40% {
- -moz-transform: perspective(400px) rotateY(-10deg);
- }
-
- 70% {
- -moz-transform: perspective(400px) rotateY(10deg);
- }
-
- 100% {
- -moz-transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
-}
-@-o-keyframes flipInY {
- 0% {
- -o-transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-
- 40% {
- -o-transform: perspective(400px) rotateY(-10deg);
- }
-
- 70% {
- -o-transform: perspective(400px) rotateY(10deg);
- }
-
- 100% {
- -o-transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
-}
-@keyframes flipInY {
- 0% {
- transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-
- 40% {
- transform: perspective(400px) rotateY(-10deg);
- }
-
- 70% {
- transform: perspective(400px) rotateY(10deg);
- }
-
- 100% {
- transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
-}
-
-.flipInY {
- -webkit-backface-visibility: visible !important;
- -webkit-animation-name: flipInY;
- -moz-backface-visibility: visible !important;
- -moz-animation-name: flipInY;
- -o-backface-visibility: visible !important;
- -o-animation-name: flipInY;
- backface-visibility: visible !important;
- animation-name: flipInY;
-}
-@-webkit-keyframes flipOutY {
- 0% {
- -webkit-transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
- 100% {
- -webkit-transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-}
-@-moz-keyframes flipOutY {
- 0% {
- -moz-transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
- 100% {
- -moz-transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-}
-@-o-keyframes flipOutY {
- 0% {
- -o-transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
- 100% {
- -o-transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-}
-@keyframes flipOutY {
- 0% {
- transform: perspective(400px) rotateY(0deg);
- opacity: 1;
- }
- 100% {
- transform: perspective(400px) rotateY(90deg);
- opacity: 0;
- }
-}
-
-.flipOutY {
- -webkit-backface-visibility: visible !important;
- -webkit-animation-name: flipOutY;
- -moz-backface-visibility: visible !important;
- -moz-animation-name: flipOutY;
- -o-backface-visibility: visible !important;
- -o-animation-name: flipOutY;
- backface-visibility: visible !important;
- animation-name: flipOutY;
-}
-@-webkit-keyframes fadeIn {
- 0% {opacity: 0;}
- 100% {opacity: 1;}
-}
-
-@-moz-keyframes fadeIn {
- 0% {opacity: 0;}
- 100% {opacity: 1;}
-}
-
-@-o-keyframes fadeIn {
- 0% {opacity: 0;}
- 100% {opacity: 1;}
-}
-
-@keyframes fadeIn {
- 0% {opacity: 0;}
- 100% {opacity: 1;}
-}
-
-.fadeIn {
- -webkit-animation-name: fadeIn;
- -moz-animation-name: fadeIn;
- -o-animation-name: fadeIn;
- animation-name: fadeIn;
-}
-@-webkit-keyframes fadeInUp {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(20px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-}
-
-@-moz-keyframes fadeInUp {
- 0% {
- opacity: 0;
- -moz-transform: translateY(20px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-}
-
-@-o-keyframes fadeInUp {
- 0% {
- opacity: 0;
- -o-transform: translateY(20px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-}
-
-@keyframes fadeInUp {
- 0% {
- opacity: 0;
- transform: translateY(20px);
- }
-
- 100% {
- opacity: 1;
- transform: translateY(0);
- }
-}
-
-.fadeInUp {
- -webkit-animation-name: fadeInUp;
- -moz-animation-name: fadeInUp;
- -o-animation-name: fadeInUp;
- animation-name: fadeInUp;
-}
-@-webkit-keyframes fadeInDown {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-20px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-}
-
-@-moz-keyframes fadeInDown {
- 0% {
- opacity: 0;
- -moz-transform: translateY(-20px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-}
-
-@-o-keyframes fadeInDown {
- 0% {
- opacity: 0;
- -o-transform: translateY(-20px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-}
-
-@keyframes fadeInDown {
- 0% {
- opacity: 0;
- transform: translateY(-20px);
- }
-
- 100% {
- opacity: 1;
- transform: translateY(0);
- }
-}
-
-.fadeInDown {
- -webkit-animation-name: fadeInDown;
- -moz-animation-name: fadeInDown;
- -o-animation-name: fadeInDown;
- animation-name: fadeInDown;
-}
-@-webkit-keyframes fadeInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(-20px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-}
-
-@-moz-keyframes fadeInLeft {
- 0% {
- opacity: 0;
- -moz-transform: translateX(-20px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-}
-
-@-o-keyframes fadeInLeft {
- 0% {
- opacity: 0;
- -o-transform: translateX(-20px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-}
-
-@keyframes fadeInLeft {
- 0% {
- opacity: 0;
- transform: translateX(-20px);
- }
-
- 100% {
- opacity: 1;
- transform: translateX(0);
- }
-}
-
-.fadeInLeft {
- -webkit-animation-name: fadeInLeft;
- -moz-animation-name: fadeInLeft;
- -o-animation-name: fadeInLeft;
- animation-name: fadeInLeft;
-}
-@-webkit-keyframes fadeInRight {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(20px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-}
-
-@-moz-keyframes fadeInRight {
- 0% {
- opacity: 0;
- -moz-transform: translateX(20px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-}
-
-@-o-keyframes fadeInRight {
- 0% {
- opacity: 0;
- -o-transform: translateX(20px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-}
-
-@keyframes fadeInRight {
- 0% {
- opacity: 0;
- transform: translateX(20px);
- }
-
- 100% {
- opacity: 1;
- transform: translateX(0);
- }
-}
-
-.fadeInRight {
- -webkit-animation-name: fadeInRight;
- -moz-animation-name: fadeInRight;
- -o-animation-name: fadeInRight;
- animation-name: fadeInRight;
-}
-@-webkit-keyframes fadeInUpBig {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(2000px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-}
-
-@-moz-keyframes fadeInUpBig {
- 0% {
- opacity: 0;
- -moz-transform: translateY(2000px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-}
-
-@-o-keyframes fadeInUpBig {
- 0% {
- opacity: 0;
- -o-transform: translateY(2000px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-}
-
-@keyframes fadeInUpBig {
- 0% {
- opacity: 0;
- transform: translateY(2000px);
- }
-
- 100% {
- opacity: 1;
- transform: translateY(0);
- }
-}
-
-.fadeInUpBig {
- -webkit-animation-name: fadeInUpBig;
- -moz-animation-name: fadeInUpBig;
- -o-animation-name: fadeInUpBig;
- animation-name: fadeInUpBig;
-}
-@-webkit-keyframes fadeInDownBig {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-2000px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-}
-
-@-moz-keyframes fadeInDownBig {
- 0% {
- opacity: 0;
- -moz-transform: translateY(-2000px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-}
-
-@-o-keyframes fadeInDownBig {
- 0% {
- opacity: 0;
- -o-transform: translateY(-2000px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-}
-
-@keyframes fadeInDownBig {
- 0% {
- opacity: 0;
- transform: translateY(-2000px);
- }
-
- 100% {
- opacity: 1;
- transform: translateY(0);
- }
-}
-
-.fadeInDownBig {
- -webkit-animation-name: fadeInDownBig;
- -moz-animation-name: fadeInDownBig;
- -o-animation-name: fadeInDownBig;
- animation-name: fadeInDownBig;
-}
-@-webkit-keyframes fadeInLeftBig {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(-2000px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-}
-@-moz-keyframes fadeInLeftBig {
- 0% {
- opacity: 0;
- -moz-transform: translateX(-2000px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-}
-@-o-keyframes fadeInLeftBig {
- 0% {
- opacity: 0;
- -o-transform: translateX(-2000px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-}
-@keyframes fadeInLeftBig {
- 0% {
- opacity: 0;
- transform: translateX(-2000px);
- }
-
- 100% {
- opacity: 1;
- transform: translateX(0);
- }
-}
-
-.fadeInLeftBig {
- -webkit-animation-name: fadeInLeftBig;
- -moz-animation-name: fadeInLeftBig;
- -o-animation-name: fadeInLeftBig;
- animation-name: fadeInLeftBig;
-}
-@-webkit-keyframes fadeInRightBig {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(2000px);
- }
-
- 100% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-}
-
-@-moz-keyframes fadeInRightBig {
- 0% {
- opacity: 0;
- -moz-transform: translateX(2000px);
- }
-
- 100% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-}
-
-@-o-keyframes fadeInRightBig {
- 0% {
- opacity: 0;
- -o-transform: translateX(2000px);
- }
-
- 100% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-}
-
-@keyframes fadeInRightBig {
- 0% {
- opacity: 0;
- transform: translateX(2000px);
- }
-
- 100% {
- opacity: 1;
- transform: translateX(0);
- }
-}
-
-.fadeInRightBig {
- -webkit-animation-name: fadeInRightBig;
- -moz-animation-name: fadeInRightBig;
- -o-animation-name: fadeInRightBig;
- animation-name: fadeInRightBig;
-}
-@-webkit-keyframes fadeOut {
- 0% {opacity: 1;}
- 100% {opacity: 0;}
-}
-
-@-moz-keyframes fadeOut {
- 0% {opacity: 1;}
- 100% {opacity: 0;}
-}
-
-@-o-keyframes fadeOut {
- 0% {opacity: 1;}
- 100% {opacity: 0;}
-}
-
-@keyframes fadeOut {
- 0% {opacity: 1;}
- 100% {opacity: 0;}
-}
-
-.fadeOut {
- -webkit-animation-name: fadeOut;
- -moz-animation-name: fadeOut;
- -o-animation-name: fadeOut;
- animation-name: fadeOut;
-}
-@-webkit-keyframes fadeOutUp {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(-20px);
- }
-}
-@-moz-keyframes fadeOutUp {
- 0% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateY(-20px);
- }
-}
-@-o-keyframes fadeOutUp {
- 0% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateY(-20px);
- }
-}
-@keyframes fadeOutUp {
- 0% {
- opacity: 1;
- transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateY(-20px);
- }
-}
-
-.fadeOutUp {
- -webkit-animation-name: fadeOutUp;
- -moz-animation-name: fadeOutUp;
- -o-animation-name: fadeOutUp;
- animation-name: fadeOutUp;
-}
-@-webkit-keyframes fadeOutDown {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(20px);
- }
-}
-
-@-moz-keyframes fadeOutDown {
- 0% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateY(20px);
- }
-}
-
-@-o-keyframes fadeOutDown {
- 0% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateY(20px);
- }
-}
-
-@keyframes fadeOutDown {
- 0% {
- opacity: 1;
- transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateY(20px);
- }
-}
-
-.fadeOutDown {
- -webkit-animation-name: fadeOutDown;
- -moz-animation-name: fadeOutDown;
- -o-animation-name: fadeOutDown;
- animation-name: fadeOutDown;
-}
-@-webkit-keyframes fadeOutLeft {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(-20px);
- }
-}
-
-@-moz-keyframes fadeOutLeft {
- 0% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateX(-20px);
- }
-}
-
-@-o-keyframes fadeOutLeft {
- 0% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateX(-20px);
- }
-}
-
-@keyframes fadeOutLeft {
- 0% {
- opacity: 1;
- transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateX(-20px);
- }
-}
-
-.fadeOutLeft {
- -webkit-animation-name: fadeOutLeft;
- -moz-animation-name: fadeOutLeft;
- -o-animation-name: fadeOutLeft;
- animation-name: fadeOutLeft;
-}
-@-webkit-keyframes fadeOutRight {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(20px);
- }
-}
-
-@-moz-keyframes fadeOutRight {
- 0% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateX(20px);
- }
-}
-
-@-o-keyframes fadeOutRight {
- 0% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateX(20px);
- }
-}
-
-@keyframes fadeOutRight {
- 0% {
- opacity: 1;
- transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateX(20px);
- }
-}
-
-.fadeOutRight {
- -webkit-animation-name: fadeOutRight;
- -moz-animation-name: fadeOutRight;
- -o-animation-name: fadeOutRight;
- animation-name: fadeOutRight;
-}
-@-webkit-keyframes fadeOutUpBig {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(-2000px);
- }
-}
-
-@-moz-keyframes fadeOutUpBig {
- 0% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateY(-2000px);
- }
-}
-
-@-o-keyframes fadeOutUpBig {
- 0% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateY(-2000px);
- }
-}
-
-@keyframes fadeOutUpBig {
- 0% {
- opacity: 1;
- transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateY(-2000px);
- }
-}
-
-.fadeOutUpBig {
- -webkit-animation-name: fadeOutUpBig;
- -moz-animation-name: fadeOutUpBig;
- -o-animation-name: fadeOutUpBig;
- animation-name: fadeOutUpBig;
-}
-@-webkit-keyframes fadeOutDownBig {
- 0% {
- opacity: 1;
- -webkit-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(2000px);
- }
-}
-
-@-moz-keyframes fadeOutDownBig {
- 0% {
- opacity: 1;
- -moz-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateY(2000px);
- }
-}
-
-@-o-keyframes fadeOutDownBig {
- 0% {
- opacity: 1;
- -o-transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateY(2000px);
- }
-}
-
-@keyframes fadeOutDownBig {
- 0% {
- opacity: 1;
- transform: translateY(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateY(2000px);
- }
-}
-
-.fadeOutDownBig {
- -webkit-animation-name: fadeOutDownBig;
- -moz-animation-name: fadeOutDownBig;
- -o-animation-name: fadeOutDownBig;
- animation-name: fadeOutDownBig;
-}
-@-webkit-keyframes fadeOutLeftBig {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(-2000px);
- }
-}
-
-@-moz-keyframes fadeOutLeftBig {
- 0% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateX(-2000px);
- }
-}
-
-@-o-keyframes fadeOutLeftBig {
- 0% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateX(-2000px);
- }
-}
-
-@keyframes fadeOutLeftBig {
- 0% {
- opacity: 1;
- transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateX(-2000px);
- }
-}
-
-.fadeOutLeftBig {
- -webkit-animation-name: fadeOutLeftBig;
- -moz-animation-name: fadeOutLeftBig;
- -o-animation-name: fadeOutLeftBig;
- animation-name: fadeOutLeftBig;
-}
-@-webkit-keyframes fadeOutRightBig {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(2000px);
- }
-}
-@-moz-keyframes fadeOutRightBig {
- 0% {
- opacity: 1;
- -moz-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateX(2000px);
- }
-}
-@-o-keyframes fadeOutRightBig {
- 0% {
- opacity: 1;
- -o-transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateX(2000px);
- }
-}
-@keyframes fadeOutRightBig {
- 0% {
- opacity: 1;
- transform: translateX(0);
- }
-
- 100% {
- opacity: 0;
- transform: translateX(2000px);
- }
-}
-
-.fadeOutRightBig {
- -webkit-animation-name: fadeOutRightBig;
- -moz-animation-name: fadeOutRightBig;
- -o-animation-name: fadeOutRightBig;
- animation-name: fadeOutRightBig;
-}
-@-webkit-keyframes bounceIn {
- 0% {
- opacity: 0;
- -webkit-transform: scale(.3);
- }
-
- 50% {
- opacity: 1;
- -webkit-transform: scale(1.05);
- }
-
- 70% {
- -webkit-transform: scale(.9);
- }
-
- 100% {
- -webkit-transform: scale(1);
- }
-}
-
-@-moz-keyframes bounceIn {
- 0% {
- opacity: 0;
- -moz-transform: scale(.3);
- }
-
- 50% {
- opacity: 1;
- -moz-transform: scale(1.05);
- }
-
- 70% {
- -moz-transform: scale(.9);
- }
-
- 100% {
- -moz-transform: scale(1);
- }
-}
-
-@-o-keyframes bounceIn {
- 0% {
- opacity: 0;
- -o-transform: scale(.3);
- }
-
- 50% {
- opacity: 1;
- -o-transform: scale(1.05);
- }
-
- 70% {
- -o-transform: scale(.9);
- }
-
- 100% {
- -o-transform: scale(1);
- }
-}
-
-@keyframes bounceIn {
- 0% {
- opacity: 0;
- transform: scale(.3);
- }
-
- 50% {
- opacity: 1;
- transform: scale(1.05);
- }
-
- 70% {
- transform: scale(.9);
- }
-
- 100% {
- transform: scale(1);
- }
-}
-
-.bounceIn {
- -webkit-animation-name: bounceIn;
- -moz-animation-name: bounceIn;
- -o-animation-name: bounceIn;
- animation-name: bounceIn;
-}
-@-webkit-keyframes bounceInUp {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(2000px);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translateY(-30px);
- }
-
- 80% {
- -webkit-transform: translateY(10px);
- }
-
- 100% {
- -webkit-transform: translateY(0);
- }
-}
-@-moz-keyframes bounceInUp {
- 0% {
- opacity: 0;
- -moz-transform: translateY(2000px);
- }
-
- 60% {
- opacity: 1;
- -moz-transform: translateY(-30px);
- }
-
- 80% {
- -moz-transform: translateY(10px);
- }
-
- 100% {
- -moz-transform: translateY(0);
- }
-}
-
-@-o-keyframes bounceInUp {
- 0% {
- opacity: 0;
- -o-transform: translateY(2000px);
- }
-
- 60% {
- opacity: 1;
- -o-transform: translateY(-30px);
- }
-
- 80% {
- -o-transform: translateY(10px);
- }
-
- 100% {
- -o-transform: translateY(0);
- }
-}
-
-@keyframes bounceInUp {
- 0% {
- opacity: 0;
- transform: translateY(2000px);
- }
-
- 60% {
- opacity: 1;
- transform: translateY(-30px);
- }
-
- 80% {
- transform: translateY(10px);
- }
-
- 100% {
- transform: translateY(0);
- }
-}
-
-.bounceInUp {
- -webkit-animation-name: bounceInUp;
- -moz-animation-name: bounceInUp;
- -o-animation-name: bounceInUp;
- animation-name: bounceInUp;
-}
-@-webkit-keyframes bounceInDown {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-2000px);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translateY(30px);
- }
-
- 80% {
- -webkit-transform: translateY(-10px);
- }
-
- 100% {
- -webkit-transform: translateY(0);
- }
-}
-
-@-moz-keyframes bounceInDown {
- 0% {
- opacity: 0;
- -moz-transform: translateY(-2000px);
- }
-
- 60% {
- opacity: 1;
- -moz-transform: translateY(30px);
- }
-
- 80% {
- -moz-transform: translateY(-10px);
- }
-
- 100% {
- -moz-transform: translateY(0);
- }
-}
-
-@-o-keyframes bounceInDown {
- 0% {
- opacity: 0;
- -o-transform: translateY(-2000px);
- }
-
- 60% {
- opacity: 1;
- -o-transform: translateY(30px);
- }
-
- 80% {
- -o-transform: translateY(-10px);
- }
-
- 100% {
- -o-transform: translateY(0);
- }
-}
-
-@keyframes bounceInDown {
- 0% {
- opacity: 0;
- transform: translateY(-2000px);
- }
-
- 60% {
- opacity: 1;
- transform: translateY(30px);
- }
-
- 80% {
- transform: translateY(-10px);
- }
-
- 100% {
- transform: translateY(0);
- }
-}
-
-.bounceInDown {
- -webkit-animation-name: bounceInDown;
- -moz-animation-name: bounceInDown;
- -o-animation-name: bounceInDown;
- animation-name: bounceInDown;
-}
-@-webkit-keyframes bounceInLeft {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(-2000px);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translateX(30px);
- }
-
- 80% {
- -webkit-transform: translateX(-10px);
- }
-
- 100% {
- -webkit-transform: translateX(0);
- }
-}
-
-@-moz-keyframes bounceInLeft {
- 0% {
- opacity: 0;
- -moz-transform: translateX(-2000px);
- }
-
- 60% {
- opacity: 1;
- -moz-transform: translateX(30px);
- }
-
- 80% {
- -moz-transform: translateX(-10px);
- }
-
- 100% {
- -moz-transform: translateX(0);
- }
-}
-
-@-o-keyframes bounceInLeft {
- 0% {
- opacity: 0;
- -o-transform: translateX(-2000px);
- }
-
- 60% {
- opacity: 1;
- -o-transform: translateX(30px);
- }
-
- 80% {
- -o-transform: translateX(-10px);
- }
-
- 100% {
- -o-transform: translateX(0);
- }
-}
-
-@keyframes bounceInLeft {
- 0% {
- opacity: 0;
- transform: translateX(-2000px);
- }
-
- 60% {
- opacity: 1;
- transform: translateX(30px);
- }
-
- 80% {
- transform: translateX(-10px);
- }
-
- 100% {
- transform: translateX(0);
- }
-}
-
-.bounceInLeft {
- -webkit-animation-name: bounceInLeft;
- -moz-animation-name: bounceInLeft;
- -o-animation-name: bounceInLeft;
- animation-name: bounceInLeft;
-}
-@-webkit-keyframes bounceInRight {
- 0% {
- opacity: 0;
- -webkit-transform: translateX(2000px);
- }
-
- 60% {
- opacity: 1;
- -webkit-transform: translateX(-30px);
- }
-
- 80% {
- -webkit-transform: translateX(10px);
- }
-
- 100% {
- -webkit-transform: translateX(0);
- }
-}
-
-@-moz-keyframes bounceInRight {
- 0% {
- opacity: 0;
- -moz-transform: translateX(2000px);
- }
-
- 60% {
- opacity: 1;
- -moz-transform: translateX(-30px);
- }
-
- 80% {
- -moz-transform: translateX(10px);
- }
-
- 100% {
- -moz-transform: translateX(0);
- }
-}
-
-@-o-keyframes bounceInRight {
- 0% {
- opacity: 0;
- -o-transform: translateX(2000px);
- }
-
- 60% {
- opacity: 1;
- -o-transform: translateX(-30px);
- }
-
- 80% {
- -o-transform: translateX(10px);
- }
-
- 100% {
- -o-transform: translateX(0);
- }
-}
-
-@keyframes bounceInRight {
- 0% {
- opacity: 0;
- transform: translateX(2000px);
- }
-
- 60% {
- opacity: 1;
- transform: translateX(-30px);
- }
-
- 80% {
- transform: translateX(10px);
- }
-
- 100% {
- transform: translateX(0);
- }
-}
-
-.bounceInRight {
- -webkit-animation-name: bounceInRight;
- -moz-animation-name: bounceInRight;
- -o-animation-name: bounceInRight;
- animation-name: bounceInRight;
-}
-@-webkit-keyframes bounceOut {
- 0% {
- -webkit-transform: scale(1);
- }
-
- 25% {
- -webkit-transform: scale(.95);
- }
-
- 50% {
- opacity: 1;
- -webkit-transform: scale(1.1);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: scale(.3);
- }
-}
-
-@-moz-keyframes bounceOut {
- 0% {
- -moz-transform: scale(1);
- }
-
- 25% {
- -moz-transform: scale(.95);
- }
-
- 50% {
- opacity: 1;
- -moz-transform: scale(1.1);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: scale(.3);
- }
-}
-
-@-o-keyframes bounceOut {
- 0% {
- -o-transform: scale(1);
- }
-
- 25% {
- -o-transform: scale(.95);
- }
-
- 50% {
- opacity: 1;
- -o-transform: scale(1.1);
- }
-
- 100% {
- opacity: 0;
- -o-transform: scale(.3);
- }
-}
-
-@keyframes bounceOut {
- 0% {
- transform: scale(1);
- }
-
- 25% {
- transform: scale(.95);
- }
-
- 50% {
- opacity: 1;
- transform: scale(1.1);
- }
-
- 100% {
- opacity: 0;
- transform: scale(.3);
- }
-}
-
-.bounceOut {
- -webkit-animation-name: bounceOut;
- -moz-animation-name: bounceOut;
- -o-animation-name: bounceOut;
- animation-name: bounceOut;
-}
-@-webkit-keyframes bounceOutUp {
- 0% {
- -webkit-transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- -webkit-transform: translateY(20px);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(-2000px);
- }
-}
-
-@-moz-keyframes bounceOutUp {
- 0% {
- -moz-transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- -moz-transform: translateY(20px);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateY(-2000px);
- }
-}
-
-@-o-keyframes bounceOutUp {
- 0% {
- -o-transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- -o-transform: translateY(20px);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateY(-2000px);
- }
-}
-
-@keyframes bounceOutUp {
- 0% {
- transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- transform: translateY(20px);
- }
-
- 100% {
- opacity: 0;
- transform: translateY(-2000px);
- }
-}
-
-.bounceOutUp {
- -webkit-animation-name: bounceOutUp;
- -moz-animation-name: bounceOutUp;
- -o-animation-name: bounceOutUp;
- animation-name: bounceOutUp;
-}
-@-webkit-keyframes bounceOutDown {
- 0% {
- -webkit-transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- -webkit-transform: translateY(-20px);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateY(2000px);
- }
-}
-
-@-moz-keyframes bounceOutDown {
- 0% {
- -moz-transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- -moz-transform: translateY(-20px);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateY(2000px);
- }
-}
-
-@-o-keyframes bounceOutDown {
- 0% {
- -o-transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- -o-transform: translateY(-20px);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateY(2000px);
- }
-}
-
-@keyframes bounceOutDown {
- 0% {
- transform: translateY(0);
- }
-
- 20% {
- opacity: 1;
- transform: translateY(-20px);
- }
-
- 100% {
- opacity: 0;
- transform: translateY(2000px);
- }
-}
-
-.bounceOutDown {
- -webkit-animation-name: bounceOutDown;
- -moz-animation-name: bounceOutDown;
- -o-animation-name: bounceOutDown;
- animation-name: bounceOutDown;
-}
-@-webkit-keyframes bounceOutLeft {
- 0% {
- -webkit-transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- -webkit-transform: translateX(20px);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(-2000px);
- }
-}
-
-@-moz-keyframes bounceOutLeft {
- 0% {
- -moz-transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- -moz-transform: translateX(20px);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateX(-2000px);
- }
-}
-
-@-o-keyframes bounceOutLeft {
- 0% {
- -o-transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- -o-transform: translateX(20px);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateX(-2000px);
- }
-}
-
-@keyframes bounceOutLeft {
- 0% {
- transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- transform: translateX(20px);
- }
-
- 100% {
- opacity: 0;
- transform: translateX(-2000px);
- }
-}
-
-.bounceOutLeft {
- -webkit-animation-name: bounceOutLeft;
- -moz-animation-name: bounceOutLeft;
- -o-animation-name: bounceOutLeft;
- animation-name: bounceOutLeft;
-}
-@-webkit-keyframes bounceOutRight {
- 0% {
- -webkit-transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- -webkit-transform: translateX(-20px);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(2000px);
- }
-}
-
-@-moz-keyframes bounceOutRight {
- 0% {
- -moz-transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- -moz-transform: translateX(-20px);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateX(2000px);
- }
-}
-
-@-o-keyframes bounceOutRight {
- 0% {
- -o-transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- -o-transform: translateX(-20px);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateX(2000px);
- }
-}
-
-@keyframes bounceOutRight {
- 0% {
- transform: translateX(0);
- }
-
- 20% {
- opacity: 1;
- transform: translateX(-20px);
- }
-
- 100% {
- opacity: 0;
- transform: translateX(2000px);
- }
-}
-
-.bounceOutRight {
- -webkit-animation-name: bounceOutRight;
- -moz-animation-name: bounceOutRight;
- -o-animation-name: bounceOutRight;
- animation-name: bounceOutRight;
-}
-@-webkit-keyframes rotateIn {
- 0% {
- -webkit-transform-origin: center center;
- -webkit-transform: rotate(-200deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform-origin: center center;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-}
-@-moz-keyframes rotateIn {
- 0% {
- -moz-transform-origin: center center;
- -moz-transform: rotate(-200deg);
- opacity: 0;
- }
-
- 100% {
- -moz-transform-origin: center center;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-}
-@-o-keyframes rotateIn {
- 0% {
- -o-transform-origin: center center;
- -o-transform: rotate(-200deg);
- opacity: 0;
- }
-
- 100% {
- -o-transform-origin: center center;
- -o-transform: rotate(0);
- opacity: 1;
- }
-}
-@keyframes rotateIn {
- 0% {
- transform-origin: center center;
- transform: rotate(-200deg);
- opacity: 0;
- }
-
- 100% {
- transform-origin: center center;
- transform: rotate(0);
- opacity: 1;
- }
-}
-
-.rotateIn {
- -webkit-animation-name: rotateIn;
- -moz-animation-name: rotateIn;
- -o-animation-name: rotateIn;
- animation-name: rotateIn;
-}
-@-webkit-keyframes rotateInUpLeft {
- 0% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-moz-keyframes rotateInUpLeft {
- 0% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-o-keyframes rotateInUpLeft {
- 0% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@keyframes rotateInUpLeft {
- 0% {
- transform-origin: left bottom;
- transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- transform-origin: left bottom;
- transform: rotate(0);
- opacity: 1;
- }
-}
-
-.rotateInUpLeft {
- -webkit-animation-name: rotateInUpLeft;
- -moz-animation-name: rotateInUpLeft;
- -o-animation-name: rotateInUpLeft;
- animation-name: rotateInUpLeft;
-}
-@-webkit-keyframes rotateInDownLeft {
- 0% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-moz-keyframes rotateInDownLeft {
- 0% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-o-keyframes rotateInDownLeft {
- 0% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@keyframes rotateInDownLeft {
- 0% {
- transform-origin: left bottom;
- transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- transform-origin: left bottom;
- transform: rotate(0);
- opacity: 1;
- }
-}
-
-.rotateInDownLeft {
- -webkit-animation-name: rotateInDownLeft;
- -moz-animation-name: rotateInDownLeft;
- -o-animation-name: rotateInDownLeft;
- animation-name: rotateInDownLeft;
-}
-@-webkit-keyframes rotateInUpRight {
- 0% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-moz-keyframes rotateInUpRight {
- 0% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-o-keyframes rotateInUpRight {
- 0% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@keyframes rotateInUpRight {
- 0% {
- transform-origin: right bottom;
- transform: rotate(-90deg);
- opacity: 0;
- }
-
- 100% {
- transform-origin: right bottom;
- transform: rotate(0);
- opacity: 1;
- }
-}
-
-.rotateInUpRight {
- -webkit-animation-name: rotateInUpRight;
- -moz-animation-name: rotateInUpRight;
- -o-animation-name: rotateInUpRight;
- animation-name: rotateInUpRight;
-}
-@-webkit-keyframes rotateInDownRight {
- 0% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-moz-keyframes rotateInDownRight {
- 0% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@-o-keyframes rotateInDownRight {
- 0% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-}
-
-@keyframes rotateInDownRight {
- 0% {
- transform-origin: right bottom;
- transform: rotate(90deg);
- opacity: 0;
- }
-
- 100% {
- transform-origin: right bottom;
- transform: rotate(0);
- opacity: 1;
- }
-}
-
-.rotateInDownRight {
- -webkit-animation-name: rotateInDownRight;
- -moz-animation-name: rotateInDownRight;
- -o-animation-name: rotateInDownRight;
- animation-name: rotateInDownRight;
-}
-@-webkit-keyframes rotateOut {
- 0% {
- -webkit-transform-origin: center center;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform-origin: center center;
- -webkit-transform: rotate(200deg);
- opacity: 0;
- }
-}
-
-@-moz-keyframes rotateOut {
- 0% {
- -moz-transform-origin: center center;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -moz-transform-origin: center center;
- -moz-transform: rotate(200deg);
- opacity: 0;
- }
-}
-
-@-o-keyframes rotateOut {
- 0% {
- -o-transform-origin: center center;
- -o-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -o-transform-origin: center center;
- -o-transform: rotate(200deg);
- opacity: 0;
- }
-}
-
-@keyframes rotateOut {
- 0% {
- transform-origin: center center;
- transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- transform-origin: center center;
- transform: rotate(200deg);
- opacity: 0;
- }
-}
-
-.rotateOut {
- -webkit-animation-name: rotateOut;
- -moz-animation-name: rotateOut;
- -o-animation-name: rotateOut;
- animation-name: rotateOut;
-}
-@-webkit-keyframes rotateOutUpLeft {
- 0% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-@-moz-keyframes rotateOutUpLeft {
- 0% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-@-o-keyframes rotateOutUpLeft {
- 0% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-@keyframes rotateOutUpLeft {
- 0% {
- transform-origin: left bottom;
- transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -transform-origin: left bottom;
- -transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-.rotateOutUpLeft {
- -webkit-animation-name: rotateOutUpLeft;
- -moz-animation-name: rotateOutUpLeft;
- -o-animation-name: rotateOutUpLeft;
- animation-name: rotateOutUpLeft;
-}
-@-webkit-keyframes rotateOutDownLeft {
- 0% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform-origin: left bottom;
- -webkit-transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-@-moz-keyframes rotateOutDownLeft {
- 0% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -moz-transform-origin: left bottom;
- -moz-transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-@-o-keyframes rotateOutDownLeft {
- 0% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -o-transform-origin: left bottom;
- -o-transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-@keyframes rotateOutDownLeft {
- 0% {
- transform-origin: left bottom;
- transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- transform-origin: left bottom;
- transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-.rotateOutDownLeft {
- -webkit-animation-name: rotateOutDownLeft;
- -moz-animation-name: rotateOutDownLeft;
- -o-animation-name: rotateOutDownLeft;
- animation-name: rotateOutDownLeft;
-}
-@-webkit-keyframes rotateOutUpRight {
- 0% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-@-moz-keyframes rotateOutUpRight {
- 0% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-@-o-keyframes rotateOutUpRight {
- 0% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-@keyframes rotateOutUpRight {
- 0% {
- transform-origin: right bottom;
- transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- transform-origin: right bottom;
- transform: rotate(90deg);
- opacity: 0;
- }
-}
-
-.rotateOutUpRight {
- -webkit-animation-name: rotateOutUpRight;
- -moz-animation-name: rotateOutUpRight;
- -o-animation-name: rotateOutUpRight;
- animation-name: rotateOutUpRight;
-}
-@-webkit-keyframes rotateOutDownRight {
- 0% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -webkit-transform-origin: right bottom;
- -webkit-transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-@-moz-keyframes rotateOutDownRight {
- 0% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -moz-transform-origin: right bottom;
- -moz-transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-@-o-keyframes rotateOutDownRight {
- 0% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- -o-transform-origin: right bottom;
- -o-transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-@keyframes rotateOutDownRight {
- 0% {
- transform-origin: right bottom;
- transform: rotate(0);
- opacity: 1;
- }
-
- 100% {
- transform-origin: right bottom;
- transform: rotate(-90deg);
- opacity: 0;
- }
-}
-
-.rotateOutDownRight {
- -webkit-animation-name: rotateOutDownRight;
- -moz-animation-name: rotateOutDownRight;
- -o-animation-name: rotateOutDownRight;
- animation-name: rotateOutDownRight;
-}
-@-webkit-keyframes hinge {
- 0% { -webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
- 20%, 60% { -webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
- 40% { -webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
- 80% { -webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }
- 100% { -webkit-transform: translateY(700px); opacity: 0; }
-}
-
-@-moz-keyframes hinge {
- 0% { -moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
- 20%, 60% { -moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
- 40% { -moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
- 80% { -moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }
- 100% { -moz-transform: translateY(700px); opacity: 0; }
-}
-
-@-o-keyframes hinge {
- 0% { -o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
- 20%, 60% { -o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
- 40% { -o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
- 80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }
- 100% { -o-transform: translateY(700px); opacity: 0; }
-}
-
-@keyframes hinge {
- 0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
- 20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }
- 40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }
- 80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }
- 100% { transform: translateY(700px); opacity: 0; }
-}
-
-.hinge {
- -webkit-animation-name: hinge;
- -moz-animation-name: hinge;
- -o-animation-name: hinge;
- animation-name: hinge;
-}
-/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
-
-@-webkit-keyframes rollIn {
- 0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
- 100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
-}
-
-@-moz-keyframes rollIn {
- 0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
- 100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
-}
-
-@-o-keyframes rollIn {
- 0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
- 100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
-}
-
-@keyframes rollIn {
- 0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
- 100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
-}
-
-.rollIn {
- -webkit-animation-name: rollIn;
- -moz-animation-name: rollIn;
- -o-animation-name: rollIn;
- animation-name: rollIn;
-}
-/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
-
-@-webkit-keyframes rollOut {
- 0% {
- opacity: 1;
- -webkit-transform: translateX(0px) rotate(0deg);
- }
-
- 100% {
- opacity: 0;
- -webkit-transform: translateX(100%) rotate(120deg);
- }
-}
-
-@-moz-keyframes rollOut {
- 0% {
- opacity: 1;
- -moz-transform: translateX(0px) rotate(0deg);
- }
-
- 100% {
- opacity: 0;
- -moz-transform: translateX(100%) rotate(120deg);
- }
-}
-
-@-o-keyframes rollOut {
- 0% {
- opacity: 1;
- -o-transform: translateX(0px) rotate(0deg);
- }
-
- 100% {
- opacity: 0;
- -o-transform: translateX(100%) rotate(120deg);
- }
-}
-
-@keyframes rollOut {
- 0% {
- opacity: 1;
- transform: translateX(0px) rotate(0deg);
- }
-
- 100% {
- opacity: 0;
- transform: translateX(100%) rotate(120deg);
- }
-}
-
-.rollOut {
- -webkit-animation-name: rollOut;
- -moz-animation-name: rollOut;
- -o-animation-name: rollOut;
- animation-name: rollOut;
-}
-
-/* originally authored by Angelo Rohit - https://github.com/angelorohit */
-
-@-webkit-keyframes lightSpeedIn {
- 0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
- 60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; }
- 80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; }
- 100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
-}
-
-@-moz-keyframes lightSpeedIn {
- 0% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
- 60% { -moz-transform: translateX(-20%) skewX(30deg); opacity: 1; }
- 80% { -moz-transform: translateX(0%) skewX(-15deg); opacity: 1; }
- 100% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
-}
-
-@-o-keyframes lightSpeedIn {
- 0% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
- 60% { -o-transform: translateX(-20%) skewX(30deg); opacity: 1; }
- 80% { -o-transform: translateX(0%) skewX(-15deg); opacity: 1; }
- 100% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
-}
-
-@keyframes lightSpeedIn {
- 0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
- 60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
- 80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
- 100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
-}
-
-.lightSpeedIn {
- -webkit-animation-name: lightSpeedIn;
- -moz-animation-name: lightSpeedIn;
- -o-animation-name: lightSpeedIn;
- animation-name: lightSpeedIn;
-
- -webkit-animation-timing-function: ease-out;
- -moz-animation-timing-function: ease-out;
- -o-animation-timing-function: ease-out;
- animation-timing-function: ease-out;
-}
-
-.animated.lightSpeedIn {
- -webkit-animation-duration: 0.5s;
- -moz-animation-duration: 0.5s;
- -o-animation-duration: 0.5s;
- animation-duration: 0.5s;
-}
-
-/* originally authored by Angelo Rohit - https://github.com/angelorohit */
-
-@-webkit-keyframes lightSpeedOut {
- 0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
- 100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
-}
-
-@-moz-keyframes lightSpeedOut {
- 0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
- 100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
-}
-
-@-o-keyframes lightSpeedOut {
- 0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
- 100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
-}
-
-@keyframes lightSpeedOut {
- 0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
- 100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
-}
-
-.lightSpeedOut {
- -webkit-animation-name: lightSpeedOut;
- -moz-animation-name: lightSpeedOut;
- -o-animation-name: lightSpeedOut;
- animation-name: lightSpeedOut;
-
- -webkit-animation-timing-function: ease-in;
- -moz-animation-timing-function: ease-in;
- -o-animation-timing-function: ease-in;
- animation-timing-function: ease-in;
-}
-
-.animated.lightSpeedOut {
- -webkit-animation-duration: 0.25s;
- -moz-animation-duration: 0.25s;
- -o-animation-duration: 0.25s;
- animation-duration: 0.25s;
-}
-
-/* originally authored by Angelo Rohit - https://github.com/angelorohit */
-
-@-webkit-keyframes wiggle {
- 0% { -webkit-transform: skewX(9deg); }
- 10% { -webkit-transform: skewX(-8deg); }
- 20% { -webkit-transform: skewX(7deg); }
- 30% { -webkit-transform: skewX(-6deg); }
- 40% { -webkit-transform: skewX(5deg); }
- 50% { -webkit-transform: skewX(-4deg); }
- 60% { -webkit-transform: skewX(3deg); }
- 70% { -webkit-transform: skewX(-2deg); }
- 80% { -webkit-transform: skewX(1deg); }
- 90% { -webkit-transform: skewX(0deg); }
- 100% { -webkit-transform: skewX(0deg); }
-}
-
-@-moz-keyframes wiggle {
- 0% { -moz-transform: skewX(9deg); }
- 10% { -moz-transform: skewX(-8deg); }
- 20% { -moz-transform: skewX(7deg); }
- 30% { -moz-transform: skewX(-6deg); }
- 40% { -moz-transform: skewX(5deg); }
- 50% { -moz-transform: skewX(-4deg); }
- 60% { -moz-transform: skewX(3deg); }
- 70% { -moz-transform: skewX(-2deg); }
- 80% { -moz-transform: skewX(1deg); }
- 90% { -moz-transform: skewX(0deg); }
- 100% { -moz-transform: skewX(0deg); }
-}
-
-@-o-keyframes wiggle {
- 0% { -o-transform: skewX(9deg); }
- 10% { -o-transform: skewX(-8deg); }
- 20% { -o-transform: skewX(7deg); }
- 30% { -o-transform: skewX(-6deg); }
- 40% { -o-transform: skewX(5deg); }
- 50% { -o-transform: skewX(-4deg); }
- 60% { -o-transform: skewX(3deg); }
- 70% { -o-transform: skewX(-2deg); }
- 80% { -o-transform: skewX(1deg); }
- 90% { -o-transform: skewX(0deg); }
- 100% { -o-transform: skewX(0deg); }
-}
-
-@keyframes wiggle {
- 0% { transform: skewX(9deg); }
- 10% { transform: skewX(-8deg); }
- 20% { transform: skewX(7deg); }
- 30% { transform: skewX(-6deg); }
- 40% { transform: skewX(5deg); }
- 50% { transform: skewX(-4deg); }
- 60% { transform: skewX(3deg); }
- 70% { transform: skewX(-2deg); }
- 80% { transform: skewX(1deg); }
- 90% { transform: skewX(0deg); }
- 100% { transform: skewX(0deg); }
-}
-
-.wiggle {
- -webkit-animation-name: wiggle;
- -moz-animation-name: wiggle;
- -o-animation-name: wiggle;
- animation-name: wiggle;
-
- -webkit-animation-timing-function: ease-in;
- -moz-animation-timing-function: ease-in;
- -o-animation-timing-function: ease-in;
- animation-timing-function: ease-in;
-}
-
-.animated.wiggle {
- -webkit-animation-duration: 0.75s;
- -moz-animation-duration: 0.75s;
- -o-animation-duration: 0.75s;
- animation-duration: 0.75s;
-}
\ No newline at end of file
diff --git a/assets/css/effects.css b/assets/css/effects.css
deleted file mode 100644
index 9d254ec..0000000
--- a/assets/css/effects.css
+++ /dev/null
@@ -1,126 +0,0 @@
-@media (min-width: 1200px) {
- @keyframes shake {
- 0% { transform: translate(2px, 1px) rotate(0deg); }
- 10% { transform: translate(-1px, -2px) rotate(-1deg); }
- 20% { transform: translate(-3px, 0px) rotate(1deg); }
- 30% { transform: translate(0px, 2px) rotate(0deg); }
- 40% { transform: translate(1px, -1px) rotate(1deg); }
- 50% { transform: translate(-1px, 2px) rotate(-1deg); }
- 60% { transform: translate(-3px, 1px) rotate(0deg); }
- 70% { transform: translate(2px, 1px) rotate(-1deg); }
- 80% { transform: translate(-1px, -1px) rotate(1deg); }
- 90% { transform: translate(2px, 2px) rotate(0deg); }
- 100% { transform: translate(1px, -2px) rotate(-1deg); }
- }
-
- @-moz-keyframes shake{
- 0% { -moz-transform: translate(2px, 1px) rotate(0deg); }
- 10% { -moz-transform: translate(-1px, -2px) rotate(-1deg); }
- 20% { -moz-transform: translate(-3px, 0px) rotate(1deg); }
- 30% { -moz-transform: translate(0px, 2px) rotate(0deg); }
- 40% { -moz-transform: translate(1px, -1px) rotate(1deg); }
- 50% { -moz-transform: translate(-1px, 2px) rotate(-1deg); }
- 60% { -moz-transform: translate(-3px, 1px) rotate(0deg); }
- 70% { -moz-transform: translate(2px, 1px) rotate(-1deg); }
- 80% { -moz-transform: translate(-1px, -1px) rotate(1deg); }
- 90% { -moz-transform: translate(2px, 2px) rotate(0deg); }
- 100% { -moz-transform: translate(1px, -2px) rotate(-1deg); }
- }
-
- @-webkit-keyframes shake {
- 0% { -webkit-transform: translate(2px, 1px) rotate(0deg); }
- 10% { -webkit-transform: translate(-1px, -2px) rotate(-1deg); }
- 20% { -webkit-transform: translate(-3px, 0px) rotate(1deg); }
- 30% { -webkit-transform: translate(0px, 2px) rotate(0deg); }
- 40% { -webkit-transform: translate(1px, -1px) rotate(1deg); }
- 50% { -webkit-transform: translate(-1px, 2px) rotate(-1deg); }
- 60% { -webkit-transform: translate(-3px, 1px) rotate(0deg); }
- 70% { -webkit-transform: translate(2px, 1px) rotate(-1deg); }
- 80% { -webkit-transform: translate(-1px, -1px) rotate(1deg); }
- 90% { -webkit-transform: translate(2px, 2px) rotate(0deg); }
- 100% { -webkit-transform: translate(1px, -2px) rotate(-1deg); }
- }
-
- .shake{
- display:inline-block;
- }
-
- .shake:hover,
- .shake:focus{
- animation-name: shake;
- animation-duration: 0.8s;
- transform-origin:50% 50%;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
-
- -moz-animation-name: shake;
- -moz-animation-duration: 0.8s;
- -moz-transform-origin:50% 50%;
- -moz-animation-iteration-count: infinite;
- -moz-animation-timing-function: linear;
-
- -webkit-animation-name: shake;
- -webkit-animation-duration: 0.8s;
- -webkit-transform-origin:50% 50%;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-timing-function: linear;
- }
-}
-
-.zoomer:hover .overlay-zoom .zoom-icon{
- -webkit-transform: scale(1);
- -moz-transform: scale(1);
- -o-transform: scale(1);
- -ms-transform: scale(1);
- transform: scale(1);
- opacity:0.4;
- filter: alpha(opacity = 50);
-}
-
-.overlay-zoom {
- cursor: pointer;
- width: 100%;
- height: 100%;
- position: relative;
- -webkit-transition: all 0.1s ease-in-out;
- -moz-transition: all 0.1s ease-in-out;
- -o-transition: all 0.1s ease-in-out;
- -ms-transition: all 0.1s ease-in-out;
- transition: all 0.1s ease-in-out;
- z-index: 90;
-}
-
-.overlay-zoom .zoom-icon {
- background-image:url("../img/overlay-icon.png");
- background-color: #000;
- background-repeat: no-repeat;
- background-position: 50%;
- position: absolute;
- width: inherit;
- height: inherit;
- opacity: 0;
- z-index: 100;
- filter: alpha(opacity = 0);
- top:0;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- -ms-transition: all 0.4s ease-in-out;
- transition: all 0.4s ease-in-out;
-
- -webkit-transform: scale(0);
- -moz-transform: scale(0);
- -o-transform: scale(0);
- -ms-transform: scale(0);
- transform: scale(0);
-
- -webkit-backface-visibility: hidden;
-}
-
-.ie7 .overlay-zoom .zoom-icon{
- width: 100%;
- height: 100%;
- clear: both;
- top:0px;
- left:0px;
-}
\ No newline at end of file
diff --git a/assets/css/headers/header1.css b/assets/css/headers/header1.css
deleted file mode 100644
index 7d583d5..0000000
--- a/assets/css/headers/header1.css
+++ /dev/null
@@ -1,352 +0,0 @@
-/*Top Bar (login, search etc.)
-------------------------------------*/
-.top {
- padding:7px 0 8px;
-}
-
-.loginbar {
- margin:0;
- padding:0;
- z-index:9999;
- list-style:none;
- position:relative;
-}
-
-.loginbar li {
- display:inline;
- list-style:none;
- padding-bottom:15px;
-}
-
-.loginbar li a,
-.loginbar li a:hover {
- color:#7c8082;
- font-size:11px;
- text-transform:uppercase;
- font-family:'Open Sans', sans-serif;
-}
-
-.loginbar li.devider {
- top:-1px;
- padding:0;
- font-size:8px;
- position:relative;
- margin:0 6px 0 2px;
- font-family:Tahoma;
- border-right:solid 1px #bbb;
-}
-
-.loginbar i {
- color:#999;
- font-size:18px;
- margin-top:3px;
- cursor:pointer;
-}
-
-/*Lenguages*/
-.loginbar li ul {
- top:30px;
- margin:0;
- left:-6px;
- display:none;
- padding-top:4px;
- position:absolute;
- border-radius:3px;
- padding-bottom:4px;
- background:#f0f0f0;
-}
-
-.loginbar li:hover ul {
- display:block;
-}
-
-.loginbar li ul li {
- padding-bottom:0;
- display:list-item;
- position:relative;
- margin-bottom:1px;
-}
-
-.loginbar li ul li a {
- color:#555;
- display:block;
- min-width:85px;
- font-size:10px;
- padding:2px 12px;
- background:#f0f0f0;
- text-decoration:none;
-}
-
-.loginbar li ul li a:hover,
-.loginbar li ul li.active a {
- opacity:1 !important;
- color:#555 !important;
- font-size:10px !important;
- text-shadow:none !important;
- background:#fafafa !important;
-}
-
-.loginbar li ul li.active i {
- top:2px;
- right:-5px;
- font-size:14px;
- cursor:default;
- position:absolute;
- text-shadow:0 1px 0 #e9e9e9;
-}
-
-.loginbar i.icon-globe {
- color:#bbb;
- font-size:13px;
- margin:3px 3px 0 0;
-}
-
-.loginbar li i.icon-sort-up {
- top:21px;
- left:-1px;
- color:#eee;
- display:none;
- font-size:14px;
- cursor:default;
- position:absolute;
-}
-
-.loginbar li:hover i.icon-sort-up {
- display:block;
-}
-
-.loginbar li:hover i.icon-ok {
- top:-2px;
- color:#aaa;
-}
-
-/*Header (logo and menu)
-------------------------------------*/
-.header {
- z-index:999;
- position:relative;
- border-bottom:solid 2px #eee;
-}
-
-.header .container {
- position:relative;
-}
-
-.logo {
- position:absolute;
- top:-5px;
- left:0;
-}
-
-/*Menu*/
-.navbar,
-.navbar-inner,
-.nav,
-.navbar-inverse {
- background:#fff;
- filter:none;
- border:none;
- padding:0;
- margin:0 !important;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-
-.nav i.icon-sort-up {
- position:absolute;
- font-size:13px;
- bottom:-6px;
-}
-
-.navbar-inner {
- padding-left: 0px !important;
- padding-right: 0px !important;
-}
-
-.navbar .nav > li {
- display:block;
- position:relative;
-}
-.navbar .nav > li > a {
- display:block;
- font-size:15px;
- font-weight:400;
- color: #687074;
- text-shadow:none;
- padding:9px 20px;
- text-transform:uppercase;
- border-bottom:solid 2px #eee;
- font-family:'Open Sans', sans-serif;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-
-.collapse.in ul {
- margin-top:10px !important;
-}
-
-.collapse.in li a {
- padding:0 10px;
- border-bottom:solid 1px #eee;
- background:none;
-}
-
-.collapse.in li a:hover,
-.collapse.in li a.dropdown-toggle {
- border-bottom:solid 1px #72c02c !important;
- background:none;
-}
-
-.collapse.in ul.dropdown-menu {
- margin-bottom:5px;
-}
-
-.collapse.in ul.dropdown-menu a {
- padding:5px;
- border-bottom:solid 1px #bbb;
-}
-
-.nav-collapse .nav > li > a, .nav-collapse .dropdown-menu a {
- margin:0 !important;
- border-radius:0 !important;
-}
-
-.navbar .nav > li > a:focus,
-.navbar .nav > li > a:hover {
- color:#72c02c;
- border-bottom:solid 2px #72c02c;
-}
-
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- color:#72c02c;
- text-decoration:none;
- border-bottom:solid 2px #72c02c;
- background:none;
- -webkit-box-shadow:none;
- -moz-box-shadow:none;
- box-shadow:none;
-}
-
-.navbar .nav > .active > a:hover {
- color:#72c02c;
- background:none;
- border-bottom:solid 2px #72c02c;
- -webkit-box-shadow:none;
- -moz-box-shadow:none;
- box-shadow:none;
-}
-
-/*Arrow for menu*/
-.navbar .nav > li > a .caret {
- margin:9px 0 0 3px !important;
- border-top-color: #72c02c!important;
- border-bottom-color: #72c02c !important;
-}
-
-/*Dropdown Menu*/
-.dropdown-menu {
- padding:0;
- border:none;
- margin-top:-2px;
- min-width:200px;
- border-radius:0;
- border-top:solid 2px #72c02c;
- border-bottom:solid 2px #687074;
- z-index: 9999 !important;
-}
-.dropdown-menu li a {
- color:#687074;
- font-size:13px;
- font-weight:400;
- padding:6px 15px;
- border-bottom:solid 1px #eee;
-}
-.dropdown-menu li > a:hover,
-.dropdown-menu li > a:focus,
-.dropdown-submenu:hover > a {
- color:#ffffff;
- background:#687074 !important;
- -webkit-transition:all 0.2s ease-in-out;
- -moz-transition:all 0.2s ease-in-out;
- -o-transition:all 0.2s ease-in-out;
- transition:all 0.2s ease-in-out;
- filter:none !important;
-}
-
-.dropdown-menu .active > a {
- color:#ffffff !important;
- background:#687074 !important;
- filter:none !important;
-}
-
-.navbar .btn-navbar {
- padding:10px 15px;
- margin-top:1px;
- margin-right:0;
- background:#72c02c;
- border:none !important;
-}
-.navbar .btn-navbar:hover {
- background:#5fb611;
-}
-.navbar .btn-navbar span,
-.navbar .btn-navbar:hover span {
- background:#fff !important;
- box-shadow:none !important;
-}
-
-.navbar .nav > li > .dropdown-menu:after {
- left:19px;
-}
-.navbar .nav > li > .dropdown-menu:before {
- left:18px;
- border-bottom:none;
-}
-.navbar .nav > li > .dropdown-menu:after {
- left:19px;
- border-top-color: #72c02c !important;
- border-bottom-color: #72c02c !important;
-}
-
-/*Serach*/
-.navbar .search-open {
- right:0;
- top:44px;
- display:none;
- padding:15px;
- position:absolute;
- background:#fcfcfc;
- border-top:solid 2px #eee;
-}
-
-.navbar .search-open form,
-.navbar .search-open .input-append {
- margin:0 !important;
-}
-
-.navbar a.search i.icon-remove {
- top:2px;
- font-size:18px;
- position:relative;
-}
-
-.navbar .nav > li > a.search {
- color:#aaa;
- cursor:pointer;
- background:#f7f7f7;
- padding:8px 12px 10px;
- border-bottom-color:#aaa;
-}
-.navbar .nav > li > a.search:hover {
- color:#72c02c;
- border-bottom-color:#72c02c;
-}
-
-/*Fancybox for gallery page*/
-.fancybox-overlay.fancybox-overlay-fixed {
- z-index:9999;
-}
diff --git a/assets/css/headers/header2.css b/assets/css/headers/header2.css
deleted file mode 100644
index 90bbeed..0000000
--- a/assets/css/headers/header2.css
+++ /dev/null
@@ -1,226 +0,0 @@
-/*Top Bar (login, search etc.)
-------------------------------------*/
-.loginbar {
- margin:0;
- padding:8px 0;
- list-style:none;
- text-align:right;
-}
-
-.loginbar li {
- margin-left:1%;
- margin-bottom:1px;
-}
-
-.loginbar li a {
- font-size:12px;
- color: #777;
-}
-
-.loginbar li a:hover {
- opacity:0.7;
- color:#72c02c;
- text-decoration:none;
- -webkit-transition:all 0.3s ease-in-out;
- -moz-transition:all 0.3s ease-in-out;
- -o-transition:all 0.3s ease-in-out;
- -ms-transition:all 0.3s ease-in-out;
- transition:all 0.3s ease-in-out;
-}
-
-/*Header (logo and menu)
-------------------------------------*/
-.header {
- background:#585f69;
- border-bottom:solid 1px #eee;
-}
-
-.header .container {
- position:relative;
-}
-
-.logo {
- float:left;
- margin-left:5px;
- padding:17px 0 10px;
-}
-
-/*Menu*/
-.navbar,
-.navbar-inner,
-.nav,
-.navbar-inverse {
- margin:0;
- padding:0;
- border:none;
- filter:none !important;
- background:#585f69 !important;
- -webkit-box-shadow:none;
- -moz-box-shadow:none;
- box-shadow:none;
-}
-
-.navbar-inner {
- padding-left: 0px !important;
- padding-right: 0px !important;
-}
-
-.navbar .nav {
- margin-right:0;
-}
-.navbar .nav > li {
- display:block;
- position:relative;
-}
-.navbar .nav > li { display:block;}
-.navbar .nav > li > a {
- font-family:'Monda';
- font-size: 16px;
- color: #fff;
- display:block;
- text-shadow: none;
- margin-left:1px;
- padding:22px 18px 19px;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.navbar .nav > li > a:focus,
-.navbar .nav > li > a:hover {
- background:#3c495a !important;
- color:#fff;
-}
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- color: #fff !important;
- text-decoration: none;
- background-color: #72c02c !important;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-.navbar .nav > .active > a:hover {
- background: #72c02c !important;
- color: #fff !important;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
-}
-.navbar .nav > li > a .caret {
- border-top-color: #fff !important;
- border-bottom-color: #fff !important;
- margin:12px 0 0 2px !important;
-}
-
-.dropdown-menu {
- background:#585f69;
- min-width:195px;
- padding:0;
- margin:0 0 0 1px;
- border:none;
- border-radius:0;
- border-bottom:solid 1px #3c495a;
- border-top:solid 1px #3c495a;
- z-index:99999;
-}
-
-.dropdown-menu a {
- font-size:13px;
- font-family: 'Monda';
- color:#fff !important;
- padding:8px 15px !important;
- border-bottom:solid 1px #888;
-}
-
-.dropdown-menu li > a:hover,
-.dropdown-menu li > a:focus,
-.dropdown-submenu:hover > a {
- color: #ffffff;
- background: #3c495a !important;
- -webkit-transition:all 0.2s ease-in-out;
- -moz-transition:all 0.2s ease-in-out;
- -o-transition:all 0.2s ease-in-out;
- -ms-transition:all 0.2s ease-in-out;
- transition:all 0.2s ease-in-out;
- filter:none !important;
-}
-
-.dropdown-menu .active > a {
- color: #ffffff !important;
- background: #3c495a !important;
- filter:none !important;
-}
-.dropdown-menu .active > a:hover {
- color: #ffffff !important;
- background: #3c495a !important;
-}
-
-.collapse.in ul {
- margin-top:10px !important;
-}
-.collapse.in li a {
- padding:5px 10px;
- color:#fff !important;
-}
-
-.navbar .btn-navbar {
- padding:10px 15px;
- margin-top: 18px;
- background:#72c02c;
- border:none !important;
-}
-.navbar .btn-navbar:hover {
- background:#5fb611;
-}
-.navbar .btn-navbar span,
-.navbar .btn-navbar:hover span {
- font-size:60px;
- background:#fff !important;
- box-shadow:none !important;
-}
-.navbar .nav > li > .dropdown-menu:after {
- border-bottom-color:#585f69;
-}
-
-/*Tabs*/
-.nav-tabs.tabs {
- background:none !important;
-}
-
-/*Serach*/
-.navbar .nav li a.search-nav {
- background:#3c495a !important;
- cursor:pointer;
-}
-.navbar .nav li a.search-nav:hover {
- background:#72c02c !important;
-}
-.navbar .nav li a.search-nav:hover i {
- color:#fff;
-}
-.navbar .nav li i.icon-search {
- font-size:18px;
- color:#999;
-}
-
-.navbar .search-open {
- right:0;
- top:67px;
- padding:15px;
- display:none;
- z-index:99999;
- position:absolute;
- background:#585f69;
-}
-
-.navbar .search-open form,
-.navbar .search-open .input-append {
- margin:0 !important;
-}
-
-.navbar a.search i.icon-remove {
- font-size:19px;
- padding-left: 1px;
- padding-right: 1px;
-}
\ No newline at end of file
diff --git a/assets/css/img-hover-effect.css b/assets/css/img-hover-effect.css
deleted file mode 100644
index e94ca2f..0000000
--- a/assets/css/img-hover-effect.css
+++ /dev/null
@@ -1,156 +0,0 @@
-.view {
- z-index:9;
- cursor: default;
- overflow: hidden;
- text-align: center;
- position: relative;
- border: 2px solid #fff;
- box-shadow: 0 0 3px #eee;
-}
-.view .mask,.view .content {
- width: 100%;
- height: 100%;
- position: absolute;
- overflow: hidden;
- top: 0;
- left: 0;
-}
-.view img {
- display: block;
- position: relative;
-}
-.view h2 {
- text-transform: uppercase;
- color: #fff;
- text-align: center;
- position: relative;
- font-size: 22px;
- padding: 10px;
- background: rgba(0, 0, 0, 0.8);
- margin: 20px 0 0 0;
- text-shadow:none;
-}
-.view p {
- font-family: Georgia, serif;
- font-style: italic;
- font-size: 12px;
- position: relative;
- color: #fff;
- padding: 10px 20px 10px;
- text-align: center;
-}
-.view a.info {
- color: #fff;
- background: #000;
- padding: 5px 12px;
- text-decoration: none;
- margin-top:10px;
- display: inline-block;
- overflow:hidden;
- text-transform: uppercase;
-}
-.view a.info:hover {
- background:#72c02c;
-}
-
-.portfolio-responsive h2 {
- margin-top:0 !important;
-}
-
-/*CSS3 Hover Effect*/
-.view-tenth img {
- left:10px;
- margin-left:-10px;
- position:relative;
- -webkit-transition: all 0.6s ease-in-out;
- -moz-transition: all 0.6s ease-in-out;
- -o-transition: all 0.6s ease-in-out;
- -ms-transition: all 0.6s ease-in-out;
- transition: all 0.6s ease-in-out;
-}
-.view-tenth .mask {
- -webkit-transition: all 0.5s linear;
- -moz-transition: all 0.5s linear;
- -o-transition: all 0.5s linear;
- -ms-transition: all 0.5s linear;
- transition: all 0.5s linear;
- -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
- filter: alpha(opacity=0);
- opacity: 0;
-}
-.view-tenth h2 {
- color: #333;
- margin: 20px 40px 0;
- background: transparent;
- border-bottom: 1px solid rgba(0, 0, 0, 0.3);
- -webkit-transform: scale(0);
- -moz-transform: scale(0);
- -o-transform: scale(0);
- -ms-transform: scale(0);
- transform: scale(0);
- -webkit-transition: all 0.5s linear;
- -moz-transition: all 0.5s linear;
- -o-transition: all 0.5s linear;
- -ms-transition: all 0.5s linear;
- transition: all 0.5s linear;
- -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
- filter: alpha(opacity=0);
- opacity: 0;
-}
-.view-tenth p {
- color: #333;
- -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
- filter: alpha(opacity=0);
- opacity: 0;
- -webkit-transform: scale(0);
- -moz-transform: scale(0);
- -o-transform: scale(0);
- -ms-transform: scale(0);
- transform: scale(0);
- -webkit-transition: all 0.5s linear;
- -moz-transition: all 0.5s linear;
- -o-transition: all 0.5s linear;
- -ms-transition: all 0.5s linear;
- transition: all 0.5s linear;
-}
-.view-tenth a.info {
- -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
- filter: alpha(opacity=0);
- opacity: 0;
- -webkit-transform: scale(0);
- -moz-transform: scale(0);
- -o-transform: scale(0);
- -ms-transform: scale(0);
- transform: scale(0);
- -webkit-transition: all 0.5s linear;
- -moz-transition: all 0.5s linear;
- -o-transition: all 0.5s linear;
- -ms-transition: all 0.5s linear;
- transition: all 0.5s linear;
-}
-.view-tenth:hover img {
- -webkit-transform: scale(2) rotate(10deg);
- -moz-transform: scale(2) rotate(10deg);
- -o-transform: scale(2) rotate(10deg);
- -ms-transform: scale(2) rotate(10deg);
- transform: scale(2) rotate(10deg);
- -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=30)";
- filter: alpha(opacity=30);
- opacity: 0.3;
-}
-.view-tenth:hover .mask {
- -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
- filter: alpha(opacity=100);
- opacity: 1;
-}
-.view-tenth:hover h2,.view-tenth:hover p,.view-tenth:hover a.info {
- -webkit-transform: scale(1);
- -moz-transform: scale(1);
- -o-transform: scale(1);
- -ms-transform: scale(1);
- transform: scale(1);
- -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
- filter: alpha(opacity=100);
- opacity: 1;
-}
-
\ No newline at end of file
diff --git a/assets/css/style.css b/assets/css/style.css
deleted file mode 100644
index a8d50ed..0000000
--- a/assets/css/style.css
+++ /dev/null
@@ -1,1938 +0,0 @@
-/*
-Template Name: Unify - Responsive Bootstrap Template
-Description: Business, Corporate, Portfolio and Blog Theme.
-Version: 1.2
-Author: Html Stream
-Website: http://htmlstream.com/preview/unify
-*/
-
-/*Import Google Fonts*/
-@import url(http://fonts.googleapis.com/css?family=Monda:400,700);
-@import url(http://fonts.googleapis.com/css?family=Open+Sans);
-
-* {
- border-radius:0 !important;
-}
-
-body {
- padding:0;
- color:#333;
- font-size:13px;
- line-height:1.6;
- background:#fff;
-}
-.cornerGitHubLink img{
- z-index:99999999;
-}
-p, a, li {
- color:#555;
- line-height:1.6;
-}
-
-a,
-a:focus,
-a:hover,
-a:active {
- outline:0 !important;
-}
-a:hover {
- color:#72c02c;
- text-decoration:underline;
-}
-
-h1, h2, h3, h4, h5 {
- color:#555;
- margin-top:5px;
- text-shadow:none;
- text-shadow:0 0 1px #f6f6f6;
- font-weight:normal !important;
- font-family:'Open Sans', sans-serif;
-}
-h1 i, h2 i, h3 i, h4 i, h5 i {
- margin-right:7px;
-}
-
-/*Block headline*/
-.heading {
- padding:5px 20px 5px 20px;
- border-left:4px solid #27c5f2;
-}
-
-.headline {
- display:block;
- margin:10px 0 25px 0;
- border-bottom:1px dotted #e4e9f0;
-}
-.headline h3,
-.headline h4 {
- color:#585f69;
- margin:0 0 -2px 0;
- padding-right:10px;
- display:inline-block;
- text-shadow:0 0 1px #f6f6f6;
- border-bottom:2px solid #72c02c;
-}
-
-/*Purchase*/
-.purchase {
- padding:30px 0 20px;
- box-shadow:inset 0 0 4px #eee;
- background:url(../img/breadcrumbs.png) repeat;
-}
-.purchase .container {
- padding:0 20px;
-}
-.purchase .container .span9 {
- margin-right:20px;
-}
-.purchase span {
- color:#666;
- display:block;
- font-size:32px;
- line-height:35px;
- margin-bottom:12px;
-}
-.purchase a.btn-buy {
- color:#fff;
- font-size:16px;
- cursor:pointer;
- margin-top:22px;
- font-weight:bold;
- border-radius:2px;
- background:#72c02c;
- display:inline-block;
- text-decoration:none;
- padding:12px 28px 9px;
- text-transform:uppercase;
- text-shadow:0 1px 0 #51a00b;
-}
-.purchase a.btn-buy:hover {
- color:#fff;
- background:#68af28;
- text-decoration:none;
- box-shadow:0 0 5px #c0c2c1;
-}
-
-/*Service*/
-.service {
- margin-bottom:10px;
- padding:15px 15px 10px;
-}
-.service:hover {
- border-radius:2px;
- box-shadow:0 0 8px #ddd;
- background:#fcfcfc;
- -webkit-transition:box-shadow 0.2s ease-in-out;
- -moz-transition:box-shadow 0.2s ease-in-out;
- -o-transition:box-shadow 0.2s ease-in-out;
- transition:box-shadow 0.2s ease-in-out;
-}
-.service:hover i {
- color:#656565;
-}
-.service i {
- float:left;
- padding:10px;
- color:#72c02c;
- font-size:45px;
- text-align:center;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.service i.icon-cogs {
- font-size:37px;
-}
-.service .desc {
- width:75%;
- float:right;
-}
-.service .desc h4 {
- font-size:22px;
- line-height:25px;
-}
-
-.ie7 .service .circle i {
- padding-bottom:45px !important; /*ie7*/
-}
-
-/*Blockquote*/
-blockquote:hover {
- border-left-color:#72c02c;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.hero {
- padding:18px;
- margin:20px 0;
- color:#566c8a;
- font-size:16px;
- background:#fcfcfc;
- border-left:4px solid #94c564;
- font-family:'Open Sans', sans-serif;
-}
-.hero h1, .hero p {
- text-shadow:1px 1px 0 #fff;
-}
-
-.hero-unify p {
- font-size:13px;
- line-height:20px;
-}
-
-
-/* Recent Work */
-.recent-work a {
- text-align:center;
- background:#fcfcfc;
- display:inline-block;
-}
-
-.recent-work a:hover {
- text-decoration:none;
-}
-
-.recent-work a:hover strong {
- color:#555;
-}
-
-.recent-work em.overflow-hidden {
- display:block;
-}
-
-.recent-work a span {
- display:block;
- padding:10px;
- border-bottom:solid 2px #eee;
-}
-
-.recent-work a strong {
- color:#555;
- display:block;
-}
-
-.recent-work a i {
- color:#777;
-}
-
-.recent-work a img {
- -webkit-transition: all 0.8s ease-in-out;
- -moz-transition: all 0.8s ease-in-out;
- -o-transition: all 0.8s ease-in-out;
- -ms-transition: all 0.8s ease-in-out;
- transition: all 0.8s ease-in-out;
-}
-
-.recent-work a:hover img {
- opacity:0.8;
- -webkit-transform: scale(1.2) rotate(3deg);
- -moz-transform: scale(1.2) rotate(3deg);
- -o-transform: scale(1.0) rotate(3deg);
- -ms-transform: scale(1.2) rotate(3deg);
- transform: scale(1.2) rotate(3deg);
-}
-
-.recent-work a:hover span {
- border-bottom:solid 2px #72c02c;
- -webkit-transition:all 0.2s ease-in-out;
- -moz-transition:all 0.3s ease-in-out;
- -o-transition:all 0.2s ease-in-out;
- transition:all 0.3s ease-in-out;
-}
-
-/* Work */
-.work {
- margin-top:6px;
-}
-.work .details {
- padding:10px;
-}
-.work .caption {
- display:block;
- padding-top:5px;
- color:#585f69 !important;
- font-size:18px !important;
-}
-.work .caption:hover {
- cursor:pointer;
- color:#444 !important;
- text-decoration:underline;
-}
-
-/* Testimonials */
-.testimonial-body {
- padding:10px;
- margin-top:5px;
- background:#fcfcfc;
- border:1px solid #f5f5f5;
-}
-.testimonial-author{
- padding-top:15px;
- padding-left:20px;
-}
-.testimonial-author .arrow {
- width:0;
- height:0;
- position:absolute;
- margin-top:-16px;
- margin-left:20px;
- border-top:15px solid #fcfcfc;
- border-bottom:15px solid transparent;
- border-right:15px solid transparent;
-}
-
-.testimonial-author .name {
- color:#585f69;
- font-weight:bold;
-}
-
-.testimonal-arrow a {
- margin:0;
- top:-22px;
- float:right;
- color:#72c02c;
- font-size:25px;
- position:relative;
- display:inline-block;
- text-decoration: none;
- padding:0 9px !important;
-}
-.testimonal-arrow a:hover {
- color:#fff;
- text-decoration:none;
- background:#72c02c !important;
-}
-
-/*Carousel Arrow */
-.carousel-caption {
- padding:10px 15px;
-}
-.carousel-arrow a.carousel-control {
- font-size:40px;
- height:inherit;
-}
-.carousel-arrow a.left {
- left:0;
-}
-.carousel-arrow a.right {
- right:0;
-}
-
-/*Clients (Flexslider)*/
-.clients {
- box-shadow:none !important;
- margin-bottom:0 !important;
-}
-.clients li {
- float:left;
- overflow:hidden;
- margin-left:1px;
- position:relative;
- background:#fafafa;
-}
-.clients li:hover {
- background:#f6f6f6;
-}
-.clients li img.color-img {
- top:0;
- left:0;
- display:none;
- position:absolute;
-}
-.clients li:hover img.color-img {
- display:block;
-}
-.clients li img {
- filter:gray; /* IE6-9 */
- float:none !important;
- margin:0 auto !important;
-}
-.clients li img:hover {
- filter:none;
-}
-.clients,
-.flexslider.home {
- border:0px;
- overflow:hidden;
- margin-top:10px;
- margin-bottom:30px;
- border-radius:0;
- -moz-border-radius:0;
- -webkit-border-radius:0;
-}
-
-.flexslider {
- margin-top:10px !important;
-}
-.flexslider .flex-direction-nav a {
- margin-top:-10px !important;
-}
-
-/*Pegination*/
-.pagination ul {
- box-shadow:none;
-}
-.pagination li a {
- color:#777;
- padding:5px 15px;
- border-radius:0 !important;
-}
-
-/*Footer*/
-.footer {
- margin-top:40px;
- padding:20px 10px;
- background:#585f69;
- color:#dadada;
-}
-.footer h1,
-.footer h2,
-.footer h3,
-.footer h4,
-.footer h5 {
- text-shadow:none;
- font-weight:normal !important;
-}
-.footer p,
-.footer a {
- font-size:14px;
-}
-.footer p {
- color:#dadada;
-}
-.footer a {
- color:#72c02c;
-}
-.footer a:hover {
- color:#a8f85f;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.footer h4,
-.footer h3 {
- color:#e4e4e4;
- background:none;
- text-shadow:none;
-}
-
-/*Blog Posts*/
-.footer .posts {
- padding:0 15px;
-}
-.footer .blog-list {
- margin:0;
- padding:0;
- color:#dadada;
- list-style:none;
-}
-.footer .blog-list li {
- padding:0 0;
- margin-bottom:7px;
-}
-.footer .blog-list li span {
- color:#818488;
-}
-.footer .dl-horizontal,
-.footer .dl-horizontal:hover {
- border:none !important;
- background:none !important;
-}
-.footer .dl-horizontal a {
- color:#dadada;
-}
-.footer .dl-horizontal a:hover {
- color:#a8f85f !important;
-}
-.footer .dl-horizontal img {
- border-color:#888 !important;
-}
-
-/*Copyright*/
-.copyright {
- font-size:12px;
- padding:5px 10px;
- background:#3e4753;
- border-top:solid 1px #777;
-}
-.copyright p {
- color:#dadada;
-}
-.copyright a {
- margin:0 5px;
- color:#72c02c;
-}
-.copyright a:hover {
- color:#a8f85f;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.copyright .span8 {
- padding-top:15px;
-}
-.copyright .span4 {
- padding-top:10px;
-}
-
-/*Home Page "Main page" (Default)
-------------------------------------*/
-/*Thumbnail*/
-.thumbnail-style {
- padding:5px;
- border-radius:2px;
-}
-.thumbnail-style:hover {
- box-shadow:0 0 8px #ddd;
- -webkit-transition:box-shadow 0.2s ease-in-out;
- -moz-transition:box-shadow 0.2s ease-in-out;
- -o-transition:box-shadow 0.2s ease-in-out;
- transition:box-shadow 0.2s ease-in-out;
-}
-.thumbnail-style h3 {
- margin:5px 0 0 0;
-}
-.thumbnail-style h3 a {
- font-size:20px;
-}
-.thumbnail-style h3 a:hover {
- color:#72c02c;
- text-decoration:none;
-}
-.thumbnail-style .thumbnail-img {
- position:relative;
-}
-.thumbnail-style a.btn-more {
- right:-10px;
- bottom:10px;
- color:#fff;
- padding:1px 6px;
- position:absolute;
- background:#72c02c;
- display:inline-block;
-}
-.thumbnail-style a.btn-more:hover {
- text-decoration:none;
- box-shadow:0 0 0 2px #377500;
-}
-.thumbnail-style:hover a.btn-more {
- right:10px;
-}
-
-.thumbnail-kenburn img {
- left:10px;
- margin-left:-10px;
- position:relative;
- -webkit-transition: all 0.8s ease-in-out;
- -moz-transition: all 0.8s ease-in-out;
- -o-transition: all 0.8s ease-in-out;
- -ms-transition: all 0.8s ease-in-out;
- transition: all 0.8s ease-in-out;
-}
-.thumbnail-kenburn:hover img {
- -webkit-transform: scale(1.2) rotate(2deg);
- -moz-transform: scale(1.2) rotate(2deg);
- -o-transform: scale(1.2) rotate(2deg);
- -ms-transform: scale(1.2) rotate(2deg);
- transform: scale(1.2) rotate(2deg);
-}
-
-/*Welcome Block*/
-.servive-block .span4 {
- padding:20px 30px;
- text-align:center;
- margin-bottom:20px;
- background:#fafafa;
- border-radius:2px;
- -webkit-transition:all 0.3s ease-in-out;
- -moz-transition:all 0.3s ease-in-out;
- -o-transition:all 0.3s ease-in-out;
- transition:all 0.3s ease-in-out;
-}
-.servive-block .span4:hover {
- border-radius:2px;
- box-shadow:0 0 8px #ddd;
-}
-.servive-block .span4 h4 a:hover {
- color:#72c02c;
- text-decoration:none;
-}
-
-.servive-block .span4:hover h4,
-.servive-block .span4:hover i {
- color:#72c02c;
-}
-.servive-block .span4 i {
- color:#565656;
- font-size:40px;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.servive-block-in .span4 i {
- color:#72c02c;
-}
-.servive-block-in .span4:hover i {
- color:#565656;
-}
-
-/*Breadcrumbs*/
-.breadcrumbs {
- padding:10px 0 6px;
- box-shadow:inset 0 0 4px #eee;
- background:url(../img/breadcrumbs.png) repeat;
-}
-.breadcrumbs h1 {
- color:#686868;
- font-size:30px;
- text-shadow:0 1px 0 #f1efef;
-}
-.breadcrumbs .container {
- padding:0 15px;
-}
-
-.breadcrumb {
- top:9px;
- padding-right:0;
- background:none;
- position:relative;
-}
-.breadcrumb a {
- color:#777;
-}
-.breadcrumb li.active,
-.breadcrumb li a:hover {
- color:#72c02c;
- text-decoration:none;
-}
-
-/*Home Page "Options"
-------------------------------------*/
-/*Accardion*/
-.acc-home a.accordion-toggle {
- color:#686868;
- font-size:18px;
- background:none;
- padding:5px 15px;
- background:#fafafa;
- border-bottom:solid 1px #eee;
- text-decoration:none !important;
-}
-.acc-home a.active,
-.acc-home a.accordion-toggle:hover {
- color:#92d556;
- text-decoration:none !important;
-}
-.acc-home .accordion-group {
- border:none;
- margin:0 !important;
-}
-.acc-home .accordion-heading,
-.acc-home .accordion-inner {
- border:none;
-}
-.acc-home .accordion-inner {
- border:none;
- padding-top:3px;
-}
-.acc-home .collapse.in {
- margin-top:-1px;
- margin-bottom:20px;
- background:#fdfdfd;
- border-bottom:solid 1px #72c02c;
-}
-
-/*Posts*/
-.posts .dl-horizontal {
- margin-bottom:0;
- padding:3px;
- background:#fdfdfd;
- border-right:solid 2px #eee;
-}
-.posts .dl-horizontal:hover {
- border-right:solid 2px #72c02c;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.posts .dl-horizontal dt {
- width:56px;
- float:left;
-}
-.posts .dl-horizontal dt img {
- width:50px;
- height:50px;
- border:solid 3px #eee;
-}
-.posts .dl-horizontal dd {
- margin-left:66px;
-}
-.posts .dl-horizontal dd p {
- margin:0;
-}
-.posts .dl-horizontal a {
- font-size:15px;
- line-height:14px !important;
-}
-.posts .dl-horizontal a:hover {
- color:#72c02c;
- text-decoration:none;
-}
-.posts .dl-horizontal:hover dt img,
-.posts .dl-horizontal:hover dd a {
- color:#72c02c;
- border-color:#72c02c !important;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-
-/*Home Page "Options"
-------------------------------------*/
-/*Slider*/
-.slider-inner .da-slider {
- box-shadow:none;
- border-bottom:2px solid #ddd;
-}
-
-/*Carousel*/
-.carousel-control {
- color:#fff;
- border:none;
- margin-top:0;
- border-radius:2px;
-}
-.carousel-control:hover {
- opacity:1;
- color:#72c02c;
-}
-
-/*Tabs*/
-.nav-tabs {
- background:none !important;
-}
-.nav-tabs a {
- font-size:14px;
- padding:5px 15px !important;
-}
-.nav-tabs li.active a,
-.nav-tabs li.active a:hover,
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover,
-.nav-tabs > .active > a:focus {
- color:#fff;
- border:none;
- background:#72c02c;
-}
-.nav-tabs > li > a {
- border:none;
- border-radius:0;
-}
-.nav-tabs > li > a:hover {
- color:#fff;
- background:#72c02c;
-}
-.tab-content {
- padding:7px 10px;
- border-top:solid 2px #72c02c;
-}
-
-/*Home Page "Options"
-------------------------------------*/
-/*Right Sidebar*/
-.who li {
- margin-bottom:6px;
-}
-.who li i {
- color:#72c02c;
- position:relative;
- top:2px;
- margin-right:7px;
- font-size:18px;
-}
-.who li:hover i,
-.who li:hover a {
- color:#777;
-}
-.who li:hover a:hover {
- text-decoration:none;
-}
-
-/*Home Page "Options"
-------------------------------------*/
-/*Service Blocks*/
-.service-alternative .service:hover {
- background:#76ca2c;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.service-alternative .service:hover i,
-.service-alternative .service:hover p,
-.service-alternative .service:hover h4 {
- color:#fff;
-}
-
-/*About Page
-------------------------------------*/
-.team ul {
- text-align:right;
-}
-.team ul li {
- padding:0 !important;
- margin:0 !important;
-}
-.team ul li a,
-.team ul li a:hover {
- text-decoration:none;
-}
-.team ul li i {
- color:#aaa;
- font-size:20px;
- padding:4px;
- background:#f7f7f7;
-}
-.team ul li i.icon-facebook {
- padding:4px 10px;
-}
-.team ul li i:hover {
- color:#fff;
- background:#72c02c;
- -webkit-transition:all 0.2s ease-in-out;
- -moz-transition:all 0.2s ease-in-out;
- -o-transition:all 0.2s ease-in-out;
- transition:all 0.2s ease-in-out;
-}
-.team .thumbnail-style {
- padding:12px;
-}
-.team .thumbnail-style small {
- display:block;
- font-size:12px;
-}
-.team .thumbnail-style h3 {
- margin-bottom:10px;
-}
-.team .thumbnail-style:hover h3 a {
- color:#72c02c !important;
-}
-
-/*Icons Page
-------------------------------------*/
-.icon-page li {
- color:#555;
- margin:5px 0;
- font-size:14px;
- font-family:Arial;
-}
-.icon-page li i {
- font-size:14px;
- margin-right:5px;
-}
-.icon-page li:hover {
- color:#72c02c;
-}
-
-/*Pricing Page
-------------------------------------*/
-/*Pricing Head*/
-.pricing {
- position:relative;
- border-radius:3px;
- margin-bottom:15px;
- box-shadow:0 0 5px #eee;
-}
-.pricing:hover {
- box-shadow:0 0 15px #b5b5b5;
-}
-.pricing:hover h4 {
- color:#55c931;
-}
-.pricing-head {
- text-align:center;
-}
-.pricing-head h3,
-.pricing-head h4 {
- margin:0;
- line-height:normal;
- font-weight:bold !important;
-}
-.pricing-head h3 span,
-.pricing-head h4 span {
- display:block;
- margin-top:5px;
- font-size:12px;
- font-style:italic;
-}
-.pricing-head h3 {
- color:#fafafa;
- padding:12px 0;
- font-size:35px;
- font-family:Arial;
- background:#55c931;
- border-radius:3px 3px 0 0;
- text-shadow:0 1px 0 #32a20f;
- border-bottom:solid 1px #41b91c;
-}
-.pricing-head h4 {
- color:#bac39f;
- padding:5px 0;
- font-size:70px;
- font-family:Arial;
- background:#fbfef2;
- text-shadow:0 1px 0 #fff;
- border-bottom:solid 1px #f5f9e7;
-}
-.pricing-head h4 i {
- top:-8px;
- font-size:28px;
- font-style:normal;
- position:relative;
-}
-.pricing-head h4 span {
- top:-10px;
- font-size:14px;
- font-style:normal;
- position:relative;
-}
-
-/*Pricing Content*/
-.pricing-content li {
- color:#888;
- font-size:12px;
- padding:7px 15px;
- border-bottom:solid 1px #f5f9e7;
-}
-.pricing-content li i {
- top:2px;
- color:#72c02c;
- font-size:16px;
- margin-right:5px;
- position:relative;
-}
-
-/*Pricing Footer*/
-.pricing-footer {
- color:#777;
- font-size:11px;
- line-height:17px;
- text-align:center;
- padding:0 20px 19px;
- border-radius:0 0 3px 3px;
-}
-.pricing-footer a,
-.pricing-footer button {
- color:#fff;
- border:none;
- margin-top:5px;
- font-size:16px;
- padding:6px 15px;
- text-align:center;
- border-radius:2px;
- background:#55c931;
- display:inline-block;
- text-transform:uppercase;
- text-shadow:0 1px 0 #38b312;
- border-bottom:solid 2px #41b91c;
-}
-.pricing-footer a:hover,
-.pricing-footer button:hover {
- cursor:pointer;
- background:#40ba1a;
- text-decoration:none;
- box-shadow:0 0 3px #999;
-}
-
-/*Priceing Active*/
-.price-active,
-.pricing:hover {
- z-index:9;
- margin-top:-15px;
- box-shadow:0 0 15px #b5b5b5;
-}
-.price-active h4 {
- color:#55c931;
-}
-
-.no-space-pricing .pricing:hover {
- -webkit-transition:box-shadow 0.3s ease-in-out;
- -moz-transition:box-shadow 0.3s ease-in-out;
- -o-transition:box-shadow 0.3s ease-in-out;
- transition:box-shadow 0.2s ease-in-out;
-}
-.no-space-pricing .price-active .pricing-head h4,
-.no-space-pricing .pricing:hover .pricing-head h4 {
- color:#55c931;
- padding:15px 0;
- font-size:80px;
- -webkit-transition:color 0.5s ease-in-out;
- -moz-transition:color 0.5s ease-in-out;
- -o-transition:color 0.5s ease-in-out;
- transition:color 0.5s ease-in-out;
-}
-
-/*Gallery Page
-------------------------------------*/
-.gallery .thumbnail,
-.gallery .thumbnail:hover {
- padding:0;
- border:none;
- box-shadow:none;
-}
-.gallery .thumbnails {
- margin-bottom:6px;
-}
-
-/*Registration and Login Page
-------------------------------------*/
-.reg-page,
-.login-page {
- overflow:hidden;
- margin:0 auto;
- background:#fcfcfc;
- border:solid 1px #eee;
- box-shadow:0 0 7px #eee;
-}
-
-/*Registration*/
-.reg-page {
- min-width:30%;
- max-width:30%;
- padding:30px 50px 30px;
-}
-.reg-page h3 {
- margin-bottom:25px;
-}
-
-/*Login*/
-.login-page {
- min-width:25%;
- max-width:25%;
- padding:35px 30px 30px;
-}
-.login-page h3 {
- margin:0 0 25px 0;
-}
-.login-page input.login-inputs {
- width:86%;
-}
-.login-page .checkbox {
- margin-top:7px;
-}
-.login-page .checkbox input {
- margin-right:6px !important;
-}
-.login-page button {
- margin:0 0 5px 0;
-}
-
-/*Login Page v1.1*/
-.log-page {
- width: 310px;
- padding: 20px;
- margin: 0 auto;
- background:#fcfcfc;
- border:solid 1px #eee;
- box-shadow:0 0 7px #eee;
-}
-
-/*404 Page
-------------------------------------*/
-.page-404 p {
- top:70px;
- color:#777;
- font-size:300px;
- line-height:180px;
- text-align:center;
- position:relative;
-}
-.page-404 p i {
- font-style:normal;
- text-shadow:0 0 3px;
-}
-.page-404 p span {
- display:block;
- font-size:32px;
- position:relative;
-}
-
-/*Clients Page
-------------------------------------*/
-.clients-page {
- overflow:hidden;
-}
-.clients-page p {
- overflow:auto;
-}
-.clients-page p a {
- overflow:auto;
- text-decoration:underline;
-}
-.clients-page a.img-hover {
- display:block;
- position:relative;
-}
-.clients-page img {
- float:left;
- margin-right:20px;
- background:#fafafa;
- border:solid 1px #eee;
- width:120px;
- height:120px;
-}
-.clients-page img.img-colorful {
- display:none;
-}
-.clients-page a:hover img.img-colorful,
-.clients-page:hover img.img-colorful {
- top:0;
- left:0;
- display:block;
- position:absolute;
-}
-
-/*Privacy Page
-------------------------------------*/
-.privacy {}
-.privacy a {
- text-decoration:underline;
-}
-.privacy a:hover {
- color:#72c02c;
- text-decoration:none;
-}
-
-/*Portfolio Page
-------------------------------------*/
-.portfolio-columns .span3 {
- margin-bottom:1.8%;
-}
-.portfolio-columns .span4 {
- margin-bottom:2.3%;
-}
-.portfolio-columns .span6 {
- margin-bottom:2.2%;
-}
-
-/*Portfolio Item Page
-------------------------------------*/
-.portfolio-item h3 {
- margin-top:0;
-}
-.portfolio-item li {
- padding:3px 0;
-}
-.portfolio-item p a {
- text-decoration:underline;
-}
-.portfolio-item p a:hover {
- text-decoration:none;
-}
-
-/*Blog Page
-------------------------------------*/
-.blog-page ul,
-.blog-page li {
- margin:0 !important;
- padding:0 !important;
-}
-.blog h3 {
- color:#72c02c;
-}
-.blog ul {
- color:#555;
- font-size:12px;
-}
-.blog li {
- margin-right:7px !important;
-}
-.blog li i {
- color:#666;
-}
-.blog li a:hover {
- color:#72c02c;
- text-decoration:none;
-}
-.blog ul.blog-info {
- border-top:solid 1px #eee;
-}
-.blog .blog-img {
- margin:10px 0;
-}
-
-/*Blog Tags*/
-ul.blog-tags a {
- font-size:13px;
- padding:2px 5px;
- background:#f7f7f7;
- margin:0 2px 5px 0;
- display:inline-block;
- text-shadow:0 1px 0 #fff;
-}
-ul.blog-tags a:hover,
-ul.blog-tags a:hover i {
- color:#72c02c;
- text-decoration:none;
- -webkit-transition:all 0.3s ease-in-out;
- -moz-transition:all 0.3s ease-in-out;
- -o-transition:all 0.3s ease-in-out;
- transition:all 0.3s ease-in-out;
-}
-ul.blog-tags a i {
- color:#777;
-}
-.blog ul.blog-tags {
- border-bottom:solid 1px #eee;
- padding-bottom:4px !important;
-}
-.blog ul.blog-tags a {
- font-size:10px;
- display:inline;
- padding:2px 3px;
- margin-right:2px;
- background:#f4f4f4;
-}
-
-/*Blog Ads*/
-.blog-ads li {
- display:inline;
-}
-.blog-ads li img {
- opacity:0.6;
- width:60px;
- height:60px;
- margin:0 2px 8px;
-}
-.blog-ads li img:hover {
- opacity:1;
- box-shadow:0 0 0 4px #72c02c;
-}
-
-/*Blog Latest Tweets*/
-.blog-twitter p {
-}
-.blog-twitter p span {
- color:#777;
- display:block;
- font-size:11px;
-}
-.blog-twitter p a {
- color:#72c02c;
- text-decoration:none;
-}
-.blog-twitter p a:hover {
- text-decoration:underline;
-}
-
-/*Blog Item Page
-------------------------------------*/
-.blog-item .media img {
- top:3px;
- width:54px;
- height:54px;
- position:relative;
-}
-.blog-item h4.media-heading {
- position:relative;
-}
-.blog-item h4.media-heading span {
- top:3px;
- right:0;
- color:#777;
- font-size:12px;
- position:absolute;
-}
-.blog-item h4.media-heading span a {
- color:#72c02c;
-}
-
-/*Contact Page
-------------------------------------*/
-.map {
- width:100%;
- height:350px;
- border-top:solid 1px #eee;
- border-bottom:solid 1px #eee;
-}
-
-.map-box {
- height: 250px;
-}
-
-.map-box-space {
- margin-top: 25px;
-}
-
-/*Coming Soon Page
-------------------------------------*/
-.coming-soon-page {
- background: #585f69;
-}
-
-.coming-soon-border {
- border-top: solid 3px #72c02c;
-}
-
-.coming-soon-logo {
- margin-top: 10px;
- padding-top: 15px;
- border-top: solid 1px #4c5159;
-}
-
-.coming-soon-logo a {
- display: block;
- text-align: center;
-}
-
-.coming-soon,
-.coming-soon-plugin {
- padding: 20px;
- text-align: center;
- margin-top: 20px;
-}
-
-.coming-soon-plugin {
- min-height: 260px;
-}
-
-.coming-soon h1,
-.coming-soon p {
- color: #fff;
-}
-
-.coming-soon h1 {
- font-size: 50px;
- line-height: 50px;
- margin-bottom: 15px;
- text-shadow: none;
-}
-
-.coming-soon p {
- font-size: 16px;
- line-height: 22px;
-}
-
-.coming-soon input {
- box-shadow: none;
- -moz-box-shadow: none;
- -webkit-box-shadow: none;
-}
-
-.coming-soon-copyright {
- padding: 5px 0;
-}
-
-.coming-soon-copyright p {
- color: #fff;
- text-align: right;
-}
-
-/*One Page
-------------------------------------*/
-.one-page {
- padding-left: 0;
- padding-right: 0;
-}
-
-.one-page h1,
-.one-page h2 {
- color: #fff;
- font-size: 30px;
- text-shadow: none;
- margin-bottom: 20px;
-}
-
-.one-page p {
- color: #fff;
-}
-
-.one-page .one-default p,
-.one-page .one-default h1,
-.one-page .one-default h2,
-.one-page .one-grey p,
-.one-page .one-grey h1,
-.one-page .one-grey h2 {
- color: #555;
-}
-
-.one-page .one-page-inner {
- padding: 30px 20px;
- min-height: 300px;
-}
-
-.one-page .one-page-btn {
- font-size: 20px !important;
- padding-left: 30px !important;
- padding-right: 30px !important;
- margin-bottom: 15px;
-}
-
-.one-page .btn-u {
- margin-bottom: 15px;
-}
-
-.one-page .one-default {
- background: #fff;
-}
-.one-page .one-grey {
- background: #fafafa;
-}
-.one-page .one-blue {
- background: #3498db;
-}
-.one-page .one-red {
- background: #e74c3c;
-}
-.one-page .one-orange {
- background: #e67e22;
-}
-.one-page .one-green {
- background: #2ecc71;
-}
-
-/*Search Page
-------------------------------------*/
-.search-page h2 {
- font-size: 28px;
- margin-bottom: 20px;
-}
-
-.booking-blocks {
- overflow: hidden;
- padding: 15px 20px;
- margin-bottom: 25px;
- background: #fafafa;
- -webkit-transition:all 0.3s ease-in-out;
- -moz-transition:all 0.3s ease-in-out;
- -o-transition:all 0.3s ease-in-out;
- transition:all 0.3s ease-in-out;
-}
-
-.booking-blocks:hover {
- border-radius:2px;
- background: #fafafa;
- box-shadow:0 0 8px #ddd;
-}
-
-.booking-blocks p a {
- color: #72c02c;
-}
-
-.booking-blocks .booking-img {
- width: 140px;
- margin-right: 10px;
-}
-
-.booking-blocks .booking-img li {
- color: #777;
-}
-
-.booking-blocks .booking-img li i {
- color: #78ccf8;
- font-size: 12px;
- margin-right: 5px;
-}
-
-.booking-blocks .booking-img img {
- float: left;
- width: 140px;
- height: auto;
- margin: 5px 10px 10px 0;
-}
-
-.booking-blocks h2 {
- margin-top: 0;
- font-size: 20px;
- line-height: 20px;
-}
-
-.booking-blocks ul.inline li {
- padding: 0;
-}
-
-.booking-blocks ul.inline li i {
- color: #f8be2c;
- cursor: pointer;
- font-size: 16px;
-}
-
-.booking-blocks ul.inline li i:hover {
- color: #f8be2c;
-}
-
-/*Others (Global classes)
-------------------------------------*/
-.color-red { color:#c00;}
-.color-green { color:#72c02c;}
-.color-blue { color:#3498db;}
-
-.pull-lft { text-align:left;}
-.pull-rgt { text-align:right;}
-
-.rgt-img-margin { margin:4px 0 5px 8px;}
-.lft-img-margin { margin:5px 20px 5px 0;}
-
-.overflow-hidden { overflow:hidden;}
-.padding-left-5 { padding-left:5px;}
-.img-width-200 { width:200px;}
-
-/*Image Border*/
-.img-border {
- border:solid 3px #fff;
-}
-
-/*Background light-style*/
-.bg-light {
- padding:10px 15px;
- border-radius:3px;
- margin-bottom:10px;
- background:#fcfcfc;
-}
-.bg-light:hover {
- padding:9px 14px;
- border:solid 1px #e5e5e5;
-}
-
-/*Link read-more*/
-a.read-more {
- font-weight:bold;
- text-decoration:none;
-}
-a.read-more:hover {
- color:#72c02c;
- text-decoration:none;
-}
-
-/*Link color-green-style*/
-.linked:hover {
- color:#72c02c;
- text-decoration:none;
-}
-
-/*CSS3 Hover Effects*/
-.hover-effect {
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-.hover-effect-kenburn {
- left:10px;
- margin-left:-10px;
- position:relative;
- -webkit-transition: all 0.8s ease-in-out;
- -moz-transition: all 0.8s ease-in-out;
- -o-transition: all 0.8s ease-in-out;
- -ms-transition: all 0.8s ease-in-out;
- transition: all 0.8s ease-in-out;
-}
-.hover-effect-kenburn:hover {
- -webkit-transform: scale(2) rotate(5deg);
- -moz-transform: scale(2) rotate(5deg);
- -o-transform: scale(2) rotate(5deg);
- -ms-transform: scale(2) rotate(5deg);
- transform: scale(2) rotate(5deg);
-}
-
-/*Spaces*/
-.margin-bottom-5,
-.margin-bottom-10,
-.margin-bottom-20,
-.margin-bottom-20,
-.margin-bottom-25,
-.margin-bottom-40,
-.margin-bottom-50,
-.margin-bottom-60 {
- clear:both;
-}
-.margin-bottom-5 {
- margin-bottom:5px;
-}
-.margin-bottom-10 {
- margin-bottom:10px;
-}
-.margin-bottom-20 {
- margin-bottom:20px;
-}
-.margin-bottom-25 {
- margin-bottom:25px;
-}
-.margin-bottom-30 {
- margin-bottom:30px;
-}
-.margin-bottom-40 {
- margin-bottom:40px;
-}
-.margin-bottom-50 {
- margin-bottom:50px;
-}
-.margin-bottom-60 {
- margin-bottom:60px;
-}
-
-.top-2 {
- top:2px;
-}
-
-/*Button Style*/
-.btn {
- box-shadow: none;
-}
-
-.btn-u {
- border:0;
- font-size:14px;
- cursor:pointer;
- padding:5px 13px;
- position:relative;
- background:#72c02c;
- display:inline-block;
- color:#fff !important;
- text-decoration:none !important;
-}
-.btn-u:hover {
- color:#fff;
- background:#5fb611;
- text-decoration:none;
- -webkit-transition:all 0.4s ease-in-out;
- -moz-transition:all 0.4s ease-in-out;
- -o-transition:all 0.4s ease-in-out;
- transition:all 0.4s ease-in-out;
-}
-
-.btn-u-small {
- padding:3px 12px;
-}
-.btn-u-large {
- font-size:18px;
- padding:10px 25px;
-}
-a.btn-u {
- padding:4px 13px;
- vertical-align:middle;
-}
-a.btn-u-small {
- padding:2px 12px;
-}
-a.btn-u-large {
- font-size:18px;
- padding:6px 25px;
-}
-
-/*Buttons Color*/
-.btn-u-blue {
- background: #3498db !important;
-}
-.btn-u-blue:hover {
- background: #2980b9 !important;
-}
-
-.btn-u-red {
- background: #e74c3c !important;
-}
-.btn-u-red:hover {
- background: #c0392b !important;
-}
-
-.btn-u-orange {
- background: #e67e22 !important;
-}
-.btn-u-orange:hover {
- background: #d35400 !important;
-}
-
-.btn-u-sea {
- background: #1abc9c !important;
-}
-.btn-u-sea:hover {
- background: #16a085 !important;
-}
-
-.btn-u-green {
- background: #2ecc71 !important;
-}
-.btn-u-green:hover {
- background: #27ae60 !important;
-}
-
-.btn-u-yellow {
- background: #F1C40F !important;
-}
-.btn-u-yellow:hover {
- background: #F39C12 !important;
-}
-
-/*Social Icons*/
-.social-icons {
- margin:0;
-}
-.social-icons li {
- float:left;
- display:inline;
- list-style:none;
- margin-right:5px;
- margin-bottom:5px;
- text-indent:-9999px;
-}
-.social-icons li a, a.social-icon {
- width:28px;
- height:28px;
- display:block;
- background-position:0 0;
- background-repeat:no-repeat;
- transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -webkit-transition: all 0.3s ease-in-out;
-}
-.social-icons li:hover a {
- background-position:0 -38px;
-}
-
-.social_amazon {background: url(../img/icons/social/amazon.png) no-repeat;}
-.social_behance {background: url(../img/icons/social/behance.png) no-repeat;}
-.social_blogger {background: url(../img/icons/social/blogger.png) no-repeat;}
-.social_deviantart {background: url(../img/icons/social/deviantart.png) no-repeat;}
-.social_dribbble {background: url(../img/icons/social/dribbble.png) no-repeat;}
-.social_dropbox {background: url(../img/icons/social/dropbox.png) no-repeat;}
-.social_evernote {background: url(../img/icons/social/evernote.png) no-repeat;}
-.social_facebook {background: url(../img/icons/social/facebook.png) no-repeat;}
-.social_forrst {background: url(../img/icons/social/forrst.png) no-repeat;}
-.social_github {background: url(../img/icons/social/github.png) no-repeat;}
-.social_googleplus {background: url(../img/icons/social/googleplus.png) no-repeat;}
-.social_jolicloud {background: url(../img/icons/social/jolicloud.png) no-repeat;}
-.social_last-fm {background: url(../img/icons/social/last-fm.png) no-repeat;}
-.social_linkedin {background: url(../img/icons/social/linkedin.png) no-repeat;}
-.social_picasa {background: url(../img/icons/social/picasa.png) no-repeat;}
-.social_pintrest {background: url(../img/icons/social/pintrest.png) no-repeat;}
-.social_rss {background: url(../img/icons/social/rss.png) no-repeat;}
-.social_skype {background: url(../img/icons/social/skype.png) no-repeat;}
-.social_spotify {background: url(../img/icons/social/spotify.png) no-repeat;}
-.social_stumbleupon {background: url(../img/icons/social/stumbleupon.png) no-repeat;}
-.social_tumblr {background: url(../img/icons/social/tumblr.png) no-repeat;}
-.social_twitter {background: url(../img/icons/social/twitter.png) no-repeat;}
-.social_vimeo {background: url(../img/icons/social/vimeo.png) no-repeat;}
-.social_wordpress {background: url(../img/icons/social/wordpress.png) no-repeat;}
-.social_xing {background: url(../img/icons/social/xing.png) no-repeat;}
-.social_yahoo {background: url(../img/icons/social/yahoo.png) no-repeat;}
-.social_youtube {background: url(../img/icons/social/youtube.png) no-repeat;}
-
-/*Glyphicons*/
-.glyphicons-demo {
- text-align: ;
-}
-
-.glyphicons-demo .glyphicons {
- color: #999999;
- display: inline-block;
- font-size: 14px;
- line-height: 48px;
- margin-right: 20px;
- text-align: left;
- width: 150px;
-}
-
-.glyphicons-demo .glyphicons i:before {
- color: #666666;
- line-height: 55px !important;
-}
-
-.glyphicons-demo a:hover {
- color: #72c02c;
- text-decoration: none;
-}
-
-/*Style Switcher*/
-i.style-switcher-btn {
- right: 0;
- top: 37px;
- color: #fff;
- font-size: 18px;
- cursor: pointer;
- z-index: 555555;
- position: fixed;
- padding: 7px 9px;
- background: #585f69;
-}
-
-i.style-switcher-btn:hover {
- background:#707985;
-}
-
-i.style-switcher-btn-option {
- top: 38px;
- background: #9097a0;
-}
-
-i.style-switcher-btn-option:hover {
- background: #707985;
-}
-
-.style-switcher {
- right: 0;
- top: 37px;
- display: none;
- z-index: 555555;
- position: fixed;
- background: #585f69;
- padding: 15px 15px 15px 20px;
-}
-
-.style-switcher-inner {
- background: #9097a0;
-}
-
-.style-switcher .theme-close {
- top: 10px;
- right: 6px;
- position: absolute;
-}
-
-.style-switcher .theme-close i {
- color: #fff;
- cursor: pointer;
- font-size: 16px;
- padding: 5px 7px;
- background: #464e5b;
-}
-
-.style-switcher .theme-close i:hover {
- color: #464e5b;
- background: #fff;
- }
-
-.style-switcher .theme-heading {
- color: #fff;
- font-size: 14px;
- margin-bottom: 10px;
- text-transform: uppercase;
-}
-
-.style-switcher ul {
- margin-bottom: 0;
-}
-
-.style-switcher li {
- width: 20px;
- height: 20px;
- cursor: pointer;
- background: #c00;
- margin-right: 5px;
- display: inline-block;
- border: solid 1px #70747a;
-}
-
-.style-switcher li:hover,
-.style-switcher li.theme-active {
- margin-right: 3px;
- border: solid 2px #fff;
-}
-
-.style-switcher li.theme-default {
- background: #72c02c;
-}
-.style-switcher li.theme-blue {
- background: #3498db;
-}
-.style-switcher li.theme-orange {
- background: #e67e22;
-}
-.style-switcher li.theme-red {
- background: #e74c3c;
-}
-.style-switcher li.theme-light {
- background: #ecf0f1;
-}
-
-/*Revolution Slider*/
-.bg-black-opacity {
- background: url(../img/sliders/revolution/bg-text.png) repeat;
- padding: 7px;
- text-shadow: none !important;
-}
-
-/*style openhub widget*/
-.footer .frame_holder{
- position:relative;width:350px;
- height:225px;
-}
-.openhub-title{
- position:absolute;
- top:4px;left:80px;
- font-size:16px;
- font-weight:800;
- margin-top:0;
-}
-h3.openhub-title {
- background:#585f69
-}
-.openhub-title a:link, .openhub-title a:visited{
- font-size:20px;
- font-weight:800;
- color:white;
- transition:-webkit-transition:
- width 2s; /* For Safari 3.1 to 6.0 */
- transition: background-color 0s;
-}
- h3.openhub-title a:hover, h3.openhub-title a:active{
- font-size:20px;
- font-weight:800;
- color:white;
- }
- div.widget_details{
- position:absolute;
- left:91px;
- top:48px;
- font-family:open-sans;
- width:126px;
- }
- .widget_details p{
- font-size:10px;
- color:white;
- font-weight:normal;
- line-height:1.5em;
- /*cover black text in background*/
- padding:0 9px 1px 0;
- margin:0 0 0.5em 0;
- float:left; /*make p width as wide as actual amount of text-better background usage*/
- background-color:#585f69; /*hide any black text*/
- position:relative;
- }
- /*fix link problems*/
- .widget_details p a{
- display:inline-block;
- position:absolute;
- top:0;
- font-size:13px;
- }
- .widget_details p a span{
- visibility:hidden; /*so actual links are shown*/
-}
-
-/*download page*/
-.download_thumb a:hover, .download_thumb a:active{
- color:white;
-}
-.develop i{
- font-style:normal;
- color:#0000ee;
- cursor:pointer;
-}
-
-/*real download pages*/
-.updateSite{
- color:green;
-}
-.tabz{
- cursor:pointer;
-}
diff --git a/assets/css/style_responsive.css b/assets/css/style_responsive.css
deleted file mode 100644
index 23113a1..0000000
--- a/assets/css/style_responsive.css
+++ /dev/null
@@ -1,221 +0,0 @@
-/* Portrait tablet to landscape and desktop */
-@media only screen and (max-width: 880px) {
- .navbar .nav > li > a {
- font-size: 14px;
- }
-}
-
-/*For Portfolio Page*/
-@media (max-width: 1200px) {
- .portfolio-responsive h2 {
- display:none;
- }
- .portfolio-responsive p {
- display:none;
- }
- .portfolio-responsive a.info {
- margin-top:55px !important;
- }
-}
-@media (max-width: 767px) {
- .portfolio-responsive h2 {
- display:block;
- }
- .portfolio-responsive a.info {
- margin-top:20px !important;
- }
-}
-/*End For Portfolio Page*/
-
-@media (min-width: 980px) {
- /*Menu*/
- .navbar { float:right; border:none;}
- .collapse.in li a,
- .collapse.in ul.dropdown-menu a,
- .collapse.in li a.dropdown-toggle {
- border:none;
- }
-}
-
-@media (max-width: 980px) {
- /*Search Box Menu1*/
- .navbar .search-open {
- top:-39px;
- left:38px;
- border:0;
- padding-top:5px;
- padding-bottom:5px;
- position:relative;
- }
- .navbar .search-open input {
- width: 330px;
- }
-
- /*Search Box Menu2*/
- .navbar .search-open-inner {
- top:-51px;
- left:45px;
- border:0;
- padding-top:6px;
- padding-bottom:5px;
- position:relative;
- background:#3c495a;
- }
- .navbar .search-open-inner input {
- width:330px;
- }
-
-
- /*Image hover*/
- .da-thumbs li article em {
- display:none !important;
- }
-}
-
-@media (max-width: 900px) {
- /*Slider Sequence*/
- #sequence-theme .info {
- top:80px !important;
- width:60% !important;
- margin-right:50px;
- }
-
- /*Slider Parallax*/
- .da-slide .da-img {
- display:none;
- }
-}
-
-@media (max-width: 450px) {
- /*Slider Sequence*/
- #sequence-theme .info {
- top:70px !important;
- width:70% !important;
- margin-right:25px;
- }
- #sequence-theme h2 {
- font-size:30px !important;
- }
- #sequence-theme .info p {
- font-size:18px !important;
- }
-
- /*Slider Parallax*/
- .da-slide p {
- display:none;
- }
-}
-
-@media (max-width: 900px) {
- /*Menu*/
- .nav-collapse .nav{ float:none !important; margin-top: 10px !important; }
-
- /*Style Switcher*/
- i.style-switcher-btn {
- display: none;
- }
-
- /*Service Block*/
- .service .desc { width: 55%}
-
- .contact-form .input-xlarge {width: 200px !important}
-}
-
-/* Landscape phone to portrait tablet */
-@media (max-width: 767px) {
- /*Menu*/
- .nav-collapse .nav { margin-top: 10px !important; }
-
- /*Service Block*/
- .service .desc { width: 55%}
-
- /*Registration and Login*/
- .reg-page {
- max-width:100%;
- }
- .login-page {
- max-width:100%;
- }
- .login-page input.login-inputs {
- width:94%;
- }
-
- /*Login Page v1.1+*/
- .log-page {
- width: 200px;
- }
-
- /*Coming Soon Page*/
- .coming-soon input {
- width: 60%;
- }
- .coming-soon-copyright p {
- text-align: left;
- }
-}
-
-/* Landscape phones and down */
-@media (max-width: 480px) {
- /*Menu*/
- .nav-collapse .nav{ margin-top: 10px !important;}
-
- /*Search Box Menu2*/
- .navbar .search-open-inner {
- top:-50px;
- }
-
- /*Service Block*/
- .service .desc { width: 60%}
-
- /*Search Box Menu1*/
- .navbar .search-open input {
- width: auto;
- }
-
- /*Search Box Menu2*/
- .navbar .search-open-inner input {
- width: auto;
- }
-
- /*Coming Soon Page*/
- .coming-soon,
- .coming-soon-plugin {
- margin-top: 50px;
- padding: 10px;
- }
- .coming-soon input {
- width: 50%;
- }
- .coming-soon-copyright p {
- text-align: left;
- }
-}
-
-@media (min-width: 767px) {
- .no-space-pricing .span3 {
- width:25% !important;
- margin-left:0 !important;
- }
-}
-
-/*Higher Resolutions*/
-@media (min-width: 1440px) {
- /*Coming Soon Page*/
- .coming-soon-plugin {
- min-height: 330px;
- }
-}
-
-@media (min-width: 1680px) {
- /*Coming Soon Page*/
- .coming-soon-plugin {
- min-height: 410px;
- }
-}
-
-@media (min-width: 1920px) {
- /*Coming Soon Page*/
- .coming-soon-plugin {
- min-height: 560px;
- }
-}
\ No newline at end of file
diff --git a/assets/css/themes/blue.css b/assets/css/themes/blue.css
deleted file mode 100644
index 31a4c44..0000000
--- a/assets/css/themes/blue.css
+++ /dev/null
@@ -1,331 +0,0 @@
-a:focus,
-a:hover,
-a:active {
- color: #3498db;
-}
-
-.color-green {
- color: #3498db;
-}
-
-a.read-more:hover {
- color:#3498db;
-}
-
-.linked:hover {
- color:#3498db;
-}
-
-/*Slider
-------------------------------------*/
-.da-slide h2 i {
- background:url(../../plugins/parallax-slider/img/bg-heading-blue.png) repeat;
-}
-
-/*Purchase
-------------------------------------*/
-.purchase a.btn-buy {
- background:#3498db;
- text-shadow:0 1px 0 #2980b9;
-}
-.purchase a.btn-buy:hover {
- background:#2980b9;
-}
-
-/*Buttons
-------------------------------------*/
-.btn-u {
- background: #3498db;
-}
-
-.btn-u:hover {
- background: #2980b9;
-}
-
-/*Service
-------------------------------------*/
-.service i {
- color:#3498db;
-}
-
-/*Welcome Block*/
-.servive-block .span4 h4 a:hover {
- color:#3498db;
-}
-
-.servive-block .span4:hover h4,
-.servive-block .span4:hover i {
- color:#3498db;
-}
-.servive-block-in .span4 i {
- color:#3498db;
-}
-
-/*Service Blocks*/
-.service-alternative .service:hover {
- background:#3498db;
-}
-
-/*Thumbnail (Recent Work)
-------------------------------------*/
-.thumbnail-style h3 a:hover {
- color:#3498db;
-}
-
-.thumbnail-style a.btn-more {
- background:#3498db;
-}
-.thumbnail-style a.btn-more:hover {
- box-shadow:0 0 0 2px #2980b9;
-}
-
-/*Carousel (Recent Work)*/
-.recent-work a:hover span {
- border-bottom:solid 2px #3498db;
-}
-
-.bx-wrapper .bx-prev {
- background-image: url(../../plugins/bxslider/images/controls-blue.png);
-}
-.bx-wrapper .bx-next {
- background-image: url(../../plugins/bxslider/images/controls-blue.png);
-}
-
-/*Typography
-------------------------------------*/
-/*Heading*/
-.headline h3,
-.headline h4 {
- border-bottom:2px solid #3498db;
-}
-
-/*Blockquote*/
-blockquote:hover {
- border-left-color:#3498db;
-}
-
-.hero {
- border-left-color: #3498db;
-}
-
-/*Carousel
-------------------------------------*/
-.carousel-arrow a.carousel-control:hover {
- color: #3498db;
-}
-
-/*Footer
-------------------------------------*/
-.footer a,
-.copyright a,
-.footer a:hover,
-.copyright a:hover {
- color: #3498db;
-}
-
-/*Footer Blog*/
-.footer .dl-horizontal a:hover {
- color:#3498db !important;
-}
-
-
-/*Blog Posts
-------------------------------------*/
-.posts .dl-horizontal:hover {
- border-right:solid 2px #3498db;
-}
-.posts .dl-horizontal a:hover {
- color:#3498db;
-}
-.posts .dl-horizontal:hover dt img,
-.posts .dl-horizontal:hover dd a {
- color:#3498db;
- border-color:#3498db !important;
-}
-
-/*Tabs
-------------------------------------*/
-.nav-tabs li.active a,
-.nav-tabs li.active a:hover,
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover,
-.nav-tabs > .active > a:focus {
- background:#3498db;
-}
-
-.nav-tabs > li > a:hover {
- background:#3498db;
-}
-.tab-content {
- border-top:solid 2px #3498db;
-}
-
-/*Accardion
-------------------------------------*/
-.acc-home a.active,
-.acc-home a.accordion-toggle:hover {
- color:#3498db;
-}
-.acc-home .collapse.in {
- border-bottom:solid 1px #3498db;
-}
-
-/*Testimonials
-------------------------------------*/
-.testimonal-arrow a {
- color:#3498db;
-}
-.testimonal-arrow a:hover {
- background:#3498db !important;
-}
-
-/*Breadcrumb
-------------------------------------*/
-.breadcrumb li.active,
-.breadcrumb li a:hover {
- color:#3498db;
-}
-
-/*About Page
-------------------------------------*/
-.team .thumbnail-style:hover h3 a {
- color:#3498db !important;
-}
-
-/*Social Icons*/
-.team ul li i:hover {
- background:#3498db;
-}
-
-/*Pricing Page
-------------------------------------*/
-/*Pricing Head*/
-.pricing:hover h4 {
- color:#3498db;
-}
-
-.pricing-head h3 {
- background:#3498db;
- text-shadow:0 1px 0 #2980b9;
- border-bottom:solid 1px #2980b9;
-}
-.pricing-head h4 {
- color:#999;
- background:#fcfcfc;
- border-bottom:solid 1px #daf0ff;
-}
-
-/*Pricing Content*/
-.pricing-content li {
- border-bottom:solid 1px #daf0ff;
-}
-.pricing-content li i {
- color:#3498db;
-}
-
-/*Pricing Footer*/
-.pricing-footer a,
-.pricing-footer button {
- background:#3498db;
- text-shadow:0 1px 0 #2980b9;
- border-bottom:solid 2px #2980b9;
-}
-.pricing-footer a:hover,
-.pricing-footer button:hover {
- background:#2980b9;
-}
-
-/*Priceing Active*/
-.price-active h4 {
- color:#3498db;
-}
-
-.no-space-pricing .price-active .pricing-head h4,
-.no-space-pricing .pricing:hover .pricing-head h4 {
- color:#3498db;
-}
-
-/*Right Sidebar
-------------------------------------*/
-/*Right Sidebar*/
-.who li i,
-.who li:hover i,
-.who li:hover a {
- color:#3498db;
-}
-
-/*Privacy Page
-------------------------------------*/
-.privacy a:hover {
- color:#3498db;
-}
-
-/*Portfolio Page
-------------------------------------*/
-.sort li a:hover {
- color: #3498db;
- border-bottom: 1px dotted #3498db;
-}
-.sort li a.selected {
- color: #3498db;
- border-bottom: 1px solid #3498db;
-}
-
-.view a.info:hover {
- background: #3498db;
-}
-
-/*Blog Page
-------------------------------------*/
-.blog h3 {
- color:#3498db;
-}
-.blog li a:hover {
- color:#3498db;
-}
-
-/*Blog Tags*/
-ul.blog-tags a:hover,
-ul.blog-tags a:hover i {
- color:#3498db;
-}
-
-/*Blog Ads*/
-.blog-ads li img:hover {
- box-shadow:0 0 0 4px #3498db;
-}
-
-/*Blog Latest Tweets*/
-.blog-twitter p a {
- color:#3498db;
-}
-
-/*Blog Item Page
-------------------------------------*/
-.blog-item h4.media-heading span a {
- color:#3498db;
-}
-
-/*Coming Soon Page
-------------------------------------*/
-.coming-soon-border {
- border-top: solid 3px #3498db;
-}
-
-/*Search Page
-------------------------------------*/
-.booking-blocks p a {
- color: #3498db;
-}
-
-/*Icons Page
-------------------------------------*/
-.icon-page li:hover {
- color:#3498db;
-}
-
-/*Glyphicons*/
-.glyphicons-demo a:hover {
- color: #3498db;
- text-decoration: none;
-}
diff --git a/assets/css/themes/default.css b/assets/css/themes/default.css
deleted file mode 100644
index 7d160c0..0000000
--- a/assets/css/themes/default.css
+++ /dev/null
@@ -1,331 +0,0 @@
-a:focus,
-a:hover,
-a:active {
- color: #72c02c;
-}
-
-.color-green {
- color: #72c02c;
-}
-
-a.read-more:hover {
- color:#72c02c;
-}
-
-.linked:hover {
- color:#72c02c;
-}
-
-/*Slider
-------------------------------------*/
-.da-slide h2 i {
- background:url(../../plugins/parallax-slider/img/bg-heading.png) repeat;
-}
-
-/*Purchase
-------------------------------------*/
-.purchase a.btn-buy {
- background:#72c02c;
- text-shadow:0 1px 0 #51a00b;
-}
-.purchase a.btn-buy:hover {
- background:#68af28;
-}
-
-/*Buttons
-------------------------------------*/
-.btn-u {
- background: #72c02c;
-}
-
-.btn-u:hover {
- background: #5fb611;
-}
-
-/*Service
-------------------------------------*/
-.service i {
- color:#72c02c;
-}
-
-/*Welcome Block*/
-.servive-block .span4 h4 a:hover {
- color:#72c02c;
-}
-
-.servive-block .span4:hover h4,
-.servive-block .span4:hover i {
- color:#72c02c;
-}
-.servive-block-in .span4 i {
- color:#72c02c;
-}
-
-/*Service Blocks*/
-.service-alternative .service:hover {
- background:#72c02c;
-}
-
-/*Thumbnail (Recent Work)
-------------------------------------*/
-.thumbnail-style h3 a:hover {
- color:#72c02c;
-}
-
-.thumbnail-style a.btn-more {
- background:#72c02c;
-}
-.thumbnail-style a.btn-more:hover {
- box-shadow:0 0 0 2px #377500;
-}
-
-/*Carousel (Recent Work)*/
-.recent-work a:hover span {
- border-bottom:solid 2px #72c02c;
-}
-
-.bx-wrapper .bx-prev {
- background-image: url(../../plugins/bxslider/images/controls.png);
-}
-.bx-wrapper .bx-next {
- background-image: url(../../plugins/bxslider/images/controls.png);
-}
-
-/*Typography
-------------------------------------*/
-/*Heading*/
-.headline h3,
-.headline h4 {
- border-bottom:2px solid #72c02c;
-}
-
-/*Blockquote*/
-blockquote:hover {
- border-left-color:#72c02c;
-}
-
-.hero {
- border-left-color: #72c02c;
-}
-
-/*Carousel
-------------------------------------*/
-.carousel-arrow a.carousel-control:hover {
- color: #72c02c;
-}
-
-/*Footer
-------------------------------------*/
-.footer a,
-.copyright a,
-.footer a:hover,
-.copyright a:hover {
- color: #72c02c;
-}
-
-/*Footer Blog*/
-.footer .dl-horizontal a:hover {
- color:#72c02c !important;
-}
-
-
-/*Blog Posts
-------------------------------------*/
-.posts .dl-horizontal:hover {
- border-right:solid 2px #72c02c;
-}
-.posts .dl-horizontal a:hover {
- color:#72c02c;
-}
-.posts .dl-horizontal:hover dt img,
-.posts .dl-horizontal:hover dd a {
- color:#72c02c;
- border-color:#72c02c !important;
-}
-
-/*Tabs
-------------------------------------*/
-.nav-tabs li.active a,
-.nav-tabs li.active a:hover,
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover,
-.nav-tabs > .active > a:focus {
- background:#72c02c;
-}
-.nav-tabs > li > a:hover {
- background:#72c02c;
-}
-.tab-content {
- border-top:solid 2px #72c02c;
-}
-
-/*Accardion
-------------------------------------*/
-.acc-home a.active,
-.acc-home a.accordion-toggle:hover {
- color:#72c02c;
-}
-.acc-home .collapse.in {
- border-bottom:solid 1px #72c02c;
-}
-
-/*Testimonials
-------------------------------------*/
-.testimonal-arrow a {
- color:#72c02c;
-}
-.testimonal-arrow a:hover {
- background:#72c02c !important;
-}
-
-/*Breadcrumb
-------------------------------------*/
-.breadcrumb li.active,
-.breadcrumb li a:hover {
- color:#72c02c;
-}
-
-/*About Page
-------------------------------------*/
-.team .thumbnail-style:hover h3 a {
- color:#72c02c !important;
-}
-
-/*Social Icons*/
-.team ul li i:hover {
- background:#72c02c;
-}
-
-/*Pricing Page
-------------------------------------*/
-/*Pricing Head*/
-.pricing:hover h4 {
- color:#55c931;
-}
-
-.pricing-head h3 {
- background:#55c931;
- text-shadow:0 1px 0 #32a20f;
- border-bottom:solid 1px #41b91c;
-}
-.pricing-head h4 {
- color:#999;
- background:#fbfef2;
- border-bottom:solid 1px #f5f9e7;
-}
-
-/*Pricing Content*/
-.pricing-content li {
- border-bottom:solid 1px #f5f9e7;
-}
-.pricing-content li i {
- color:#72c02c;
-}
-
-/*Pricing Footer*/
-.pricing-footer a,
-.pricing-footer button {
- background:#72c02c;
- text-shadow:0 1px 0 #38b312;
- border-bottom:solid 2px #41b91c;
-}
-.pricing-footer a:hover,
-.pricing-footer button:hover {
- background:#40ba1a;
-}
-
-/*Priceing Active*/
-.price-active h4 {
- color:#55c931;
-}
-
-.no-space-pricing .price-active .pricing-head h4,
-.no-space-pricing .pricing:hover .pricing-head h4 {
- color:#55c931;
-}
-
-/*Right Sidebar
-------------------------------------*/
-/*Right Sidebar*/
-.who li i,
-.who li:hover i,
-.who li:hover a {
- color:#72c02c;
-}
-
-/*Privacy Page
-------------------------------------*/
-.privacy a:hover {
- color:#72c02c;
-}
-
-/*Portfolio Page
-------------------------------------*/
-.sort li a:hover {
- color: #72c02c;
- border-bottom: 1px dotted #72c02c;
-}
-.sort li a.selected {
- color: #72c02c;
- border-bottom: 1px solid #72c02c;
-}
-
-.view a.info:hover {
- background: #72c02c;
-}
-
-/*Blog Page
-------------------------------------*/
-.blog h3 {
- color:#72c02c;
-}
-.blog li a:hover {
- color:#72c02c;
-}
-
-/*Blog Tags*/
-ul.blog-tags a:hover,
-ul.blog-tags a:hover i {
- color:#72c02c;
-}
-
-/*Blog Ads*/
-.blog-ads li img:hover {
- box-shadow:0 0 0 4px #72c02c;
-}
-
-/*Blog Latest Tweets*/
-.blog-twitter p a {
- color:#72c02c;
-}
-
-/*Blog Item Page
-------------------------------------*/
-.blog-item h4.media-heading span a {
- color:#72c02c;
-}
-
-/*Coming Soon Page
-------------------------------------*/
-.coming-soon-border {
- border-top: solid 3px #72c02c;
-}
-
-/*Search Page
-------------------------------------*/
-.booking-blocks p a {
- color: #72c02c;
-}
-
-/*Icons Page
-------------------------------------*/
-.icon-page li:hover {
- color:#72c02c;
-}
-
-/*Glyphicons*/
-.glyphicons-demo a:hover {
- color: #72c02c;
- text-decoration: none;
-}
-
diff --git a/assets/css/themes/headers/header1-blue.css b/assets/css/themes/headers/header1-blue.css
deleted file mode 100644
index aa08819..0000000
--- a/assets/css/themes/headers/header1-blue.css
+++ /dev/null
@@ -1,50 +0,0 @@
-/*Menu
-------------------------------------*/
-.collapse.in li a:hover,
-.collapse.in li a.dropdown-toggle {
- border-bottom:solid 1px #3498db !important;
-}
-
-.navbar .nav > li > a:focus,
-.navbar .nav > li > a:hover {
- color:#3498db;
- border-bottom:solid 2px #3498db;
-}
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- color:#3498db;
- border-bottom:solid 2px #3498db;
-}
-
-.navbar .nav > .active > a:hover {
- color:#3498db;
- border-bottom:solid 2px #3498db;
-}
-
-/*Arrow for menu*/
-.navbar .nav > li > a .caret {
- border-top-color: #3498db!important;
- border-bottom-color: #3498db !important;
-}
-
-/*Dropdown Menu*/
-.dropdown-menu {
- border-top:solid 2px #3498db;
-}
-
-.navbar .btn-navbar {
- background:#3498db;
-}
-.navbar .btn-navbar:hover {
- background:#2980b9;
-}
-.navbar .nav > li > .dropdown-menu:after {
- border-top-color: #3498db !important;
- border-bottom-color: #3498db !important;
-}
-
-/*Serach*/
-.navbar .nav > li > a.search:hover {
- color:#3498db;
- border-bottom-color:#3498db;
-}
\ No newline at end of file
diff --git a/assets/css/themes/headers/header1-light.css b/assets/css/themes/headers/header1-light.css
deleted file mode 100644
index 844772b..0000000
--- a/assets/css/themes/headers/header1-light.css
+++ /dev/null
@@ -1,50 +0,0 @@
-/*Menu
-------------------------------------*/
-.collapse.in li a:hover,
-.collapse.in li a.dropdown-toggle {
- border-bottom:solid 1px #787d80 !important;
-}
-
-.navbar .nav > li > a:focus,
-.navbar .nav > li > a:hover {
- color:#787d80;
- border-bottom:solid 2px #787d80;
-}
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- color:#787d80;
- border-bottom:solid 2px #787d80;
-}
-
-.navbar .nav > .active > a:hover {
- color:#787d80;
- border-bottom:solid 2px #787d80;
-}
-
-/*Arrow for menu*/
-.navbar .nav > li > a .caret {
- border-top-color: #787d80!important;
- border-bottom-color: #787d80 !important;
-}
-
-/*Dropdown Menu*/
-.dropdown-menu {
- border-top:solid 2px #787d80;
-}
-
-.navbar .btn-navbar {
- background:#787d80;
-}
-.navbar .btn-navbar:hover {
- background:#2980b9;
-}
-.navbar .nav > li > .dropdown-menu:after {
- border-top-color: #787d80 !important;
- border-bottom-color: #787d80 !important;
-}
-
-/*Serach*/
-.navbar .nav > li > a.search:hover {
- color:#787d80;
- border-bottom-color:#787d80;
-}
\ No newline at end of file
diff --git a/assets/css/themes/headers/header1-orange.css b/assets/css/themes/headers/header1-orange.css
deleted file mode 100644
index 28393aa..0000000
--- a/assets/css/themes/headers/header1-orange.css
+++ /dev/null
@@ -1,50 +0,0 @@
-/*Menu
-------------------------------------*/
-.collapse.in li a:hover,
-.collapse.in li a.dropdown-toggle {
- border-bottom:solid 1px #e67e22 !important;
-}
-
-.navbar .nav > li > a:focus,
-.navbar .nav > li > a:hover {
- color:#e67e22;
- border-bottom:solid 2px #e67e22;
-}
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- color:#e67e22;
- border-bottom:solid 2px #e67e22;
-}
-
-.navbar .nav > .active > a:hover {
- color:#e67e22;
- border-bottom:solid 2px #e67e22;
-}
-
-/*Arrow for menu*/
-.navbar .nav > li > a .caret {
- border-top-color: #e67e22!important;
- border-bottom-color: #e67e22 !important;
-}
-
-/*Dropdown Menu*/
-.dropdown-menu {
- border-top:solid 2px #e67e22;
-}
-
-.navbar .btn-navbar {
- background:#e67e22;
-}
-.navbar .btn-navbar:hover {
- background:#2980b9;
-}
-.navbar .nav > li > .dropdown-menu:after {
- border-top-color: #e67e22 !important;
- border-bottom-color: #e67e22 !important;
-}
-
-/*Serach*/
-.navbar .nav > li > a.search:hover {
- color:#e67e22;
- border-bottom-color:#e67e22;
-}
\ No newline at end of file
diff --git a/assets/css/themes/headers/header1-red.css b/assets/css/themes/headers/header1-red.css
deleted file mode 100644
index 77550ad..0000000
--- a/assets/css/themes/headers/header1-red.css
+++ /dev/null
@@ -1,50 +0,0 @@
-/*Menu
-------------------------------------*/
-.collapse.in li a:hover,
-.collapse.in li a.dropdown-toggle {
- border-bottom:solid 1px #e74c3c !important;
-}
-
-.navbar .nav > li > a:focus,
-.navbar .nav > li > a:hover {
- color:#e74c3c;
- border-bottom:solid 2px #e74c3c;
-}
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- color:#e74c3c;
- border-bottom:solid 2px #e74c3c;
-}
-
-.navbar .nav > .active > a:hover {
- color:#e74c3c;
- border-bottom:solid 2px #e74c3c;
-}
-
-/*Arrow for menu*/
-.navbar .nav > li > a .caret {
- border-top-color: #e74c3c!important;
- border-bottom-color: #e74c3c !important;
-}
-
-/*Dropdown Menu*/
-.dropdown-menu {
- border-top:solid 2px #e74c3c;
-}
-
-.navbar .btn-navbar {
- background:#e74c3c;
-}
-.navbar .btn-navbar:hover {
- background:#2980b9;
-}
-.navbar .nav > li > .dropdown-menu:after {
- border-top-color: #e74c3c !important;
- border-bottom-color: #e74c3c !important;
-}
-
-/*Serach*/
-.navbar .nav > li > a.search:hover {
- color:#e74c3c;
- border-bottom-color:#e74c3c;
-}
\ No newline at end of file
diff --git a/assets/css/themes/headers/header2-blue.css b/assets/css/themes/headers/header2-blue.css
deleted file mode 100644
index 2690510..0000000
--- a/assets/css/themes/headers/header2-blue.css
+++ /dev/null
@@ -1,18 +0,0 @@
-/*Top*/
-.loginbar li a:hover {
- color:#3498db;
-}
-
-/*Menu*/
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- background: #3498db !important;
-}
-.navbar .nav > .active > a:hover {
- background: #3498db !important;
-}
-
-/*Search*/
-.navbar .nav li a.search-nav:hover {
- background:#3498db !important;
-}
diff --git a/assets/css/themes/headers/header2-light.css b/assets/css/themes/headers/header2-light.css
deleted file mode 100644
index 8a9bcb8..0000000
--- a/assets/css/themes/headers/header2-light.css
+++ /dev/null
@@ -1,18 +0,0 @@
-/*Top*/
-.loginbar li a:hover {
- color:#787d80;
-}
-
-/*Menu*/
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- background: #787d80 !important;
-}
-.navbar .nav > .active > a:hover {
- background: #787d80 !important;
-}
-
-/*Search*/
-.navbar .nav li a.search-nav:hover {
- background:#787d80 !important;
-}
diff --git a/assets/css/themes/headers/header2-orange.css b/assets/css/themes/headers/header2-orange.css
deleted file mode 100644
index c434088..0000000
--- a/assets/css/themes/headers/header2-orange.css
+++ /dev/null
@@ -1,18 +0,0 @@
-/*Top*/
-.loginbar li a:hover {
- color:#e67e22;
-}
-
-/*Menu*/
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- background: #e67e22 !important;
-}
-.navbar .nav > .active > a:hover {
- background: #e67e22 !important;
-}
-
-/*Search*/
-.navbar .nav li a.search-nav:hover {
- background:#e67e22 !important;
-}
diff --git a/assets/css/themes/headers/header2-red.css b/assets/css/themes/headers/header2-red.css
deleted file mode 100644
index 6610279..0000000
--- a/assets/css/themes/headers/header2-red.css
+++ /dev/null
@@ -1,18 +0,0 @@
-/*Top*/
-.loginbar li a:hover {
- color:#e74c3c;
-}
-
-/*Menu*/
-.navbar .nav > .active > a,
-.navbar .nav > .active > a:focus {
- background: #e74c3c !important;
-}
-.navbar .nav > .active > a:hover {
- background: #e74c3c !important;
-}
-
-/*Search*/
-.navbar .nav li a.search-nav:hover {
- background:#e74c3c !important;
-}
diff --git a/assets/css/themes/light.css b/assets/css/themes/light.css
deleted file mode 100644
index ce0593c..0000000
--- a/assets/css/themes/light.css
+++ /dev/null
@@ -1,341 +0,0 @@
-a:focus,
-a:hover,
-a:active {
- color: #787d80;
-}
-
-.color-green {
- color: #787d80;
-}
-
-a.read-more:hover {
- color:#787d80;
-}
-
-.linked:hover {
- color:#787d80;
-}
-
-/*Slider
-------------------------------------*/
-.da-slide h2 i {
- background:url(../../plugins/parallax-slider/img/bg-heading-light.png) repeat;
-}
-
-/*Purchase
-------------------------------------*/
-.purchase a.btn-buy {
- background:#bdc3c7;
- text-shadow:0 1px 0 #9c9fa1;
-}
-.purchase a.btn-buy:hover {
- background:#9c9fa1;
-}
-
-/*Buttons
-------------------------------------*/
-.btn-u {
- background: #bdc3c7;
-}
-
-.btn-u:hover {
- background: #9c9fa1;
-}
-
-/*Service
-------------------------------------*/
-.service i {
- color:#787d80;
-}
-
-/*Welcome Block*/
-.servive-block .span4 h4 a:hover {
- color:#787d80;
-}
-
-.servive-block .span4:hover h4,
-.servive-block .span4:hover i {
- color:#787d80;
-}
-.servive-block-in .span4 i {
- color:#787d80;
-}
-
-/*Service Blocks*/
-.service-alternative .service:hover {
- background:#787d80;;
-}
-
-/*Thumbnail (Recent Work)
-------------------------------------*/
-.thumbnail-style h3 a:hover {
- color:#787d80;
-}
-
-.thumbnail-style a.btn-more {
- background:#787d80;
-}
-.thumbnail-style a.btn-more:hover {
- box-shadow:0 0 0 2px #9c9fa1;
-}
-
-/*Carousel (Recent Work)*/
-.recent-work a:hover span {
- border-bottom:solid 2px #787d80;
-}
-
-.bx-wrapper .bx-prev {
- background-image: url(../../plugins/bxslider/images/controls-light.png);
-}
-.bx-wrapper .bx-next {
- background-image: url(../../plugins/bxslider/images/controls-light.png);
-}
-
-/*Typography
-------------------------------------*/
-/*Heading*/
-.headline h3,
-.headline h4 {
- border-bottom:2px solid #787d80;
-}
-
-/*Blockquote*/
-blockquote:hover {
- border-left-color:#787d80;
-}
-
-.hero {
- border-left-color: #787d80;
-}
-
-/*Carousel
-------------------------------------*/
-.carousel-arrow a.carousel-control:hover {
- color: #787d80;
-}
-
-/*Footer
-------------------------------------*/
-.footer a,
-.copyright a,
-.footer a:hover,
-.copyright a:hover {
- color: #ecf0f1;
-}
-
-/*Blog Posts
-------------------------------------*/
-.posts .dl-horizontal:hover {
- border-right:solid 2px #787d80;
-}
-.posts .dl-horizontal a:hover {
- color:#787d80;
-}
-.posts .dl-horizontal:hover dt img,
-.posts .dl-horizontal:hover dd a {
- color:#787d80;
- border-color:#787d80 !important;
-}
-
-/*Footer Blog*/
-.footer .dl-horizontal a:hover {
- color:#ecf0f1 !important;
-}
-
-.footer .dl-horizontal:hover {
- border-right:solid 2px #fff;
-}
-.footer .dl-horizontal a:hover {
- color:#ecf0f1;
-}
-.footer .dl-horizontal:hover dt img,
-.footer .dl-horizontal:hover dd a {
- color:#fff !important;
- border-color:#eee !important;
-}
-
-/*Tabs
-------------------------------------*/
-.nav-tabs li.active a,
-.nav-tabs li.active a:hover,
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover,
-.nav-tabs > .active > a:focus {
- background:#787d80;
-}
-.nav-tabs > li > a:hover {
- background:#787d80;
-}
-.tab-content {
- border-top:solid 2px #787d80;
-}
-
-/*Accardion
-------------------------------------*/
-.acc-home a.active,
-.acc-home a.accordion-toggle:hover {
- color:#95a5a6;
-}
-.acc-home .collapse.in {
- border-bottom:solid 1px #95a5a6;
-}
-
-/*Testimonials
-------------------------------------*/
-.testimonal-arrow a {
- color:#787d80;
-}
-.testimonal-arrow a:hover {
- background:#787d80 !important;
-}
-
-/*Breadcrumb
-------------------------------------*/
-.breadcrumb li.active,
-.breadcrumb li a:hover {
- color:#95a5a6;
-}
-
-/*About Page
-------------------------------------*/
-.team .thumbnail-style:hover h3 a {
- color:#787d80 !important;
-}
-
-/*Social Icons*/
-.team ul li i:hover {
- background:#787d80;
-}
-
-/*Pricing Page
-------------------------------------*/
-/*Pricing Head*/
-.pricing:hover h4 {
- color:#95A5A6;
-}
-
-.pricing-head h3 {
- background:#787d80;
- text-shadow:0 1px 0 #BDC3C7;
- border-bottom:solid 1px #BDC3C7;
-}
-.pricing-head h4 {
- color:#999;
- background:#fcfcfc;
- border-bottom:solid 1px #BDC3C7;
-}
-
-/*Pricing Content*/
-.pricing-content li {
- border-bottom:solid 1px #BDC3C7;
-}
-.pricing-content li i {
- color:#787d80;
-}
-
-/*Pricing Footer*/
-.pricing-footer a,
-.pricing-footer button {
- background:#787d80;
- text-shadow:0 1px 0 #9c9fa1;
- border-bottom:solid 2px #696f73;
-}
-.pricing-footer a:hover,
-.pricing-footer button:hover {
- background:#696f73;
-}
-
-/*Priceing Active*/
-.price-active h4 {
- color:#787d80;
-}
-
-.no-space-pricing .price-active .pricing-head h4,
-.no-space-pricing .pricing:hover .pricing-head h4 {
- color:#787d80;
-}
-
-/*Right Sidebar
-------------------------------------*/
-/*Right Sidebar*/
-.who li i,
-.who li:hover i,
-.who li:hover a {
- color:#787d80;
-}
-
-/*Privacy Page
-------------------------------------*/
-.privacy a:hover {
- color:#787d80;
-}
-
-/*Portfolio Page
-------------------------------------*/
-.sort li a:hover {
- color: #787d80;
- border-bottom: 1px dotted #787d80;
-}
-.sort li a.selected {
- color: #787d80;
- border-bottom: 1px solid #787d80;
-}
-
-.view a.info:hover {
- background: #787d80;
-}
-
-/*Blog Page
-------------------------------------*/
-.blog h3 {
- color:#787d80;
-}
-.blog li a:hover {
- color:#787d80;
-}
-
-/*Blog Tags*/
-ul.blog-tags a:hover,
-ul.blog-tags a:hover i {
- color:#787d80;
-}
-
-/*Blog Ads*/
-.blog-ads li img:hover {
- box-shadow:0 0 0 4px #787d80;
-}
-
-/*Blog Latest Tweets*/
-.blog-twitter p a {
- color:#787d80;
-}
-
-/*Blog Item Page
-------------------------------------*/
-.blog-item h4.media-heading span a {
- color:#787d80;
-}
-
-/*Coming Soon Page
-------------------------------------*/
-.coming-soon-border {
- border-top: solid 3px #787d80;
-}
-
-/*Search Page
-------------------------------------*/
-.booking-blocks p a {
- color: #95a5a6;
-}
-
-/*Icons Page
-------------------------------------*/
-.icon-page li:hover {
- color:#95a5a6;
-}
-
-/*Glyphicons*/
-.glyphicons-demo a:hover {
- color: #555;
- text-decoration: none;
-}
diff --git a/assets/css/themes/orange.css b/assets/css/themes/orange.css
deleted file mode 100644
index 2598c09..0000000
--- a/assets/css/themes/orange.css
+++ /dev/null
@@ -1,330 +0,0 @@
-a:focus,
-a:hover,
-a:active {
- color: #e67e22;
-}
-
-.color-green {
- color: #e67e22;
-}
-
-a.read-more:hover {
- color:#e67e22;
-}
-
-.linked:hover {
- color:#e67e22;
-}
-
-/*Slider
-------------------------------------*/
-.da-slide h2 i {
- background:url(../../plugins/parallax-slider/img/bg-heading-orange.png) repeat;
-}
-
-/*Purchase
-------------------------------------*/
-.purchase a.btn-buy {
- background:#e67e22;
- text-shadow:0 1px 0 #d35400;
-}
-.purchase a.btn-buy:hover {
- background:#d35400;
-}
-
-/*Buttons
-------------------------------------*/
-.btn-u {
- background: #e67e22;
-}
-
-.btn-u:hover {
- background: #d35400;
-}
-
-/*Service
-------------------------------------*/
-.service i {
- color:#e67e22;
-}
-
-/*Welcome Block*/
-.servive-block .span4 h4 a:hover {
- color:#e67e22;
-}
-
-.servive-block .span4:hover h4,
-.servive-block .span4:hover i {
- color:#e67e22;
-}
-.servive-block-in .span4 i {
- color:#e67e22;
-}
-
-/*Service Blocks*/
-.service-alternative .service:hover {
- background:#e67e22;
-}
-
-/*Thumbnail (Recent Work)
-------------------------------------*/
-.thumbnail-style h3 a:hover {
- color:#e67e22;
-}
-
-.thumbnail-style a.btn-more {
- background:#e67e22;
-}
-.thumbnail-style a.btn-more:hover {
- box-shadow:0 0 0 2px #d35400;
-}
-
-/*Carousel (Recent Work)*/
-.recent-work a:hover span {
- border-bottom:solid 2px #e67e22;
-}
-
-.bx-wrapper .bx-prev {
- background-image: url(../../plugins/bxslider/images/controls-orange.png);
-}
-.bx-wrapper .bx-next {
- background-image: url(../../plugins/bxslider/images/controls-orange.png);
-}
-
-/*Typography
-------------------------------------*/
-/*Heading*/
-.headline h3,
-.headline h4 {
- border-bottom:2px solid #e67e22;
-}
-
-/*Blockquote*/
-blockquote:hover {
- border-left-color:#e67e22;
-}
-
-.hero {
- border-left-color: #e67e22;
-}
-
-/*Carousel
-------------------------------------*/
-.carousel-arrow a.carousel-control:hover {
- color: #e67e22;
-}
-
-/*Footer
-------------------------------------*/
-.footer a,
-.copyright a,
-.footer a:hover,
-.copyright a:hover {
- color: #e67e22;
-}
-
-/*Footer Blog*/
-.footer .dl-horizontal a:hover {
- color:#e67e22 !important;
-}
-
-
-/*Blog Posts
-------------------------------------*/
-.posts .dl-horizontal:hover {
- border-right:solid 2px #e67e22;
-}
-.posts .dl-horizontal a:hover {
- color:#e67e22;
-}
-.posts .dl-horizontal:hover dt img,
-.posts .dl-horizontal:hover dd a {
- color:#e67e22;
- border-color:#e67e22 !important;
-}
-
-/*Tabs
-------------------------------------*/
-.nav-tabs li.active a,
-.nav-tabs li.active a:hover,
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover,
-.nav-tabs > .active > a:focus {
- background:#e67e22;
-}
-.nav-tabs > li > a:hover {
- background:#e67e22;
-}
-.tab-content {
- border-top:solid 2px #e67e22;
-}
-
-/*Accardion
-------------------------------------*/
-.acc-home a.active,
-.acc-home a.accordion-toggle:hover {
- color:#e67e22;
-}
-.acc-home .collapse.in {
- border-bottom:solid 1px #e67e22;
-}
-
-/*Testimonials
-------------------------------------*/
-.testimonal-arrow a {
- color:#e67e22;
-}
-.testimonal-arrow a:hover {
- background:#e67e22 !important;
-}
-
-/*Breadcrumb
-------------------------------------*/
-.breadcrumb li.active,
-.breadcrumb li a:hover {
- color:#e67e22;
-}
-
-/*About Page
-------------------------------------*/
-.team .thumbnail-style:hover h3 a {
- color:#e67e22 !important;
-}
-
-/*Social Icons*/
-.team ul li i:hover {
- background:#e67e22;
-}
-
-/*Pricing Page
-------------------------------------*/
-/*Pricing Head*/
-.pricing:hover h4 {
- color:#e67e22;
-}
-
-.pricing-head h3 {
- background:#e67e22;
- text-shadow:0 1px 0 #d35400;
- border-bottom:solid 1px #d35400;
-}
-.pricing-head h4 {
- color:#999;
- background:#fcfcfc;
- border-bottom:solid 1px #ffe7d1;
-}
-
-/*Pricing Content*/
-.pricing-content li {
- border-bottom:solid 1px #ffe7d1;
-}
-.pricing-content li i {
- color:#e67e22;
-}
-
-/*Pricing Footer*/
-.pricing-footer a,
-.pricing-footer button {
- background:#e67e22;
- text-shadow:0 1px 0 #d35400;
- border-bottom:solid 2px #d35400;
-}
-.pricing-footer a:hover,
-.pricing-footer button:hover {
- background:#d35400;
-}
-
-/*Priceing Active*/
-.price-active h4 {
- color:#e67e22;
-}
-
-.no-space-pricing .price-active .pricing-head h4,
-.no-space-pricing .pricing:hover .pricing-head h4 {
- color:#e67e22;
-}
-
-/*Right Sidebar
-------------------------------------*/
-/*Right Sidebar*/
-.who li i,
-.who li:hover i,
-.who li:hover a {
- color:#e67e22;
-}
-
-/*Privacy Page
-------------------------------------*/
-.privacy a:hover {
- color:#e67e22;
-}
-
-/*Portfolio Page
-------------------------------------*/
-.sort li a:hover {
- color: #e67e22;
- border-bottom: 1px dotted #e67e22;
-}
-.sort li a.selected {
- color: #e67e22;
- border-bottom: 1px solid #e67e22;
-}
-
-.view a.info:hover {
- background: #e67e22;
-}
-
-/*Blog Page
-------------------------------------*/
-.blog h3 {
- color:#e67e22;
-}
-.blog li a:hover {
- color:#e67e22;
-}
-
-/*Blog Tags*/
-ul.blog-tags a:hover,
-ul.blog-tags a:hover i {
- color:#e67e22;
-}
-
-/*Blog Ads*/
-.blog-ads li img:hover {
- box-shadow:0 0 0 4px #e67e22;
-}
-
-/*Blog Latest Tweets*/
-.blog-twitter p a {
- color:#e67e22;
-}
-
-/*Blog Item Page
-------------------------------------*/
-.blog-item h4.media-heading span a {
- color:#e67e22;
-}
-
-/*Coming Soon Page
-------------------------------------*/
-.coming-soon-border {
- border-top: solid 3px #e67e22;
-}
-
-/*Search Page
-------------------------------------*/
-.booking-blocks p a {
- color: #e67e22;
-}
-
-/*Icons Page
-------------------------------------*/
-.icon-page li:hover {
- color:#e67e22;
-}
-
-/*Glyphicons*/
-.glyphicons-demo a:hover {
- color: #e67e22;
- text-decoration: none;
-}
diff --git a/assets/css/themes/red.css b/assets/css/themes/red.css
deleted file mode 100644
index 25bba1c..0000000
--- a/assets/css/themes/red.css
+++ /dev/null
@@ -1,330 +0,0 @@
-a:focus,
-a:hover,
-a:active {
- color: #e74c3c;
-}
-
-.color-green {
- color: #e74c3c;
-}
-
-a.read-more:hover {
- color:#e74c3c;
-}
-
-.linked:hover {
- color:#e74c3c;
-}
-
-/*Slider
-------------------------------------*/
-.da-slide h2 i {
- background:url(../../plugins/parallax-slider/img/bg-heading-red.png) repeat;
-}
-
-/*Purchase
-------------------------------------*/
-.purchase a.btn-buy {
- background:#e74c3c;
- text-shadow:0 1px 0 #c0392b;
-}
-.purchase a.btn-buy:hover {
- background:#c0392b;
-}
-
-/*Buttons
-------------------------------------*/
-.btn-u {
- background: #e74c3c;
-}
-
-.btn-u:hover {
- background: #c0392b;
-}
-
-/*Service
-------------------------------------*/
-.service i {
- color:#e74c3c;
-}
-
-/*Welcome Block*/
-.servive-block .span4 h4 a:hover {
- color:#e74c3c;
-}
-
-.servive-block .span4:hover h4,
-.servive-block .span4:hover i {
- color:#e74c3c;
-}
-.servive-block-in .span4 i {
- color:#e74c3c;
-}
-
-/*Service Blocks*/
-.service-alternative .service:hover {
- background:#e74c3c;
-}
-
-/*Thumbnail (Recent Work)
-------------------------------------*/
-.thumbnail-style h3 a:hover {
- color:#e74c3c;
-}
-
-.thumbnail-style a.btn-more {
- background:#e74c3c;
-}
-.thumbnail-style a.btn-more:hover {
- box-shadow:0 0 0 2px #c0392b;
-}
-
-/*Carousel (Recent Work)*/
-.recent-work a:hover span {
- border-bottom:solid 2px #e74c3c;
-}
-
-.bx-wrapper .bx-prev {
- background-image: url(../../plugins/bxslider/images/controls-red.png);
-}
-.bx-wrapper .bx-next {
- background-image: url(../../plugins/bxslider/images/controls-red.png);
-}
-
-/*Typography
-------------------------------------*/
-/*Heading*/
-.headline h3,
-.headline h4 {
- border-bottom:2px solid #e74c3c;
-}
-
-/*Blockquote*/
-blockquote:hover {
- border-left-color:#e74c3c;
-}
-
-.hero {
- border-left-color: #e74c3c;
-}
-
-/*Carousel
-------------------------------------*/
-.carousel-arrow a.carousel-control:hover {
- color: #e74c3c;
-}
-
-/*Footer
-------------------------------------*/
-.footer a,
-.copyright a,
-.footer a:hover,
-.copyright a:hover {
- color: #e74c3c;
-}
-
-/*Footer Blog*/
-.footer .dl-horizontal a:hover {
- color:#e74c3c !important;
-}
-
-
-/*Blog Posts
-------------------------------------*/
-.posts .dl-horizontal:hover {
- border-right:solid 2px #e74c3c;
-}
-.posts .dl-horizontal a:hover {
- color:#e74c3c;
-}
-.posts .dl-horizontal:hover dt img,
-.posts .dl-horizontal:hover dd a {
- color:#e74c3c;
- border-color:#e74c3c !important;
-}
-
-/*Tabs
-------------------------------------*/
-.nav-tabs li.active a,
-.nav-tabs li.active a:hover,
-.nav-tabs > .active > a,
-.nav-tabs > .active > a:hover,
-.nav-tabs > .active > a:focus {
- background:#e74c3c;
-}
-.nav-tabs > li > a:hover {
- background:#e74c3c;
-}
-.tab-content {
- border-top:solid 2px #e74c3c;
-}
-
-/*Accardion
-------------------------------------*/
-.acc-home a.active,
-.acc-home a.accordion-toggle:hover {
- color:#e74c3c;
-}
-.acc-home .collapse.in {
- border-bottom:solid 1px #e74c3c;
-}
-
-/*Testimonials
-------------------------------------*/
-.testimonal-arrow a {
- color:#e74c3c;
-}
-.testimonal-arrow a:hover {
- background:#e74c3c !important;
-}
-
-/*Breadcrumb
-------------------------------------*/
-.breadcrumb li.active,
-.breadcrumb li a:hover {
- color:#e74c3c;
-}
-
-/*About Page
-------------------------------------*/
-.team .thumbnail-style:hover h3 a {
- color:#e74c3c !important;
-}
-
-/*Social Icons*/
-.team ul li i:hover {
- background:#e74c3c;
-}
-
-/*Pricing Page
-------------------------------------*/
-/*Pricing Head*/
-.pricing:hover h4 {
- color:#e74c3c;
-}
-
-.pricing-head h3 {
- background:#e74c3c;
- text-shadow:0 1px 0 #d35400;
- border-bottom:solid 1px #d35400;
-}
-.pricing-head h4 {
- color:#999;
- background:#fcfcfc;
- border-bottom:solid 1px #ffe7d1;
-}
-
-/*Pricing Content*/
-.pricing-content li {
- border-bottom:solid 1px #ffe7d1;
-}
-.pricing-content li i {
- color:#e74c3c;
-}
-
-/*Pricing Footer*/
-.pricing-footer a,
-.pricing-footer button {
- background:#e74c3c;
- text-shadow:0 1px 0 #d35400;
- border-bottom:solid 2px #d35400;
-}
-.pricing-footer a:hover,
-.pricing-footer button:hover {
- background:#d35400;
-}
-
-/*Priceing Active*/
-.price-active h4 {
- color:#e74c3c;
-}
-
-.no-space-pricing .price-active .pricing-head h4,
-.no-space-pricing .pricing:hover .pricing-head h4 {
- color:#e74c3c;
-}
-
-/*Right Sidebar
-------------------------------------*/
-/*Right Sidebar*/
-.who li i,
-.who li:hover i,
-.who li:hover a {
- color:#e74c3c;
-}
-
-/*Privacy Page
-------------------------------------*/
-.privacy a:hover {
- color:#e74c3c;
-}
-
-/*Portfolio Page
-------------------------------------*/
-.sort li a:hover {
- color: #e74c3c;
- border-bottom: 1px dotted #e74c3c;
-}
-.sort li a.selected {
- color: #e74c3c;
- border-bottom: 1px solid #e74c3c;
-}
-
-.view a.info:hover {
- background: #e74c3c;
-}
-
-/*Blog Page
-------------------------------------*/
-.blog h3 {
- color:#e74c3c;
-}
-.blog li a:hover {
- color:#e74c3c;
-}
-
-/*Blog Tags*/
-ul.blog-tags a:hover,
-ul.blog-tags a:hover i {
- color:#e74c3c;
-}
-
-/*Blog Ads*/
-.blog-ads li img:hover {
- box-shadow:0 0 0 4px #e74c3c;
-}
-
-/*Blog Latest Tweets*/
-.blog-twitter p a {
- color:#e74c3c;
-}
-
-/*Blog Item Page
-------------------------------------*/
-.blog-item h4.media-heading span a {
- color:#e74c3c;
-}
-
-/*Coming Soon Page
-------------------------------------*/
-.coming-soon-border {
- border-top: solid 3px #e74c3c;
-}
-
-/*Search Page
-------------------------------------*/
-.booking-blocks p a {
- color: #e74c3c;
-}
-
-/*Icons Page
-------------------------------------*/
-.icon-page li:hover {
- color:#e74c3c;
-}
-
-/*Glyphicons*/
-.glyphicons-demo a:hover {
- color: #e74c3c;
- text-decoration: none;
-}
diff --git a/assets/img/bg-black.png b/assets/img/bg-black.png
deleted file mode 100644
index 3cb2057..0000000
Binary files a/assets/img/bg-black.png and /dev/null differ
diff --git a/assets/img/bg-green.png b/assets/img/bg-green.png
deleted file mode 100644
index 18c9a34..0000000
Binary files a/assets/img/bg-green.png and /dev/null differ
diff --git a/assets/img/bg-white.png b/assets/img/bg-white.png
deleted file mode 100644
index 0d87380..0000000
Binary files a/assets/img/bg-white.png and /dev/null differ
diff --git a/assets/img/breadcrumbs.png b/assets/img/breadcrumbs.png
deleted file mode 100644
index 97a5ddf..0000000
Binary files a/assets/img/breadcrumbs.png and /dev/null differ
diff --git a/assets/img/css-blue.png b/assets/img/css-blue.png
deleted file mode 100644
index 286df0f..0000000
Binary files a/assets/img/css-blue.png and /dev/null differ
diff --git a/assets/img/css-default.png b/assets/img/css-default.png
deleted file mode 100644
index 286df0f..0000000
Binary files a/assets/img/css-default.png and /dev/null differ
diff --git a/assets/img/css-light.png b/assets/img/css-light.png
deleted file mode 100644
index 286df0f..0000000
Binary files a/assets/img/css-light.png and /dev/null differ
diff --git a/assets/img/css-orange.png b/assets/img/css-orange.png
deleted file mode 100644
index 286df0f..0000000
Binary files a/assets/img/css-orange.png and /dev/null differ
diff --git a/assets/img/css-red.png b/assets/img/css-red.png
deleted file mode 100644
index 286df0f..0000000
Binary files a/assets/img/css-red.png and /dev/null differ
diff --git a/assets/img/icons/social/amazon.png b/assets/img/icons/social/amazon.png
deleted file mode 100644
index 359a469..0000000
Binary files a/assets/img/icons/social/amazon.png and /dev/null differ
diff --git a/assets/img/icons/social/behance.png b/assets/img/icons/social/behance.png
deleted file mode 100644
index 6923893..0000000
Binary files a/assets/img/icons/social/behance.png and /dev/null differ
diff --git a/assets/img/icons/social/blogger.png b/assets/img/icons/social/blogger.png
deleted file mode 100644
index 6579a6c..0000000
Binary files a/assets/img/icons/social/blogger.png and /dev/null differ
diff --git a/assets/img/icons/social/deviantart.png b/assets/img/icons/social/deviantart.png
deleted file mode 100644
index 2762816..0000000
Binary files a/assets/img/icons/social/deviantart.png and /dev/null differ
diff --git a/assets/img/icons/social/dribbble.png b/assets/img/icons/social/dribbble.png
deleted file mode 100644
index bca0bad..0000000
Binary files a/assets/img/icons/social/dribbble.png and /dev/null differ
diff --git a/assets/img/icons/social/dropbox.png b/assets/img/icons/social/dropbox.png
deleted file mode 100644
index 31ed5ae..0000000
Binary files a/assets/img/icons/social/dropbox.png and /dev/null differ
diff --git a/assets/img/icons/social/evernote.png b/assets/img/icons/social/evernote.png
deleted file mode 100644
index 5cac5ae..0000000
Binary files a/assets/img/icons/social/evernote.png and /dev/null differ
diff --git a/assets/img/icons/social/facebook.png b/assets/img/icons/social/facebook.png
deleted file mode 100644
index db34236..0000000
Binary files a/assets/img/icons/social/facebook.png and /dev/null differ
diff --git a/assets/img/icons/social/forrst.png b/assets/img/icons/social/forrst.png
deleted file mode 100644
index fe07f3c..0000000
Binary files a/assets/img/icons/social/forrst.png and /dev/null differ
diff --git a/assets/img/icons/social/github.png b/assets/img/icons/social/github.png
deleted file mode 100644
index b06cb56..0000000
Binary files a/assets/img/icons/social/github.png and /dev/null differ
diff --git a/assets/img/icons/social/googleplus.png b/assets/img/icons/social/googleplus.png
deleted file mode 100644
index 53dce47..0000000
Binary files a/assets/img/icons/social/googleplus.png and /dev/null differ
diff --git a/assets/img/icons/social/jolicloud.png b/assets/img/icons/social/jolicloud.png
deleted file mode 100644
index 9cad846..0000000
Binary files a/assets/img/icons/social/jolicloud.png and /dev/null differ
diff --git a/assets/img/icons/social/last-fm.png b/assets/img/icons/social/last-fm.png
deleted file mode 100644
index 5fd94c5..0000000
Binary files a/assets/img/icons/social/last-fm.png and /dev/null differ
diff --git a/assets/img/icons/social/linkedin.png b/assets/img/icons/social/linkedin.png
deleted file mode 100644
index 20779f9..0000000
Binary files a/assets/img/icons/social/linkedin.png and /dev/null differ
diff --git a/assets/img/icons/social/picasa.png b/assets/img/icons/social/picasa.png
deleted file mode 100644
index a83a61e..0000000
Binary files a/assets/img/icons/social/picasa.png and /dev/null differ
diff --git a/assets/img/icons/social/pintrest.png b/assets/img/icons/social/pintrest.png
deleted file mode 100644
index 0f39776..0000000
Binary files a/assets/img/icons/social/pintrest.png and /dev/null differ
diff --git a/assets/img/icons/social/rss.png b/assets/img/icons/social/rss.png
deleted file mode 100644
index 34001bd..0000000
Binary files a/assets/img/icons/social/rss.png and /dev/null differ
diff --git a/assets/img/icons/social/skype.png b/assets/img/icons/social/skype.png
deleted file mode 100644
index 1c1a2f1..0000000
Binary files a/assets/img/icons/social/skype.png and /dev/null differ
diff --git a/assets/img/icons/social/spotify.png b/assets/img/icons/social/spotify.png
deleted file mode 100644
index e4a74f2..0000000
Binary files a/assets/img/icons/social/spotify.png and /dev/null differ
diff --git a/assets/img/icons/social/stumbleupon.png b/assets/img/icons/social/stumbleupon.png
deleted file mode 100644
index d651f0f..0000000
Binary files a/assets/img/icons/social/stumbleupon.png and /dev/null differ
diff --git a/assets/img/icons/social/tumblr.png b/assets/img/icons/social/tumblr.png
deleted file mode 100644
index 6e31808..0000000
Binary files a/assets/img/icons/social/tumblr.png and /dev/null differ
diff --git a/assets/img/icons/social/twitter.png b/assets/img/icons/social/twitter.png
deleted file mode 100644
index 4399f54..0000000
Binary files a/assets/img/icons/social/twitter.png and /dev/null differ
diff --git a/assets/img/icons/social/vimeo.png b/assets/img/icons/social/vimeo.png
deleted file mode 100644
index 7ec4af1..0000000
Binary files a/assets/img/icons/social/vimeo.png and /dev/null differ
diff --git a/assets/img/icons/social/wordpress.png b/assets/img/icons/social/wordpress.png
deleted file mode 100644
index 63bcfaf..0000000
Binary files a/assets/img/icons/social/wordpress.png and /dev/null differ
diff --git a/assets/img/icons/social/xing.png b/assets/img/icons/social/xing.png
deleted file mode 100644
index ffcd701..0000000
Binary files a/assets/img/icons/social/xing.png and /dev/null differ
diff --git a/assets/img/icons/social/yahoo.png b/assets/img/icons/social/yahoo.png
deleted file mode 100644
index db4f44d..0000000
Binary files a/assets/img/icons/social/yahoo.png and /dev/null differ
diff --git a/assets/img/icons/social/youtube.png b/assets/img/icons/social/youtube.png
deleted file mode 100644
index d2e54e6..0000000
Binary files a/assets/img/icons/social/youtube.png and /dev/null differ
diff --git a/assets/img/overlay-icon.png b/assets/img/overlay-icon.png
deleted file mode 100644
index ecdb629..0000000
Binary files a/assets/img/overlay-icon.png and /dev/null differ
diff --git a/assets/img/up.png b/assets/img/up.png
deleted file mode 100644
index 2caeba1..0000000
Binary files a/assets/img/up.png and /dev/null differ
diff --git a/assets/js/app.js b/assets/js/app.js
deleted file mode 100644
index 5353c77..0000000
--- a/assets/js/app.js
+++ /dev/null
@@ -1,181 +0,0 @@
-var App = function () {
-
- function handleIEFixes() {
- //fix html5 placeholder attribute for ie7 & ie8
- if (jQuery.browser.msie && jQuery.browser.version.substr(0, 1) < 9) { // ie7&ie8
- jQuery('input[placeholder], textarea[placeholder]').each(function () {
- var input = jQuery(this);
-
- jQuery(input).val(input.attr('placeholder'));
-
- jQuery(input).focus(function () {
- if (input.val() == input.attr('placeholder')) {
- input.val('');
- }
- });
-
- jQuery(input).blur(function () {
- if (input.val() == '' || input.val() == input.attr('placeholder')) {
- input.val(input.attr('placeholder'));
- }
- });
- });
- }
- }
-
- function handleBootstrap() {
- jQuery('.carousel').carousel({
- interval: 15000,
- pause: 'hover'
- });
- jQuery('.tooltips').tooltip();
- jQuery('.popovers').popover();
- }
-
- function handleMisc() {
- jQuery('.top').click(function () {
- jQuery('html,body').animate({
- scrollTop: jQuery('body').offset().top
- }, 'slow');
- }); //move to top navigator
- }
-
- function handleSearch() {
- jQuery('.search').click(function () {
- if(jQuery('.search-btn').hasClass('icon-search')){
- jQuery('.search-open').fadeIn(500);
- jQuery('.search-btn').removeClass('icon-search');
- jQuery('.search-btn').addClass('icon-remove');
- } else {
- jQuery('.search-open').fadeOut(500);
- jQuery('.search-btn').addClass('icon-search');
- jQuery('.search-btn').removeClass('icon-remove');
- }
- });
- }
-
- function handleSwitcher() {
- var panel = $('.style-switcher');
-
- $('.style-switcher-btn').click(function () {
- $('.style-switcher').show();
- });
-
- $('.theme-close').click(function () {
- $('.style-switcher').hide();
- });
-
- $('li', panel).click(function () {
- var color = $(this).attr("data-style");
- var data_header = $(this).attr("data-header");
- setColor(color, data_header);
- $('.unstyled li', panel).removeClass("theme-active");
- $(this).addClass("theme-active");
- });
-
- var setColor = function (color, data_header) {
- $('#style_color').attr("href", "assets/css/themes/" + color + ".css");
- if(data_header == 'light'){
- $('#style_color-header-1').attr("href", "assets/css/themes/headers/header1-" + color + ".css");
- $('#logo-header').attr("src", "assets/img/css-" + color + ".png");
- $('#logo-footer').attr("src", "assets/img/css-" + color + ".png");
- } else if(data_header == 'dark'){
- $('#style_color-header-2').attr("href", "assets/css/themes/headers/header2-" + color + ".css");
- $('#logo-header').attr("src", "assets/img/css-" + color + ".png");
- $('#logo-footer').attr("src", "assets/img/css-" + color + ".png");
- }
- }
- }
-
- return {
- init: function () {
- handleBootstrap();
- handleIEFixes();
- handleMisc();
- handleSearch();
- handleSwitcher();
- },
-
- initSliders: function () {
- $('#clients-flexslider').flexslider({
- animation: "slide",
- easing: "swing",
- animationLoop: false,
- itemWidth: 1,
- itemMargin: 1,
- minItems: 2,
- maxItems: 9,
- controlNav: true,
- directionNav: true,
- move: 0,
- keyboard: true
-// end: function(slider){
-// $.getJSON('https://api.github.com/orgs/ControlSystemStudio/members', function(data) {
-// var items = [];
-//
-// $.each(data, function(key, val) {
-// items.push('
'+
-// ''+
-// ' '+
-// ' '+
-// ' '+
-// ' ');
-// });
-//
-// $(items.join('')).appendTo('#collaborationList');
-//
-// slider.addSlide(items.join(''));
-// slider.count = slider.find('.slides li').length;
-//
-//
-// });
-// }
- });
-
- $('#photo-flexslider').flexslider({
- animation: "slide",
- controlNav: false,
- animationLoop: false,
- itemWidth: 80,
- itemMargin: 0
- });
-
- $('#testimonal_carousel').collapse({
- toggle: false
- });
- },
-
- initFancybox: function () {
- jQuery(".fancybox-button").fancybox({
- groupAttr: 'data-rel',
- prevEffect: 'none',
- nextEffect: 'none',
- closeBtn: true,
- helpers: {
- title: {
- type: 'inside'
- }
- }
- });
- },
-
- initBxSlider: function () {
- $('.bxslider').bxSlider({
- minSlides: 3,
- maxSlides: 3,
- slideWidth: 360,
- slideMargin: 10
- });
- },
-
- initBxSlider1: function () {
- $('.bxslider').bxSlider({
- minSlides: 4,
- maxSlides: 4,
- slideWidth: 360,
- slideMargin: 10
- });
- }
-
- };
-}();
\ No newline at end of file
diff --git a/assets/js/date.js b/assets/js/date.js
deleted file mode 100644
index 2d52e9a..0000000
--- a/assets/js/date.js
+++ /dev/null
@@ -1,104 +0,0 @@
-/**
- * Version: 1.0 Alpha-1
- * Build Date: 13-Nov-2007
- * Copyright (c) 2006-2007, Coolite Inc. (http://www.coolite.com/). All rights reserved.
- * License: Licensed under The MIT License. See license.txt and http://www.datejs.com/license/.
- * Website: http://www.datejs.com/ or http://www.coolite.com/datejs/
- */
-Date.CultureInfo={name:"en-US",englishName:"English (United States)",nativeName:"English (United States)",dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],abbreviatedDayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],shortestDayNames:["Su","Mo","Tu","We","Th","Fr","Sa"],firstLetterDayNames:["S","M","T","W","T","F","S"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],abbreviatedMonthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],amDesignator:"AM",pmDesignator:"PM",firstDayOfWeek:0,twoDigitYearMax:2029,dateElementOrder:"mdy",formatPatterns:{shortDate:"M/d/yyyy",longDate:"dddd, MMMM dd, yyyy",shortTime:"h:mm tt",longTime:"h:mm:ss tt",fullDateTime:"dddd, MMMM dd, yyyy h:mm:ss tt",sortableDateTime:"yyyy-MM-ddTHH:mm:ss",universalSortableDateTime:"yyyy-MM-dd HH:mm:ssZ",rfc1123:"ddd, dd MMM yyyy HH:mm:ss GMT",monthDay:"MMMM dd",yearMonth:"MMMM, yyyy"},regexPatterns:{jan:/^jan(uary)?/i,feb:/^feb(ruary)?/i,mar:/^mar(ch)?/i,apr:/^apr(il)?/i,may:/^may/i,jun:/^jun(e)?/i,jul:/^jul(y)?/i,aug:/^aug(ust)?/i,sep:/^sep(t(ember)?)?/i,oct:/^oct(ober)?/i,nov:/^nov(ember)?/i,dec:/^dec(ember)?/i,sun:/^su(n(day)?)?/i,mon:/^mo(n(day)?)?/i,tue:/^tu(e(s(day)?)?)?/i,wed:/^we(d(nesday)?)?/i,thu:/^th(u(r(s(day)?)?)?)?/i,fri:/^fr(i(day)?)?/i,sat:/^sa(t(urday)?)?/i,future:/^next/i,past:/^last|past|prev(ious)?/i,add:/^(\+|after|from)/i,subtract:/^(\-|before|ago)/i,yesterday:/^yesterday/i,today:/^t(oday)?/i,tomorrow:/^tomorrow/i,now:/^n(ow)?/i,millisecond:/^ms|milli(second)?s?/i,second:/^sec(ond)?s?/i,minute:/^min(ute)?s?/i,hour:/^h(ou)?rs?/i,week:/^w(ee)?k/i,month:/^m(o(nth)?s?)?/i,day:/^d(ays?)?/i,year:/^y((ea)?rs?)?/i,shortMeridian:/^(a|p)/i,longMeridian:/^(a\.?m?\.?|p\.?m?\.?)/i,timezone:/^((e(s|d)t|c(s|d)t|m(s|d)t|p(s|d)t)|((gmt)?\s*(\+|\-)\s*\d\d\d\d?)|gmt)/i,ordinalSuffix:/^\s*(st|nd|rd|th)/i,timeContext:/^\s*(\:|a|p)/i},abbreviatedTimeZoneStandard:{GMT:"-000",EST:"-0400",CST:"-0500",MST:"-0600",PST:"-0700"},abbreviatedTimeZoneDST:{GMT:"-000",EDT:"-0500",CDT:"-0600",MDT:"-0700",PDT:"-0800"}};
-Date.getMonthNumberFromName=function(name){var n=Date.CultureInfo.monthNames,m=Date.CultureInfo.abbreviatedMonthNames,s=name.toLowerCase();for(var i=0;idate)?1:(this=start.getTime()&&t<=end.getTime();};Date.prototype.addMilliseconds=function(value){this.setMilliseconds(this.getMilliseconds()+value);return this;};Date.prototype.addSeconds=function(value){return this.addMilliseconds(value*1000);};Date.prototype.addMinutes=function(value){return this.addMilliseconds(value*60000);};Date.prototype.addHours=function(value){return this.addMilliseconds(value*3600000);};Date.prototype.addDays=function(value){return this.addMilliseconds(value*86400000);};Date.prototype.addWeeks=function(value){return this.addMilliseconds(value*604800000);};Date.prototype.addMonths=function(value){var n=this.getDate();this.setDate(1);this.setMonth(this.getMonth()+value);this.setDate(Math.min(n,this.getDaysInMonth()));return this;};Date.prototype.addYears=function(value){return this.addMonths(value*12);};Date.prototype.add=function(config){if(typeof config=="number"){this._orient=config;return this;}
-var x=config;if(x.millisecond||x.milliseconds){this.addMilliseconds(x.millisecond||x.milliseconds);}
-if(x.second||x.seconds){this.addSeconds(x.second||x.seconds);}
-if(x.minute||x.minutes){this.addMinutes(x.minute||x.minutes);}
-if(x.hour||x.hours){this.addHours(x.hour||x.hours);}
-if(x.month||x.months){this.addMonths(x.month||x.months);}
-if(x.year||x.years){this.addYears(x.year||x.years);}
-if(x.day||x.days){this.addDays(x.day||x.days);}
-return this;};Date._validate=function(value,min,max,name){if(typeof value!="number"){throw new TypeError(value+" is not a Number.");}else if(valuemax){throw new RangeError(value+" is not a valid value for "+name+".");}
-return true;};Date.validateMillisecond=function(n){return Date._validate(n,0,999,"milliseconds");};Date.validateSecond=function(n){return Date._validate(n,0,59,"seconds");};Date.validateMinute=function(n){return Date._validate(n,0,59,"minutes");};Date.validateHour=function(n){return Date._validate(n,0,23,"hours");};Date.validateDay=function(n,year,month){return Date._validate(n,1,Date.getDaysInMonth(year,month),"days");};Date.validateMonth=function(n){return Date._validate(n,0,11,"months");};Date.validateYear=function(n){return Date._validate(n,1,9999,"seconds");};Date.prototype.set=function(config){var x=config;if(!x.millisecond&&x.millisecond!==0){x.millisecond=-1;}
-if(!x.second&&x.second!==0){x.second=-1;}
-if(!x.minute&&x.minute!==0){x.minute=-1;}
-if(!x.hour&&x.hour!==0){x.hour=-1;}
-if(!x.day&&x.day!==0){x.day=-1;}
-if(!x.month&&x.month!==0){x.month=-1;}
-if(!x.year&&x.year!==0){x.year=-1;}
-if(x.millisecond!=-1&&Date.validateMillisecond(x.millisecond)){this.addMilliseconds(x.millisecond-this.getMilliseconds());}
-if(x.second!=-1&&Date.validateSecond(x.second)){this.addSeconds(x.second-this.getSeconds());}
-if(x.minute!=-1&&Date.validateMinute(x.minute)){this.addMinutes(x.minute-this.getMinutes());}
-if(x.hour!=-1&&Date.validateHour(x.hour)){this.addHours(x.hour-this.getHours());}
-if(x.month!==-1&&Date.validateMonth(x.month)){this.addMonths(x.month-this.getMonth());}
-if(x.year!=-1&&Date.validateYear(x.year)){this.addYears(x.year-this.getFullYear());}
-if(x.day!=-1&&Date.validateDay(x.day,this.getFullYear(),this.getMonth())){this.addDays(x.day-this.getDate());}
-if(x.timezone){this.setTimezone(x.timezone);}
-if(x.timezoneOffset){this.setTimezoneOffset(x.timezoneOffset);}
-return this;};Date.prototype.clearTime=function(){this.setHours(0);this.setMinutes(0);this.setSeconds(0);this.setMilliseconds(0);return this;};Date.prototype.isLeapYear=function(){var y=this.getFullYear();return(((y%4===0)&&(y%100!==0))||(y%400===0));};Date.prototype.isWeekday=function(){return!(this.is().sat()||this.is().sun());};Date.prototype.getDaysInMonth=function(){return Date.getDaysInMonth(this.getFullYear(),this.getMonth());};Date.prototype.moveToFirstDayOfMonth=function(){return this.set({day:1});};Date.prototype.moveToLastDayOfMonth=function(){return this.set({day:this.getDaysInMonth()});};Date.prototype.moveToDayOfWeek=function(day,orient){var diff=(day-this.getDay()+7*(orient||+1))%7;return this.addDays((diff===0)?diff+=7*(orient||+1):diff);};Date.prototype.moveToMonth=function(month,orient){var diff=(month-this.getMonth()+12*(orient||+1))%12;return this.addMonths((diff===0)?diff+=12*(orient||+1):diff);};Date.prototype.getDayOfYear=function(){return Math.floor((this-new Date(this.getFullYear(),0,1))/86400000);};Date.prototype.getWeekOfYear=function(firstDayOfWeek){var y=this.getFullYear(),m=this.getMonth(),d=this.getDate();var dow=firstDayOfWeek||Date.CultureInfo.firstDayOfWeek;var offset=7+1-new Date(y,0,1).getDay();if(offset==8){offset=1;}
-var daynum=((Date.UTC(y,m,d,0,0,0)-Date.UTC(y,0,1,0,0,0))/86400000)+1;var w=Math.floor((daynum-offset+7)/7);if(w===dow){y--;var prevOffset=7+1-new Date(y,0,1).getDay();if(prevOffset==2||prevOffset==8){w=53;}else{w=52;}}
-return w;};Date.prototype.isDST=function(){console.log('isDST');return this.toString().match(/(E|C|M|P)(S|D)T/)[2]=="D";};Date.prototype.getTimezone=function(){return Date.getTimezoneAbbreviation(this.getUTCOffset,this.isDST());};Date.prototype.setTimezoneOffset=function(s){var here=this.getTimezoneOffset(),there=Number(s)*-6/10;this.addMinutes(there-here);return this;};Date.prototype.setTimezone=function(s){return this.setTimezoneOffset(Date.getTimezoneOffset(s));};Date.prototype.getUTCOffset=function(){var n=this.getTimezoneOffset()*-10/6,r;if(n<0){r=(n-10000).toString();return r[0]+r.substr(2);}else{r=(n+10000).toString();return"+"+r.substr(1);}};Date.prototype.getDayName=function(abbrev){return abbrev?Date.CultureInfo.abbreviatedDayNames[this.getDay()]:Date.CultureInfo.dayNames[this.getDay()];};Date.prototype.getMonthName=function(abbrev){return abbrev?Date.CultureInfo.abbreviatedMonthNames[this.getMonth()]:Date.CultureInfo.monthNames[this.getMonth()];};Date.prototype._toString=Date.prototype.toString;Date.prototype.toString=function(format){var self=this;var p=function p(s){return(s.toString().length==1)?"0"+s:s;};return format?format.replace(/dd?d?d?|MM?M?M?|yy?y?y?|hh?|HH?|mm?|ss?|tt?|zz?z?/g,function(format){switch(format){case"hh":return p(self.getHours()<13?self.getHours():(self.getHours()-12));case"h":return self.getHours()<13?self.getHours():(self.getHours()-12);case"HH":return p(self.getHours());case"H":return self.getHours();case"mm":return p(self.getMinutes());case"m":return self.getMinutes();case"ss":return p(self.getSeconds());case"s":return self.getSeconds();case"yyyy":return self.getFullYear();case"yy":return self.getFullYear().toString().substring(2,4);case"dddd":return self.getDayName();case"ddd":return self.getDayName(true);case"dd":return p(self.getDate());case"d":return self.getDate().toString();case"MMMM":return self.getMonthName();case"MMM":return self.getMonthName(true);case"MM":return p((self.getMonth()+1));case"M":return self.getMonth()+1;case"t":return self.getHours()<12?Date.CultureInfo.amDesignator.substring(0,1):Date.CultureInfo.pmDesignator.substring(0,1);case"tt":return self.getHours()<12?Date.CultureInfo.amDesignator:Date.CultureInfo.pmDesignator;case"zzz":case"zz":case"z":return"";}}):this._toString();};
-Date.now=function(){return new Date();};Date.today=function(){return Date.now().clearTime();};Date.prototype._orient=+1;Date.prototype.next=function(){this._orient=+1;return this;};Date.prototype.last=Date.prototype.prev=Date.prototype.previous=function(){this._orient=-1;return this;};Date.prototype._is=false;Date.prototype.is=function(){this._is=true;return this;};Number.prototype._dateElement="day";Number.prototype.fromNow=function(){var c={};c[this._dateElement]=this;return Date.now().add(c);};Number.prototype.ago=function(){var c={};c[this._dateElement]=this*-1;return Date.now().add(c);};(function(){var $D=Date.prototype,$N=Number.prototype;var dx=("sunday monday tuesday wednesday thursday friday saturday").split(/\s/),mx=("january february march april may june july august september october november december").split(/\s/),px=("Millisecond Second Minute Hour Day Week Month Year").split(/\s/),de;var df=function(n){return function(){if(this._is){this._is=false;return this.getDay()==n;}
-return this.moveToDayOfWeek(n,this._orient);};};for(var i=0;i0&&!last){try{q=d.call(this,r[1]);}catch(ex){last=true;}}else{last=true;}
-if(!last&&q[1].length===0){last=true;}
-if(!last){var qx=[];for(var j=0;j0){rx[0]=rx[0].concat(p[0]);rx[1]=p[1];}}
-if(rx[1].length1){args=Array.prototype.slice.call(arguments);}else if(arguments[0]instanceof Array){args=arguments[0];}
-if(args){for(var i=0,px=args.shift();i2)?n:(n+(((n+2000)Date.getDaysInMonth(this.year,this.month)){throw new RangeError(this.day+" is not a valid value for days.");}
-var r=new Date(this.year,this.month,this.day,this.hour,this.minute,this.second);if(this.timezone){r.set({timezone:this.timezone});}else if(this.timezoneOffset){r.set({timezoneOffset:this.timezoneOffset});}
-return r;},finish:function(x){x=(x instanceof Array)?flattenAndCompact(x):[x];if(x.length===0){return null;}
-for(var i=0;i=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;ba ",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&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 p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(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 bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(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 bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML=" ",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML=" ";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="
",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d ",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="
",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML=" ",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/ ]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""," "],legend:[1,""," "],thead:[1,""],tr:[2,""],td:[3,""],col:[2,""],area:[1,""," "],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X","
"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>$2>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/
-
-
-
-
-
-
-
-
diff --git a/assets/plugins/countdown/plugin/countdownGlowing.gif b/assets/plugins/countdown/plugin/countdownGlowing.gif
deleted file mode 100644
index fce60ec..0000000
Binary files a/assets/plugins/countdown/plugin/countdownGlowing.gif and /dev/null differ
diff --git a/assets/plugins/countdown/plugin/countdownLED.png b/assets/plugins/countdown/plugin/countdownLED.png
deleted file mode 100644
index 02c7a9d..0000000
Binary files a/assets/plugins/countdown/plugin/countdownLED.png and /dev/null differ
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ar.js b/assets/plugins/countdown/plugin/jquery.countdown-ar.js
deleted file mode 100644
index 3272524..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ar.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Arabic (عربي) initialisation for the jQuery countdown extension
- Translated by Talal Al Asmari (talal@psdgroups.com), April 2009. */
-(function($) {
- $.countdown.regional['ar'] = {
- labels: ['سنوات','أشهر','أسابيع','أيام','ساعات','دقائق','ثواني'],
- labels1: ['سنة','شهر','أسبوع','يوم','ساعة','دقيقة','ثانية'],
- compactLabels: ['س', 'ش', 'أ', 'ي'],
- whichLabels: null,
- digits: ['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩'],
- timeSeparator: ':', isRTL: true};
- $.countdown.setDefaults($.countdown.regional['ar']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-bg.js b/assets/plugins/countdown/plugin/jquery.countdown-bg.js
deleted file mode 100644
index c194813..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-bg.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Bulgarian initialisation for the jQuery countdown extension
- * Written by Manol Trendafilov manol@rastermania.com (2010) */
-(function($) {
- $.countdown.regional['bg'] = {
- labels: ['Години', 'Месеца', 'Седмица', 'Дни', 'Часа', 'Минути', 'Секунди'],
- labels1: ['Година', 'Месец', 'Седмица', 'Ден', 'Час', 'Минута', 'Секунда'],
- compactLabels: ['l', 'm', 'n', 'd'], compactLabels1: ['g', 'm', 'n', 'd'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['bg']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-bn.js b/assets/plugins/countdown/plugin/jquery.countdown-bn.js
deleted file mode 100644
index 3823fd6..0000000
Binary files a/assets/plugins/countdown/plugin/jquery.countdown-bn.js and /dev/null differ
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-bs.js b/assets/plugins/countdown/plugin/jquery.countdown-bs.js
deleted file mode 100644
index 212c70c..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-bs.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Bosnian Latin initialisation for the jQuery countdown extension
- * Written by Miralem Mehic miralem@mehic.info (2011) */
-(function($) {
- $.countdown.regional['bs'] = {
- labels: ['Godina', 'Mjeseci', 'Sedmica', 'Dana', 'Sati', 'Minuta', 'Sekundi'],
- labels1: ['Godina', 'Mjesec', 'Sedmica', 'Dan', 'Sat', 'Minuta', 'Sekunda'],
- labels2: ['Godine', 'Mjeseca', 'Sedmica', 'Dana', 'Sata', 'Minute', 'Sekunde'],
- compactLabels: ['g', 'm', 't', 'd'],
- whichLabels: function(amount) {
- return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['bs']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ca.js b/assets/plugins/countdown/plugin/jquery.countdown-ca.js
deleted file mode 100644
index 2d65336..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ca.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Catalan initialisation for the jQuery countdown extension
- Written by Amanida Media www.amanidamedia.com (2010) */
-(function($) {
- $.countdown.regional['ca'] = {
- labels: ['Anys', 'Mesos', 'Setmanes', 'Dies', 'Hores', 'Minuts', 'Segons'],
- labels1: ['Anys', 'Mesos', 'Setmanes', 'Dies', 'Hores', 'Minuts', 'Segons'],
- compactLabels: ['a', 'm', 's', 'g'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['ca']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-cs.js b/assets/plugins/countdown/plugin/jquery.countdown-cs.js
deleted file mode 100644
index 5c3813c..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-cs.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Czech initialisation for the jQuery countdown extension
- * Written by Roman Chlebec (creamd@c64.sk) (2008) */
-(function($) {
- $.countdown.regional['cs'] = {
- labels: ['Roků', 'Měsíců', 'Týdnů', 'Dní', 'Hodin', 'Minut', 'Sekund'],
- labels1: ['Rok', 'Měsíc', 'Týden', 'Den', 'Hodina', 'Minuta', 'Sekunda'],
- labels2: ['Roky', 'Měsíce', 'Týdny', 'Dny', 'Hodiny', 'Minuty', 'Sekundy'],
- compactLabels: ['r', 'm', 't', 'd'],
- whichLabels: function(amount) {
- return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['cs']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-cy.js b/assets/plugins/countdown/plugin/jquery.countdown-cy.js
deleted file mode 100644
index caf2d64..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-cy.js
+++ /dev/null
@@ -1 +0,0 @@
-/* http://keith-wood.name/countdown.html
Welsh initialisation for the jQuery countdown extension
Written by Gareth Jones | http://garethvjones.com | October 2011. */
(function($) {
$.countdown.regional['cy'] = {
labels: ['Blynyddoedd', 'Mis', 'Wythnosau', 'Diwrnodau', 'Oriau', 'Munudau', 'Eiliadau'],
labels1: ['Blwyddyn', 'Mis', 'Wythnos', 'Diwrnod', 'Awr', 'Munud', 'Eiliad'],
compactLabels: ['b', 'm', 'w', 'd'],
whichLabels: null,
digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
timeSeparator: ':', isRTL: false};
$.countdown.setDefaults($.countdown.regional['cy']);
})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-da.js b/assets/plugins/countdown/plugin/jquery.countdown-da.js
deleted file mode 100644
index 1cba376..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-da.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Danish initialisation for the jQuery countdown extension
- Written by Buch (admin@buch90.dk). */
-(function($) {
- $.countdown.regional['da'] = {
- labels: ['År', 'Måneder', 'Uger', 'Dage', 'Timer', 'Minutter', 'Sekunder'],
- labels1: ['År', 'Månad', 'Uge', 'Dag', 'Time', 'Minut', 'Sekund'],
- compactLabels: ['Å', 'M', 'U', 'D'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['da']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-de.js b/assets/plugins/countdown/plugin/jquery.countdown-de.js
deleted file mode 100644
index fbe48f2..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-de.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- German initialisation for the jQuery countdown extension
- Written by Samuel Wulf. */
-(function($) {
- $.countdown.regional['de'] = {
- labels: ['Jahre', 'Monate', 'Wochen', 'Tage', 'Stunden', 'Minuten', 'Sekunden'],
- labels1: ['Jahr', 'Monat', 'Woche', 'Tag', 'Stunde', 'Minute', 'Sekunde'],
- compactLabels: ['J', 'M', 'W', 'T'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['de']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-el.js b/assets/plugins/countdown/plugin/jquery.countdown-el.js
deleted file mode 100644
index e09d29c..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-el.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Greek initialisation for the jQuery countdown extension
- Written by Philip. */
-(function($) {
- $.countdown.regional['el'] = {
- labels: ['Χρόνια', 'Μήνες', 'Εβδομάδες', 'Μέρες', 'Ώρες', 'Λεπτά', 'Δευτερόλεπτα'],
- labels1: ['Χρόνος', 'Μήνας', 'Εβδομάδα', 'Ημέρα', 'Ώρα', 'Λεπτό', 'Δευτερόλεπτο'],
- compactLabels: ['Χρ.', 'Μην.', 'Εβδ.', 'Ημ.'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['el']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-es.js b/assets/plugins/countdown/plugin/jquery.countdown-es.js
deleted file mode 100644
index f98b8f6..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-es.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Spanish initialisation for the jQuery countdown extension
- * Written by Sergio Carracedo Martinez webmaster@neodisenoweb.com (2008) */
-(function($) {
- $.countdown.regional['es'] = {
- labels: ['Años', 'Meses', 'Semanas', 'Días', 'Horas', 'Minutos', 'Segundos'],
- labels1: ['Año', 'Mes', 'Semana', 'Día', 'Hora', 'Minuto', 'Segundo'],
- compactLabels: ['a', 'm', 's', 'g'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['es']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-et.js b/assets/plugins/countdown/plugin/jquery.countdown-et.js
deleted file mode 100644
index 261a3d4..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-et.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Estonian initialisation for the jQuery countdown extension
- Written by Helmer */
-(function($) {
- $.countdown.regional['et'] = {
- labels: ['Aastat', 'Kuud', 'Nädalat', 'Päeva', 'Tundi', 'Minutit', 'Sekundit'],
- labels1: ['Aasta', 'Kuu', 'Nädal', 'Päev', 'Tund', 'Minut', 'Sekund'],
- compactLabels: ['a', 'k', 'n', 'p'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['et']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-fa.js b/assets/plugins/countdown/plugin/jquery.countdown-fa.js
deleted file mode 100644
index 1290a92..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-fa.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Persian (فارسی) initialisation for the jQuery countdown extension
- Written by Alireza Ziaie (ziai@magfa.com) Oct 2008.
- Digits corrected by Hamed Ramezanian Feb 2013. */
-(function($) {
- $.countdown.regional['fa'] = {
- labels: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
- labels1: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
- compactLabels: ['س', 'م', 'ه', 'ر'],
- whichLabels: null,
- digits: ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'],
- timeSeparator: ':', isRTL: true};
- $.countdown.setDefaults($.countdown.regional['fa']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-fi.js b/assets/plugins/countdown/plugin/jquery.countdown-fi.js
deleted file mode 100644
index 780cbe6..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-fi.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Finnish initialisation for the jQuery countdown extension
- Written by Kalle Vänskä and Juha Suni (juhis.suni@gmail.com). Corrected by Olli. */
-(function($) {
- $.countdown.regional['fi'] = {
- labels: ['vuotta', 'kuukautta', 'viikkoa', 'päivää', 'tuntia', 'minuuttia', 'sekuntia'],
- labels1: ['vuosi', 'kuukausi', 'viikko', 'päivä', 'tunti', 'minuutti', 'sekunti'],
- compactLabels: ['v', 'kk', 'vk', 'pv'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['fi']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-fr.js b/assets/plugins/countdown/plugin/jquery.countdown-fr.js
deleted file mode 100644
index 2e28e07..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-fr.js
+++ /dev/null
@@ -1,15 +0,0 @@
-/* http://keith-wood.name/countdown.html
- French initialisation for the jQuery countdown extension
- Written by Keith Wood (kbwood{at}iinet.com.au) Jan 2008. */
-(function($) {
- $.countdown.regional['fr'] = {
- labels: ['Années', 'Mois', 'Semaines', 'Jours', 'Heures', 'Minutes', 'Secondes'],
- labels1: ['Année', 'Mois', 'Semaine', 'Jour', 'Heure', 'Minute', 'Seconde'],
- compactLabels: ['a', 'm', 's', 'j'],
- whichLabels: function(amount) {
- return (amount > 1 ? 0 : 1);
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['fr']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-gl.js b/assets/plugins/countdown/plugin/jquery.countdown-gl.js
deleted file mode 100644
index a2d9d9b..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-gl.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Galician initialisation for the jQuery countdown extension
- * Written by Moncho Pena ramon.pena.rodriguez@gmail.com (2009) and Angel Farrapeira */
-(function($) {
- $.countdown.regional['gl'] = {
- labels: ['Anos', 'Meses', 'Semanas', 'Días', 'Horas', 'Minutos', 'Segundos'],
- labels1: ['Ano', 'Mes', 'Semana', 'Día', 'Hora', 'Minuto', 'Segundo'],
- compactLabels: ['a', 'm', 's', 'g'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['gl']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-gu.js b/assets/plugins/countdown/plugin/jquery.countdown-gu.js
deleted file mode 100644
index 576abe6..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-gu.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Gujarati initialization for the jQuery countdown extension
- * Written by Sahil Jariwala jariwala.sahil@gmail.com (2012) */
-(function($) {
- $.countdown.regional['gu'] = {
- labels: ['વર્ષ', 'મહિનો', 'અઠવાડિયા', 'દિવસ', 'કલાક', 'મિનિટ','સેકન્ડ'],
- labels1: ['વર્ષ','મહિનો','અઠવાડિયા','દિવસ','કલાક','મિનિટ', 'સેકન્ડ'],
- compactLabels: ['વ', 'મ', 'અ', 'દિ'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['gu']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-he.js b/assets/plugins/countdown/plugin/jquery.countdown-he.js
deleted file mode 100644
index d235086..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-he.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Hebrew initialisation for the jQuery countdown extension
- * Translated by Nir Livne, Dec 2008 */
-(function($) {
- $.countdown.regional['he'] = {
- labels: ['שנים', 'חודשים', 'שבועות', 'ימים', 'שעות', 'דקות', 'שניות'],
- labels1: ['שנה', 'חודש', 'שבוע', 'יום', 'שעה', 'דקה', 'שנייה'],
- compactLabels: ['שנ', 'ח', 'שב', 'י'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: true};
- $.countdown.setDefaults($.countdown.regional['he']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-hr.js b/assets/plugins/countdown/plugin/jquery.countdown-hr.js
deleted file mode 100644
index 4fa618f..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-hr.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Croatian Latin initialisation for the jQuery countdown extension
- * Written by Dejan Broz info@hqfactory.com (2011) */
-(function($) {
- $.countdown.regional['hr'] = {
- labels: ['Godina', 'Mjeseci', 'Tjedana', 'Dana', 'Sati', 'Minuta', 'Sekundi'],
- labels1: ['Godina', 'Mjesec', 'Tjedan', 'Dan', 'Sat', 'Minuta', 'Sekunda'],
- labels2: ['Godine', 'Mjeseca', 'Tjedna', 'Dana', 'Sata', 'Minute', 'Sekunde'],
- compactLabels: ['g', 'm', 't', 'd'],
- whichLabels: function(amount) {
- return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['hr']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-hu.js b/assets/plugins/countdown/plugin/jquery.countdown-hu.js
deleted file mode 100644
index 3cb55a1..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-hu.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Hungarian initialisation for the jQuery countdown extension
- * Written by Edmond L. (webmond@gmail.com). */
-(function($) {
- $.countdown.regional['hu'] = {
- labels: ['Év', 'Hónap', 'Hét', 'Nap', 'Óra', 'Perc', 'Másodperc'],
- labels1: ['Év', 'Hónap', 'Hét', 'Nap', 'Óra', 'Perc', 'Másodperc'],
- compactLabels: ['É', 'H', 'Hé', 'N'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['hu']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-hy.js b/assets/plugins/countdown/plugin/jquery.countdown-hy.js
deleted file mode 100644
index 4529dc2..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-hy.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Armenian initialisation for the jQuery countdown extension
- * Written by Artur Martirosyan. (artur{at}zoom.am) October 2011. */
-(function($) {
- $.countdown.regional['hy'] = {
- labels: ['Տարի', 'Ամիս', 'Շաբաթ', 'Օր', 'Ժամ', 'Րոպե', 'Վարկյան'],
- labels1: ['Տարի', 'Ամիս', 'Շաբաթ', 'Օր', 'Ժամ', 'Րոպե', 'Վարկյան'],
- compactLabels: ['տ', 'ա', 'շ', 'օ'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['hy']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-id.js b/assets/plugins/countdown/plugin/jquery.countdown-id.js
deleted file mode 100644
index a205790..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-id.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Indonesian initialisation for the jQuery countdown extension
- Written by Erwin Yonathan Jan 2009. */
-(function($) {
- $.countdown.regional['id'] = {
- labels: ['tahun', 'bulan', 'minggu', 'hari', 'jam', 'menit', 'detik'],
- labels1: ['tahun', 'bulan', 'minggu', 'hari', 'jam', 'menit', 'detik'],
- compactLabels: ['t', 'b', 'm', 'h'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['id']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-it.js b/assets/plugins/countdown/plugin/jquery.countdown-it.js
deleted file mode 100644
index bf872f1..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-it.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Italian initialisation for the jQuery countdown extension
- * Written by Davide Bellettini (davide.bellettini@gmail.com) and Roberto Chiaveri Feb 2008. */
-(function($) {
- $.countdown.regional['it'] = {
- labels: ['Anni', 'Mesi', 'Settimane', 'Giorni', 'Ore', 'Minuti', 'Secondi'],
- labels1: ['Anno', 'Mese', 'Settimana', 'Giorno', 'Ora', 'Minuto', 'Secondo'],
- compactLabels: ['a', 'm', 's', 'g'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['it']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ja.js b/assets/plugins/countdown/plugin/jquery.countdown-ja.js
deleted file mode 100644
index 7451c84..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ja.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Japanese initialisation for the jQuery countdown extension
- Written by Ken Ishimoto (ken@ksroom.com) Aug 2009. */
-(function($) {
- $.countdown.regional['ja'] = {
- labels: ['年', '月', '週', '日', '時', '分', '秒'],
- labels1: ['年', '月', '週', '日', '時', '分', '秒'],
- compactLabels: ['年', '月', '週', '日'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['ja']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-kn.js b/assets/plugins/countdown/plugin/jquery.countdown-kn.js
deleted file mode 100644
index d663045..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-kn.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Kannada initialization for the jQuery countdown extension
- * Written by Guru Chaturvedi guru@gangarasa.com (2011) */
-(function($) {
- $.countdown.regional['kn'] = {
- labels: ['ವರ್ಷಗಳು', 'ತಿಂಗಳು', 'ವಾರಗಳು', 'ದಿನಗಳು', 'ಘಂಟೆಗಳು', 'ನಿಮಿಷಗಳು', 'ಕ್ಷಣಗಳು'],
- labels1: ['ವರ್ಷ', 'ತಿಂಗಳು', 'ವಾರ', 'ದಿನ', 'ಘಂಟೆ', 'ನಿಮಿಷ', 'ಕ್ಷಣ'],
- compactLabels: ['ವ', 'ತಿ', 'ವಾ', 'ದಿ'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['kn']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ko.js b/assets/plugins/countdown/plugin/jquery.countdown-ko.js
deleted file mode 100644
index 46cbb1b..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ko.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Korean initialisation for the jQuery countdown extension
- Written by Ryan Yu (ryanyu79@gmail.com). */
-(function($) {
- $.countdown.regional['ko'] = {
- labels: ['년', '월', '주', '일', '시', '분', '초'],
- labels1: ['년', '월', '주', '일', '시', '분', '초'],
- compactLabels: ['년', '월', '주', '일'],
- compactLabels1: ['년', '월', '주', '일'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['ko']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-lt.js b/assets/plugins/countdown/plugin/jquery.countdown-lt.js
deleted file mode 100644
index 8076f16..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-lt.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Lithuanian localisation for the jQuery countdown extension
- * Written by Moacir P. de Sá Pereira (moacir{at}gmail.com) (2009) */
-(function($) {
- $.countdown.regional['lt'] = {
- labels: ['Metų', 'Mėnesių', 'Savaičių', 'Dienų', 'Valandų', 'Minučių', 'Sekundžių'],
- labels1: ['Metai', 'Mėnuo', 'Savaitė', 'Diena', 'Valanda', 'Minutė', 'Sekundė'],
- compactLabels: ['m', 'm', 's', 'd'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['lt']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-lv.js b/assets/plugins/countdown/plugin/jquery.countdown-lv.js
deleted file mode 100644
index 2a3b407..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-lv.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Latvian initialisation for the jQuery countdown extension
- * Written by Jānis Peisenieks janis.peisenieks@gmail.com (2010) */
-(function($) {
- $.countdown.regional['lv'] = {
- labels: ['Gadi', 'Mēneši', 'Nedēļas', 'Dienas', 'Stundas', 'Minūtes', 'Sekundes'],
- labels1: ['Gads', 'Mēnesis', 'Nedēļa', 'Diena', 'Stunda', 'Minūte', 'Sekunde'],
- compactLabels: ['l', 'm', 'n', 'd'], compactLabels1: ['g', 'm', 'n', 'd'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['lv']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ml.js b/assets/plugins/countdown/plugin/jquery.countdown-ml.js
deleted file mode 100644
index c9b503d..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ml.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Malayalam/(Indian>>Kerala) initialisation for the jQuery countdown extension
- * Written by Harilal.B (harilal1234@gmail.com) Feb 2013. */
-(function($) {
- $.countdown.regional['ml'] = {
- labels: ['വര്ഷങ്ങള്', 'മാസങ്ങള്', 'ആഴ്ചകള്', 'ദിവസങ്ങള്', 'മണിക്കൂറുകള്', 'മിനിറ്റുകള്', 'സെക്കന്റുകള്'],
- labels1: ['വര്ഷം', 'മാസം', 'ആഴ്ച', 'ദിവസം', 'മണിക്കൂര്', 'മിനിറ്റ്', 'സെക്കന്റ്'],
- compactLabels: ['വ', 'മ', 'ആ', 'ദി'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
-// digits: ['൦', '൧', '൨', '൩', '൪', '൫', '൬', '൭', '൮', '൯'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['ml']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ms.js b/assets/plugins/countdown/plugin/jquery.countdown-ms.js
deleted file mode 100644
index ef463d3..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ms.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Malay initialisation for the jQuery countdown extension
- Written by Jason Ong (jason{at}portalgroove.com) May 2010. */
-(function($) {
- $.countdown.regional['ms'] = {
- labels: ['Tahun', 'Bulan', 'Minggu', 'Hari', 'Jam', 'Minit', 'Saat'],
- labels1: ['Tahun', 'Bulan', 'Minggu', 'Hari', 'Jam', 'Minit', 'Saat'],
- compactLabels: ['t', 'b', 'm', 'h'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['ms']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-my.js b/assets/plugins/countdown/plugin/jquery.countdown-my.js
deleted file mode 100644
index fcf5b16..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-my.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Burmese initialisation for the jQuery countdown extension
- Written by Win Lwin Moe (winnlwinmoe@gmail.com) Dec 2009. */
-(function($) {
- $.countdown.regional['my'] = {
- labels: ['နွစ္', 'လ', 'ရက္သတဿတပတ္', 'ရက္', 'နာရီ', 'မိနစ္', 'စကဿကန့္'],
- labels1: ['နွစ္', 'လ', 'ရက္သတဿတပတ္', 'ရက္', 'နာရီ', 'မိနစ္', 'စကဿကန့္'],
- compactLabels: ['နွစ္', 'လ', 'ရက္သတဿတပတ္', 'ရက္'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['my']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-nb.js b/assets/plugins/countdown/plugin/jquery.countdown-nb.js
deleted file mode 100644
index fecb43f..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-nb.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Norwegian Bokmål translation
- Written by Kristian Ravnevand */
-(function($) {
- $.countdown.regional['nb'] = {
- labels: ['År', 'Måneder', 'Uker', 'Dager', 'Timer', 'Minutter', 'Sekunder'],
- labels1: ['År', 'Måned', 'Uke', 'Dag', 'Time', 'Minutt', 'Sekund'],
- compactLabels: ['Å', 'M', 'U', 'D'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['nb']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-nl.js b/assets/plugins/countdown/plugin/jquery.countdown-nl.js
deleted file mode 100644
index 59ebeae..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-nl.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Dutch initialisation for the jQuery countdown extension
- Written by Mathias Bynens Mar 2008. */
-(function($) {
- $.countdown.regional['nl'] = {
- labels: ['Jaren', 'Maanden', 'Weken', 'Dagen', 'Uren', 'Minuten', 'Seconden'],
- labels1: ['Jaar', 'Maand', 'Week', 'Dag', 'Uur', 'Minuut', 'Seconde'],
- compactLabels: ['j', 'm', 'w', 'd'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['nl']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-pl.js b/assets/plugins/countdown/plugin/jquery.countdown-pl.js
deleted file mode 100644
index 47ea969..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-pl.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Polish initialisation for the jQuery countdown extension
- * Written by Pawel Lewtak lewtak@gmail.com (2008) */
-(function($) {
- $.countdown.regional['pl'] = {
- labels: ['lat', 'miesięcy', 'tygodni', 'dni', 'godzin', 'minut', 'sekund'],
- labels1: ['rok', 'miesiąc', 'tydzień', 'dzień', 'godzina', 'minuta', 'sekunda'],
- labels2: ['lata', 'miesiące', 'tygodnie', 'dni', 'godziny', 'minuty', 'sekundy'],
- compactLabels: ['l', 'm', 't', 'd'], compactLabels1: ['r', 'm', 't', 'd'],
- whichLabels: function(amount) {
- var units = amount % 10;
- var tens = Math.floor((amount % 100) / 10);
- return (amount == 1 ? 1 : (units >= 2 && units <= 4 && tens != 1 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['pl']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-pt-BR.js b/assets/plugins/countdown/plugin/jquery.countdown-pt-BR.js
deleted file mode 100644
index f4dc748..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-pt-BR.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Brazilian initialisation for the jQuery countdown extension
- Translated by Marcelo Pellicano de Oliveira (pellicano@gmail.com) Feb 2008.
- and Juan Roldan (juan.roldan[at]relayweb.com.br) Mar 2012. */
-(function($) {
- $.countdown.regional['pt-BR'] = {
- labels: ['Anos', 'Meses', 'Semanas', 'Dias', 'Horas', 'Minutos', 'Segundos'],
- labels1: ['Ano', 'Ms', 'Semana', 'Dia', 'Hora', 'Minuto', 'Segundo'],
- compactLabels: ['a', 'm', 's', 'd'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['pt-BR']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ro.js b/assets/plugins/countdown/plugin/jquery.countdown-ro.js
deleted file mode 100644
index 45b6a1c..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ro.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Romanian initialisation for the jQuery countdown extension
- * Written by Edmond L. (webmond@gmail.com). */
-(function($) {
- $.countdown.regional['ro'] = {
- labels: ['Ani', 'Luni', 'Saptamani', 'Zile', 'Ore', 'Minute', 'Secunde'],
- labels1: ['An', 'Luna', 'Saptamana', 'Ziua', 'Ora', 'Minutul', 'Secunda'],
- compactLabels: ['A', 'L', 'S', 'Z'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['ro']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-ru.js b/assets/plugins/countdown/plugin/jquery.countdown-ru.js
deleted file mode 100644
index 61d02d9..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-ru.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Russian initialisation for the jQuery countdown extension
- * Written by Sergey K. (xslade{at}gmail.com) June 2010. */
-(function($) {
- $.countdown.regional['ru'] = {
- labels: ['Лет', 'Месяцев', 'Недель', 'Дней', 'Часов', 'Минут', 'Секунд'],
- labels1: ['Год', 'Месяц', 'Неделя', 'День', 'Час', 'Минута', 'Секунда'],
- labels2: ['Года', 'Месяца', 'Недели', 'Дня', 'Часа', 'Минуты', 'Секунды'],
- compactLabels: ['л', 'м', 'н', 'д'], compactLabels1: ['г', 'м', 'н', 'д'],
- whichLabels: function(amount) {
- var units = amount % 10;
- var tens = Math.floor((amount % 100) / 10);
- return (amount == 1 ? 1 : (units >= 2 && units <= 4 && tens != 1 ? 2 :
- (units == 1 && tens != 1 ? 1 : 0)));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['ru']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-sk.js b/assets/plugins/countdown/plugin/jquery.countdown-sk.js
deleted file mode 100644
index acd1953..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-sk.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Slovak initialisation for the jQuery countdown extension
- * Written by Roman Chlebec (creamd@c64.sk) (2008) */
-(function($) {
- $.countdown.regional['sk'] = {
- labels: ['Rokov', 'Mesiacov', 'Týždňov', 'Dní', 'Hodín', 'Minút', 'Sekúnd'],
- labels1: ['Rok', 'Mesiac', 'Týždeň', 'Deň', 'Hodina', 'Minúta', 'Sekunda'],
- labels2: ['Roky', 'Mesiace', 'Týždne', 'Dni', 'Hodiny', 'Minúty', 'Sekundy'],
- compactLabels: ['r', 'm', 't', 'd'],
- whichLabels: function(amount) {
- return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['sk']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-sl.js b/assets/plugins/countdown/plugin/jquery.countdown-sl.js
deleted file mode 100644
index 8d59fd5..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-sl.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Slovenian localisation for the jQuery countdown extension
- * Written by Borut Tomažin (debijan{at}gmail.com) (2011) */
-(function($) {
- $.countdown.regional['sl'] = {
- labels: ['Let', 'Mesecev', 'Tednov', 'Dni', 'Ur', 'Minut', 'Sekund'],
- labels1: ['Leto', 'Mesec', 'Teden', 'Dan', 'Ura', 'Minuta', 'Sekunda'],
- compactLabels: ['l', 'm', 't', 'd'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['sl']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-sq.js b/assets/plugins/countdown/plugin/jquery.countdown-sq.js
deleted file mode 100644
index 410b89e..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-sq.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Albanian initialisation for the jQuery countdown extension
- Written by Erzen Komoni. */
-(function($) {
- $.countdown.regional['sq'] = {
- labels: ['Vite', 'Muaj', 'Javë', 'Ditë', 'Orë', 'Minuta', 'Sekonda'],
- labels1: ['Vit', 'Muaj', 'Javë', 'Dit', 'Orë', 'Minutë', 'Sekond'],
- compactLabels: ['V', 'M', 'J', 'D'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['sq']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-sr-SR.js b/assets/plugins/countdown/plugin/jquery.countdown-sr-SR.js
deleted file mode 100644
index bc5bbed..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-sr-SR.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Serbian Latin initialisation for the jQuery countdown extension
- * Written by Predrag Leka lp@lemurcake.com (2010) */
-(function($) {
- $.countdown.regional['sr-SR'] = {
- labels: ['Godina', 'Meseci', 'Nedelja', 'Dana', 'Časova', 'Minuta', 'Sekundi'],
- labels1: ['Godina', 'Mesec', 'Nedelja', 'Dan', 'Čas', 'Minut', 'Sekunda'],
- labels2: ['Godine', 'Meseca', 'Nedelje', 'Dana', 'Časa', 'Minuta', 'Sekunde'],
- compactLabels: ['g', 'm', 'n', 'd'],
- whichLabels: function(amount) {
- return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['sr-SR']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-sr.js b/assets/plugins/countdown/plugin/jquery.countdown-sr.js
deleted file mode 100644
index 302c3b0..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-sr.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Serbian Cyrillic initialisation for the jQuery countdown extension
- * Written by Predrag Leka lp@lemurcake.com (2010) */
-(function($) {
- $.countdown.regional['sr'] = {
- labels: ['Година', 'Месеци', 'Недеља', 'Дана', 'Часова', 'Минута', 'Секунди'],
- labels1: ['Година', 'месец', 'Недеља', 'Дан', 'Час', 'Минут', 'Секунда'],
- labels2: ['Године', 'Месеца', 'Недеље', 'Дана', 'Часа', 'Минута', 'Секунде'],
- compactLabels: ['г', 'м', 'н', 'д'],
- whichLabels: function(amount) {
- return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['sr']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-sv.js b/assets/plugins/countdown/plugin/jquery.countdown-sv.js
deleted file mode 100644
index 77e5eb2..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-sv.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Swedish initialisation for the jQuery countdown extension
- Written by Carl (carl@nordenfelt.com). */
-(function($) {
- $.countdown.regional['sv'] = {
- labels: ['År', 'Månader', 'Veckor', 'Dagar', 'Timmar', 'Minuter', 'Sekunder'],
- labels1: ['År', 'Månad', 'Vecka', 'Dag', 'Timme', 'Minut', 'Sekund'],
- compactLabels: ['Å', 'M', 'V', 'D'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['sv']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-th.js b/assets/plugins/countdown/plugin/jquery.countdown-th.js
deleted file mode 100644
index 778f9d2..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-th.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Thai initialisation for the jQuery countdown extension
- Written by Pornchai Sakulsrimontri (li_sin_th@yahoo.com). */
-(function($) {
- $.countdown.regional['th'] = {
- labels: ['ปี', 'เดือน', 'สัปดาห์', 'วัน', 'ชั่วโมง', 'นาที', 'วินาที'],
- labels1: ['ปี', 'เดือน', 'สัปดาห์', 'วัน', 'ชั่วโมง', 'นาที', 'วินาที'],
- compactLabels: ['ปี', 'เดือน', 'สัปดาห์', 'วัน'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['th']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-tr.js b/assets/plugins/countdown/plugin/jquery.countdown-tr.js
deleted file mode 100644
index b3de40f..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-tr.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
-* Turkish initialisation for the jQuery countdown extension
-* Written by Bekir Ahmetoğlu (bekir@cerek.com) Aug 2008. */
-(function($) {
- $.countdown.regional['tr'] = {
- labels: ['Yıl', 'Ay', 'Hafta', 'Gün', 'Saat', 'Dakika', 'Saniye'],
- labels1: ['Yıl', 'Ay', 'Hafta', 'Gün', 'Saat', 'Dakika', 'Saniye'],
- compactLabels: ['y', 'a', 'h', 'g'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['tr']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-uk.js b/assets/plugins/countdown/plugin/jquery.countdown-uk.js
deleted file mode 100644
index 79449b8..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-uk.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Ukrainian initialisation for the jQuery countdown extension
- * Written by Goloborodko M misha.gm@gmail.com (2009), corrections by Iгор Kоновал */
-(function($) {
- $.countdown.regional['uk'] = {
- labels: ['Років', 'Місяців', 'Тижнів', 'Днів', 'Годин', 'Хвилин', 'Секунд'],
- labels1: ['Рік', 'Місяць', 'Тиждень', 'День', 'Година', 'Хвилина', 'Секунда'],
- labels2: ['Роки', 'Місяці', 'Тижні', 'Дні', 'Години', 'Хвилини', 'Секунди'],
- compactLabels: ['r', 'm', 't', 'd'],
- whichLabels: function(amount) {
- return (amount == 1 ? 1 : (amount >=2 && amount <= 4 ? 2 : 0));
- },
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['uk']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-uz.js b/assets/plugins/countdown/plugin/jquery.countdown-uz.js
deleted file mode 100644
index 7e6fa7c..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-uz.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Uzbek initialisation for the jQuery countdown extension
- * Written by Alisher U. (ulugbekov{at}gmail.com) August 2012. */
-(function($) {
- $.countdown.regional['uz'] = {
- labels: ['Yil', 'Oy', 'Hafta', 'Kun', 'Soat', 'Daqiqa', 'Soniya'],
- labels1: ['Yil', 'Oy', 'Hafta', 'Kun', 'Soat', 'Daqiqa', 'Soniya'],
- compactLabels: ['y', 'o', 'h', 'k'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['uz']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-vi.js b/assets/plugins/countdown/plugin/jquery.countdown-vi.js
deleted file mode 100644
index 9b0bd31..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-vi.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- * Vietnamese initialisation for the jQuery countdown extension
- * Written by Pham Tien Hung phamtienhung@gmail.com (2010) */
-(function($) {
- $.countdown.regional['vi'] = {
- labels: ['Năm', 'Tháng', 'Tuần', 'Ngày', 'Giờ', 'Phút', 'Giây'],
- labels1: ['Năm', 'Tháng', 'Tuần', 'Ngày', 'Giờ', 'Phút', 'Giây'],
- compactLabels: ['năm', 'th', 'tu', 'ng'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['vi']);
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-zh-CN.js b/assets/plugins/countdown/plugin/jquery.countdown-zh-CN.js
deleted file mode 100644
index bc442cb..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-zh-CN.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Simplified Chinese initialisation for the jQuery countdown extension
- Written by Cloudream (cloudream@gmail.com). */
-(function($) {
- $.countdown.regional['zh-CN'] = {
- labels: ['年', '月', '周', '天', '时', '分', '秒'],
- labels1: ['年', '月', '周', '天', '时', '分', '秒'],
- compactLabels: ['年', '月', '周', '天'], compactLabels1: ['年', '月', '周', '天'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['zh-CN']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown-zh-TW.js b/assets/plugins/countdown/plugin/jquery.countdown-zh-TW.js
deleted file mode 100644
index 24d50bd..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown-zh-TW.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Traditional Chinese initialisation for the jQuery countdown extension
- Written by Cloudream (cloudream@gmail.com). */
-(function($) {
- $.countdown.regional['zh-TW'] = {
- labels: ['年', '月', '周', '天', '時', '分', '秒'],
- labels1: ['年', '月', '周', '天', '時', '分', '秒'],
- compactLabels: ['年', '月', '周', '天'], compactLabels1: ['年', '月', '周', '天'],
- whichLabels: null,
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
- timeSeparator: ':', isRTL: false};
- $.countdown.setDefaults($.countdown.regional['zh-TW']);
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown.css b/assets/plugins/countdown/plugin/jquery.countdown.css
deleted file mode 100644
index cdb24c6..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown.css
+++ /dev/null
@@ -1,51 +0,0 @@
-/* jQuery Countdown styles 1.6.2. */
-.hasCountdown {
- border: 1px solid #ccc;
- background-color: #eee;
-}
-.countdown_rtl {
- direction: rtl;
-}
-.countdown_holding span {
- color: #888;
-}
-.countdown_row {
- clear: both;
- width: 100%;
- padding: 0px 2px;
- text-align: center;
-}
-.countdown_show1 .countdown_section {
- width: 98%;
-}
-.countdown_show2 .countdown_section {
- width: 48%;
-}
-.countdown_show3 .countdown_section {
- width: 32.5%;
-}
-.countdown_show4 .countdown_section {
- width: 24.5%;
-}
-.countdown_show5 .countdown_section {
- width: 19.5%;
-}
-.countdown_show6 .countdown_section {
- width: 16.25%;
-}
-.countdown_show7 .countdown_section {
- width: 14%;
-}
-.countdown_section {
- display: block;
- float: left;
- font-size: 75%;
- text-align: center;
-}
-.countdown_amount {
- font-size: 200%;
-}
-.countdown_descr {
- display: block;
- width: 100%;
-}
diff --git a/assets/plugins/countdown/plugin/jquery.countdown.js b/assets/plugins/countdown/plugin/jquery.countdown.js
deleted file mode 100644
index fdf232a..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown.js
+++ /dev/null
@@ -1,805 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Countdown for jQuery v1.6.2.
- Written by Keith Wood (kbwood{at}iinet.com.au) January 2008.
- Available under the MIT (https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt) license.
- Please attribute the author if you use it. */
-
-/* Display a countdown timer.
- Attach it with options like:
- $('div selector').countdown(
- {until: new Date(2009, 1 - 1, 1, 0, 0, 0), onExpiry: happyNewYear}); */
-
-(function($) { // Hide scope, no $ conflict
-
-/* Countdown manager. */
-function Countdown() {
- this.regional = []; // Available regional settings, indexed by language code
- this.regional[''] = { // Default regional settings
- // The display texts for the counters
- labels: ['Years', 'Months', 'Weeks', 'Days', 'Hours', 'Minutes', 'Seconds'],
- // The display texts for the counters if only one
- labels1: ['Year', 'Month', 'Week', 'Day', 'Hour', 'Minute', 'Second'],
- compactLabels: ['y', 'm', 'w', 'd'], // The compact texts for the counters
- whichLabels: null, // Function to determine which labels to use
- digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'], // The digits to display
- timeSeparator: ':', // Separator for time periods
- isRTL: false // True for right-to-left languages, false for left-to-right
- };
- this._defaults = {
- until: null, // new Date(year, mth - 1, day, hr, min, sec) - date/time to count down to
- // or numeric for seconds offset, or string for unit offset(s):
- // 'Y' years, 'O' months, 'W' weeks, 'D' days, 'H' hours, 'M' minutes, 'S' seconds
- since: null, // new Date(year, mth - 1, day, hr, min, sec) - date/time to count up from
- // or numeric for seconds offset, or string for unit offset(s):
- // 'Y' years, 'O' months, 'W' weeks, 'D' days, 'H' hours, 'M' minutes, 'S' seconds
- timezone: null, // The timezone (hours or minutes from GMT) for the target times,
- // or null for client local
- serverSync: null, // A function to retrieve the current server time for synchronisation
- format: 'dHMS', // Format for display - upper case for always, lower case only if non-zero,
- // 'Y' years, 'O' months, 'W' weeks, 'D' days, 'H' hours, 'M' minutes, 'S' seconds
- layout: '', // Build your own layout for the countdown
- compact: false, // True to display in a compact format, false for an expanded one
- significant: 0, // The number of periods with values to show, zero for all
- description: '', // The description displayed for the countdown
- expiryUrl: '', // A URL to load upon expiry, replacing the current page
- expiryText: '', // Text to display upon expiry, replacing the countdown
- alwaysExpire: false, // True to trigger onExpiry even if never counted down
- onExpiry: null, // Callback when the countdown expires -
- // receives no parameters and 'this' is the containing division
- onTick: null, // Callback when the countdown is updated -
- // receives int[7] being the breakdown by period (based on format)
- // and 'this' is the containing division
- tickInterval: 1 // Interval (seconds) between onTick callbacks
- };
- $.extend(this._defaults, this.regional['']);
- this._serverSyncs = [];
- // Shared timer for all countdowns
- function timerCallBack(timestamp) {
- var drawStart = (timestamp < 1e12 ? // New HTML5 high resolution timer
- (drawStart = performance.now ?
- (performance.now() + performance.timing.navigationStart) : Date.now()) :
- // Integer milliseconds since unix epoch
- timestamp || new Date().getTime());
- if (drawStart - animationStartTime >= 1000) {
- plugin._updateTargets();
- animationStartTime = drawStart;
- }
- requestAnimationFrame(timerCallBack);
- }
- var requestAnimationFrame = window.requestAnimationFrame ||
- window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame ||
- window.oRequestAnimationFrame || window.msRequestAnimationFrame || null;
- // This is when we expect a fall-back to setInterval as it's much more fluid
- var animationStartTime = 0;
- if (!requestAnimationFrame || $.noRequestAnimationFrame) {
- $.noRequestAnimationFrame = null;
- setInterval(function() { plugin._updateTargets(); }, 980); // Fall back to good old setInterval
- }
- else {
- animationStartTime = window.animationStartTime ||
- window.webkitAnimationStartTime || window.mozAnimationStartTime ||
- window.oAnimationStartTime || window.msAnimationStartTime || new Date().getTime();
- requestAnimationFrame(timerCallBack);
- }
-}
-
-var Y = 0; // Years
-var O = 1; // Months
-var W = 2; // Weeks
-var D = 3; // Days
-var H = 4; // Hours
-var M = 5; // Minutes
-var S = 6; // Seconds
-
-$.extend(Countdown.prototype, {
- /* Class name added to elements to indicate already configured with countdown. */
- markerClassName: 'hasCountdown',
- /* Name of the data property for instance settings. */
- propertyName: 'countdown',
-
- /* Class name for the right-to-left marker. */
- _rtlClass: 'countdown_rtl',
- /* Class name for the countdown section marker. */
- _sectionClass: 'countdown_section',
- /* Class name for the period amount marker. */
- _amountClass: 'countdown_amount',
- /* Class name for the countdown row marker. */
- _rowClass: 'countdown_row',
- /* Class name for the holding countdown marker. */
- _holdingClass: 'countdown_holding',
- /* Class name for the showing countdown marker. */
- _showClass: 'countdown_show',
- /* Class name for the description marker. */
- _descrClass: 'countdown_descr',
-
- /* List of currently active countdown targets. */
- _timerTargets: [],
-
- /* Override the default settings for all instances of the countdown widget.
- @param options (object) the new settings to use as defaults */
- setDefaults: function(options) {
- this._resetExtraLabels(this._defaults, options);
- $.extend(this._defaults, options || {});
- },
-
- /* Convert a date/time to UTC.
- @param tz (number) the hour or minute offset from GMT, e.g. +9, -360
- @param year (Date) the date/time in that timezone or
- (number) the year in that timezone
- @param month (number, optional) the month (0 - 11) (omit if year is a Date)
- @param day (number, optional) the day (omit if year is a Date)
- @param hours (number, optional) the hour (omit if year is a Date)
- @param mins (number, optional) the minute (omit if year is a Date)
- @param secs (number, optional) the second (omit if year is a Date)
- @param ms (number, optional) the millisecond (omit if year is a Date)
- @return (Date) the equivalent UTC date/time */
- UTCDate: function(tz, year, month, day, hours, mins, secs, ms) {
- if (typeof year == 'object' && year.constructor == Date) {
- ms = year.getMilliseconds();
- secs = year.getSeconds();
- mins = year.getMinutes();
- hours = year.getHours();
- day = year.getDate();
- month = year.getMonth();
- year = year.getFullYear();
- }
- var d = new Date();
- d.setUTCFullYear(year);
- d.setUTCDate(1);
- d.setUTCMonth(month || 0);
- d.setUTCDate(day || 1);
- d.setUTCHours(hours || 0);
- d.setUTCMinutes((mins || 0) - (Math.abs(tz) < 30 ? tz * 60 : tz));
- d.setUTCSeconds(secs || 0);
- d.setUTCMilliseconds(ms || 0);
- return d;
- },
-
- /* Convert a set of periods into seconds.
- Averaged for months and years.
- @param periods (number[7]) the periods per year/month/week/day/hour/minute/second
- @return (number) the corresponding number of seconds */
- periodsToSeconds: function(periods) {
- return periods[0] * 31557600 + periods[1] * 2629800 + periods[2] * 604800 +
- periods[3] * 86400 + periods[4] * 3600 + periods[5] * 60 + periods[6];
- },
-
- /* Attach the countdown widget to a div.
- @param target (element) the containing division
- @param options (object) the initial settings for the countdown */
- _attachPlugin: function(target, options) {
- target = $(target);
- if (target.hasClass(this.markerClassName)) {
- return;
- }
- var inst = {options: $.extend({}, this._defaults), _periods: [0, 0, 0, 0, 0, 0, 0]};
- target.addClass(this.markerClassName).data(this.propertyName, inst);
- this._optionPlugin(target, options);
- },
-
- /* Add a target to the list of active ones.
- @param target (element) the countdown target */
- _addTarget: function(target) {
- if (!this._hasTarget(target)) {
- this._timerTargets.push(target);
- }
- },
-
- /* See if a target is in the list of active ones.
- @param target (element) the countdown target
- @return (boolean) true if present, false if not */
- _hasTarget: function(target) {
- return ($.inArray(target, this._timerTargets) > -1);
- },
-
- /* Remove a target from the list of active ones.
- @param target (element) the countdown target */
- _removeTarget: function(target) {
- this._timerTargets = $.map(this._timerTargets,
- function(value) { return (value == target ? null : value); }); // delete entry
- },
-
- /* Update each active timer target. */
- _updateTargets: function() {
- for (var i = this._timerTargets.length - 1; i >= 0; i--) {
- this._updateCountdown(this._timerTargets[i]);
- }
- },
-
- /* Reconfigure the settings for a countdown div.
- @param target (element) the control to affect
- @param options (object) the new options for this instance or
- (string) an individual property name
- @param value (any) the individual property value (omit if options
- is an object or to retrieve the value of a setting)
- @return (any) if retrieving a value */
- _optionPlugin: function(target, options, value) {
- target = $(target);
- var inst = target.data(this.propertyName);
- if (!options || (typeof options == 'string' && value == null)) { // Get option
- var name = options;
- options = (inst || {}).options;
- return (options && name ? options[name] : options);
- }
-
- if (!target.hasClass(this.markerClassName)) {
- return;
- }
- options = options || {};
- if (typeof options == 'string') {
- var name = options;
- options = {};
- options[name] = value;
- }
- this._resetExtraLabels(inst.options, options);
- var timezoneChanged = (inst.options.timezone != options.timezone);
- $.extend(inst.options, options);
- this._adjustSettings(target, inst,
- options.until != null || options.since != null || timezoneChanged);
- var now = new Date();
- if ((inst._since && inst._since < now) || (inst._until && inst._until > now)) {
- this._addTarget(target[0]);
- }
- this._updateCountdown(target, inst);
- },
-
- /* Redisplay the countdown with an updated display.
- @param target (jQuery) the containing division
- @param inst (object) the current settings for this instance */
- _updateCountdown: function(target, inst) {
- var $target = $(target);
- inst = inst || $target.data(this.propertyName);
- if (!inst) {
- return;
- }
- $target.html(this._generateHTML(inst)).toggleClass(this._rtlClass, inst.options.isRTL);
- if ($.isFunction(inst.options.onTick)) {
- var periods = inst._hold != 'lap' ? inst._periods :
- this._calculatePeriods(inst, inst._show, inst.options.significant, new Date());
- if (inst.options.tickInterval == 1 ||
- this.periodsToSeconds(periods) % inst.options.tickInterval == 0) {
- inst.options.onTick.apply(target, [periods]);
- }
- }
- var expired = inst._hold != 'pause' &&
- (inst._since ? inst._now.getTime() < inst._since.getTime() :
- inst._now.getTime() >= inst._until.getTime());
- if (expired && !inst._expiring) {
- inst._expiring = true;
- if (this._hasTarget(target) || inst.options.alwaysExpire) {
- this._removeTarget(target);
- if ($.isFunction(inst.options.onExpiry)) {
- inst.options.onExpiry.apply(target, []);
- }
- if (inst.options.expiryText) {
- var layout = inst.options.layout;
- inst.options.layout = inst.options.expiryText;
- this._updateCountdown(target, inst);
- inst.options.layout = layout;
- }
- if (inst.options.expiryUrl) {
- window.location = inst.options.expiryUrl;
- }
- }
- inst._expiring = false;
- }
- else if (inst._hold == 'pause') {
- this._removeTarget(target);
- }
- $target.data(this.propertyName, inst);
- },
-
- /* Reset any extra labelsn and compactLabelsn entries if changing labels.
- @param base (object) the options to be updated
- @param options (object) the new option values */
- _resetExtraLabels: function(base, options) {
- var changingLabels = false;
- for (var n in options) {
- if (n != 'whichLabels' && n.match(/[Ll]abels/)) {
- changingLabels = true;
- break;
- }
- }
- if (changingLabels) {
- for (var n in base) { // Remove custom numbered labels
- if (n.match(/[Ll]abels[02-9]|compactLabels1/)) {
- base[n] = null;
- }
- }
- }
- },
-
- /* Calculate interal settings for an instance.
- @param target (element) the containing division
- @param inst (object) the current settings for this instance
- @param recalc (boolean) true if until or since are set */
- _adjustSettings: function(target, inst, recalc) {
- var now;
- var serverOffset = 0;
- var serverEntry = null;
- for (var i = 0; i < this._serverSyncs.length; i++) {
- if (this._serverSyncs[i][0] == inst.options.serverSync) {
- serverEntry = this._serverSyncs[i][1];
- break;
- }
- }
- if (serverEntry != null) {
- serverOffset = (inst.options.serverSync ? serverEntry : 0);
- now = new Date();
- }
- else {
- var serverResult = ($.isFunction(inst.options.serverSync) ?
- inst.options.serverSync.apply(target, []) : null);
- now = new Date();
- serverOffset = (serverResult ? now.getTime() - serverResult.getTime() : 0);
- this._serverSyncs.push([inst.options.serverSync, serverOffset]);
- }
- var timezone = inst.options.timezone;
- timezone = (timezone == null ? -now.getTimezoneOffset() : timezone);
- if (recalc || (!recalc && inst._until == null && inst._since == null)) {
- inst._since = inst.options.since;
- if (inst._since != null) {
- inst._since = this.UTCDate(timezone, this._determineTime(inst._since, null));
- if (inst._since && serverOffset) {
- inst._since.setMilliseconds(inst._since.getMilliseconds() + serverOffset);
- }
- }
- inst._until = this.UTCDate(timezone, this._determineTime(inst.options.until, now));
- if (serverOffset) {
- inst._until.setMilliseconds(inst._until.getMilliseconds() + serverOffset);
- }
- }
- inst._show = this._determineShow(inst);
- },
-
- /* Remove the countdown widget from a div.
- @param target (element) the containing division */
- _destroyPlugin: function(target) {
- target = $(target);
- if (!target.hasClass(this.markerClassName)) {
- return;
- }
- this._removeTarget(target[0]);
- target.removeClass(this.markerClassName).empty().removeData(this.propertyName);
- },
-
- /* Pause a countdown widget at the current time.
- Stop it running but remember and display the current time.
- @param target (element) the containing division */
- _pausePlugin: function(target) {
- this._hold(target, 'pause');
- },
-
- /* Pause a countdown widget at the current time.
- Stop the display but keep the countdown running.
- @param target (element) the containing division */
- _lapPlugin: function(target) {
- this._hold(target, 'lap');
- },
-
- /* Resume a paused countdown widget.
- @param target (element) the containing division */
- _resumePlugin: function(target) {
- this._hold(target, null);
- },
-
- /* Pause or resume a countdown widget.
- @param target (element) the containing division
- @param hold (string) the new hold setting */
- _hold: function(target, hold) {
- var inst = $.data(target, this.propertyName);
- if (inst) {
- if (inst._hold == 'pause' && !hold) {
- inst._periods = inst._savePeriods;
- var sign = (inst._since ? '-' : '+');
- inst[inst._since ? '_since' : '_until'] =
- this._determineTime(sign + inst._periods[0] + 'y' +
- sign + inst._periods[1] + 'o' + sign + inst._periods[2] + 'w' +
- sign + inst._periods[3] + 'd' + sign + inst._periods[4] + 'h' +
- sign + inst._periods[5] + 'm' + sign + inst._periods[6] + 's');
- this._addTarget(target);
- }
- inst._hold = hold;
- inst._savePeriods = (hold == 'pause' ? inst._periods : null);
- $.data(target, this.propertyName, inst);
- this._updateCountdown(target, inst);
- }
- },
-
- /* Return the current time periods.
- @param target (element) the containing division
- @return (number[7]) the current periods for the countdown */
- _getTimesPlugin: function(target) {
- var inst = $.data(target, this.propertyName);
- return (!inst ? null : (inst._hold == 'pause' ? inst._savePeriods : (!inst._hold ? inst._periods :
- this._calculatePeriods(inst, inst._show, inst.options.significant, new Date()))));
- },
-
- /* A time may be specified as an exact value or a relative one.
- @param setting (string or number or Date) - the date/time value
- as a relative or absolute value
- @param defaultTime (Date) the date/time to use if no other is supplied
- @return (Date) the corresponding date/time */
- _determineTime: function(setting, defaultTime) {
- var offsetNumeric = function(offset) { // e.g. +300, -2
- var time = new Date();
- time.setTime(time.getTime() + offset * 1000);
- return time;
- };
- var offsetString = function(offset) { // e.g. '+2d', '-4w', '+3h +30m'
- offset = offset.toLowerCase();
- var time = new Date();
- var year = time.getFullYear();
- var month = time.getMonth();
- var day = time.getDate();
- var hour = time.getHours();
- var minute = time.getMinutes();
- var second = time.getSeconds();
- var pattern = /([+-]?[0-9]+)\s*(s|m|h|d|w|o|y)?/g;
- var matches = pattern.exec(offset);
- while (matches) {
- switch (matches[2] || 's') {
- case 's': second += parseInt(matches[1], 10); break;
- case 'm': minute += parseInt(matches[1], 10); break;
- case 'h': hour += parseInt(matches[1], 10); break;
- case 'd': day += parseInt(matches[1], 10); break;
- case 'w': day += parseInt(matches[1], 10) * 7; break;
- case 'o':
- month += parseInt(matches[1], 10);
- day = Math.min(day, plugin._getDaysInMonth(year, month));
- break;
- case 'y':
- year += parseInt(matches[1], 10);
- day = Math.min(day, plugin._getDaysInMonth(year, month));
- break;
- }
- matches = pattern.exec(offset);
- }
- return new Date(year, month, day, hour, minute, second, 0);
- };
- var time = (setting == null ? defaultTime :
- (typeof setting == 'string' ? offsetString(setting) :
- (typeof setting == 'number' ? offsetNumeric(setting) : setting)));
- if (time) time.setMilliseconds(0);
- return time;
- },
-
- /* Determine the number of days in a month.
- @param year (number) the year
- @param month (number) the month
- @return (number) the days in that month */
- _getDaysInMonth: function(year, month) {
- return 32 - new Date(year, month, 32).getDate();
- },
-
- /* Determine which set of labels should be used for an amount.
- @param num (number) the amount to be displayed
- @return (number) the set of labels to be used for this amount */
- _normalLabels: function(num) {
- return num;
- },
-
- /* Generate the HTML to display the countdown widget.
- @param inst (object) the current settings for this instance
- @return (string) the new HTML for the countdown display */
- _generateHTML: function(inst) {
- var self = this;
- // Determine what to show
- inst._periods = (inst._hold ? inst._periods :
- this._calculatePeriods(inst, inst._show, inst.options.significant, new Date()));
- // Show all 'asNeeded' after first non-zero value
- var shownNonZero = false;
- var showCount = 0;
- var sigCount = inst.options.significant;
- var show = $.extend({}, inst._show);
- for (var period = Y; period <= S; period++) {
- shownNonZero |= (inst._show[period] == '?' && inst._periods[period] > 0);
- show[period] = (inst._show[period] == '?' && !shownNonZero ? null : inst._show[period]);
- showCount += (show[period] ? 1 : 0);
- sigCount -= (inst._periods[period] > 0 ? 1 : 0);
- }
- var showSignificant = [false, false, false, false, false, false, false];
- for (var period = S; period >= Y; period--) { // Determine significant periods
- if (inst._show[period]) {
- if (inst._periods[period]) {
- showSignificant[period] = true;
- }
- else {
- showSignificant[period] = sigCount > 0;
- sigCount--;
- }
- }
- }
- var labels = (inst.options.compact ? inst.options.compactLabels : inst.options.labels);
- var whichLabels = inst.options.whichLabels || this._normalLabels;
- var showCompact = function(period) {
- var labelsNum = inst.options['compactLabels' + whichLabels(inst._periods[period])];
- return (show[period] ? self._translateDigits(inst, inst._periods[period]) +
- (labelsNum ? labelsNum[period] : labels[period]) + ' ' : '');
- };
- var showFull = function(period) {
- var labelsNum = inst.options['labels' + whichLabels(inst._periods[period])];
- return ((!inst.options.significant && show[period]) ||
- (inst.options.significant && showSignificant[period]) ?
- '' +
- '' +
- self._translateDigits(inst, inst._periods[period]) + ' ' +
- (labelsNum ? labelsNum[period] : labels[period]) + ' ' : '');
- };
- return (inst.options.layout ? this._buildLayout(inst, show, inst.options.layout,
- inst.options.compact, inst.options.significant, showSignificant) :
- ((inst.options.compact ? // Compact version
- '' +
- showCompact(Y) + showCompact(O) + showCompact(W) + showCompact(D) +
- (show[H] ? this._minDigits(inst, inst._periods[H], 2) : '') +
- (show[M] ? (show[H] ? inst.options.timeSeparator : '') +
- this._minDigits(inst, inst._periods[M], 2) : '') +
- (show[S] ? (show[H] || show[M] ? inst.options.timeSeparator : '') +
- this._minDigits(inst, inst._periods[S], 2) : '') :
- // Full version
- '' +
- showFull(Y) + showFull(O) + showFull(W) + showFull(D) +
- showFull(H) + showFull(M) + showFull(S)) + ' ' +
- (inst.options.description ? '' +
- inst.options.description + ' ' : '')));
- },
-
- /* Construct a custom layout.
- @param inst (object) the current settings for this instance
- @param show (string[7]) flags indicating which periods are requested
- @param layout (string) the customised layout
- @param compact (boolean) true if using compact labels
- @param significant (number) the number of periods with values to show, zero for all
- @param showSignificant (boolean[7]) other periods to show for significance
- @return (string) the custom HTML */
- _buildLayout: function(inst, show, layout, compact, significant, showSignificant) {
- var labels = inst.options[compact ? 'compactLabels' : 'labels'];
- var whichLabels = inst.options.whichLabels || this._normalLabels;
- var labelFor = function(index) {
- return (inst.options[(compact ? 'compactLabels' : 'labels') +
- whichLabels(inst._periods[index])] || labels)[index];
- };
- var digit = function(value, position) {
- return inst.options.digits[Math.floor(value / position) % 10];
- };
- var subs = {desc: inst.options.description, sep: inst.options.timeSeparator,
- yl: labelFor(Y), yn: this._minDigits(inst, inst._periods[Y], 1),
- ynn: this._minDigits(inst, inst._periods[Y], 2),
- ynnn: this._minDigits(inst, inst._periods[Y], 3), y1: digit(inst._periods[Y], 1),
- y10: digit(inst._periods[Y], 10), y100: digit(inst._periods[Y], 100),
- y1000: digit(inst._periods[Y], 1000),
- ol: labelFor(O), on: this._minDigits(inst, inst._periods[O], 1),
- onn: this._minDigits(inst, inst._periods[O], 2),
- onnn: this._minDigits(inst, inst._periods[O], 3), o1: digit(inst._periods[O], 1),
- o10: digit(inst._periods[O], 10), o100: digit(inst._periods[O], 100),
- o1000: digit(inst._periods[O], 1000),
- wl: labelFor(W), wn: this._minDigits(inst, inst._periods[W], 1),
- wnn: this._minDigits(inst, inst._periods[W], 2),
- wnnn: this._minDigits(inst, inst._periods[W], 3), w1: digit(inst._periods[W], 1),
- w10: digit(inst._periods[W], 10), w100: digit(inst._periods[W], 100),
- w1000: digit(inst._periods[W], 1000),
- dl: labelFor(D), dn: this._minDigits(inst, inst._periods[D], 1),
- dnn: this._minDigits(inst, inst._periods[D], 2),
- dnnn: this._minDigits(inst, inst._periods[D], 3), d1: digit(inst._periods[D], 1),
- d10: digit(inst._periods[D], 10), d100: digit(inst._periods[D], 100),
- d1000: digit(inst._periods[D], 1000),
- hl: labelFor(H), hn: this._minDigits(inst, inst._periods[H], 1),
- hnn: this._minDigits(inst, inst._periods[H], 2),
- hnnn: this._minDigits(inst, inst._periods[H], 3), h1: digit(inst._periods[H], 1),
- h10: digit(inst._periods[H], 10), h100: digit(inst._periods[H], 100),
- h1000: digit(inst._periods[H], 1000),
- ml: labelFor(M), mn: this._minDigits(inst, inst._periods[M], 1),
- mnn: this._minDigits(inst, inst._periods[M], 2),
- mnnn: this._minDigits(inst, inst._periods[M], 3), m1: digit(inst._periods[M], 1),
- m10: digit(inst._periods[M], 10), m100: digit(inst._periods[M], 100),
- m1000: digit(inst._periods[M], 1000),
- sl: labelFor(S), sn: this._minDigits(inst, inst._periods[S], 1),
- snn: this._minDigits(inst, inst._periods[S], 2),
- snnn: this._minDigits(inst, inst._periods[S], 3), s1: digit(inst._periods[S], 1),
- s10: digit(inst._periods[S], 10), s100: digit(inst._periods[S], 100),
- s1000: digit(inst._periods[S], 1000)};
- var html = layout;
- // Replace period containers: {p<}...{p>}
- for (var i = Y; i <= S; i++) {
- var period = 'yowdhms'.charAt(i);
- var re = new RegExp('\\{' + period + '<\\}(.*)\\{' + period + '>\\}', 'g');
- html = html.replace(re, ((!significant && show[i]) ||
- (significant && showSignificant[i]) ? '$1' : ''));
- }
- // Replace period values: {pn}
- $.each(subs, function(n, v) {
- var re = new RegExp('\\{' + n + '\\}', 'g');
- html = html.replace(re, v);
- });
- return html;
- },
-
- /* Ensure a numeric value has at least n digits for display.
- @param inst (object) the current settings for this instance
- @param value (number) the value to display
- @param len (number) the minimum length
- @return (string) the display text */
- _minDigits: function(inst, value, len) {
- value = '' + value;
- if (value.length >= len) {
- return this._translateDigits(inst, value);
- }
- value = '0000000000' + value;
- return this._translateDigits(inst, value.substr(value.length - len));
- },
-
- /* Translate digits into other representations.
- @param inst (object) the current settings for this instance
- @param value (string) the text to translate
- @return (string) the translated text */
- _translateDigits: function(inst, value) {
- return ('' + value).replace(/[0-9]/g, function(digit) {
- return inst.options.digits[digit];
- });
- },
-
- /* Translate the format into flags for each period.
- @param inst (object) the current settings for this instance
- @return (string[7]) flags indicating which periods are requested (?) or
- required (!) by year, month, week, day, hour, minute, second */
- _determineShow: function(inst) {
- var format = inst.options.format;
- var show = [];
- show[Y] = (format.match('y') ? '?' : (format.match('Y') ? '!' : null));
- show[O] = (format.match('o') ? '?' : (format.match('O') ? '!' : null));
- show[W] = (format.match('w') ? '?' : (format.match('W') ? '!' : null));
- show[D] = (format.match('d') ? '?' : (format.match('D') ? '!' : null));
- show[H] = (format.match('h') ? '?' : (format.match('H') ? '!' : null));
- show[M] = (format.match('m') ? '?' : (format.match('M') ? '!' : null));
- show[S] = (format.match('s') ? '?' : (format.match('S') ? '!' : null));
- return show;
- },
-
- /* Calculate the requested periods between now and the target time.
- @param inst (object) the current settings for this instance
- @param show (string[7]) flags indicating which periods are requested/required
- @param significant (number) the number of periods with values to show, zero for all
- @param now (Date) the current date and time
- @return (number[7]) the current time periods (always positive)
- by year, month, week, day, hour, minute, second */
- _calculatePeriods: function(inst, show, significant, now) {
- // Find endpoints
- inst._now = now;
- inst._now.setMilliseconds(0);
- var until = new Date(inst._now.getTime());
- if (inst._since) {
- if (now.getTime() < inst._since.getTime()) {
- inst._now = now = until;
- }
- else {
- now = inst._since;
- }
- }
- else {
- until.setTime(inst._until.getTime());
- if (now.getTime() > inst._until.getTime()) {
- inst._now = now = until;
- }
- }
- // Calculate differences by period
- var periods = [0, 0, 0, 0, 0, 0, 0];
- if (show[Y] || show[O]) {
- // Treat end of months as the same
- var lastNow = plugin._getDaysInMonth(now.getFullYear(), now.getMonth());
- var lastUntil = plugin._getDaysInMonth(until.getFullYear(), until.getMonth());
- var sameDay = (until.getDate() == now.getDate() ||
- (until.getDate() >= Math.min(lastNow, lastUntil) &&
- now.getDate() >= Math.min(lastNow, lastUntil)));
- var getSecs = function(date) {
- return (date.getHours() * 60 + date.getMinutes()) * 60 + date.getSeconds();
- };
- var months = Math.max(0,
- (until.getFullYear() - now.getFullYear()) * 12 + until.getMonth() - now.getMonth() +
- ((until.getDate() < now.getDate() && !sameDay) ||
- (sameDay && getSecs(until) < getSecs(now)) ? -1 : 0));
- periods[Y] = (show[Y] ? Math.floor(months / 12) : 0);
- periods[O] = (show[O] ? months - periods[Y] * 12 : 0);
- // Adjust for months difference and end of month if necessary
- now = new Date(now.getTime());
- var wasLastDay = (now.getDate() == lastNow);
- var lastDay = plugin._getDaysInMonth(now.getFullYear() + periods[Y],
- now.getMonth() + periods[O]);
- if (now.getDate() > lastDay) {
- now.setDate(lastDay);
- }
- now.setFullYear(now.getFullYear() + periods[Y]);
- now.setMonth(now.getMonth() + periods[O]);
- if (wasLastDay) {
- now.setDate(lastDay);
- }
- }
- var diff = Math.floor((until.getTime() - now.getTime()) / 1000);
- var extractPeriod = function(period, numSecs) {
- periods[period] = (show[period] ? Math.floor(diff / numSecs) : 0);
- diff -= periods[period] * numSecs;
- };
- extractPeriod(W, 604800);
- extractPeriod(D, 86400);
- extractPeriod(H, 3600);
- extractPeriod(M, 60);
- extractPeriod(S, 1);
- if (diff > 0 && !inst._since) { // Round up if left overs
- var multiplier = [1, 12, 4.3482, 7, 24, 60, 60];
- var lastShown = S;
- var max = 1;
- for (var period = S; period >= Y; period--) {
- if (show[period]) {
- if (periods[lastShown] >= max) {
- periods[lastShown] = 0;
- diff = 1;
- }
- if (diff > 0) {
- periods[period]++;
- diff = 0;
- lastShown = period;
- max = 1;
- }
- }
- max *= multiplier[period];
- }
- }
- if (significant) { // Zero out insignificant periods
- for (var period = Y; period <= S; period++) {
- if (significant && periods[period]) {
- significant--;
- }
- else if (!significant) {
- periods[period] = 0;
- }
- }
- }
- return periods;
- }
-});
-
-// The list of commands that return values and don't permit chaining
-var getters = ['getTimes'];
-
-/* Determine whether a command is a getter and doesn't permit chaining.
- @param command (string, optional) the command to run
- @param otherArgs ([], optional) any other arguments for the command
- @return true if the command is a getter, false if not */
-function isNotChained(command, otherArgs) {
- if (command == 'option' && (otherArgs.length == 0 ||
- (otherArgs.length == 1 && typeof otherArgs[0] == 'string'))) {
- return true;
- }
- return $.inArray(command, getters) > -1;
-}
-
-/* Process the countdown functionality for a jQuery selection.
- @param options (object) the new settings to use for these instances (optional) or
- (string) the command to run (optional)
- @return (jQuery) for chaining further calls or
- (any) getter value */
-$.fn.countdown = function(options) {
- var otherArgs = Array.prototype.slice.call(arguments, 1);
- if (isNotChained(options, otherArgs)) {
- return plugin['_' + options + 'Plugin'].
- apply(plugin, [this[0]].concat(otherArgs));
- }
- return this.each(function() {
- if (typeof options == 'string') {
- if (!plugin['_' + options + 'Plugin']) {
- throw 'Unknown command: ' + options;
- }
- plugin['_' + options + 'Plugin'].
- apply(plugin, [this].concat(otherArgs));
- }
- else {
- plugin._attachPlugin(this, options || {});
- }
- });
-};
-
-/* Initialise the countdown functionality. */
-var plugin = $.countdown = new Countdown(); // Singleton instance
-
-})(jQuery);
diff --git a/assets/plugins/countdown/plugin/jquery.countdown.min.js b/assets/plugins/countdown/plugin/jquery.countdown.min.js
deleted file mode 100644
index d60a999..0000000
--- a/assets/plugins/countdown/plugin/jquery.countdown.min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/* http://keith-wood.name/countdown.html
- Countdown for jQuery v1.6.2.
- Written by Keith Wood (kbwood{at}iinet.com.au) January 2008.
- Available under the MIT (https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt) license.
- Please attribute the author if you use it. */
-(function($){function Countdown(){this.regional=[];this.regional['']={labels:['Years','Months','Weeks','Days','Hours','Minutes','Seconds'],labels1:['Year','Month','Week','Day','Hour','Minute','Second'],compactLabels:['y','m','w','d'],whichLabels:null,digits:['0','1','2','3','4','5','6','7','8','9'],timeSeparator:':',isRTL:false};this._defaults={until:null,since:null,timezone:null,serverSync:null,format:'dHMS',layout:'',compact:false,significant:0,description:'',expiryUrl:'',expiryText:'',alwaysExpire:false,onExpiry:null,onTick:null,tickInterval:1};$.extend(this._defaults,this.regional['']);this._serverSyncs=[];function timerCallBack(a){var b=(a<1e12?(b=performance.now?(performance.now()+performance.timing.navigationStart):Date.now()):a||new Date().getTime());if(b-d>=1000){x._updateTargets();d=b}c(timerCallBack)}var c=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||null;var d=0;if(!c||$.noRequestAnimationFrame){$.noRequestAnimationFrame=null;setInterval(function(){x._updateTargets()},980)}else{d=window.animationStartTime||window.webkitAnimationStartTime||window.mozAnimationStartTime||window.oAnimationStartTime||window.msAnimationStartTime||new Date().getTime();c(timerCallBack)}}var Y=0;var O=1;var W=2;var D=3;var H=4;var M=5;var S=6;$.extend(Countdown.prototype,{markerClassName:'hasCountdown',propertyName:'countdown',_rtlClass:'countdown_rtl',_sectionClass:'countdown_section',_amountClass:'countdown_amount',_rowClass:'countdown_row',_holdingClass:'countdown_holding',_showClass:'countdown_show',_descrClass:'countdown_descr',_timerTargets:[],setDefaults:function(a){this._resetExtraLabels(this._defaults,a);$.extend(this._defaults,a||{})},UTCDate:function(a,b,c,e,f,g,h,i){if(typeof b=='object'&&b.constructor==Date){i=b.getMilliseconds();h=b.getSeconds();g=b.getMinutes();f=b.getHours();e=b.getDate();c=b.getMonth();b=b.getFullYear()}var d=new Date();d.setUTCFullYear(b);d.setUTCDate(1);d.setUTCMonth(c||0);d.setUTCDate(e||1);d.setUTCHours(f||0);d.setUTCMinutes((g||0)-(Math.abs(a)<30?a*60:a));d.setUTCSeconds(h||0);d.setUTCMilliseconds(i||0);return d},periodsToSeconds:function(a){return a[0]*31557600+a[1]*2629800+a[2]*604800+a[3]*86400+a[4]*3600+a[5]*60+a[6]},_attachPlugin:function(a,b){a=$(a);if(a.hasClass(this.markerClassName)){return}var c={options:$.extend({},this._defaults),_periods:[0,0,0,0,0,0,0]};a.addClass(this.markerClassName).data(this.propertyName,c);this._optionPlugin(a,b)},_addTarget:function(a){if(!this._hasTarget(a)){this._timerTargets.push(a)}},_hasTarget:function(a){return($.inArray(a,this._timerTargets)>-1)},_removeTarget:function(b){this._timerTargets=$.map(this._timerTargets,function(a){return(a==b?null:a)})},_updateTargets:function(){for(var i=this._timerTargets.length-1;i>=0;i--){this._updateCountdown(this._timerTargets[i])}},_optionPlugin:function(a,b,c){a=$(a);var d=a.data(this.propertyName);if(!b||(typeof b=='string'&&c==null)){var e=b;b=(d||{}).options;return(b&&e?b[e]:b)}if(!a.hasClass(this.markerClassName)){return}b=b||{};if(typeof b=='string'){var e=b;b={};b[e]=c}this._resetExtraLabels(d.options,b);var f=(d.options.timezone!=b.timezone);$.extend(d.options,b);this._adjustSettings(a,d,b.until!=null||b.since!=null||f);var g=new Date();if((d._since&&d._sinceg)){this._addTarget(a[0])}this._updateCountdown(a,d)},_updateCountdown:function(a,b){var c=$(a);b=b||c.data(this.propertyName);if(!b){return}c.html(this._generateHTML(b)).toggleClass(this._rtlClass,b.options.isRTL);if($.isFunction(b.options.onTick)){var d=b._hold!='lap'?b._periods:this._calculatePeriods(b,b._show,b.options.significant,new Date());if(b.options.tickInterval==1||this.periodsToSeconds(d)%b.options.tickInterval==0){b.options.onTick.apply(a,[d])}}var e=b._hold!='pause'&&(b._since?b._now.getTime()=b._until.getTime());if(e&&!b._expiring){b._expiring=true;if(this._hasTarget(a)||b.options.alwaysExpire){this._removeTarget(a);if($.isFunction(b.options.onExpiry)){b.options.onExpiry.apply(a,[])}if(b.options.expiryText){var f=b.options.layout;b.options.layout=b.options.expiryText;this._updateCountdown(a,b);b.options.layout=f}if(b.options.expiryUrl){window.location=b.options.expiryUrl}}b._expiring=false}else if(b._hold=='pause'){this._removeTarget(a)}c.data(this.propertyName,b)},_resetExtraLabels:function(a,b){var c=false;for(var n in b){if(n!='whichLabels'&&n.match(/[Ll]abels/)){c=true;break}}if(c){for(var n in a){if(n.match(/[Ll]abels[02-9]|compactLabels1/)){a[n]=null}}}},_adjustSettings:function(a,b,c){var d;var e=0;var f=null;for(var i=0;i0);h[i]=(c._show[i]=='?'&&!e?null:c._show[i]);f+=(h[i]?1:0);g-=(c._periods[i]>0?1:0)}var j=[false,false,false,false,false,false,false];for(var i=S;i>=Y;i--){if(c._show[i]){if(c._periods[i]){j[i]=true}else{j[i]=g>0;g--}}}var k=(c.options.compact?c.options.compactLabels:c.options.labels);var l=c.options.whichLabels||this._normalLabels;var m=function(a){var b=c.options['compactLabels'+l(c._periods[a])];return(h[a]?d._translateDigits(c,c._periods[a])+(b?b[a]:k[a])+' ':'')};var n=function(a){var b=c.options['labels'+l(c._periods[a])];return((!c.options.significant&&h[a])||(c.options.significant&&j[a])?''+''+d._translateDigits(c,c._periods[a])+' '+(b?b[a]:k[a])+' ':'')};return(c.options.layout?this._buildLayout(c,h,c.options.layout,c.options.compact,c.options.significant,j):((c.options.compact?''+m(Y)+m(O)+m(W)+m(D)+(h[H]?this._minDigits(c,c._periods[H],2):'')+(h[M]?(h[H]?c.options.timeSeparator:'')+this._minDigits(c,c._periods[M],2):'')+(h[S]?(h[H]||h[M]?c.options.timeSeparator:'')+this._minDigits(c,c._periods[S],2):''):''+n(Y)+n(O)+n(W)+n(D)+n(H)+n(M)+n(S))+' '+(c.options.description?''+c.options.description+' ':'')))},_buildLayout:function(c,d,e,f,g,h){var j=c.options[f?'compactLabels':'labels'];var k=c.options.whichLabels||this._normalLabels;var l=function(a){return(c.options[(f?'compactLabels':'labels')+k(c._periods[a])]||j)[a]};var m=function(a,b){return c.options.digits[Math.floor(a/b)%10]};var o={desc:c.options.description,sep:c.options.timeSeparator,yl:l(Y),yn:this._minDigits(c,c._periods[Y],1),ynn:this._minDigits(c,c._periods[Y],2),ynnn:this._minDigits(c,c._periods[Y],3),y1:m(c._periods[Y],1),y10:m(c._periods[Y],10),y100:m(c._periods[Y],100),y1000:m(c._periods[Y],1000),ol:l(O),on:this._minDigits(c,c._periods[O],1),onn:this._minDigits(c,c._periods[O],2),onnn:this._minDigits(c,c._periods[O],3),o1:m(c._periods[O],1),o10:m(c._periods[O],10),o100:m(c._periods[O],100),o1000:m(c._periods[O],1000),wl:l(W),wn:this._minDigits(c,c._periods[W],1),wnn:this._minDigits(c,c._periods[W],2),wnnn:this._minDigits(c,c._periods[W],3),w1:m(c._periods[W],1),w10:m(c._periods[W],10),w100:m(c._periods[W],100),w1000:m(c._periods[W],1000),dl:l(D),dn:this._minDigits(c,c._periods[D],1),dnn:this._minDigits(c,c._periods[D],2),dnnn:this._minDigits(c,c._periods[D],3),d1:m(c._periods[D],1),d10:m(c._periods[D],10),d100:m(c._periods[D],100),d1000:m(c._periods[D],1000),hl:l(H),hn:this._minDigits(c,c._periods[H],1),hnn:this._minDigits(c,c._periods[H],2),hnnn:this._minDigits(c,c._periods[H],3),h1:m(c._periods[H],1),h10:m(c._periods[H],10),h100:m(c._periods[H],100),h1000:m(c._periods[H],1000),ml:l(M),mn:this._minDigits(c,c._periods[M],1),mnn:this._minDigits(c,c._periods[M],2),mnnn:this._minDigits(c,c._periods[M],3),m1:m(c._periods[M],1),m10:m(c._periods[M],10),m100:m(c._periods[M],100),m1000:m(c._periods[M],1000),sl:l(S),sn:this._minDigits(c,c._periods[S],1),snn:this._minDigits(c,c._periods[S],2),snnn:this._minDigits(c,c._periods[S],3),s1:m(c._periods[S],1),s10:m(c._periods[S],10),s100:m(c._periods[S],100),s1000:m(c._periods[S],1000)};var p=e;for(var i=Y;i<=S;i++){var q='yowdhms'.charAt(i);var r=new RegExp('\\{'+q+'<\\}(.*)\\{'+q+'>\\}','g');p=p.replace(r,((!g&&d[i])||(g&&h[i])?'$1':''))}$.each(o,function(n,v){var a=new RegExp('\\{'+n+'\\}','g');p=p.replace(a,v)});return p},_minDigits:function(a,b,c){b=''+b;if(b.length>=c){return this._translateDigits(a,b)}b='0000000000'+b;return this._translateDigits(a,b.substr(b.length-c))},_translateDigits:function(b,c){return(''+c).replace(/[0-9]/g,function(a){return b.options.digits[a]})},_determineShow:function(a){var b=a.options.format;var c=[];c[Y]=(b.match('y')?'?':(b.match('Y')?'!':null));c[O]=(b.match('o')?'?':(b.match('O')?'!':null));c[W]=(b.match('w')?'?':(b.match('W')?'!':null));c[D]=(b.match('d')?'?':(b.match('D')?'!':null));c[H]=(b.match('h')?'?':(b.match('H')?'!':null));c[M]=(b.match('m')?'?':(b.match('M')?'!':null));c[S]=(b.match('s')?'?':(b.match('S')?'!':null));return c},_calculatePeriods:function(c,d,e,f){c._now=f;c._now.setMilliseconds(0);var g=new Date(c._now.getTime());if(c._since){if(f.getTime()c._until.getTime()){c._now=f=g}}var h=[0,0,0,0,0,0,0];if(d[Y]||d[O]){var i=x._getDaysInMonth(f.getFullYear(),f.getMonth());var j=x._getDaysInMonth(g.getFullYear(),g.getMonth());var k=(g.getDate()==f.getDate()||(g.getDate()>=Math.min(i,j)&&f.getDate()>=Math.min(i,j)));var l=function(a){return(a.getHours()*60+a.getMinutes())*60+a.getSeconds()};var m=Math.max(0,(g.getFullYear()-f.getFullYear())*12+g.getMonth()-f.getMonth()+((g.getDate()o){f.setDate(o)}f.setFullYear(f.getFullYear()+h[Y]);f.setMonth(f.getMonth()+h[O]);if(n){f.setDate(o)}}var p=Math.floor((g.getTime()-f.getTime())/1000);var q=function(a,b){h[a]=(d[a]?Math.floor(p/b):0);p-=h[a]*b};q(W,604800);q(D,86400);q(H,3600);q(M,60);q(S,1);if(p>0&&!c._since){var r=[1,12,4.3482,7,24,60,60];var s=S;var t=1;for(var u=S;u>=Y;u--){if(d[u]){if(h[s]>=t){h[s]=0;p=1}if(p>0){h[u]++;p=0;s=u;t=1}}t*=r[u]}}if(e){for(var u=Y;u<=S;u++){if(e&&h[u]){e--}else if(!e){h[u]=0}}}return h}});var w=['getTimes'];function isNotChained(a,b){if(a=='option'&&(b.length==0||(b.length==1&&typeof b[0]=='string'))){return true}return $.inArray(a,w)>-1}$.fn.countdown=function(a){var b=Array.prototype.slice.call(arguments,1);if(isNotChained(a,b)){return x['_'+a+'Plugin'].apply(x,[this[0]].concat(b))}return this.each(function(){if(typeof a=='string'){if(!x['_'+a+'Plugin']){throw'Unknown command: '+a;}x['_'+a+'Plugin'].apply(x,[this].concat(b))}else{x._attachPlugin(this,a||{})}})};var x=$.countdown=new Countdown()})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/fancybox/.gitattributes b/assets/plugins/fancybox/.gitattributes
deleted file mode 100644
index f6bb280..0000000
--- a/assets/plugins/fancybox/.gitattributes
+++ /dev/null
@@ -1,7 +0,0 @@
-# Auto detect text files and perform LF normalization
-* text=auto
-
-# Denote all files that are truly binary and should not be modified.
-*.png binary
-*.jpg binary
-*.gif binary
\ No newline at end of file
diff --git a/assets/plugins/fancybox/CHANGELOG.txt b/assets/plugins/fancybox/CHANGELOG.txt
deleted file mode 100644
index 07c987e..0000000
--- a/assets/plugins/fancybox/CHANGELOG.txt
+++ /dev/null
@@ -1,115 +0,0 @@
-fancyBox - Changelog
-=========
-
-### Version 2.1.3 - October 23, 2012
-
-* Fixed #426 - Broken IE7
-* Fixed #423 - Background flickering on iOS
-* Fixed #418 - Automatically Grow/Shrink and Center
-* Updated the script to work with jQuery 1.6
-* Media helper supports YouTube video series
-
-### Version 2.1.2 - October 15, 2012
-
-* Fixed #414 - Don't allow nextClick if there is only one item
-* Fixed #397 - Button helper 'Menu' not visible in IE7
-* Overlay can be opened/closed manually:
-* $.fancybox.helpers.overlay.open();
-* $.fancybox.helpers.overlay.open({closeClick : false});
-* $.fancybox.helpers.overlay.close();
-* Optimized for Internet Explorer 10 (Windows 8)
-
-### Version 2.1.1 - October 01, 2012
-
-* Fixed #357 - Converting values like 'auto' in getScalar()
-* Fixed #358 - Updated overlay background image
-* New "fancybox-href" and "fancybox-title" HTML5 data-attributes (#317)
-* Improved helpers:
-* - now they can have a property 'defaults' that contains default settings
-* - updated vimeo and youtube parsers for media helper
-* Content locking now can be turned off
-
-### Version 2.1.0 - August 20, 2012
-
-* Fixed #103 - DOM element re-injection after closing
-* Fixed #188 - navigation keys inside editable content
-* New animation directions (see https://github.com/fancyapps/fancyBox/issues/233#issuecomment-5512453)
-* New option "iframe" - it is now possible to separate scrolling for iframe and wrapping element; choose to preload
-* New option "swf" - brings back functionality from fancyBox v1
-* Improved media helper - better support for vimeo and youtube; links are now configurable
-* Rewritten overlay helper:
-* - new option "showEarly" - toggles if should be open before of after content is loaded
-* - Facebook-style (https://github.com/fancyapps/fancyBox/issues/24) and therefore uses image for background
-* Option "padding" accepts array (e.g., padding: [15, 50, 10, 5])
-* One of dimensions (width or height) can now be set to "auto" (option "autoSize" needs to be "false")
-* Updated callbacks:
-* - "beforeClose" is now called only once
-* - "afterLoad" receives current and previous object as arguments
-* Method "$.fancybox.update();" recalculates content width/height
-* Updated to work with jQuery v1.8
-
-### Version 2.0.6 - April 16, 2012
-
-* Fixed #188 - keystrokes in contenteditable
-* Fixed #171 - non-images should not be preloaded
-* Fixed #158 - 'closeClick: true' breaks gallery navigation
-* New "media" helper - detects and displays various media types
-* New option "groupAttr" - name of group selector attribute, default is "data-fancybox-group"
-* New feature - selector expressions in URLs, see #170
-* Improved 'overlay' helper to use "position: fixed"
-* Improved autoSize, fixed wrong height in some cases
-* Improved centering and iframe scrolling for iOS
-* Updated markup, new element '.fancybox-skin' is now used for styling
-
-### Version 2.0.5 - February 21, 2012
-
-* Fixed #155 - easing for prev/next animations
-* Fixed #153 - overriding "keys" options
-* Fixed #147 - IE7 problem with #hash links
-* Fixed #130 - changing dynamically data-fancybox-group
-* Fixed #126 - obey minWidth/minHeight
-* Fixed #118 - placement of loading icon and navigation arrows
-* Fixed #101 - "index" option not working
-* Fixed #94 - "orig" option not working
-* Fixed #80 - does not work on IE6
-* Fixed #72 - can't set overlay opacity to 0
-* Fixed #63 - properly set gallery index
-* New option "autoCenter" - toggles centering on window resize or scroll, disabled for mobile devices by default
-* New option "autoResize" - toggles responsivity, disabled for mobile devices by default
-* New option "preload" - number of images to preload
-* New feature to target mobile/desktop browsers using CSS, see #108
-* Changed ajax option defaults to "{ dataType: 'html', headers: { 'X-fancyBox': true } }", see #150 and #128
-* Updated loading icon for IE7, IE8
-* Calculates height of the iframe if 'autoSize' is set to 'true' and the iframe is on the same domain as the main page
-
-### Version 2.0.4 - December 12, 2011
-
-* Fixed #47 - fix overriding properties
-* New option "position" to thumbnail and button helpers
-
-
-### Version 2.0.3 - November 29, 2011
-
-* Fixed #29 - broken elastic transitions
-
-
-### Version 2.0.2 - November 28, 2011
-
-* Fixed slideshow
-* Fixed scrollbars issue when displayed a very tall image
-* New option "nextClick" - navigate to next gallery item when user clicks the content
-* New option "modal" - to disable navigation and closing
-* Add 'metadata' plugin support
-* Add ability to create groups using 'data-fancybox-group' attribute
-* Updated manual usage to match earlier releases
-
-
-### Version 2.0.1 - November 23, 2011
-
-* Fixed keyboard events inside form elements
-* Fixed manual usage
-
-
-### Version 2.0.0 - November 21, 2011
-
-First release - completely rewritten, many new features and updated graphics.
\ No newline at end of file
diff --git a/assets/plugins/fancybox/README.txt b/assets/plugins/fancybox/README.txt
deleted file mode 100644
index 9434893..0000000
--- a/assets/plugins/fancybox/README.txt
+++ /dev/null
@@ -1,217 +0,0 @@
-fancyBox
-========
-
-fancyBox is a tool that offers a nice and elegant way to add zooming functionality for images, html content and multi-media on your webpages.
-
-More information and examples: http://www.fancyapps.com/fancybox/
-
-License: http://www.fancyapps.com/fancybox/#license
-
-Copyright (c) 2012 Janis Skarnelis - janis@fancyapps.com
-
-
-How to use
-----------
-
-To get started, download the plugin, unzip it and copy files to your website/application directory.
-Load files in the section of your HTML document. Make sure you also add the jQuery library.
-
-
-
-
-
-
-
-Create your links with a `title` if you want a title to be shown, and add a class:
-
-
-
-If you have a set of related items that you would like to group,
-additionally include a group name in the `rel` (or `data-fancybox-group`) attribute:
-
-
-
-
-Initialise the script like this:
-
-
-
-May also be passed an optional options object which will extend the default values. Example:
-
-
-
-Tip: Automatically group and apply fancyBox to all images:
-
- $("a[href$='.jpg'],a[href$='.jpeg'],a[href$='.png'],a[href$='.gif']").attr('rel', 'gallery').fancybox();
-
-Script uses the `href` attribute of the matched elements to obtain the location of the content and to figure out content type you want to display.
-You can specify type directly by adding classname (fancybox.image, fancybox.iframe, etc) or `data-fancybox-type` attribute:
-
- //Ajax:
- Example
- //or
- Example
-
- //Iframe:
- Example
-
- //Inline (will display an element with `id="example"`)
- Example
-
- //SWF:
- Example
-
- //Image:
- Example
-
-Note, ajax requests are subject to the [same origin policy](http://en.wikipedia.org/wiki/Same_origin_policy).
-If fancyBox will not be able to get content type, it will try to guess based on 'href' and will quit silently if would not succeed.
-(this is different from previsous versions where 'ajax' was used as default type or an error message was displayed).
-
-Advanced
---------
-
-### Helpers
-
-Helpers provide a simple mechanism to extend the capabilities of fancyBox. There are two built-in helpers - 'overlay' and 'title'.
-You can disable them, set custom options or enable other helpers. Examples:
-
- //Disable title helper
- $(".fancybox").fancybox({
- helpers: {
- title: null
- }
- });
-
- //Disable overlay helper
- $(".fancybox").fancybox({
- helpers: {
- overlay : null
- }
- });
-
- //Change title position and overlay color
- $(".fancybox").fancybox({
- helpers: {
- title : {
- type : 'inside'
- },
- overlay : {
- css : {
- 'background' : 'rgba(255,255,255,0.5)'
- }
- }
- }
- });
-
- //Enable thumbnail helper and set custom options
- $(".fancybox").fancybox({
- helpers: {
- thumbs : {
- width: 50,
- height: 50
- }
- }
- });
-
-
-### API
-
-Also available are event driven callback methods. The `this` keyword refers to the current or upcoming object (depends on callback method). Here is how you can change title:
-
- $(".fancybox").fancybox({
- beforeLoad : function() {
- this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
-
- /*
- "this.element" refers to current element, so you can, for example, use the "alt" attribute of the image to store the title:
- this.title = $(this.element).find('img').attr('alt');
- */
- }
- });
-
-It`s possible to open fancyBox programmatically in various ways:
-
- //HTML content:
- $.fancybox( '', {
- title : 'Custom Title'
- });
-
- //DOM element:
- $.fancybox( $("#inline"), {
- title : 'Custom Title'
- });
-
- //Custom object:
- $.fancybox({
- href: 'example.jpg',
- title : 'Custom Title'
- });
-
- //Array of objects:
- $.fancybox([
- {
- href: 'example1.jpg',
- title : 'Custom Title 1'
- },
- {
- href: 'example2.jpg',
- title : 'Custom Title 2'
- }
- ], {
- padding: 0
- });
-
-There are several methods that allow you to interact with and manipulate fancyBox, example:
-
- //Close fancybox:
- $.fancybox.close();
-
-There is a simply way to access wrapping elements using JS:
-
- $.fancybox.wrap
- $.fancybox.skin
- $.fancybox.outer
- $.fancybox.inner
-
-You can override CSS to customize the look. For example, make navigation arrows always visible,
-change width and move them outside of area (use this snippet after including fancybox.css):
-
- .fancybox-nav span {
- visibility: visible;
- }
-
- .fancybox-nav {
- width: 80px;
- }
-
- .fancybox-prev {
- left: -80px;
- }
-
- .fancybox-next {
- right: -80px;
- }
-
-In that case, you might want to increase space around box:
-
- $(".fancybox").fancybox({
- margin : [20, 60, 20, 60]
- });
-
-
-Bug tracker
------------
-
-Have a bug? Please create an issue on GitHub at https://github.com/fancyapps/fancyBox/issues
\ No newline at end of file
diff --git a/assets/plugins/fancybox/demo/1_b.jpg b/assets/plugins/fancybox/demo/1_b.jpg
deleted file mode 100644
index 0f662e3..0000000
Binary files a/assets/plugins/fancybox/demo/1_b.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/1_s.jpg b/assets/plugins/fancybox/demo/1_s.jpg
deleted file mode 100644
index ef0bd55..0000000
Binary files a/assets/plugins/fancybox/demo/1_s.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/2_b.jpg b/assets/plugins/fancybox/demo/2_b.jpg
deleted file mode 100644
index 977cb6a..0000000
Binary files a/assets/plugins/fancybox/demo/2_b.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/2_s.jpg b/assets/plugins/fancybox/demo/2_s.jpg
deleted file mode 100644
index 258cbcb..0000000
Binary files a/assets/plugins/fancybox/demo/2_s.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/3_b.jpg b/assets/plugins/fancybox/demo/3_b.jpg
deleted file mode 100644
index e007a51..0000000
Binary files a/assets/plugins/fancybox/demo/3_b.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/3_s.jpg b/assets/plugins/fancybox/demo/3_s.jpg
deleted file mode 100644
index 7206f24..0000000
Binary files a/assets/plugins/fancybox/demo/3_s.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/4_b.jpg b/assets/plugins/fancybox/demo/4_b.jpg
deleted file mode 100644
index a3a12a6..0000000
Binary files a/assets/plugins/fancybox/demo/4_b.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/4_s.jpg b/assets/plugins/fancybox/demo/4_s.jpg
deleted file mode 100644
index b9ea423..0000000
Binary files a/assets/plugins/fancybox/demo/4_s.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/5_b.jpg b/assets/plugins/fancybox/demo/5_b.jpg
deleted file mode 100644
index ea1cfbc..0000000
Binary files a/assets/plugins/fancybox/demo/5_b.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/5_s.jpg b/assets/plugins/fancybox/demo/5_s.jpg
deleted file mode 100644
index 989975d..0000000
Binary files a/assets/plugins/fancybox/demo/5_s.jpg and /dev/null differ
diff --git a/assets/plugins/fancybox/demo/ajax.txt b/assets/plugins/fancybox/demo/ajax.txt
deleted file mode 100644
index 0850e80..0000000
--- a/assets/plugins/fancybox/demo/ajax.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
Lorem ipsum dolor sit amet3
-
- Close me
-
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas fermentum ante et sapien dignissim in viverra magna feugiat. Donec tempus ipsum nec neque dignissim quis eleifend eros gravida. Praesent nisi massa, sodales quis tincidunt ac, semper quis risus. In suscipit nisl sed leo aliquet consequat. Integer vitae augue in risus porttitor pellentesque eu eget odio. Fusce ut sagittis quam. Morbi aliquam interdum blandit. Integer pharetra tempor velit, aliquam dictum justo tempus sed. Morbi congue fringilla justo a feugiat. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent quis metus et nisl consectetur pharetra. Nam bibendum turpis eu metus luctus eu volutpat sem molestie. Nam sollicitudin porttitor lorem, ac ultricies est venenatis eu. Ut dignissim elit et orci feugiat ac placerat purus euismod. Ut mi lorem, cursus et sagittis elementum, luctus ac massa.
-
-
- Phasellus et ligula vel diam ullamcorper volutpat. Integer rhoncus rhoncus aliquam. Aliquam erat volutpat. Aenean luctus vestibulum placerat. Quisque quam neque, lacinia aliquet eleifend ac, aliquet blandit felis. Curabitur porta ultricies dui, sit amet mattis quam euismod a. Ut eleifend scelerisque neque, sit amet accumsan odio consequat ut. Proin facilisis auctor elit sed accumsan. Cras dapibus nisl in nisi rhoncus laoreet. Nullam pellentesque tortor libero, eget facilisis ipsum. Donec ultricies tellus tellus, in tincidunt purus. Nullam in est aliquam velit scelerisque blandit. In tincidunt, magna a dapibus imperdiet, quam urna elementum leo, vitae rhoncus nisl velit cursus velit. In dignissim sem ac mauris rhoncus ornare.
-
-
- Duis imperdiet velit vel quam malesuada suscipit imperdiet tellus hendrerit. Mauris vestibulum odio mauris, ut placerat leo. Mauris quis neque at tellus feugiat congue id non enim. Nam vehicula posuere nulla eget vehicula. Donec pretium purus nec ligula porta eu laoreet sapien venenatis. Nulla facilisi. Phasellus eget mi enim. Phasellus molestie tincidunt ultrices. Aenean id sem a tellus lobortis tincidunt. Nam laoreet nulla vel velit tincidunt ac rutrum libero malesuada. Nulla consequat dolor quis nisl tempor fermentum. Integer sodales pretium varius. Aenean a leo vitae odio dictum dignissim malesuada nec dolor. Phasellus adipiscing viverra est, ac sagittis libero sagittis quis. Sed interdum dapibus nunc et fringilla. Nunc vel velit et urna laoreet bibendum.
-
-
\ No newline at end of file
diff --git a/assets/plugins/fancybox/demo/iframe.html b/assets/plugins/fancybox/demo/iframe.html
deleted file mode 100644
index b586e15..0000000
--- a/assets/plugins/fancybox/demo/iframe.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
- fancyBox - iframe demo
-
-
-
- fancyBox - iframe demo
-
-
- Close iframe parent
-
- |
-
- Change content
-
-
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam scelerisque justo ac eros consectetur bibendum. In hac habitasse platea dictumst. Nulla aliquam turpis et tellus elementum luctus. Duis sit amet rhoncus velit. Duis nisl ligula, mattis interdum blandit laoreet, mattis id ante. Cras pulvinar lacus vitae nisi egestas non euismod neque bibendum. Vestibulum faucibus libero id ante molestie ultricies. Vestibulum quis nibh felis. Vestibulum libero nisl, vehicula vel ullamcorper sit amet, tristique sit amet augue. Etiam urna neque, porttitor sed sodales lacinia, posuere a nisl. Vestibulum blandit neque in sapien volutpat ac condimentum sapien auctor. Ut imperdiet venenatis ultricies. Phasellus accumsan, sem eu placerat commodo, felis purus commodo ipsum, sit amet vulputate orci est viverra est.
-
-
-
- Aenean velit est, condimentum ut iaculis ut, accumsan at mi. Maecenas velit mi, venenatis ut condimentum at, ultrices vel tortor. Curabitur pharetra ornare dapibus. Ut volutpat cursus semper. In hac habitasse platea dictumst. Donec eu iaculis ipsum. Morbi eu dolor velit, a semper nunc.
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/fancybox/demo/index.html b/assets/plugins/fancybox/demo/index.html
deleted file mode 100644
index b9764aa..0000000
--- a/assets/plugins/fancybox/demo/index.html
+++ /dev/null
@@ -1,307 +0,0 @@
-
-
-
- fancyBox - Fancy jQuery Lightbox Alternative | Demonstration
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- fancyBox
-
- This is a demonstration. More information and examples: www.fancyapps.com/fancybox/
-
- Simple image gallery
-
-
-
-
-
-
-
-
-
-
- Different effects
-
-
-
-
-
-
-
-
-
-
- Various types
-
- fancyBox will try to guess content type from href attribute but you can specify it directly by adding classname (fancybox.image, fancybox.iframe, etc).
-
-
-
-
-
Etiam quis mi eu elit
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis mi eu elit tempor facilisis id et neque. Nulla sit amet sem sapien. Vestibulum imperdiet porta ante ac ornare. Nulla et lorem eu nibh adipiscing ultricies nec at lacus. Cras laoreet ultricies sem, at blandit mi eleifend aliquam. Nunc enim ipsum, vehicula non pretium varius, cursus ac tortor. Vivamus fringilla congue laoreet. Quisque ultrices sodales orci, quis rhoncus justo auctor in. Phasellus dui eros, bibendum eu feugiat ornare, faucibus eu mi. Nunc aliquet tempus sem, id aliquam diam varius ac. Maecenas nisl nunc, molestie vitae eleifend vel, iaculis sed magna. Aenean tempus lacus vitae orci posuere porttitor eget non felis. Donec lectus elit, aliquam nec eleifend sit amet, vestibulum sed nunc.
-
-
-
-
- Ajax example will not run from your local computer and requires a server to run.
-
-
- Button helper
-
-
-
-
-
-
-
-
-
-
- Thumbnail helper
-
-
-
-
-
-
-
-
-
-
- Media helper
-
- Will not run from your local computer, requires a server to run.
-
-
-
-
- Open manually
-
-
-
- Photo Credit: Instagrammer @whitjohns
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/fancybox/lib/jquery-1.8.2.min.js b/assets/plugins/fancybox/lib/jquery-1.8.2.min.js
deleted file mode 100644
index bc3fbc8..0000000
--- a/assets/plugins/fancybox/lib/jquery-1.8.2.min.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/*! jQuery v1.8.2 jquery.com | jquery.org/license */
-(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;ba ",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&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 p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(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 bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(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 bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML=" ",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML=" ";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="
",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d ",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="
",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML=" ",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/ ]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""," "],legend:[1,""," "],thead:[1,""],tr:[2,""],td:[3,""],col:[2,""],area:[1,""," "],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X","
"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>$2>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/
-
-
-
-
-
-
-
-
- FlexSlider 2
- The best responsive slider. Period.
- Download Flexslider
-
- Other Examples
-
-
-
-
-
-
-
-
-
-
- $(window).load(function() {
- $('.flexslider').flexslider({
- animation: "slide",
- animationLoop: false,
- itemWidth: 210,
- itemMargin: 5
- });
- });
-
-
-
-
- <!-- Place somewhere in the <body> of your page -->
- <div class="flexslider">
- <ul class="slides">
- <li>
- <img src="slide1.jpg" />
- </li>
- <li>
- <img src="slide2.jpg" />
- </li>
- <li>
- <img src="slide3.jpg" />
- </li>
- <li>
- <img src="slide4.jpg" />
- </li>
- <!-- items mirrored twice, total of 12 -->
- </ul>
- </div>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/carousel-min-max.html b/assets/plugins/flexslider/demo/carousel-min-max.html
deleted file mode 100644
index 8c2ae45..0000000
--- a/assets/plugins/flexslider/demo/carousel-min-max.html
+++ /dev/null
@@ -1,178 +0,0 @@
-
-
-
-
- FlexSlider 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- FlexSlider 2
- The best responsive slider. Period.
- Download Flexslider
-
- Other Examples
-
-
-
-
-
-
-
-
-
Carousel With Min & Max Ranges
-
-
-
-
- // Can also be used with $(document).ready()
- $(window).load(function() {
- $('.flexslider').flexslider({
- animation: "slide",
- animationLoop: false,
- itemWidth: 210,
- itemMargin: 5,
- minItems: 2,
- maxItems: 4
- });
- });
-
-
-
-
- <!-- Place somewhere in the <body> of your page -->
- <div class="flexslider">
- <ul class="slides">
- <li>
- <img src="slide1.jpg" />
- </li>
- <li>
- <img src="slide2.jpg" />
- </li>
- <li>
- <img src="slide3.jpg" />
- </li>
- <li>
- <img src="slide4.jpg" />
- </li>
- <!-- items mirrored twice, total of 12 -->
- </ul>
- </div>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/css/demo.css b/assets/plugins/flexslider/demo/css/demo.css
deleted file mode 100644
index fb35cdb..0000000
--- a/assets/plugins/flexslider/demo/css/demo.css
+++ /dev/null
@@ -1,241 +0,0 @@
-/* Reset Styles
-***********************/
-html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
-}
-/* HTML5 display-role reset for older browsers */
-article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
-body {line-height: 1;}
-ol, ul {list-style: none;}
-blockquote, q demo
-blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
-table {border-collapse: collapse; border-spacing: 0;}
-strong {font-weight: bold;}
-em {font-style: italic;}
-
-
-/*
- * MyFonts Webfont Build ID 1114443, 2011-09-02T06:08:04-0400 - REGULAR
- * MyFonts Webfont Build ID 1118460, 2011-09-05T07:13:16-0400 - MEDIUM
- * MyFonts Webfont Build ID 825795, 2011-05-26T03:42:08-0400 - SEMIBOLD
- *
- * The fonts listed in this notice are subject to the End User License
- * Agreement(s) entered into by the website owner. All other parties are
- * explicitly restricted from using the Licensed Webfonts(s).
- *
- * You may obtain a valid license at the URLs below
- *
- * License: http://www.myfonts.com/viewlicense?type=web&buildid=1114443 - REGULAR
- * License: http://www.myfonts.com/viewlicense?type=web&buildid=1118460 - MEDIUM
- * License: http://www.myfonts.com/viewlicense?1056 - SEMIBOLD
- *
- * Webfont: Geogrotesque SemiBold
- * URL: http://new.myfonts.com/fonts/emtype/geogrotesque/semibold/
- * Foundry: Emtype Foundry
- * Copyright: Copyright © 2009 by Eduardo Manso. All rights reserved.
- * Licensed pageviews: 10,000,000/month
- *
- * © 2011 Bitstream Inc
-*/
-
-/* GEO - Semibold */
-@font-face {font-family: 'Geogrotesque-SemiBold';src: url('../fonts/webfonts/geo-semibold/eot/style_169898.eot');src: url('../fonts/webfonts/geo-semibold/eot/style_169898.eot?#iefix') format('embedded-opentype'),url('../fonts/webfonts/geo-semibold/woff/style_169898.woff') format('woff'),url('../fonts/webfonts/geo-semibold/ttf/style_169898.ttf') format('truetype'),url('../fonts/webfonts/geo-semibold/svg/style_169898.svg#Geogrotesque-SemiBold') format('svg');}
-
-/* GEO - Medium */
-@font-face {font-family: 'Geogrotesque-Medium';src: url('../fonts/webfonts/geo-medium/eot/1110FC_0.eot');src: url('../fonts/webfonts/geo-medium/eot/1110FC_0.eot?#iefix') format('embedded-opentype'),url('../fonts/webfonts/geo-medium/woff/1110FC_0.woff') format('woff'),url('../fonts/webfonts/geo-medium/ttf/1110FC_0.ttf') format('truetype'),url('webfonts/1110FC_0.svg#wf') format('svg');}
-
-/* GEO - Regular */
- @font-face {font-family: 'Geogrotesque-Regular';src: url('../fonts/webfonts/geo-regular/eot/11014B_0.eot');src: url('../fonts/webfonts/geo-regular/eot/11014B_0.eot?#iefix') format('embedded-opentype'),url('../fonts/webfonts/geo-regular/woff/11014B_0.woff') format('woff'),url('../fonts/webfonts/geo-regular/ttf/11014B_0.ttf') format('truetype'),url('../fonts/webfonts/geo-regular/svg/11014B_0.svg#wf') format('svg');}
-
-
-
-/* General
-***********************/
-body {
- background: #fff; font-size: 14px; font-family: Helvetica, 'Arial', sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
- height: auto;
- background: rgb(113,153,183); /* Old browsers */
- background: -moz-radial-gradient(top, ellipse cover, rgba(113,153,183,1) 0%, rgba(48,100,148,1) 100%); /* FF3.6+ */
- background: -webkit-gradient(radial, top center, 0px, center center, 100%, color-stop(0%,rgba(113,153,183,1)), color-stop(100%,rgba(48,100,148,1))); /* Chrome,Safari4+ */
- background: -webkit-radial-gradient(top, ellipse cover, rgba(113,153,183,1) 0%,rgba(48,100,148,1) 100%); /* Chrome10+,Safari5.1+ */
- background: -o-radial-gradient(top, ellipse cover, rgba(113,153,183,1) 0%,rgba(48,100,148,1) 100%); /* Opera 12+ */
- background: -ms-radial-gradient(top, ellipse cover, rgba(113,153,183,1) 0%,rgba(48,100,148,1) 100%); /* IE10+ */
- background: radial-gradient(top, ellipse cover, rgba(113,153,183,1) 0%,rgba(48,100,148,1) 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7199b7', endColorstr='#306494',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
-}
-a {color: #fff; text-decoration: none;}
-
-h3 { margin: 0 0 8px; color: #fff; font: normal 24px Geogrotesque-semibold, Helvetica, Arial, sans-serif; text-shadow: 0 1px 0 #2F4C63; }
-p {font-size: 14px; line-height: 18px;}
-
-.toggle {margin: 2px 0 0 14px; float: left; border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; }
-.toggle li {float: left;}
-.toggle li a {width: 50px; padding: 6px 0; text-align: center; display: block; text-shadow: 1px 1px 0 #fff; font-size: 12px; font-weight: 600; color: #666; -webkit-border-radius: 0 4px 4px 0; -moz-border-radius: 0 4px 4px 0; -o-border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0;
-
-background: #ffffff; /* Old browsers */
-background: -moz-linear-gradient(top, #ffffff 0%, #ededed 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, #ffffff 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, #ffffff 0%,#ededed 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, #ffffff 0%,#ededed 100%); /* IE10+ */
-background: linear-gradient(top, #ffffff 0%,#ededed 100%); /* W3C */
-filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
-
-box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #fff;
--moz-box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #fff;
--webkit-box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #fff;
-
-}
-.toggle li:first-child a {-webkit-border-radius: 4px 0 0 4px; -moz-border-radius: 4px 0 0 4px; -o-border-radius: 4px 0 0 4px; border-radius: 4px 0 0 4px;}
-.toggle li a:hover { background: #ededed; color: #222; }
-.toggle li a.active { background: #c8e0f3; color: #325874; cursor: default; box-shadow: inset 0 0 3px rgba(0,0,0,0.4); -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.4); -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.4); }
-
-#slider {margin: 0 0 10px!important;}
-#carousel li {margin-right: 5px;}
-#carousel img {display: block; opacity: .5; cursor: pointer;}
-#carousel img:hover {opacity: 1;}
-#carousel .flex-active-slide img {opacity: 1; cursor: default;}
-
-
-/* Loading
-***********************/
-.loading aside {opacity: 0;}
-aside {width: 100%; float: left; opacity: 1; -webkit-transition: opacity 1s ease;}
-aside h3 {float: left;}
-
-/* Layout
-***********************/
-#top { position: relative; z-index: 999; height:65px; padding: 5px 0; border-bottom: 1px solid #577794;
-
-background: rgb(226,232,239); /* Old browsers */
-background: -moz-linear-gradient(top, rgba(226,232,239,1) 0%, rgba(210,219,228,1) 100%); /* FF3.6+ */
-background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(226,232,239,1)), color-stop(100%,rgba(210,219,228,1))); /* Chrome,Safari4+ */
-background: -webkit-linear-gradient(top, rgba(226,232,239,1) 0%,rgba(210,219,228,1) 100%); /* Chrome10+,Safari5.1+ */
-background: -o-linear-gradient(top, rgba(226,232,239,1) 0%,rgba(210,219,228,1) 100%); /* Opera 11.10+ */
-background: -ms-linear-gradient(top, rgba(226,232,239,1) 0%,rgba(210,219,228,1) 100%); /* IE10+ */
-background: linear-gradient(top, rgba(226,232,239,1) 0%,rgba(210,219,228,1) 100%); /* W3C */
-
- }
-#top { text-align: center; }
-#top .top-inner { max-width: 800px; width: auto; }
-#top img { float: none; display: inline; margin-top: 12px; }
-#container {padding: 60px 40px 100px; border-top: 1px solid #93b6d2;}
-header {width: 420px; float: left;}
-#main {margin-left: 420px; margin-top: -25px;overflow: hidden;}
-
-/* Header
-***********************/
-header h1 { font-family: Geogrotesque-Semibold, Helvetica, Arial, sans-serif; margin: 0 0 10px; text-shadow: 0 1px 0 #2F4C63; color: #fff; font-size: 42px; }
-header h2 { margin: 0 0 30px; font: normal 20px Geogrotesque-regular, Helvetica, Arial, sans-serif; text-shadow: 0 1px 1px #555; color: #fff; }
-header .button { margin: 0 0 50px; padding: 10px 15px 10px 15px; display: block; float: left; position: relative; -webkit-transition: all .2s ease; -moz-transition: all .2s ease; transition: all .2s ease;}
-nav {clear: both;}
-nav h3 {margin: 0 0 10px; padding: 0 0 3px; font-size: 18px;text-shadow: 0 1px 1px #555; color: #fff; font-family: Geogrotesque-Regular, Helvetica, Arial, sans-serif; border-bottom: 1px solid #fff; border-bottom: 1px solid rgba(255,255,255,0.5); display: inline-block; }
-nav li {margin: 0 0 7px; font-size: 15px; text-transform: lowercase;}
-nav li a:hover,
-nav li a.active {border-bottom: 1px dotted #fff; border-bottom: 1px dotted rgba(255,255,255,0.3); background: none;}
-nav li a.active { cursor: default; }
-
-/* SyntaxHighlighter
-***********************/
-.syntaxhighlighter {width: auto!important; font-size: 13px !important; line-height: 21px !important; font-family: Courier, "Courier New", monospace; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; background-color: #fff !important; box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
-.syntaxhighlighter .string, .syntaxhighlighter .string a {color: #ff5454 !important;}
-.syntaxhighlighter .line.alt1,
-.syntaxhighlighter .line.alt2 {width: 100% !important; padding: 0 !important; background-color: #fff !important;}
-.syntaxhighlighter .line.highlighted.alt1,
-.syntaxhighlighter .line.highlighted.alt2 {background-color: #fff !important;}
-.syntaxhighlighter table td.code {width: auto !important; padding: 10px 12px!important;}
-.syntaxhighlighter table td.code .line {width: auto !important; padding: 0 !important;}
-.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {color: #cc7ac6!important;}
-.syntaxhighlighter .plain, .syntaxhighlighter .plain a {color: #888!important;}
-.syntaxhighlighter .comments, .syntaxhighlighter .comments a {color: #999!important;}
-.syntaxhighlighter .keyword {color: #2a93b9!important;}
-
-/* --Clearfix */
-.cf:before,
-.cf:after {content:""; display:table;}
-.cf:after {clear:both;}
-.cf {zoom:1;}
-
-/* Media Queries
-***********************/
-
-.button {
- display: inline-block;
- margin: 2px 0;
- padding: 5px 15px 3px;
- border: 1px solid #336693;
- border-bottom-color: #336693;
- color: #fff!important;
- text-align: center;
- text-decoration: none !important;
- text-shadow: 0 -1px 0 hsla(0,0%,0%,.3);
- text-transform: uppercase;
- font: bold 12px/16px sans-serif;
- cursor:pointer;
-
- /*Border radius*/
- -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;
-
- /*Background*/
- background: #274d70; /*Fallback*/
- background: -webkit-gradient( linear, left top, left bottom, color-stop(.2, #336693), color-stop(1, #274d70));
- background: -moz-linear-gradient( center top, #336693 20%, #274d70 100% );
-
- /*Box shadow*/
- -webkit-box-shadow: inset 0 1px 0 hsla(0,100%,100%,.3) /*Top*/, inset 0 0 2px hsla(0,100%,100%,.3) /*Shine*/, 0 1px 2px hsla(0, 0%, 0%, .29) /*Shadow*/;
- -moz-box-shadow: inset 0 1px 0 hsla(0,100%,100%,.3) /*Top*/, inset 0 0 2px hsla(0,100%,100%,.3) /*Shine*/, 0 1px 2px hsla(0, 0%, 0%, .29) /*Shadow*/;
- box-shadow: inset 0 1px 0 hsla(0,100%,100%,.3) /*Top*/, inset 0 0 2px hsla(0,100%,100%,.3) /*Shine*/, 0 1px 2px hsla(0, 0%, 0%, .29) /*Shadow*/;
-}
-
-.button:hover {
- color: #fff;
- text-decoration: none!important;
- /*Background*/
- background: #396083; /*Fallback*/
- background: -webkit-gradient( linear, left top, left bottom, color-stop(.2, #3c77ab), color-stop(1, #396083) );
- background: -moz-linear-gradient( center top, #3c77ab 20%, #396083 100% );
-}
-
-/* GREEN */
-
-.button.green {
- border: 1px solid #467d16;
- border-bottom-color: #467d16;
-
- /*Background*/
- background: #447e12; /*Fallback*/
- background: -webkit-gradient( linear, left top, left bottom, color-stop(.2, #71b02f), color-stop(1, #447e12));
- background: -moz-linear-gradient( center top, #71b02f 20%, #447e12 100% );
-}
-
-.button.green:hover {
- /*Background*/
- background: #508e1b; /*Fallback*/
- background: -webkit-gradient( linear, left top, left bottom, color-stop(.2, #7cbc3a), color-stop(1, #508e1b));
- background: -moz-linear-gradient( center top, #7cbc3a 20%, #508e1b 100% );
-}
-
-
-/* Media Queries
-***********************/
-@media screen and (max-width: 960px) {
- #container {padding: 35px;}
- header {width: 380px;}
- #main {margin-left: 380px;}
-}
-@media screen and (max-width: 768px) {
- #container {padding: 20px 30px;}
- header {width: 100%; float: none; text-align: center;}
- header h1 {margin: 0 auto 10px;}
- header .button,
- header nav {display: none;}
- #main {margin-left: 0;}
-}
-@media screen and (max-width: 500px) {
- header h1 {width: 246px; }
-}
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/css/shCore.css b/assets/plugins/flexslider/demo/css/shCore.css
deleted file mode 100644
index 34f6864..0000000
--- a/assets/plugins/flexslider/demo/css/shCore.css
+++ /dev/null
@@ -1,226 +0,0 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/SyntaxHighlighter
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
- *
- * @version
- * 3.0.83 (July 02 2010)
- *
- * @copyright
- * Copyright (C) 2004-2010 Alex Gorbatchev.
- *
- * @license
- * Dual licensed under the MIT and GPL licenses.
- */
-.syntaxhighlighter a,
-.syntaxhighlighter div,
-.syntaxhighlighter code,
-.syntaxhighlighter table,
-.syntaxhighlighter table td,
-.syntaxhighlighter table tr,
-.syntaxhighlighter table tbody,
-.syntaxhighlighter table thead,
-.syntaxhighlighter table caption,
-.syntaxhighlighter textarea {
- -moz-border-radius: 0 0 0 0 !important;
- -webkit-border-radius: 0 0 0 0 !important;
- background: none !important;
- border: 0 !important;
- bottom: auto !important;
- float: none !important;
- height: auto !important;
- left: auto !important;
- line-height: 1.1em !important;
- margin: 0 !important;
- outline: 0 !important;
- overflow: visible !important;
- padding: 0 !important;
- position: static !important;
- right: auto !important;
- text-align: left !important;
- top: auto !important;
- vertical-align: baseline !important;
- width: auto !important;
- box-sizing: content-box !important;
- font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
- font-weight: normal !important;
- font-style: normal !important;
- font-size: 1em !important;
- min-height: inherit !important;
- min-height: auto !important;
-}
-
-.syntaxhighlighter {
- width: 100% !important;
- margin: 1em 0 1em 0 !important;
- position: relative !important;
- overflow: auto !important;
- font-size: 1em !important;
-}
-.syntaxhighlighter.source {
- overflow: hidden !important;
-}
-.syntaxhighlighter .bold {
- font-weight: bold !important;
-}
-.syntaxhighlighter .italic {
- font-style: italic !important;
-}
-.syntaxhighlighter .line {
- white-space: pre !important;
-}
-.syntaxhighlighter table {
- width: 100% !important;
-}
-.syntaxhighlighter table caption {
- text-align: left !important;
- padding: .5em 0 0.5em 1em !important;
-}
-.syntaxhighlighter table td.code {
- width: 100% !important;
-}
-.syntaxhighlighter table td.code .container {
- position: relative !important;
-}
-.syntaxhighlighter table td.code .container textarea {
- box-sizing: border-box !important;
- position: absolute !important;
- left: 0 !important;
- top: 0 !important;
- width: 100% !important;
- height: 100% !important;
- border: none !important;
- background: white !important;
- padding-left: 1em !important;
- overflow: hidden !important;
- white-space: pre !important;
-}
-.syntaxhighlighter table td.gutter .line {
- text-align: right !important;
- padding: 0 0.5em 0 1em !important;
-}
-.syntaxhighlighter table td.code .line {
- padding: 0 1em !important;
-}
-.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
- padding-left: 0em !important;
-}
-.syntaxhighlighter.show {
- display: block !important;
-}
-.syntaxhighlighter.collapsed table {
- display: none !important;
-}
-.syntaxhighlighter.collapsed .toolbar {
- padding: 0.1em 0.8em 0em 0.8em !important;
- font-size: 1em !important;
- position: static !important;
- width: auto !important;
- height: auto !important;
-}
-.syntaxhighlighter.collapsed .toolbar span {
- display: inline !important;
- margin-right: 1em !important;
-}
-.syntaxhighlighter.collapsed .toolbar span a {
- padding: 0 !important;
- display: none !important;
-}
-.syntaxhighlighter.collapsed .toolbar span a.expandSource {
- display: inline !important;
-}
-.syntaxhighlighter .toolbar {
- position: absolute !important;
- right: 1px !important;
- top: 1px !important;
- width: 11px !important;
- height: 11px !important;
- font-size: 10px !important;
- z-index: 10 !important;
-}
-.syntaxhighlighter .toolbar span.title {
- display: inline !important;
-}
-.syntaxhighlighter .toolbar a {
- display: block !important;
- text-align: center !important;
- text-decoration: none !important;
- padding-top: 1px !important;
-}
-.syntaxhighlighter .toolbar a.expandSource {
- display: none !important;
-}
-.syntaxhighlighter.ie {
- font-size: .9em !important;
- padding: 1px 0 1px 0 !important;
-}
-.syntaxhighlighter.ie .toolbar {
- line-height: 8px !important;
-}
-.syntaxhighlighter.ie .toolbar a {
- padding-top: 0px !important;
-}
-.syntaxhighlighter.printing .line.alt1 .content,
-.syntaxhighlighter.printing .line.alt2 .content,
-.syntaxhighlighter.printing .line.highlighted .number,
-.syntaxhighlighter.printing .line.highlighted.alt1 .content,
-.syntaxhighlighter.printing .line.highlighted.alt2 .content {
- background: none !important;
-}
-.syntaxhighlighter.printing .line .number {
- color: #bbbbbb !important;
-}
-.syntaxhighlighter.printing .line .content {
- color: black !important;
-}
-.syntaxhighlighter.printing .toolbar {
- display: none !important;
-}
-.syntaxhighlighter.printing a {
- text-decoration: none !important;
-}
-.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
- color: black !important;
-}
-.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
- color: #008200 !important;
-}
-.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
- color: blue !important;
-}
-.syntaxhighlighter.printing .keyword {
- color: #006699 !important;
- font-weight: bold !important;
-}
-.syntaxhighlighter.printing .preprocessor {
- color: gray !important;
-}
-.syntaxhighlighter.printing .variable {
- color: #aa7700 !important;
-}
-.syntaxhighlighter.printing .value {
- color: #009900 !important;
-}
-.syntaxhighlighter.printing .functions {
- color: #ff1493 !important;
-}
-.syntaxhighlighter.printing .constants {
- color: #0066cc !important;
-}
-.syntaxhighlighter.printing .script {
- font-weight: bold !important;
-}
-.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
- color: gray !important;
-}
-.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
- color: #ff1493 !important;
-}
-.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
- color: red !important;
-}
-.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
- color: black !important;
-}
diff --git a/assets/plugins/flexslider/demo/css/shThemeDefault.css b/assets/plugins/flexslider/demo/css/shThemeDefault.css
deleted file mode 100644
index 1365411..0000000
--- a/assets/plugins/flexslider/demo/css/shThemeDefault.css
+++ /dev/null
@@ -1,117 +0,0 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/SyntaxHighlighter
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
- *
- * @version
- * 3.0.83 (July 02 2010)
- *
- * @copyright
- * Copyright (C) 2004-2010 Alex Gorbatchev.
- *
- * @license
- * Dual licensed under the MIT and GPL licenses.
- */
-.syntaxhighlighter {
- background-color: white !important;
-}
-.syntaxhighlighter .line.alt1 {
- background-color: white !important;
-}
-.syntaxhighlighter .line.alt2 {
- background-color: white !important;
-}
-.syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
- background-color: #e0e0e0 !important;
-}
-.syntaxhighlighter .line.highlighted.number {
- color: black !important;
-}
-.syntaxhighlighter table caption {
- color: black !important;
-}
-.syntaxhighlighter .gutter {
- color: #afafaf !important;
-}
-.syntaxhighlighter .gutter .line {
- border-right: 3px solid #6ce26c !important;
-}
-.syntaxhighlighter .gutter .line.highlighted {
- background-color: #6ce26c !important;
- color: white !important;
-}
-.syntaxhighlighter.printing .line .content {
- border: none !important;
-}
-.syntaxhighlighter.collapsed {
- overflow: visible !important;
-}
-.syntaxhighlighter.collapsed .toolbar {
- color: blue !important;
- background: white !important;
- border: 1px solid #6ce26c !important;
-}
-.syntaxhighlighter.collapsed .toolbar a {
- color: blue !important;
-}
-.syntaxhighlighter.collapsed .toolbar a:hover {
- color: red !important;
-}
-.syntaxhighlighter .toolbar {
- color: white !important;
- background: #6ce26c !important;
- border: none !important;
-}
-.syntaxhighlighter .toolbar a {
- color: white !important;
-}
-.syntaxhighlighter .toolbar a:hover {
- color: black !important;
-}
-.syntaxhighlighter .plain, .syntaxhighlighter .plain a {
- color: black !important;
-}
-.syntaxhighlighter .comments, .syntaxhighlighter .comments a {
- color: #008200 !important;
-}
-.syntaxhighlighter .string, .syntaxhighlighter .string a {
- color: blue !important;
-}
-.syntaxhighlighter .keyword {
- color: #006699 !important;
-}
-.syntaxhighlighter .preprocessor {
- color: gray !important;
-}
-.syntaxhighlighter .variable {
- color: #aa7700 !important;
-}
-.syntaxhighlighter .value {
- color: #009900 !important;
-}
-.syntaxhighlighter .functions {
- color: #ff1493 !important;
-}
-.syntaxhighlighter .constants {
- color: #0066cc !important;
-}
-.syntaxhighlighter .script {
- font-weight: bold !important;
- color: #006699 !important;
- background-color: none !important;
-}
-.syntaxhighlighter .color1, .syntaxhighlighter .color1 a {
- color: gray !important;
-}
-.syntaxhighlighter .color2, .syntaxhighlighter .color2 a {
- color: #ff1493 !important;
-}
-.syntaxhighlighter .color3, .syntaxhighlighter .color3 a {
- color: red !important;
-}
-
-.syntaxhighlighter .keyword {
- font-weight: bold !important;
-}
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/eot/1110FC_0.eot b/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/eot/1110FC_0.eot
deleted file mode 100644
index 01bb181..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/eot/1110FC_0.eot and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/svg/1110FC_0.svg b/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/svg/1110FC_0.svg
deleted file mode 100644
index 5cc5483..0000000
--- a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/svg/1110FC_0.svg
+++ /dev/null
@@ -1,411 +0,0 @@
-
-
-This is a Webfont from MyFonts. Full information about this font:
-http://www.myfonts.com/fonts/emtype/geogrotesque/
- Copyright (c) 2009 by Eduardo Manso. All rights reserved. Geogrotesque is a trademark of Eduardo Manso.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/svg/svg_test.html b/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/svg/svg_test.html
deleted file mode 100644
index fb7c83d..0000000
--- a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/svg/svg_test.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-MyFonts Webfonts Demo for iOS devices
-
-
-
-
-
-
-
-
-MyFonts Webfonts Demo for iOS devices
-
-
-
-
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-An, partus ancillae sitne in fructu habendus, disseretur inter principes civitatis, P. Scaevolam M'.que Manilium, ab iisque M. Brutus dissentiet -- quod et acutum genus est et ad usus civium non inutile, nosque ea scripta reliquaque eiusdem generis et legimus libenter et legemus --, haec, quae vitam omnem continent, neglegentur? nam, ut sint illa vendibiliora, haec uberiora certe sunt. quamquam id quidem licebit iis existimare, qui legerint. nos autem hanc omnem quaestionem de finibus bonorum et malorum fere a nobis explicatam esse his litteris arbitramur, in quibus, quantum potuimus, non modo quid nobis probaretur, sed etiam quid a singulis philosophiae disciplinis diceretur, persecuti sumus.
-
-Id qui in una virtute ponunt et splendore nominis capti quid natura postulet non intellegunt, errore maximo, si Epicurum audire voluerint, liberabuntur: istae enim vestrae eximiae pulchraeque virtutes nisi voluptatem efficerent, quis eas aut laudabilis aut expetendas arbitraretur? ut enim medicorum scientiam non ipsius artis, sed bonae valetudinis causa probamus, et gubernatoris ars, quia bene navigandi rationem habet, utilitate, non arte laudatur, sic sapientia, quae ars vivendi putanda est, non expeteretur, si nihil efficeret; nunc expetitur, quod est tamquam artifex conquirendae et comparandae voluptatis.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/ttf/1110FC_0.ttf b/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/ttf/1110FC_0.ttf
deleted file mode 100644
index a43d6c3..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/ttf/1110FC_0.ttf and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/woff/1110FC_0.woff b/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/woff/1110FC_0.woff
deleted file mode 100644
index f431702..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-medium/woff/1110FC_0.woff and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/eot/11014B_0.eot b/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/eot/11014B_0.eot
deleted file mode 100644
index b87819c..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/eot/11014B_0.eot and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/svg/11014B_0.svg b/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/svg/11014B_0.svg
deleted file mode 100644
index b366c72..0000000
--- a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/svg/11014B_0.svg
+++ /dev/null
@@ -1,403 +0,0 @@
-
-
-This is a Webfont from MyFonts. Full information about this font:
-http://www.myfonts.com/fonts/emtype/geogrotesque/
- Copyright (c) 2009 by Eduardo Manso. All rights reserved. Geogrotesque is a trademark of Eduardo Manso.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/svg/svg_test.html b/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/svg/svg_test.html
deleted file mode 100644
index 2d76f6a..0000000
--- a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/svg/svg_test.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-MyFonts Webfonts Demo for iOS devices
-
-
-
-
-
-
-
-
-MyFonts Webfonts Demo for iOS devices
-
-
-
-
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-An, partus ancillae sitne in fructu habendus, disseretur inter principes civitatis, P. Scaevolam M'.que Manilium, ab iisque M. Brutus dissentiet -- quod et acutum genus est et ad usus civium non inutile, nosque ea scripta reliquaque eiusdem generis et legimus libenter et legemus --, haec, quae vitam omnem continent, neglegentur? nam, ut sint illa vendibiliora, haec uberiora certe sunt. quamquam id quidem licebit iis existimare, qui legerint. nos autem hanc omnem quaestionem de finibus bonorum et malorum fere a nobis explicatam esse his litteris arbitramur, in quibus, quantum potuimus, non modo quid nobis probaretur, sed etiam quid a singulis philosophiae disciplinis diceretur, persecuti sumus.
-
-Id qui in una virtute ponunt et splendore nominis capti quid natura postulet non intellegunt, errore maximo, si Epicurum audire voluerint, liberabuntur: istae enim vestrae eximiae pulchraeque virtutes nisi voluptatem efficerent, quis eas aut laudabilis aut expetendas arbitraretur? ut enim medicorum scientiam non ipsius artis, sed bonae valetudinis causa probamus, et gubernatoris ars, quia bene navigandi rationem habet, utilitate, non arte laudatur, sic sapientia, quae ars vivendi putanda est, non expeteretur, si nihil efficeret; nunc expetitur, quod est tamquam artifex conquirendae et comparandae voluptatis.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/ttf/11014B_0.ttf b/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/ttf/11014B_0.ttf
deleted file mode 100644
index 27e926e..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/ttf/11014B_0.ttf and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/woff/11014B_0.woff b/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/woff/11014B_0.woff
deleted file mode 100644
index cae7abd..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-regular/woff/11014B_0.woff and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/eot/style_169898.eot b/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/eot/style_169898.eot
deleted file mode 100644
index 7fe26f1..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/eot/style_169898.eot and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/svg/index.html b/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/svg/index.html
deleted file mode 100644
index 5ae427c..0000000
--- a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/svg/index.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-MyFonts Webfonts Demo for iOS devices
-
-
-
-
-
-
-
-
-MyFonts Webfonts Demo for iOS devices
-
-
-
-
-Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
-
-An, partus ancillae sitne in fructu habendus, disseretur inter principes civitatis, P. Scaevolam M'.que Manilium, ab iisque M. Brutus dissentiet -- quod et acutum genus est et ad usus civium non inutile, nosque ea scripta reliquaque eiusdem generis et legimus libenter et legemus --, haec, quae vitam omnem continent, neglegentur? nam, ut sint illa vendibiliora, haec uberiora certe sunt. quamquam id quidem licebit iis existimare, qui legerint. nos autem hanc omnem quaestionem de finibus bonorum et malorum fere a nobis explicatam esse his litteris arbitramur, in quibus, quantum potuimus, non modo quid nobis probaretur, sed etiam quid a singulis philosophiae disciplinis diceretur, persecuti sumus.
-
-Id qui in una virtute ponunt et splendore nominis capti quid natura postulet non intellegunt, errore maximo, si Epicurum audire voluerint, liberabuntur: istae enim vestrae eximiae pulchraeque virtutes nisi voluptatem efficerent, quis eas aut laudabilis aut expetendas arbitraretur? ut enim medicorum scientiam non ipsius artis, sed bonae valetudinis causa probamus, et gubernatoris ars, quia bene navigandi rationem habet, utilitate, non arte laudatur, sic sapientia, quae ars vivendi putanda est, non expeteretur, si nihil efficeret; nunc expetitur, quod est tamquam artifex conquirendae et comparandae voluptatis.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/svg/style_169898.svg b/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/svg/style_169898.svg
deleted file mode 100644
index 7a48dbb..0000000
--- a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/svg/style_169898.svg
+++ /dev/null
@@ -1,419 +0,0 @@
-
-
-This is a Webfont from MyFonts. Full information about this font:
-http://www.myfonts.com/fonts/emtype/geogrotesque/semibold//
- Copyright (c) 2009 by Eduardo Manso. All rights reserved. Geogrotesque is a trademark of Eduardo Manso.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/ttf/style_169898.ttf b/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/ttf/style_169898.ttf
deleted file mode 100644
index 9ac21e8..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/ttf/style_169898.ttf and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/woff/style_169898.woff b/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/woff/style_169898.woff
deleted file mode 100644
index 1ad3fbf..0000000
Binary files a/assets/plugins/flexslider/demo/fonts/webfonts/geo-semibold/woff/style_169898.woff and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/images/kitchen_adventurer_caramel.jpg b/assets/plugins/flexslider/demo/images/kitchen_adventurer_caramel.jpg
deleted file mode 100644
index 1d8d695..0000000
Binary files a/assets/plugins/flexslider/demo/images/kitchen_adventurer_caramel.jpg and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/images/kitchen_adventurer_cheesecake_brownie.jpg b/assets/plugins/flexslider/demo/images/kitchen_adventurer_cheesecake_brownie.jpg
deleted file mode 100644
index 2fee762..0000000
Binary files a/assets/plugins/flexslider/demo/images/kitchen_adventurer_cheesecake_brownie.jpg and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/images/kitchen_adventurer_donut.jpg b/assets/plugins/flexslider/demo/images/kitchen_adventurer_donut.jpg
deleted file mode 100644
index dca3a6e..0000000
Binary files a/assets/plugins/flexslider/demo/images/kitchen_adventurer_donut.jpg and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/images/kitchen_adventurer_lemon.jpg b/assets/plugins/flexslider/demo/images/kitchen_adventurer_lemon.jpg
deleted file mode 100644
index 2f4bff8..0000000
Binary files a/assets/plugins/flexslider/demo/images/kitchen_adventurer_lemon.jpg and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/images/logo.png b/assets/plugins/flexslider/demo/images/logo.png
deleted file mode 100644
index 5eb90ab..0000000
Binary files a/assets/plugins/flexslider/demo/images/logo.png and /dev/null differ
diff --git a/assets/plugins/flexslider/demo/index.html b/assets/plugins/flexslider/demo/index.html
deleted file mode 100644
index d121b7a..0000000
--- a/assets/plugins/flexslider/demo/index.html
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
-
-
- FlexSlider 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- FlexSlider 2
- The best responsive slider. Period.
- Download Flexslider
-
- Other Examples
-
-
-
-
-
-
-
-
-
-
- // Can also be used with $(document).ready()
- $(window).load(function() {
- $('.flexslider').flexslider({
- animation: "slide"
- });
- });
-
-
-
-
- <!-- Place somewhere in the <body> of your page -->
- <div class="flexslider">
- <ul class="slides">
- <li>
- <img src="slide1.jpg" />
- </li>
- <li>
- <img src="slide2.jpg" />
- </li>
- <li>
- <img src="slide3.jpg" />
- </li>
- <li>
- <img src="slide4.jpg" />
- </li>
- </ul>
- </div>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/js/demo.js b/assets/plugins/flexslider/demo/js/demo.js
deleted file mode 100644
index 25eb342..0000000
--- a/assets/plugins/flexslider/demo/js/demo.js
+++ /dev/null
@@ -1,16 +0,0 @@
-$(function(){
- var toggles = $('.toggle a'),
- codes = $('.code');
-
- toggles.on("click", function(event){
- event.preventDefault();
- var $this = $(this);
-
- if (!$this.hasClass("active")) {
- toggles.removeClass("active");
- $this.addClass("active");
- codes.hide().filter(this.hash).show();
- }
- });
- toggles.first().click();
-});
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/js/froogaloop.js b/assets/plugins/flexslider/demo/js/froogaloop.js
deleted file mode 100644
index a9c7d2d..0000000
--- a/assets/plugins/flexslider/demo/js/froogaloop.js
+++ /dev/null
@@ -1,4 +0,0 @@
-var Froogaloop=function(){function e(c){return new e.fn.init(c)}function g(c,b,a){if(!a.contentWindow.postMessage)return!1;var d=a.getAttribute("src").split("?")[0],c=JSON.stringify({method:c,value:b});a.contentWindow.postMessage(c,d)}function i(c){var b,a;try{b=JSON.parse(c.data),a=b.event||b.method}catch(l){}"ready"==a&&!h&&(h=!0);if(c.origin!=j)return!1;var c=b.value,e=b.data,f=""===f?null:b.player_id;b=f?d[f][a]:d[a];a=[];if(!b)return!1;void 0!==c&&a.push(c);e&&a.push(e);f&&a.push(f);return 0<
-a.length?b.apply(null,a):b.call()}function k(c,b,a){a?(d[a]||(d[a]={}),d[a][c]=b):d[c]=b}var d={},h=!1,j="";e.fn=e.prototype={element:null,init:function(c){"string"===typeof c&&(c=document.getElementById(c));this.element=c;for(var c=this.element.getAttribute("src").split("/"),b="",a=0,d=c.length;aa)b+=c[a];else break;2>a&&(b+="/")}j=b;return this},api:function(c,b){if(!this.element||!c)return!1;var a=this.element,d=""!==a.id?a.id:null,e=!b||!b.constructor||!b.call||!b.apply?b:null,f=
-b&&b.constructor&&b.call&&b.apply?b:null;f&&k(c,f,d);g(c,e,a);return this},addEvent:function(c,b){if(!this.element)return!1;var a=this.element,d=""!==a.id?a.id:null;k(c,b,d);"ready"!=c?g("addEventListener",c,a):"ready"==c&&h&&b.call(null,d);return this},removeEvent:function(c){if(!this.element)return!1;var b=this.element,a;a:{if((a=""!==b.id?b.id:null)&&d[a]){if(!d[a][c]){a=!1;break a}d[a][c]=null}else{if(!d[c]){a=!1;break a}d[c]=null}a=!0}"ready"!=c&&a&&g("removeEventListener",c,b)}};e.fn.init.prototype=
-e.fn;window.addEventListener?window.addEventListener("message",i,!1):window.attachEvent("onmessage",i,!1);return window.Froogaloop=window.$f=e}();
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/js/jquery.easing.js b/assets/plugins/flexslider/demo/js/jquery.easing.js
deleted file mode 100644
index eea539e..0000000
--- a/assets/plugins/flexslider/demo/js/jquery.easing.js
+++ /dev/null
@@ -1,205 +0,0 @@
-/*
- * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
- *
- * Uses the built in easing capabilities added In jQuery 1.1
- * to offer multiple easing options
- *
- * TERMS OF USE - jQuery Easing
- *
- * Open source under the BSD License.
- *
- * Copyright © 2008 George McGinley Smith
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice, this list of
- * conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice, this list
- * of conditions and the following disclaimer in the documentation and/or other materials
- * provided with the distribution.
- *
- * Neither the name of the author nor the names of contributors may be used to endorse
- * or promote products derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
- * OF THE POSSIBILITY OF SUCH DAMAGE.
- *
-*/
-
-// t: current time, b: begInnIng value, c: change In value, d: duration
-jQuery.easing['jswing'] = jQuery.easing['swing'];
-
-jQuery.extend( jQuery.easing,
-{
- def: 'easeOutQuad',
- swing: function (x, t, b, c, d) {
- //alert(jQuery.easing.default);
- return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
- },
- easeInQuad: function (x, t, b, c, d) {
- return c*(t/=d)*t + b;
- },
- easeOutQuad: function (x, t, b, c, d) {
- return -c *(t/=d)*(t-2) + b;
- },
- easeInOutQuad: function (x, t, b, c, d) {
- if ((t/=d/2) < 1) return c/2*t*t + b;
- return -c/2 * ((--t)*(t-2) - 1) + b;
- },
- easeInCubic: function (x, t, b, c, d) {
- return c*(t/=d)*t*t + b;
- },
- easeOutCubic: function (x, t, b, c, d) {
- return c*((t=t/d-1)*t*t + 1) + b;
- },
- easeInOutCubic: function (x, t, b, c, d) {
- if ((t/=d/2) < 1) return c/2*t*t*t + b;
- return c/2*((t-=2)*t*t + 2) + b;
- },
- easeInQuart: function (x, t, b, c, d) {
- return c*(t/=d)*t*t*t + b;
- },
- easeOutQuart: function (x, t, b, c, d) {
- return -c * ((t=t/d-1)*t*t*t - 1) + b;
- },
- easeInOutQuart: function (x, t, b, c, d) {
- if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
- return -c/2 * ((t-=2)*t*t*t - 2) + b;
- },
- easeInQuint: function (x, t, b, c, d) {
- return c*(t/=d)*t*t*t*t + b;
- },
- easeOutQuint: function (x, t, b, c, d) {
- return c*((t=t/d-1)*t*t*t*t + 1) + b;
- },
- easeInOutQuint: function (x, t, b, c, d) {
- if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
- return c/2*((t-=2)*t*t*t*t + 2) + b;
- },
- easeInSine: function (x, t, b, c, d) {
- return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
- },
- easeOutSine: function (x, t, b, c, d) {
- return c * Math.sin(t/d * (Math.PI/2)) + b;
- },
- easeInOutSine: function (x, t, b, c, d) {
- return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
- },
- easeInExpo: function (x, t, b, c, d) {
- return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
- },
- easeOutExpo: function (x, t, b, c, d) {
- return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
- },
- easeInOutExpo: function (x, t, b, c, d) {
- if (t==0) return b;
- if (t==d) return b+c;
- if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
- return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
- },
- easeInCirc: function (x, t, b, c, d) {
- return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
- },
- easeOutCirc: function (x, t, b, c, d) {
- return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
- },
- easeInOutCirc: function (x, t, b, c, d) {
- if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
- return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
- },
- easeInElastic: function (x, t, b, c, d) {
- var s=1.70158;var p=0;var a=c;
- if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
- if (a < Math.abs(c)) { a=c; var s=p/4; }
- else var s = p/(2*Math.PI) * Math.asin (c/a);
- return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
- },
- easeOutElastic: function (x, t, b, c, d) {
- var s=1.70158;var p=0;var a=c;
- if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
- if (a < Math.abs(c)) { a=c; var s=p/4; }
- else var s = p/(2*Math.PI) * Math.asin (c/a);
- return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
- },
- easeInOutElastic: function (x, t, b, c, d) {
- var s=1.70158;var p=0;var a=c;
- if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
- if (a < Math.abs(c)) { a=c; var s=p/4; }
- else var s = p/(2*Math.PI) * Math.asin (c/a);
- if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
- return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
- },
- easeInBack: function (x, t, b, c, d, s) {
- if (s == undefined) s = 1.70158;
- return c*(t/=d)*t*((s+1)*t - s) + b;
- },
- easeOutBack: function (x, t, b, c, d, s) {
- if (s == undefined) s = 1.70158;
- return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
- },
- easeInOutBack: function (x, t, b, c, d, s) {
- if (s == undefined) s = 1.70158;
- if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
- return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
- },
- easeInBounce: function (x, t, b, c, d) {
- return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
- },
- easeOutBounce: function (x, t, b, c, d) {
- if ((t/=d) < (1/2.75)) {
- return c*(7.5625*t*t) + b;
- } else if (t < (2/2.75)) {
- return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
- } else if (t < (2.5/2.75)) {
- return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
- } else {
- return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
- }
- },
- easeInOutBounce: function (x, t, b, c, d) {
- if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
- return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
- }
-});
-
-/*
- *
- * TERMS OF USE - EASING EQUATIONS
- *
- * Open source under the BSD License.
- *
- * Copyright © 2001 Robert Penner
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice, this list of
- * conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice, this list
- * of conditions and the following disclaimer in the documentation and/or other materials
- * provided with the distribution.
- *
- * Neither the name of the author nor the names of contributors may be used to endorse
- * or promote products derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
- * OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/js/jquery.fitvid.js b/assets/plugins/flexslider/demo/js/jquery.fitvid.js
deleted file mode 100644
index 5a26c68..0000000
--- a/assets/plugins/flexslider/demo/js/jquery.fitvid.js
+++ /dev/null
@@ -1,11 +0,0 @@
-/*global jQuery */
-/*!
-* FitVids 1.0
-*
-* Copyright 2011, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
-* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
-* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
-*
-* Date: Thu Sept 01 18:00:00 2011 -0500
-*/
-(function(a){a.fn.fitVids=function(b){var c={customSelector:null},d=document.createElement("div"),e=document.getElementsByTagName("base")[0]||document.getElementsByTagName("script")[0];return d.className="fit-vids-style",d.innerHTML="",e.parentNode.insertBefore(d,e),b&&a.extend(c,b),this.each(function(){var b=["iframe[src^='http://player.vimeo.com']","iframe[src^='http://www.youtube.com']","iframe[src^='https://www.youtube.com']","iframe[src^='http://www.kickstarter.com']","object","embed"];c.customSelector&&b.push(c.customSelector);var d=a(this).find(b.join(","));d.each(function(){var b=a(this);if(this.tagName.toLowerCase()=="embed"&&b.parent("object").length||b.parent(".fluid-width-video-wrapper").length)return;var c=this.tagName.toLowerCase()=="object"?b.attr("height"):b.height(),d=c/b.width();if(!b.attr("id")){var e="fitvid"+Math.floor(Math.random()*999999);b.attr("id",e)}b.wrap('
').parent(".fluid-width-video-wrapper").css("padding-top",d*100+"%"),b.removeAttr("height").removeAttr("width")})})}})(jQuery)
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/js/jquery.mousewheel.js b/assets/plugins/flexslider/demo/js/jquery.mousewheel.js
deleted file mode 100644
index f1d5f72..0000000
--- a/assets/plugins/flexslider/demo/js/jquery.mousewheel.js
+++ /dev/null
@@ -1,84 +0,0 @@
-/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
- * Licensed under the MIT License (LICENSE.txt).
- *
- * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
- * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
- * Thanks to: Seamus Leahy for adding deltaX and deltaY
- *
- * Version: 3.0.6
- *
- * Requires: 1.2.2+
- */
-
-(function($) {
-
-var types = ['DOMMouseScroll', 'mousewheel'];
-
-if ($.event.fixHooks) {
- for ( var i=types.length; i; ) {
- $.event.fixHooks[ types[--i] ] = $.event.mouseHooks;
- }
-}
-
-$.event.special.mousewheel = {
- setup: function() {
- if ( this.addEventListener ) {
- for ( var i=types.length; i; ) {
- this.addEventListener( types[--i], handler, false );
- }
- } else {
- this.onmousewheel = handler;
- }
- },
-
- teardown: function() {
- if ( this.removeEventListener ) {
- for ( var i=types.length; i; ) {
- this.removeEventListener( types[--i], handler, false );
- }
- } else {
- this.onmousewheel = null;
- }
- }
-};
-
-$.fn.extend({
- mousewheel: function(fn) {
- return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
- },
-
- unmousewheel: function(fn) {
- return this.unbind("mousewheel", fn);
- }
-});
-
-
-function handler(event) {
- var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
- event = $.event.fix(orgEvent);
- event.type = "mousewheel";
-
- // Old school scrollwheel delta
- if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; }
- if ( orgEvent.detail ) { delta = -orgEvent.detail/3; }
-
- // New school multidimensional scroll (touchpads) deltas
- deltaY = delta;
-
- // Gecko
- if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
- deltaY = 0;
- deltaX = -1*delta;
- }
-
- // Webkit
- if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
- if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
-
- // Add event and delta to the front of the arguments
- args.unshift(event, delta, deltaX, deltaY);
-
- return ($.event.dispatch || $.event.handle).apply(this, args);
-}
-
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/js/modernizr.js b/assets/plugins/flexslider/demo/js/modernizr.js
deleted file mode 100644
index 471dead..0000000
--- a/assets/plugins/flexslider/demo/js/modernizr.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/* Modernizr 2.0.6 (Custom Build) | MIT & BSD */
-;window.Modernizr=function(a,b,c){function D(a,b){var c=a.charAt(0).toUpperCase()+a.substr(1),d=(a+" "+o.join(c+" ")+c).split(" ");return C(d,b)}function C(a,b){for(var d in a)if(k[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function B(a,b){return!!~(""+a).indexOf(b)}function A(a,b){return typeof a===b}function z(a,b){return y(n.join(a+";")+(b||""))}function y(a){k.cssText=a}var d="2.0.6",e={},f=!0,g=b.documentElement,h=b.head||b.getElementsByTagName("head")[0],i="modernizr",j=b.createElement(i),k=j.style,l,m=Object.prototype.toString,n=" -webkit- -moz- -o- -ms- -khtml- ".split(" "),o="Webkit Moz O ms Khtml".split(" "),p={},q={},r={},s=[],t=function(a,c,d,e){var f,h,j,k=b.createElement("div");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:i+(d+1),k.appendChild(j);f=["",""].join(""),k.id=i,k.innerHTML+=f,g.appendChild(k),h=c(k,a),k.parentNode.removeChild(k);return!!h},u=function(b){if(a.matchMedia)return matchMedia(b).matches;var c;t("@media "+b+" { #"+i+" { position: absolute; } }",function(b){c=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle).position=="absolute"});return c},v,w={}.hasOwnProperty,x;!A(w,c)&&!A(w.call,c)?x=function(a,b){return w.call(a,b)}:x=function(a,b){return b in a&&A(a.constructor.prototype[b],c)},p.rgba=function(){y("background-color:rgba(150,255,150,.5)");return B(k.backgroundColor,"rgba")},p.boxshadow=function(){return D("boxShadow")},p.csstransitions=function(){return D("transitionProperty")};for(var E in p)x(p,E)&&(v=E.toLowerCase(),e[v]=p[E](),s.push((e[v]?"":"no-")+v));e.addTest=function(a,b){if(typeof a=="object")for(var d in a)x(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return;b=typeof b=="boolean"?b:!!b(),g.className+=" "+(b?"":"no-")+a,e[a]=b}return e},y(""),j=l=null,a.attachEvent&&function(){var a=b.createElement("div");a.innerHTML=" ";return a.childNodes.length!==1}()&&function(a,b){function s(a){var b=-1;while(++b=u.minw)&&(!u.maxw||u.maxw&&l<=u.maxw))m[u.media]||(m[u.media]=[]),m[u.media].push(f[u.rules])}for(var t in g)g[t]&&g[t].parentNode===j&&j.removeChild(g[t]);for(var t in m){var v=c.createElement("style"),w=m[t].join("\n");v.type="text/css",v.media=t,v.styleSheet?v.styleSheet.cssText=w:v.appendChild(c.createTextNode(w)),n.appendChild(v),g.push(v)}j.insertBefore(n,o.nextSibling)}},s=function(a,b){var c=t();if(!!c){c.open("GET",a,!0),c.onreadystatechange=function(){c.readyState==4&&(c.status==200||c.status==304)&&b(c.responseText)};if(c.readyState==4)return;c.send()}},t=function(){var a=!1,b=[function(){return new ActiveXObject("Microsoft.XMLHTTP")},function(){return new XMLHttpRequest}],c=b.length;while(c--){try{a=b[c]()}catch(d){continue}break}return function(){return a}}();m(),respond.update=m,a.addEventListener?a.addEventListener("resize",u,!1):a.attachEvent&&a.attachEvent("onresize",u)}}(this,Modernizr.mq("only all")),function(a,b,c){function k(a){return!a||a=="loaded"||a=="complete"}function j(){var a=1,b=-1;while(p.length- ++b)if(p[b].s&&!(a=p[b].r))break;a&&g()}function i(a){var c=b.createElement("script"),d;c.src=a.s,c.onreadystatechange=c.onload=function(){!d&&k(c.readyState)&&(d=1,j(),c.onload=c.onreadystatechange=null)},m(function(){d||(d=1,j())},H.errorTimeout),a.e?c.onload():n.parentNode.insertBefore(c,n)}function h(a){var c=b.createElement("link"),d;c.href=a.s,c.rel="stylesheet",c.type="text/css";if(!a.e&&(w||r)){var e=function(a){m(function(){if(!d)try{a.sheet.cssRules.length?(d=1,j()):e(a)}catch(b){b.code==1e3||b.message=="security"||b.message=="denied"?(d=1,m(function(){j()},0)):e(a)}},0)};e(c)}else c.onload=function(){d||(d=1,m(function(){j()},0))},a.e&&c.onload();m(function(){d||(d=1,j())},H.errorTimeout),!a.e&&n.parentNode.insertBefore(c,n)}function g(){var a=p.shift();q=1,a?a.t?m(function(){a.t=="c"?h(a):i(a)},0):(a(),j()):q=0}function f(a,c,d,e,f,h){function i(){!o&&k(l.readyState)&&(r.r=o=1,!q&&j(),l.onload=l.onreadystatechange=null,m(function(){u.removeChild(l)},0))}var l=b.createElement(a),o=0,r={t:d,s:c,e:h};l.src=l.data=c,!s&&(l.style.display="none"),l.width=l.height="0",a!="object"&&(l.type=d),l.onload=l.onreadystatechange=i,a=="img"?l.onerror=i:a=="script"&&(l.onerror=function(){r.e=r.r=1,g()}),p.splice(e,0,r),u.insertBefore(l,s?null:n),m(function(){o||(u.removeChild(l),r.r=r.e=o=1,j())},H.errorTimeout)}function e(a,b,c){var d=b=="c"?z:y;q=0,b=b||"j",C(a)?f(d,a,b,this.i++,l,c):(p.splice(this.i++,0,a),p.length==1&&g());return this}function d(){var a=H;a.loader={load:e,i:0};return a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=r&&!s,u=s?l:n.parentNode,v=a.opera&&o.call(a.opera)=="[object Opera]",w="webkitAppearance"in l.style,x=w&&"async"in b.createElement("script"),y=r?"object":v||x?"img":"script",z=w?"img":y,A=Array.isArray||function(a){return o.call(a)=="[object Array]"},B=function(a){return Object(a)===a},C=function(a){return typeof a=="string"},D=function(a){return o.call(a)=="[object Function]"},E=[],F={},G,H;H=function(a){function f(a){var b=a.split("!"),c=E.length,d=b.pop(),e=b.length,f={url:d,origUrl:d,prefixes:b},g,h;for(h=0;h)/gi,
- right: /(<|<)\/\s*style\s*(>|>)/gi
- });
- };
-
- Brush.prototype = new SyntaxHighlighter.Highlighter();
- Brush.aliases = ['css'];
-
- SyntaxHighlighter.brushes.CSS = Brush;
-
- // CommonJS
- typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
-})();
diff --git a/assets/plugins/flexslider/demo/js/shBrushJScript.js b/assets/plugins/flexslider/demo/js/shBrushJScript.js
deleted file mode 100644
index ff98dab..0000000
--- a/assets/plugins/flexslider/demo/js/shBrushJScript.js
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/SyntaxHighlighter
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
- *
- * @version
- * 3.0.83 (July 02 2010)
- *
- * @copyright
- * Copyright (C) 2004-2010 Alex Gorbatchev.
- *
- * @license
- * Dual licensed under the MIT and GPL licenses.
- */
-;(function()
-{
- // CommonJS
- typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
-
- function Brush()
- {
- var keywords = 'break case catch continue ' +
- 'default delete do else false ' +
- 'for function if in instanceof ' +
- 'new null return super switch ' +
- 'this throw true try typeof var while with'
- ;
-
- var r = SyntaxHighlighter.regexLib;
-
- this.regexList = [
- { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
- { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
- { regex: r.singleLineCComments, css: 'comments' }, // one line comments
- { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
- { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion
- { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
- ];
-
- this.forHtmlScript(r.scriptScriptTags);
- };
-
- Brush.prototype = new SyntaxHighlighter.Highlighter();
- Brush.aliases = ['js', 'jscript', 'javascript'];
-
- SyntaxHighlighter.brushes.JScript = Brush;
-
- // CommonJS
- typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
-})();
diff --git a/assets/plugins/flexslider/demo/js/shBrushXml.js b/assets/plugins/flexslider/demo/js/shBrushXml.js
deleted file mode 100644
index 69d9fd0..0000000
--- a/assets/plugins/flexslider/demo/js/shBrushXml.js
+++ /dev/null
@@ -1,69 +0,0 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/SyntaxHighlighter
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
- *
- * @version
- * 3.0.83 (July 02 2010)
- *
- * @copyright
- * Copyright (C) 2004-2010 Alex Gorbatchev.
- *
- * @license
- * Dual licensed under the MIT and GPL licenses.
- */
-;(function()
-{
- // CommonJS
- typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
-
- function Brush()
- {
- function process(match, regexInfo)
- {
- var constructor = SyntaxHighlighter.Match,
- code = match[0],
- tag = new XRegExp('(<|<)[\\s\\/\\?]*(?[:\\w-\\.]+)', 'xg').exec(code),
- result = []
- ;
-
- if (match.attributes != null)
- {
- var attributes,
- regex = new XRegExp('(? [\\w:\\-\\.]+)' +
- '\\s*=\\s*' +
- '(? ".*?"|\'.*?\'|\\w+)',
- 'xg');
-
- while ((attributes = regex.exec(code)) != null)
- {
- result.push(new constructor(attributes.name, match.index + attributes.index, 'color1'));
- result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string'));
- }
- }
-
- if (tag != null)
- result.push(
- new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword')
- );
-
- return result;
- }
-
- this.regexList = [
- { regex: new XRegExp('(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)', 'gm'), css: 'color2' }, //
- { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, //
- { regex: new XRegExp('(<|<)[\\s\\/\\?]*(\\w+)(?.*?)[\\s\\/\\?]*(>|>)', 'sg'), func: process }
- ];
- };
-
- Brush.prototype = new SyntaxHighlighter.Highlighter();
- Brush.aliases = ['xml', 'xhtml', 'xslt', 'html'];
-
- SyntaxHighlighter.brushes.Xml = Brush;
-
- // CommonJS
- typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
-})();
diff --git a/assets/plugins/flexslider/demo/js/shCore.js b/assets/plugins/flexslider/demo/js/shCore.js
deleted file mode 100644
index b47b645..0000000
--- a/assets/plugins/flexslider/demo/js/shCore.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/**
- * SyntaxHighlighter
- * http://alexgorbatchev.com/SyntaxHighlighter
- *
- * SyntaxHighlighter is donationware. If you are using it, please donate.
- * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
- *
- * @version
- * 3.0.83 (July 02 2010)
- *
- * @copyright
- * Copyright (C) 2004-2010 Alex Gorbatchev.
- *
- * @license
- * Dual licensed under the MIT and GPL licenses.
- */
-eval(function(p,a,c,k,e,d){e=function(c){return(c35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('K M;I(M)1S 2U("2a\'t 4k M 4K 2g 3l 4G 4H");(6(){6 r(f,e){I(!M.1R(f))1S 3m("3s 15 4R");K a=f.1w;f=M(f.1m,t(f)+(e||""));I(a)f.1w={1m:a.1m,19:a.19?a.19.1a(0):N};H f}6 t(f){H(f.1J?"g":"")+(f.4s?"i":"")+(f.4p?"m":"")+(f.4v?"x":"")+(f.3n?"y":"")}6 B(f,e,a,b){K c=u.L,d,h,g;v=R;5K{O(;c--;){g=u[c];I(a&g.3r&&(!g.2p||g.2p.W(b))){g.2q.12=e;I((h=g.2q.X(f))&&h.P===e){d={3k:g.2b.W(b,h,a),1C:h};1N}}}}5v(i){1S i}5q{v=11}H d}6 p(f,e,a){I(3b.Z.1i)H f.1i(e,a);O(a=a||0;a-1},3d:6(g){e+=g}};c1&&p(e,"")>-1){a=15(J.1m,n.Q.W(t(J),"g",""));n.Q.W(f.1a(e.P),a,6(){O(K c=1;c<14.L-2;c++)I(14[c]===1d)e[c]=1d})}I(J.1w&&J.1w.19)O(K b=1;be.P&&J.12--}H e};I(!D)15.Z.1A=6(f){(f=n.X.W(J,f))&&J.1J&&!f[0].L&&J.12>f.P&&J.12--;H!!f};1r.Z.1C=6(f){M.1R(f)||(f=15(f));I(f.1J){K e=n.1C.1p(J,14);f.12=0;H e}H f.X(J)};1r.Z.Q=6(f,e){K a=M.1R(f),b,c;I(a&&1j e.58()==="3f"&&e.1i("${")===-1&&y)H n.Q.1p(J,14);I(a){I(f.1w)b=f.1w.19}Y f+="";I(1j e==="6")c=n.Q.W(J,f,6(){I(b){14[0]=1f 1r(14[0]);O(K d=0;dd.L-3;){i=1r.Z.1a.W(g,-1)+i;g=1Q.3i(g/10)}H(g?d[g]||"":"$")+i}Y{g=+i;I(g<=d.L-3)H d[g];g=b?p(b,i):-1;H g>-1?d[g+1]:h}})})}I(a&&f.1J)f.12=0;H c};1r.Z.1e=6(f,e){I(!M.1R(f))H n.1e.1p(J,14);K a=J+"",b=[],c=0,d,h;I(e===1d||+e<0)e=5D;Y{e=1Q.3i(+e);I(!e)H[]}O(f=M.3c(f);d=f.X(a);){I(f.12>c){b.U(a.1a(c,d.P));d.L>1&&d.P=e)1N}f.12===d.P&&f.12++}I(c===a.L){I(!n.1A.W(f,"")||h)b.U("")}Y b.U(a.1a(c));H b.L>e?b.1a(0,e):b};M.1h(/\\(\\?#[^)]*\\)/,6(f){H n.1A.W(A,f.2S.1a(f.P+f[0].L))?"":"(?:)"});M.1h(/\\((?!\\?)/,6(){J.19.U(N);H"("});M.1h(/\\(\\?<([$\\w]+)>/,6(f){J.19.U(f[1]);J.2N=R;H"("});M.1h(/\\\\k<([\\w$]+)>/,6(f){K e=p(J.19,f[1]);H e>-1?"\\\\"+(e+1)+(3R(f.2S.3a(f.P+f[0].L))?"":"(?:)"):f[0]});M.1h(/\\[\\^?]/,6(f){H f[0]==="[]"?"\\\\b\\\\B":"[\\\\s\\\\S]"});M.1h(/^\\(\\?([5A]+)\\)/,6(f){J.3d(f[1]);H""});M.1h(/(?:\\s+|#.*)+/,6(f){H n.1A.W(A,f.2S.1a(f.P+f[0].L))?"":"(?:)"},M.1B,6(){H J.2K("x")});M.1h(/\\./,6(){H"[\\\\s\\\\S]"},M.1B,6(){H J.2K("s")})})();1j 2e!="1d"&&(2e.M=M);K 1v=6(){6 r(a,b){a.1l.1i(b)!=-1||(a.1l+=" "+b)}6 t(a){H a.1i("3e")==0?a:"3e"+a}6 B(a){H e.1Y.2A[t(a)]}6 p(a,b,c){I(a==N)H N;K d=c!=R?a.3G:[a.2G],h={"#":"1c",".":"1l"}[b.1o(0,1)]||"3h",g,i;g=h!="3h"?b.1o(1):b.5u();I((a[h]||"").1i(g)!=-1)H a;O(a=0;d&&a\'+c+"17>"});H a}6 n(a,b){a.1e("\\n");O(K c="",d=0;d<50;d++)c+=" ";H a=v(a,6(h){I(h.1i("\\t")==-1)H h;O(K g=0;(g=h.1i("\\t"))!=-1;)h=h.1o(0,g)+c.1o(0,b-g%b)+h.1o(g+1,h.L);H h})}6 x(a){H a.Q(/^\\s+|\\s+$/g,"")}6 D(a,b){I(a.Pb.P)H 1;Y I(a.Lb.L)H 1;H 0}6 y(a,b){6 c(k){H k[0]}O(K d=N,h=[],g=b.2D?b.2D:c;(d=b.1I.X(a))!=N;){K i=g(d,b);I(1j i=="3f")i=[1f e.2L(i,d.P,b.23)];h=h.1O(i)}H h}6 E(a){K b=/(.*)((&1G;|&1y;).*)/;H a.Q(e.3A.3M,6(c){K d="",h=N;I(h=b.X(c)){c=h[1];d=h[2]}H\'\'+c+" "+d})}6 z(){O(K a=1E.36("1k"),b=[],c=0;c<1z 4I="1Z://2y.3L.3K/4L/5L"><3J><4N 1Z-4M="5G-5M" 6K="2O/1z; 6J=6I-8" /><1t>6L 1v1t>3J><3B 1L="25-6M:6Q,6P,6O,6N-6F;6y-2f:#6x;2f:#6w;25-22:6v;2O-3D:3C;">1v 3v 3.0.76 (72 73 3x) 1Z://3u.2w/1v 70 17 6U 71. 6T 6X-3x 6Y 6D. 6t 61 60 J 1k, 5Z 5R 5V <2R/>5U 5T 5S! 3B>1z>\'}},1Y:{2j:N,2A:{}},1U:{},3A:{6n:/\\/\\*[\\s\\S]*?\\*\\//2c,6m:/\\/\\/.*$/2c,6l:/#.*$/2c,6k:/"([^\\\\"\\n]|\\\\.)*"/g,6o:/\'([^\\\\\'\\n]|\\\\.)*\'/g,6p:1f M(\'"([^\\\\\\\\"]|\\\\\\\\.)*"\',"3z"),6s:1f M("\'([^\\\\\\\\\']|\\\\\\\\.)*\'","3z"),6q:/(&1y;|<)!--[\\s\\S]*?--(&1G;|>)/2c,3M:/\\w+:\\/\\/[\\w-.\\/?%&=:@;]*/g,6a:{18:/(&1y;|<)\\?=?/g,1b:/\\?(&1G;|>)/g},69:{18:/(&1y;|<)%=?/g,1b:/%(&1G;|>)/g},6d:{18:/(&1y;|<)\\s*1k.*?(&1G;|>)/2T,1b:/(&1y;|<)\\/\\s*1k\\s*(&1G;|>)/2T}},16:{1H:6(a){6 b(i,k){H e.16.2o(i,k,e.13.1x[k])}O(K c=\'\',d=e.16.2x,h=d.2X,g=0;g";H c},2o:6(a,b,c){H\'<2W>\'+c+" 2W>"},2b:6(a){K b=a.1F,c=b.1l||"";b=B(p(b,".20",R).1c);K d=6(h){H(h=15(h+"6f(\\\\w+)").X(c))?h[1]:N}("6g");b&&d&&e.16.2x[d].2B(b);a.3N()},2x:{2X:["21","2P"],21:{1H:6(a){I(a.V("2l")!=R)H"";K b=a.V("1t");H e.16.2o(a,"21",b?b:e.13.1x.21)},2B:6(a){a=1E.6j(t(a.1c));a.1l=a.1l.Q("47","")}},2P:{2B:6(){K a="68=0";a+=", 18="+(31.30-33)/2+", 32="+(31.2Z-2Y)/2+", 30=33, 2Z=2Y";a=a.Q(/^,/,"");a=1P.6Z("","38",a);a.2C();K b=a.1E;b.6W(e.13.1x.37);b.6V();a.2C()}}}},35:6(a,b){K c;I(b)c=[b];Y{c=1E.36(e.13.34);O(K d=[],h=0;h(.*?))\\\\]$"),s=1f M("(?<27>[\\\\w-]+)\\\\s*:\\\\s*(?<1T>[\\\\w-%#]+|\\\\[.*?\\\\]|\\".*?\\"|\'.*?\')\\\\s*;?","g");(j=s.X(k))!=N;){K o=j.1T.Q(/^[\'"]|[\'"]$/g,"");I(o!=N&&m.1A(o)){o=m.X(o);o=o.2V.L>0?o.2V.1e(/\\s*,\\s*/):[]}l[j.27]=o}g={1F:g,1n:C(i,l)};g.1n.1D!=N&&d.U(g)}H d},1M:6(a,b){K c=J.35(a,b),d=N,h=e.13;I(c.L!==0)O(K g=0;g")==o-3){m=m.4h(0,o-3);s=R}l=s?m:l}I((i.1t||"")!="")k.1t=i.1t;k.1D=j;d.2Q(k);b=d.2F(l);I((i.1c||"")!="")b.1c=i.1c;i.2G.74(b,i)}}},2E:6(a){w(1P,"4k",6(){e.1M(a)})}};e.2E=e.2E;e.1M=e.1M;e.2L=6(a,b,c){J.1T=a;J.P=b;J.L=a.L;J.23=c;J.1V=N};e.2L.Z.1q=6(){H J.1T};e.4l=6(a){6 b(j,l){O(K m=0;md)1N;Y I(g.P==c.P&&g.L>c.L)a[b]=N;Y I(g.P>=c.P&&g.P\'+c+" "},3Q:6(a,b){K c="",d=a.1e("\\n").L,h=2u(J.V("2i-1s")),g=J.V("2z-1s-2t");I(g==R)g=(h+d-1).1q().L;Y I(3R(g)==R)g=0;O(K i=0;i\'+j+"17>":"")+i)}H a},4f:6(a){H a?"<4a>"+a+"4a>":""},4b:6(a,b){6 c(l){H(l=l?l.1V||g:g)?l+" ":""}O(K d=0,h="",g=J.V("1D",""),i=0;i|&1y;2R\\s*\\/?&1G;/2T;I(e.13.46==R)b=b.Q(h,"\\n");I(e.13.44==R)b=b.Q(h,"");b=b.1e("\\n");h=/^\\s*/;g=4Q;O(K i=0;i0;i++){K k=b[i];I(x(k).L!=0){k=h.X(k);I(k==N){a=a;1N a}g=1Q.4q(k[0].L,g)}}I(g>0)O(i=0;i\'+(J.V("16")?e.16.1H(J):"")+\'<3Z 5z="0" 5H="0" 5J="0">\'+J.4f(J.V("1t"))+"<3T><3P>"+(1u?\'<2d 1g="1u">\'+J.3Q(a)+"2d>":"")+\'<2d 1g="17">\'+b+" 2d>3P>3T>3Z>"},2F:6(a){I(a===N)a="";J.17=a;K b=J.3Y("T");b.3X=J.1H(a);J.V("16")&&w(p(b,".16"),"5c",e.16.2b);J.V("3V-17")&&w(p(b,".17"),"56",f);H b},2Q:6(a){J.1c=""+1Q.5d(1Q.5n()*5k).1q();e.1Y.2A[t(J.1c)]=J;J.1n=C(e.2v,a||{});I(J.V("2k")==R)J.1n.16=J.1n.1u=11},5j:6(a){a=a.Q(/^\\s+|\\s+$/g,"").Q(/\\s+/g,"|");H"\\\\b(?:"+a+")\\\\b"},5f:6(a){J.28={18:{1I:a.18,23:"1k"},1b:{1I:a.1b,23:"1k"},17:1f M("(?<18>"+a.18.1m+")(?<17>.*?)(?<1b>"+a.1b.1m+")","5o")}}};H e}();1j 2e!="1d"&&(2e.1v=1v);',62,441,'||||||function|||||||||||||||||||||||||||||||||||||return|if|this|var|length|XRegExp|null|for|index|replace|true||div|push|getParam|call|exec|else|prototype||false|lastIndex|config|arguments|RegExp|toolbar|code|left|captureNames|slice|right|id|undefined|split|new|class|addToken|indexOf|typeof|script|className|source|params|substr|apply|toString|String|line|title|gutter|SyntaxHighlighter|_xregexp|strings|lt|html|test|OUTSIDE_CLASS|match|brush|document|target|gt|getHtml|regex|global|join|style|highlight|break|concat|window|Math|isRegExp|throw|value|brushes|brushName|space|alert|vars|http|syntaxhighlighter|expandSource|size|css|case|font|Fa|name|htmlScript|dA|can|handler|gm|td|exports|color|in|href|first|discoveredBrushes|light|collapse|object|cache|getButtonHtml|trigger|pattern|getLineHtml|nbsp|numbers|parseInt|defaults|com|items|www|pad|highlighters|execute|focus|func|all|getDiv|parentNode|navigator|INSIDE_CLASS|regexList|hasFlag|Match|useScriptTags|hasNamedCapture|text|help|init|br|input|gi|Error|values|span|list|250|height|width|screen|top|500|tagName|findElements|getElementsByTagName|aboutDialog|_blank|appendChild|charAt|Array|copyAsGlobal|setFlag|highlighter_|string|attachEvent|nodeName|floor|backref|output|the|TypeError|sticky|Za|iterate|freezeTokens|scope|type|textarea|alexgorbatchev|version|margin|2010|005896|gs|regexLib|body|center|align|noBrush|require|childNodes|DTD|xhtml1|head|org|w3|url|preventDefault|container|tr|getLineNumbersHtml|isNaN|userAgent|tbody|isLineHighlighted|quick|void|innerHTML|create|table|links|auto|smart|tab|stripBrs|tabs|bloggerMode|collapsed|plain|getCodeLinesHtml|caption|getMatchesHtml|findMatches|figureOutLineNumbers|removeNestedMatches|getTitleHtml|brushNotHtmlScript|substring|createElement|Highlighter|load|HtmlScript|Brush|pre|expand|multiline|min|Can|ignoreCase|find|blur|extended|toLowerCase|aliases|addEventListener|innerText|textContent|wasn|select|createTextNode|removeChild|option|same|frame|xmlns|dtd|twice|1999|equiv|meta|htmlscript|transitional|1E3|expected|PUBLIC|DOCTYPE|on|W3C|XHTML|TR|EN|Transitional||configured|srcElement|Object|after|run|dblclick|matchChain|valueOf|constructor|default|switch|click|round|execAt|forHtmlScript|token|gimy|functions|getKeywords|1E6|escape|within|random|sgi|another|finally|supply|MSIE|ie|toUpperCase|catch|returnValue|definition|event|border|imsx|constructing|one|Infinity|from|when|Content|cellpadding|flags|cellspacing|try|xhtml|Type|spaces|2930402|hosted_button_id|lastIndexOf|donate|active|development|keep|to|xclick|_s|Xml|please|like|you|paypal|cgi|cmd|webscr|bin|highlighted|scrollbars|aspScriptTags|phpScriptTags|sort|max|scriptScriptTags|toolbar_item|_|command|command_|number|getElementById|doubleQuotedString|singleLinePerlComments|singleLineCComments|multiLineCComments|singleQuotedString|multiLineDoubleQuotedString|xmlComments|alt|multiLineSingleQuotedString|If|https|1em|000|fff|background|5em|xx|bottom|75em|Gorbatchev|large|serif|CDATA|continue|utf|charset|content|About|family|sans|Helvetica|Arial|Geneva|3em|nogutter|Copyright|syntax|close|write|2004|Alex|open|JavaScript|highlighter|July|02|replaceChild|offset|83'.split('|'),0,{}))
diff --git a/assets/plugins/flexslider/demo/thumbnail-controlnav.html b/assets/plugins/flexslider/demo/thumbnail-controlnav.html
deleted file mode 100644
index 10d8e13..0000000
--- a/assets/plugins/flexslider/demo/thumbnail-controlnav.html
+++ /dev/null
@@ -1,143 +0,0 @@
-
-
-
-
- FlexSlider 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- FlexSlider 2
- The best responsive slider. Period.
- Download Flexslider
-
- Other Examples
-
-
-
-
-
-
-
-
-
Thumbnail ControlNav Pattern
-
-
-
-
- // Can also be used with $(document).ready()
- $(window).load(function() {
- $('.flexslider').flexslider({
- animation: "slide",
- controlNav: "thumbnails"
- });
- });
-
-
-
-
- <!-- Place somewhere in the <body> of your page -->
- <div class="flexslider">
- <ul class="slides">
- <li data-thumb="slide1-thumb.jpg">
- <img src="slide1.jpg" />
- </li>
- <li data-thumb="slide2-thumb.jpg">
- <img src="slide2.jpg" />
- </li>
- <li data-thumb="slide3-thumb.jpg">
- <img src="slide3.jpg" />
- </li>
- <li data-thumb="slide4-thumb.jpg">
- <img src="slide4.jpg" />
- </li>
- </ul>
- </div>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/thumbnail-slider.html b/assets/plugins/flexslider/demo/thumbnail-slider.html
deleted file mode 100644
index 476d24b..0000000
--- a/assets/plugins/flexslider/demo/thumbnail-slider.html
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
- FlexSlider 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- FlexSlider 2
- The best responsive slider. Period.
- Download Flexslider
-
- Other Examples
-
-
-
-
-
-
-
-
-
Slider with Carousel Slider as Navigation
-
-
-
-
- $(window).load(function() {
- // The slider being synced must be initialized first
- $('#carousel').flexslider({
- animation: "slide",
- controlNav: false,
- animationLoop: false,
- slideshow: false,
- itemWidth: 210,
- itemMargin: 5,
- asNavFor: '#slider'
- });
-
- $('#slider').flexslider({
- animation: "slide",
- controlNav: false,
- animationLoop: false,
- slideshow: false,
- sync: "#carousel"
- });
- });
-
-
-
-
- <!-- Place somewhere in the <body> of your page -->
- <div id="slider" class="flexslider">
- <ul class="slides">
- <li>
- <img src="slide1.jpg" />
- </li>
- <li>
- <img src="slide2.jpg" />
- </li>
- <li>
- <img src="slide3.jpg" />
- </li>
- <li>
- <img src="slide4.jpg" />
- </li>
- <!-- items mirrored twice, total of 12 -->
- </ul>
- </div>
- <div id="carousel" class="flexslider">
- <ul class="slides">
- <li>
- <img src="slide1.jpg" />
- </li>
- <li>
- <img src="slide2.jpg" />
- </li>
- <li>
- <img src="slide3.jpg" />
- </li>
- <li>
- <img src="slide4.jpg" />
- </li>
- <!-- items mirrored twice, total of 12 -->
- </ul>
- </div>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/demo/video.html b/assets/plugins/flexslider/demo/video.html
deleted file mode 100644
index d038ab9..0000000
--- a/assets/plugins/flexslider/demo/video.html
+++ /dev/null
@@ -1,205 +0,0 @@
-
-
-
-
- FlexSlider 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- FlexSlider 2
- The best responsive slider. Period.
- Download Flexslider
-
- Other Examples
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- // Can also be used with $(document).ready()
- $(window).load(function() {
-
- // Vimeo API nonsense
- var player = document.getElementById('player_1');
- $f(player).addEvent('ready', ready);
-
- function addEvent(element, eventName, callback) {
- if (element.addEventListener) {
- element.addEventListener(eventName, callback, false)
- } else {
- element.attachEvent(eventName, callback, false);
- }
- }
-
- function ready(player_id) {
- var froogaloop = $f(player_id);
- froogaloop.addEvent('play', function(data) {
- $('.flexslider').flexslider("pause");
- });
- froogaloop.addEvent('pause', function(data) {
- $('.flexslider').flexslider("play");
- });
- }
-
-
- // Call fitVid before FlexSlider initializes, so the proper initial height can be retrieved.
- $(".flexslider")
- .fitVids()
- .flexslider({
- animation: "slide",
- useCSS: false,
- animationLoop: false,
- smoothHeight: true,
- before: function(slider){
- $f(player).api('pause');
- }
- });
- });
-
-
-
-
- <!-- Place somewhere in the <body> of your page -->
- <div class="flexslider">
- <ul class="slides">
- <li>
- <iframe id="player_1" src="http://player.vimeo.com/video/39683393?api=1&player_id=player_1" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
- </li>
- <li>
- <img src="slide2.jpg" />
- </li>
- <li>
- <img src="slide3.jpg" />
- </li>
- <li>
- <img src="slide4.jpg" />
- </li>
- </ul>
- </div>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/flexslider/flexslider.css b/assets/plugins/flexslider/flexslider.css
deleted file mode 100644
index a6f2e93..0000000
--- a/assets/plugins/flexslider/flexslider.css
+++ /dev/null
@@ -1,76 +0,0 @@
-/*
- * jQuery FlexSlider v2.0
- * http://www.woothemes.com/flexslider/
- *
- * Copyright 2012 WooThemes
- * Free to use under the GPLv2 license.
- * http://www.gnu.org/licenses/gpl-2.0.html
- *
- * Contributing author: Tyler Smith (@mbmufffin)
- */
-
-
-/* Browser Resets */
-.flex-container a:active,
-.flexslider a:active,
-.flex-container a:focus,
-.flexslider a:focus {outline: none;}
-.slides,
-.flex-control-nav,
-.flex-direction-nav {margin: 0; padding: 0; list-style: none;}
-
-/* FlexSlider Necessary Styles
-*********************************/
-.flexslider {margin: 0; padding: 0;}
-.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
-.flexslider .slides img {width: 100%; display: block;}
-.flex-pauseplay span {text-transform: capitalize;}
-
-/* Clearfix for the .slides element */
-.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
-html[xmlns] .slides {display: block;}
-* html .slides {height: 1%;}
-
-/* No JavaScript Fallback */
-/* If you are not using another script, such as Modernizr, make sure you
- * include js that eliminates this class on page load */
-.no-js .slides > li:first-child {display: block;}
-
-
-/* FlexSlider Default Theme
-*********************************/
-.flexslider {margin: 0 0 60px; background: #fff; border: 4px solid #fff; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,.2); -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.2); -moz-box-shadow: 0 1px 4px rgba(0,0,0,.2); -o-box-shadow: 0 1px 4px rgba(0,0,0,.2); zoom: 1;}
-.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
-.loading .flex-viewport {max-height: 300px;}
-.flexslider .slides {zoom: 1;}
-
-.carousel li {margin-right: 5px}
-
-
-/* Direction Nav */
-.flex-direction-nav {*height: 0;}
-.flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url(images/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
-.flex-direction-nav .flex-next {background-position: 100% 0; right: -36px; }
-.flex-direction-nav .flex-prev {left: -36px;}
-.flexslider:hover .flex-next {opacity: 0.8; right: 5px;}
-.flexslider:hover .flex-prev {opacity: 0.8; left: 5px;}
-.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
-.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}
-
-/* Control Nav */
-.flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
-.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
-.flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
-.flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
-.flex-control-paging li a.flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }
-
-.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
-.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
-.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
-.flex-control-thumbs img:hover {opacity: 1;}
-.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
-
-@media screen and (max-width: 860px) {
- .flex-direction-nav .flex-prev {opacity: 1; left: 0;}
- .flex-direction-nav .flex-next {opacity: 1; right: 0;}
-}
\ No newline at end of file
diff --git a/assets/plugins/flexslider/images/bg_direction_nav.png b/assets/plugins/flexslider/images/bg_direction_nav.png
deleted file mode 100644
index 991f798..0000000
Binary files a/assets/plugins/flexslider/images/bg_direction_nav.png and /dev/null differ
diff --git a/assets/plugins/flexslider/images/bg_direction_nav1.png b/assets/plugins/flexslider/images/bg_direction_nav1.png
deleted file mode 100644
index de3fe04..0000000
Binary files a/assets/plugins/flexslider/images/bg_direction_nav1.png and /dev/null differ
diff --git a/assets/plugins/flexslider/jquery.flexslider-min.js b/assets/plugins/flexslider/jquery.flexslider-min.js
deleted file mode 100644
index 5412e2f..0000000
--- a/assets/plugins/flexslider/jquery.flexslider-min.js
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * jQuery FlexSlider v2.1
- * Copyright 2012 WooThemes
- * Contributing Author: Tyler Smith
- */
- ;(function(d){d.flexslider=function(i,k){var a=d(i),c=d.extend({},d.flexslider.defaults,k),e=c.namespace,p="ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch,t=p?"touchend":"click",l="vertical"===c.direction,m=c.reverse,h=0g?a.getTarget("next"):a.getTarget("prev");a.flexAnimate(d,c.pauseOnAction)});c.pausePlay&&f.pausePlay.setup();c.slideshow&&(c.pauseOnHover&&a.hover(function(){!a.manualPlay&&!a.manualPause&&a.pause()},
- function(){!a.manualPause&&!a.manualPlay&&a.play()}),0');if(1 ':""+b+" ",a.controlNavScaffold.append(""+g+" "),b++;a.controlsContainer?d(a.controlsContainer).append(a.controlNavScaffold):a.append(a.controlNavScaffold);f.controlNav.set();f.controlNav.active();a.controlNavScaffold.delegate("a, img",t,function(b){b.preventDefault();var b=d(this),g=a.controlNav.index(b);b.hasClass(e+"active")||(a.direction=g>a.currentSlide?"next":"prev",a.flexAnimate(g,c.pauseOnAction))});p&&a.controlNavScaffold.delegate("a",
- "click touchstart",function(a){a.preventDefault()})},setupManual:function(){a.controlNav=a.manualControls;f.controlNav.active();a.controlNav.live(t,function(b){b.preventDefault();var b=d(this),g=a.controlNav.index(b);b.hasClass(e+"active")||(g>a.currentSlide?a.direction="next":a.direction="prev",a.flexAnimate(g,c.pauseOnAction))});p&&a.controlNav.live("click touchstart",function(a){a.preventDefault()})},set:function(){a.controlNav=d("."+e+"control-nav li "+("thumbnails"===c.controlNav?"img":"a"),
- a.controlsContainer?a.controlsContainer:a)},active:function(){a.controlNav.removeClass(e+"active").eq(a.animatingTo).addClass(e+"active")},update:function(b,c){1"+a.count+" ")):1===a.pagingCount?a.controlNavScaffold.find("li").remove():a.controlNav.eq(c).closest("li").remove();f.controlNav.set();1'+c.prevText+' '+c.nextText+" ");a.controlsContainer?(d(a.controlsContainer).append(b),a.directionNav=d("."+e+"direction-nav li a",a.controlsContainer)):(a.append(b),a.directionNav=d("."+e+"direction-nav li a",a));f.directionNav.update();a.directionNav.bind(t,function(b){b.preventDefault();b=d(this).hasClass(e+"next")?a.getTarget("next"):a.getTarget("prev");a.flexAnimate(b,c.pauseOnAction)});
- p&&a.directionNav.bind("click touchstart",function(a){a.preventDefault()})},update:function(){var b=e+"disabled";1===a.pagingCount?a.directionNav.addClass(b):c.animationLoop?a.directionNav.removeClass(b):0===a.animatingTo?a.directionNav.removeClass(b).filter("."+e+"prev").addClass(b):a.animatingTo===a.last?a.directionNav.removeClass(b).filter("."+e+"next").addClass(b):a.directionNav.removeClass(b)}},pausePlay:{setup:function(){var b=d('');a.controlsContainer?
- (a.controlsContainer.append(b),a.pausePlay=d("."+e+"pauseplay a",a.controlsContainer)):(a.append(b),a.pausePlay=d("."+e+"pauseplay a",a));f.pausePlay.update(c.slideshow?e+"pause":e+"play");a.pausePlay.bind(t,function(b){b.preventDefault();d(this).hasClass(e+"pause")?(a.manualPause=!0,a.manualPlay=!1,a.pause()):(a.manualPause=!1,a.manualPlay=!0,a.play())});p&&a.pausePlay.bind("click touchstart",function(a){a.preventDefault()})},update:function(b){"play"===b?a.pausePlay.removeClass(e+"pause").addClass(e+
- "play").text(c.playText):a.pausePlay.removeClass(e+"play").addClass(e+"pause").text(c.pauseText)}},touch:function(){function b(b){j=l?d-b.touches[0].pageY:d-b.touches[0].pageX;p=l?Math.abs(j)j||a.currentSlide===a.last&&0Number(new Date)-k&&50q/2)?a.flexAnimate(l,c.pauseOnAction):r||a.flexAnimate(a.currentSlide,c.pauseOnAction,!0)}i.removeEventListener("touchend",g,!1);f=j=e=d=null}var d,e,f,q,j,k,p=!1;i.addEventListener("touchstart",function(j){a.animating?j.preventDefault():1===j.touches.length&&(a.pause(),q=l?a.h:a.w,k=Number(new Date),f=h&&m&&a.animatingTo===
- a.last?0:h&&m?a.limit-(a.itemW+c.itemMargin)*a.move*a.animatingTo:h&&a.currentSlide===a.last?a.limit:h?(a.itemW+c.itemMargin)*a.move*a.currentSlide:m?(a.last-a.currentSlide+a.cloneOffset)*q:(a.currentSlide+a.cloneOffset)*q,d=l?j.touches[0].pageY:j.touches[0].pageX,e=l?j.touches[0].pageX:j.touches[0].pageY,i.addEventListener("touchmove",b,!1),i.addEventListener("touchend",g,!1))},!1)},resize:function(){!a.animating&&a.is(":visible")&&(h||a.doMath(),r?f.smoothHeight():h?(a.slides.width(a.computedW),
- a.update(a.pagingCount),a.setProps()):l?(a.viewport.height(a.h),a.setProps(a.h,"setTotal")):(c.smoothHeight&&f.smoothHeight(),a.newSlides.width(a.computedW),a.setProps(a.computedW,"setTotal")))},smoothHeight:function(b){if(!l||r){var c=r?a:a.viewport;b?c.animate({height:a.slides.eq(a.animatingTo).height()},b):c.height(a.slides.eq(a.animatingTo).height())}},sync:function(b){var g=d(c.sync).data("flexslider"),e=a.animatingTo;switch(b){case "animate":g.flexAnimate(e,c.pauseOnAction,!1,!0);break;case "play":!g.playing&&
- !g.asNav&&g.play();break;case "pause":g.pause()}}};a.flexAnimate=function(b,g,n,i,k){s&&1===a.pagingCount&&(a.direction=a.currentItema.w?2*c.itemMargin:c.itemMargin,b=(a.itemW+b)*a.move*a.animatingTo,
- b=b>a.limit&&1!==a.visible?a.limit:b):b=0===a.currentSlide&&b===a.count-1&&c.animationLoop&&"next"!==a.direction?m?(a.count+a.cloneOffset)*q:0:a.currentSlide===a.last&&0===b&&c.animationLoop&&"prev"!==a.direction?m?0:(a.count+1)*q:m?(a.count-1-b+a.cloneOffset)*q:(b+a.cloneOffset)*q;a.setProps(b,"",c.animationSpeed);if(a.transitions){if(!c.animationLoop||!a.atEnd)a.animating=!1,a.currentSlide=a.animatingTo;a.container.unbind("webkitTransitionEnd transitionend");a.container.bind("webkitTransitionEnd transitionend",
- function(){a.wrapup(q)})}else a.container.animate(a.args,c.animationSpeed,c.easing,function(){a.wrapup(q)})}c.smoothHeight&&f.smoothHeight(c.animationSpeed)}};a.wrapup=function(b){!r&&!h&&(0===a.currentSlide&&a.animatingTo===a.last&&c.animationLoop?a.setProps(b,"jumpEnd"):a.currentSlide===a.last&&(0===a.animatingTo&&c.animationLoop)&&a.setProps(b,"jumpStart"));a.animating=!1;a.currentSlide=a.animatingTo;c.after(a)};a.animateSlides=function(){a.animating||a.flexAnimate(a.getTarget("next"))};a.pause=
- function(){clearInterval(a.animatedSlides);a.playing=!1;c.pausePlay&&f.pausePlay.update("play");a.syncExists&&f.sync("pause")};a.play=function(){a.animatedSlides=setInterval(a.animateSlides,c.slideshowSpeed);a.playing=!0;c.pausePlay&&f.pausePlay.update("pause");a.syncExists&&f.sync("play")};a.canAdvance=function(b,g){var d=s?a.pagingCount-1:a.last;return g?!0:s&&a.currentItem===a.count-1&&0===b&&"prev"===a.direction?!0:s&&0===a.currentItem&&b===a.pagingCount-1&&"next"!==a.direction?!1:b===a.currentSlide&&
- !s?!1:c.animationLoop?!0:a.atEnd&&0===a.currentSlide&&b===d&&"next"!==a.direction?!1:a.atEnd&&a.currentSlide===d&&0===b&&"next"===a.direction?!1:!0};a.getTarget=function(b){a.direction=b;return"next"===b?a.currentSlide===a.last?0:a.currentSlide+1:0===a.currentSlide?a.last:a.currentSlide-1};a.setProps=function(b,g,d){var e,f=b?b:(a.itemW+c.itemMargin)*a.move*a.animatingTo;e=-1*function(){if(h)return"setTouch"===g?b:m&&a.animatingTo===a.last?0:m?a.limit-(a.itemW+c.itemMargin)*a.move*a.animatingTo:a.animatingTo===
- a.last?a.limit:f;switch(g){case "setTotal":return m?(a.count-1-a.currentSlide+a.cloneOffset)*b:(a.currentSlide+a.cloneOffset)*b;case "setTouch":return b;case "jumpEnd":return m?b:a.count*b;case "jumpStart":return m?a.count*b:b;default:return b}}()+"px";a.transitions&&(e=l?"translate3d(0,"+e+",0)":"translate3d("+e+",0,0)",d=void 0!==d?d/1E3+"s":"0s",a.container.css("-"+a.pfx+"-transition-duration",d));a.args[a.prop]=e;(a.transitions||void 0===d)&&a.container.css(a.args)};a.setup=function(b){if(r)a.slides.css({width:"100%",
- "float":"left",marginRight:"-100%",position:"relative"}),"init"===b&&(p?a.slides.css({opacity:0,display:"block",webkitTransition:"opacity "+c.animationSpeed/1E3+"s ease",zIndex:1}).eq(a.currentSlide).css({opacity:1,zIndex:2}):a.slides.eq(a.currentSlide).fadeIn(c.animationSpeed,c.easing)),c.smoothHeight&&f.smoothHeight();else{var g,n;"init"===b&&(a.viewport=d('
').css({overflow:"hidden",position:"relative"}).appendTo(a).append(a.container),a.cloneCount=0,a.cloneOffset=
- 0,m&&(n=d.makeArray(a.slides).reverse(),a.slides=d(n),a.container.empty().append(a.slides)));c.animationLoop&&!h&&(a.cloneCount=2,a.cloneOffset=1,"init"!==b&&a.container.find(".clone").remove(),a.container.append(a.slides.first().clone().addClass("clone")).prepend(a.slides.last().clone().addClass("clone")));a.newSlides=d(c.selector,a);g=m?a.count-1-a.currentSlide+a.cloneOffset:a.currentSlide+a.cloneOffset;l&&!h?(a.container.height(200*(a.count+a.cloneCount)+"%").css("position","absolute").width("100%"),
- setTimeout(function(){a.newSlides.css({display:"block"});a.doMath();a.viewport.height(a.h);a.setProps(g*a.h,"init")},"init"===b?100:0)):(a.container.width(200*(a.count+a.cloneCount)+"%"),a.setProps(g*a.computedW,"init"),setTimeout(function(){a.doMath();a.newSlides.css({width:a.computedW,"float":"left",display:"block"});c.smoothHeight&&f.smoothHeight()},"init"===b?100:0))}h||a.slides.removeClass(e+"active-slide").eq(a.currentSlide).addClass(e+"active-slide")};a.doMath=function(){var b=a.slides.first(),
- d=c.itemMargin,e=c.minItems,f=c.maxItems;a.w=a.width();a.h=b.height();a.boxPadding=b.outerWidth()-b.width();h?(a.itemT=c.itemWidth+d,a.minW=e?e*a.itemT:a.w,a.maxW=f?f*a.itemT:a.w,a.itemW=a.minW>a.w?(a.w-d*e)/e:a.maxWa.w?a.w:c.itemWidth,a.visible=Math.floor(a.w/(a.itemW+d)),a.move=0a.w?(a.itemW+2*d)*a.count-a.w-
- d:(a.itemW+d)*a.count-a.w-d):(a.itemW=a.w,a.pagingCount=a.count,a.last=a.count-1);a.computedW=a.itemW-a.boxPadding};a.update=function(b,d){a.doMath();h||(ba.controlNav.length)f.controlNav.update("add");else if("remove"===d&&!h||a.pagingCounta.last&&(a.currentSlide-=1,a.animatingTo-=1),
- f.controlNav.update("remove",a.last);c.directionNav&&f.directionNav.update()};a.addSlide=function(b,e){var f=d(b);a.count+=1;a.last=a.count-1;l&&m?void 0!==e?a.slides.eq(a.count-e).after(f):a.container.prepend(f):void 0!==e?a.slides.eq(e).before(f):a.container.append(f);a.update(e,"add");a.slides=d(c.selector+":not(.clone)",a);a.setup();c.added(a)};a.removeSlide=function(b){var e=isNaN(b)?a.slides.index(d(b)):b;a.count-=1;a.last=a.count-1;isNaN(b)?d(b,a.slides).remove():l&&m?a.slides.eq(a.last).remove():
- a.slides.eq(b).remove();a.doMath();a.update(e,"remove");a.slides=d(c.selector+":not(.clone)",a);a.setup();c.removed(a)};f.init()};d.flexslider.defaults={namespace:"flex-",selector:".slides > li",animation:"fade",easing:"swing",direction:"horizontal",reverse:!1,animationLoop:!0,smoothHeight:!1,startAt:0,slideshow:!0,slideshowSpeed:7E3,animationSpeed:600,initDelay:0,randomize:!1,pauseOnAction:!0,pauseOnHover:!1,useCSS:!0,touch:!0,video:!1,controlNav:!0,directionNav:!0,prevText:"Previous",nextText:"Next",
- keyboard:!0,multipleKeyboard:!1,mousewheel:!1,pausePlay:!1,pauseText:"Pause",playText:"Play",controlsContainer:"",manualControls:"",sync:"",asNavFor:"",itemWidth:0,itemMargin:0,minItems:0,maxItems:0,move:0,start:function(){},before:function(){},after:function(){},end:function(){},added:function(){},removed:function(){}};d.fn.flexslider=function(i){void 0===i&&(i={});if("object"===typeof i)return this.each(function(){var a=d(this),c=a.find(i.selector?i.selector:".slides > li");1===c.length?(c.fadeIn(400),
- i.start&&i.start(a)):void 0==a.data("flexslider")&&new d.flexslider(this,i)});var k=d(this).data("flexslider");switch(i){case "play":k.play();break;case "pause":k.pause();break;case "next":k.flexAnimate(k.getTarget("next"),!0);break;case "prev":case "previous":k.flexAnimate(k.getTarget("prev"),!0);break;default:"number"===typeof i&&k.flexAnimate(i,!0)}}})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/flexslider/jquery.flexslider.js b/assets/plugins/flexslider/jquery.flexslider.js
deleted file mode 100644
index 7f68c9b..0000000
--- a/assets/plugins/flexslider/jquery.flexslider.js
+++ /dev/null
@@ -1,903 +0,0 @@
-/*
- * jQuery FlexSlider v2.1
- * http://www.woothemes.com/flexslider/
- *
- * Copyright 2012 WooThemes
- * Free to use under the GPLv2 license.
- * http://www.gnu.org/licenses/gpl-2.0.html
- *
- * Contributing author: Tyler Smith (@mbmufffin)
- */
-
-;(function ($) {
-
- //FlexSlider: Object Instance
- $.flexslider = function(el, options) {
- var slider = $(el),
- vars = $.extend({}, $.flexslider.defaults, options),
- namespace = vars.namespace,
- touch = ("ontouchstart" in window) || window.DocumentTouch && document instanceof DocumentTouch,
- eventType = (touch) ? "touchend" : "click",
- vertical = vars.direction === "vertical",
- reverse = vars.reverse,
- carousel = (vars.itemWidth > 0),
- fade = vars.animation === "fade",
- asNav = vars.asNavFor !== "",
- methods = {};
-
- // Store a reference to the slider object
- $.data(el, "flexslider", slider);
-
- // Privat slider methods
- methods = {
- init: function() {
- slider.animating = false;
- slider.currentSlide = vars.startAt;
- slider.animatingTo = slider.currentSlide;
- slider.atEnd = (slider.currentSlide === 0 || slider.currentSlide === slider.last);
- slider.containerSelector = vars.selector.substr(0,vars.selector.search(' '));
- slider.slides = $(vars.selector, slider);
- slider.container = $(slider.containerSelector, slider);
- slider.count = slider.slides.length;
- // SYNC:
- slider.syncExists = $(vars.sync).length > 0;
- // SLIDE:
- if (vars.animation === "slide") vars.animation = "swing";
- slider.prop = (vertical) ? "top" : "marginLeft";
- slider.args = {};
- // SLIDESHOW:
- slider.manualPause = false;
- // TOUCH/USECSS:
- slider.transitions = !vars.video && !fade && vars.useCSS && (function() {
- var obj = document.createElement('div'),
- props = ['perspectiveProperty', 'WebkitPerspective', 'MozPerspective', 'OPerspective', 'msPerspective'];
- for (var i in props) {
- if ( obj.style[ props[i] ] !== undefined ) {
- slider.pfx = props[i].replace('Perspective','').toLowerCase();
- slider.prop = "-" + slider.pfx + "-transform";
- return true;
- }
- }
- return false;
- }());
- // CONTROLSCONTAINER:
- if (vars.controlsContainer !== "") slider.controlsContainer = $(vars.controlsContainer).length > 0 && $(vars.controlsContainer);
- // MANUAL:
- if (vars.manualControls !== "") slider.manualControls = $(vars.manualControls).length > 0 && $(vars.manualControls);
-
- // RANDOMIZE:
- if (vars.randomize) {
- slider.slides.sort(function() { return (Math.round(Math.random())-0.5); });
- slider.container.empty().append(slider.slides);
- }
-
- slider.doMath();
-
- // ASNAV:
- if (asNav) methods.asNav.setup();
-
- // INIT
- slider.setup("init");
-
- // CONTROLNAV:
- if (vars.controlNav) methods.controlNav.setup();
-
- // DIRECTIONNAV:
- if (vars.directionNav) methods.directionNav.setup();
-
- // KEYBOARD:
- if (vars.keyboard && ($(slider.containerSelector).length === 1 || vars.multipleKeyboard)) {
- $(document).bind('keyup', function(event) {
- var keycode = event.keyCode;
- if (!slider.animating && (keycode === 39 || keycode === 37)) {
- var target = (keycode === 39) ? slider.getTarget('next') :
- (keycode === 37) ? slider.getTarget('prev') : false;
- slider.flexAnimate(target, vars.pauseOnAction);
- }
- });
- }
- // MOUSEWHEEL:
- if (vars.mousewheel) {
- slider.bind('mousewheel', function(event, delta, deltaX, deltaY) {
- event.preventDefault();
- var target = (delta < 0) ? slider.getTarget('next') : slider.getTarget('prev');
- slider.flexAnimate(target, vars.pauseOnAction);
- });
- }
-
- // PAUSEPLAY
- if (vars.pausePlay) methods.pausePlay.setup();
-
- // SLIDSESHOW
- if (vars.slideshow) {
- if (vars.pauseOnHover) {
- slider.hover(function() {
- if (!slider.manualPlay && !slider.manualPause) slider.pause();
- }, function() {
- if (!slider.manualPause && !slider.manualPlay) slider.play();
- });
- }
- // initialize animation
- (vars.initDelay > 0) ? setTimeout(slider.play, vars.initDelay) : slider.play();
- }
-
- // TOUCH
- if (touch && vars.touch) methods.touch();
-
- // FADE&&SMOOTHHEIGHT || SLIDE:
- if (!fade || (fade && vars.smoothHeight)) $(window).bind("resize focus", methods.resize);
-
-
- // API: start() Callback
- setTimeout(function(){
- vars.start(slider);
- }, 200);
- },
- asNav: {
- setup: function() {
- slider.asNav = true;
- slider.animatingTo = Math.floor(slider.currentSlide/slider.move);
- slider.currentItem = slider.currentSlide;
- slider.slides.removeClass(namespace + "active-slide").eq(slider.currentItem).addClass(namespace + "active-slide");
- slider.slides.click(function(e){
- e.preventDefault();
- var $slide = $(this),
- target = $slide.index();
- if (!$(vars.asNavFor).data('flexslider').animating && !$slide.hasClass('active')) {
- slider.direction = (slider.currentItem < target) ? "next" : "prev";
- slider.flexAnimate(target, vars.pauseOnAction, false, true, true);
- }
- });
- }
- },
- controlNav: {
- setup: function() {
- if (!slider.manualControls) {
- methods.controlNav.setupPaging();
- } else { // MANUALCONTROLS:
- methods.controlNav.setupManual();
- }
- },
- setupPaging: function() {
- var type = (vars.controlNav === "thumbnails") ? 'control-thumbs' : 'control-paging',
- j = 1,
- item;
-
- slider.controlNavScaffold = $(' ');
-
- if (slider.pagingCount > 1) {
- for (var i = 0; i < slider.pagingCount; i++) {
- item = (vars.controlNav === "thumbnails") ? ' ' : '' + j + ' ';
- slider.controlNavScaffold.append('' + item + ' ');
- j++;
- }
- }
-
- // CONTROLSCONTAINER:
- (slider.controlsContainer) ? $(slider.controlsContainer).append(slider.controlNavScaffold) : slider.append(slider.controlNavScaffold);
- methods.controlNav.set();
-
- methods.controlNav.active();
-
- slider.controlNavScaffold.delegate('a, img', eventType, function(event) {
- event.preventDefault();
- var $this = $(this),
- target = slider.controlNav.index($this);
-
- if (!$this.hasClass(namespace + 'active')) {
- slider.direction = (target > slider.currentSlide) ? "next" : "prev";
- slider.flexAnimate(target, vars.pauseOnAction);
- }
- });
- // Prevent iOS click event bug
- if (touch) {
- slider.controlNavScaffold.delegate('a', "click touchstart", function(event) {
- event.preventDefault();
- });
- }
- },
- setupManual: function() {
- slider.controlNav = slider.manualControls;
- methods.controlNav.active();
-
- slider.controlNav.live(eventType, function(event) {
- event.preventDefault();
- var $this = $(this),
- target = slider.controlNav.index($this);
-
- if (!$this.hasClass(namespace + 'active')) {
- (target > slider.currentSlide) ? slider.direction = "next" : slider.direction = "prev";
- slider.flexAnimate(target, vars.pauseOnAction);
- }
- });
- // Prevent iOS click event bug
- if (touch) {
- slider.controlNav.live("click touchstart", function(event) {
- event.preventDefault();
- });
- }
- },
- set: function() {
- var selector = (vars.controlNav === "thumbnails") ? 'img' : 'a';
- slider.controlNav = $('.' + namespace + 'control-nav li ' + selector, (slider.controlsContainer) ? slider.controlsContainer : slider);
- },
- active: function() {
- slider.controlNav.removeClass(namespace + "active").eq(slider.animatingTo).addClass(namespace + "active");
- },
- update: function(action, pos) {
- if (slider.pagingCount > 1 && action === "add") {
- slider.controlNavScaffold.append($('' + slider.count + ' '));
- } else if (slider.pagingCount === 1) {
- slider.controlNavScaffold.find('li').remove();
- } else {
- slider.controlNav.eq(pos).closest('li').remove();
- }
- methods.controlNav.set();
- (slider.pagingCount > 1 && slider.pagingCount !== slider.controlNav.length) ? slider.update(pos, action) : methods.controlNav.active();
- }
- },
- directionNav: {
- setup: function() {
- var directionNavScaffold = $('');
-
- // CONTROLSCONTAINER:
- if (slider.controlsContainer) {
- $(slider.controlsContainer).append(directionNavScaffold);
- slider.directionNav = $('.' + namespace + 'direction-nav li a', slider.controlsContainer);
- } else {
- slider.append(directionNavScaffold);
- slider.directionNav = $('.' + namespace + 'direction-nav li a', slider);
- }
-
- methods.directionNav.update();
-
- slider.directionNav.bind(eventType, function(event) {
- event.preventDefault();
- var target = ($(this).hasClass(namespace + 'next')) ? slider.getTarget('next') : slider.getTarget('prev');
- slider.flexAnimate(target, vars.pauseOnAction);
- });
- // Prevent iOS click event bug
- if (touch) {
- slider.directionNav.bind("click touchstart", function(event) {
- event.preventDefault();
- });
- }
- },
- update: function() {
- var disabledClass = namespace + 'disabled';
- if (slider.pagingCount === 1) {
- slider.directionNav.addClass(disabledClass);
- } else if (!vars.animationLoop) {
- if (slider.animatingTo === 0) {
- slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "prev").addClass(disabledClass);
- } else if (slider.animatingTo === slider.last) {
- slider.directionNav.removeClass(disabledClass).filter('.' + namespace + "next").addClass(disabledClass);
- } else {
- slider.directionNav.removeClass(disabledClass);
- }
- } else {
- slider.directionNav.removeClass(disabledClass);
- }
- }
- },
- pausePlay: {
- setup: function() {
- var pausePlayScaffold = $('');
-
- // CONTROLSCONTAINER:
- if (slider.controlsContainer) {
- slider.controlsContainer.append(pausePlayScaffold);
- slider.pausePlay = $('.' + namespace + 'pauseplay a', slider.controlsContainer);
- } else {
- slider.append(pausePlayScaffold);
- slider.pausePlay = $('.' + namespace + 'pauseplay a', slider);
- }
-
- methods.pausePlay.update((vars.slideshow) ? namespace + 'pause' : namespace + 'play');
-
- slider.pausePlay.bind(eventType, function(event) {
- event.preventDefault();
- if ($(this).hasClass(namespace + 'pause')) {
- slider.manualPause = true;
- slider.manualPlay = false;
- slider.pause();
- } else {
- slider.manualPause = false;
- slider.manualPlay = true;
- slider.play();
- }
- });
- // Prevent iOS click event bug
- if (touch) {
- slider.pausePlay.bind("click touchstart", function(event) {
- event.preventDefault();
- });
- }
- },
- update: function(state) {
- (state === "play") ? slider.pausePlay.removeClass(namespace + 'pause').addClass(namespace + 'play').text(vars.playText) : slider.pausePlay.removeClass(namespace + 'play').addClass(namespace + 'pause').text(vars.pauseText);
- }
- },
- touch: function() {
- var startX,
- startY,
- offset,
- cwidth,
- dx,
- startT,
- scrolling = false;
-
- el.addEventListener('touchstart', onTouchStart, false);
- function onTouchStart(e) {
- if (slider.animating) {
- e.preventDefault();
- } else if (e.touches.length === 1) {
- slider.pause();
- // CAROUSEL:
- cwidth = (vertical) ? slider.h : slider. w;
- startT = Number(new Date());
- // CAROUSEL:
- offset = (carousel && reverse && slider.animatingTo === slider.last) ? 0 :
- (carousel && reverse) ? slider.limit - (((slider.itemW + vars.itemMargin) * slider.move) * slider.animatingTo) :
- (carousel && slider.currentSlide === slider.last) ? slider.limit :
- (carousel) ? ((slider.itemW + vars.itemMargin) * slider.move) * slider.currentSlide :
- (reverse) ? (slider.last - slider.currentSlide + slider.cloneOffset) * cwidth : (slider.currentSlide + slider.cloneOffset) * cwidth;
- startX = (vertical) ? e.touches[0].pageY : e.touches[0].pageX;
- startY = (vertical) ? e.touches[0].pageX : e.touches[0].pageY;
-
- el.addEventListener('touchmove', onTouchMove, false);
- el.addEventListener('touchend', onTouchEnd, false);
- }
- }
-
- function onTouchMove(e) {
- dx = (vertical) ? startX - e.touches[0].pageY : startX - e.touches[0].pageX;
- scrolling = (vertical) ? (Math.abs(dx) < Math.abs(e.touches[0].pageX - startY)) : (Math.abs(dx) < Math.abs(e.touches[0].pageY - startY));
-
- if (!scrolling || Number(new Date()) - startT > 500) {
- e.preventDefault();
- if (!fade && slider.transitions) {
- if (!vars.animationLoop) {
- dx = dx/((slider.currentSlide === 0 && dx < 0 || slider.currentSlide === slider.last && dx > 0) ? (Math.abs(dx)/cwidth+2) : 1);
- }
- slider.setProps(offset + dx, "setTouch");
- }
- }
- }
-
- function onTouchEnd(e) {
- // finish the touch by undoing the touch session
- el.removeEventListener('touchmove', onTouchMove, false);
-
- if (slider.animatingTo === slider.currentSlide && !scrolling && !(dx === null)) {
- var updateDx = (reverse) ? -dx : dx,
- target = (updateDx > 0) ? slider.getTarget('next') : slider.getTarget('prev');
-
- if (slider.canAdvance(target) && (Number(new Date()) - startT < 550 && Math.abs(updateDx) > 50 || Math.abs(updateDx) > cwidth/2)) {
- slider.flexAnimate(target, vars.pauseOnAction);
- } else {
- if (!fade) slider.flexAnimate(slider.currentSlide, vars.pauseOnAction, true);
- }
- }
- el.removeEventListener('touchend', onTouchEnd, false);
- startX = null;
- startY = null;
- dx = null;
- offset = null;
- }
- },
- resize: function() {
- if (!slider.animating && slider.is(':visible')) {
- if (!carousel) slider.doMath();
-
- if (fade) {
- // SMOOTH HEIGHT:
- methods.smoothHeight();
- } else if (carousel) { //CAROUSEL:
- slider.slides.width(slider.computedW);
- slider.update(slider.pagingCount);
- slider.setProps();
- }
- else if (vertical) { //VERTICAL:
- slider.viewport.height(slider.h);
- slider.setProps(slider.h, "setTotal");
- } else {
- // SMOOTH HEIGHT:
- if (vars.smoothHeight) methods.smoothHeight();
- slider.newSlides.width(slider.computedW);
- slider.setProps(slider.computedW, "setTotal");
- }
- }
- },
- smoothHeight: function(dur) {
- if (!vertical || fade) {
- var $obj = (fade) ? slider : slider.viewport;
- (dur) ? $obj.animate({"height": slider.slides.eq(slider.animatingTo).height()}, dur) : $obj.height(slider.slides.eq(slider.animatingTo).height());
- }
- },
- sync: function(action) {
- var $obj = $(vars.sync).data("flexslider"),
- target = slider.animatingTo;
-
- switch (action) {
- case "animate": $obj.flexAnimate(target, vars.pauseOnAction, false, true); break;
- case "play": if (!$obj.playing && !$obj.asNav) { $obj.play(); } break;
- case "pause": $obj.pause(); break;
- }
- }
- }
-
- // public methods
- slider.flexAnimate = function(target, pause, override, withSync, fromNav) {
- if (asNav && slider.pagingCount === 1) slider.direction = (slider.currentItem < target) ? "next" : "prev";
-
- if (!slider.animating && (slider.canAdvance(target, fromNav) || override) && slider.is(":visible")) {
- if (asNav && withSync) {
- var master = $(vars.asNavFor).data('flexslider');
- slider.atEnd = target === 0 || target === slider.count - 1;
- master.flexAnimate(target, true, false, true, fromNav);
- slider.direction = (slider.currentItem < target) ? "next" : "prev";
- master.direction = slider.direction;
-
- if (Math.ceil((target + 1)/slider.visible) - 1 !== slider.currentSlide && target !== 0) {
- slider.currentItem = target;
- slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide");
- target = Math.floor(target/slider.visible);
- } else {
- slider.currentItem = target;
- slider.slides.removeClass(namespace + "active-slide").eq(target).addClass(namespace + "active-slide");
- return false;
- }
- }
-
- slider.animating = true;
- slider.animatingTo = target;
- // API: before() animation Callback
- vars.before(slider);
-
- // SLIDESHOW:
- if (pause) slider.pause();
-
- // SYNC:
- if (slider.syncExists && !fromNav) methods.sync("animate");
-
- // CONTROLNAV
- if (vars.controlNav) methods.controlNav.active();
-
- // !CAROUSEL:
- // CANDIDATE: slide active class (for add/remove slide)
- if (!carousel) slider.slides.removeClass(namespace + 'active-slide').eq(target).addClass(namespace + 'active-slide');
-
- // INFINITE LOOP:
- // CANDIDATE: atEnd
- slider.atEnd = target === 0 || target === slider.last;
-
- // DIRECTIONNAV:
- if (vars.directionNav) methods.directionNav.update();
-
- if (target === slider.last) {
- // API: end() of cycle Callback
- vars.end(slider);
- // SLIDESHOW && !INFINITE LOOP:
- if (!vars.animationLoop) slider.pause();
- }
-
- // SLIDE:
- if (!fade) {
- var dimension = (vertical) ? slider.slides.filter(':first').height() : slider.computedW,
- margin, slideString, calcNext;
-
- // INFINITE LOOP / REVERSE:
- if (carousel) {
- margin = (vars.itemWidth > slider.w) ? vars.itemMargin * 2 : vars.itemMargin;
- calcNext = ((slider.itemW + margin) * slider.move) * slider.animatingTo;
- slideString = (calcNext > slider.limit && slider.visible !== 1) ? slider.limit : calcNext;
- } else if (slider.currentSlide === 0 && target === slider.count - 1 && vars.animationLoop && slider.direction !== "next") {
- slideString = (reverse) ? (slider.count + slider.cloneOffset) * dimension : 0;
- } else if (slider.currentSlide === slider.last && target === 0 && vars.animationLoop && slider.direction !== "prev") {
- slideString = (reverse) ? 0 : (slider.count + 1) * dimension;
- } else {
- slideString = (reverse) ? ((slider.count - 1) - target + slider.cloneOffset) * dimension : (target + slider.cloneOffset) * dimension;
- }
- slider.setProps(slideString, "", vars.animationSpeed);
- if (slider.transitions) {
- if (!vars.animationLoop || !slider.atEnd) {
- slider.animating = false;
- slider.currentSlide = slider.animatingTo;
- }
- slider.container.unbind("webkitTransitionEnd transitionend");
- slider.container.bind("webkitTransitionEnd transitionend", function() {
- slider.wrapup(dimension);
- });
- } else {
- slider.container.animate(slider.args, vars.animationSpeed, vars.easing, function(){
- slider.wrapup(dimension);
- });
- }
- } else { // FADE:
- if (!touch) {
- slider.slides.eq(slider.currentSlide).fadeOut(vars.animationSpeed, vars.easing);
- slider.slides.eq(target).fadeIn(vars.animationSpeed, vars.easing, slider.wrapup);
- } else {
- slider.slides.eq(slider.currentSlide).css({ "opacity": 0, "zIndex": 1 });
- slider.slides.eq(target).css({ "opacity": 1, "zIndex": 2 });
-
- slider.slides.unbind("webkitTransitionEnd transitionend");
- slider.slides.eq(slider.currentSlide).bind("webkitTransitionEnd transitionend", function() {
- // API: after() animation Callback
- vars.after(slider);
- });
-
- slider.animating = false;
- slider.currentSlide = slider.animatingTo;
- }
- }
- // SMOOTH HEIGHT:
- if (vars.smoothHeight) methods.smoothHeight(vars.animationSpeed);
- }
- }
- slider.wrapup = function(dimension) {
- // SLIDE:
- if (!fade && !carousel) {
- if (slider.currentSlide === 0 && slider.animatingTo === slider.last && vars.animationLoop) {
- slider.setProps(dimension, "jumpEnd");
- } else if (slider.currentSlide === slider.last && slider.animatingTo === 0 && vars.animationLoop) {
- slider.setProps(dimension, "jumpStart");
- }
- }
- slider.animating = false;
- slider.currentSlide = slider.animatingTo;
- // API: after() animation Callback
- vars.after(slider);
- }
-
- // SLIDESHOW:
- slider.animateSlides = function() {
- if (!slider.animating) slider.flexAnimate(slider.getTarget("next"));
- }
- // SLIDESHOW:
- slider.pause = function() {
- clearInterval(slider.animatedSlides);
- slider.playing = false;
- // PAUSEPLAY:
- if (vars.pausePlay) methods.pausePlay.update("play");
- // SYNC:
- if (slider.syncExists) methods.sync("pause");
- }
- // SLIDESHOW:
- slider.play = function() {
- slider.animatedSlides = setInterval(slider.animateSlides, vars.slideshowSpeed);
- slider.playing = true;
- // PAUSEPLAY:
- if (vars.pausePlay) methods.pausePlay.update("pause");
- // SYNC:
- if (slider.syncExists) methods.sync("play");
- }
- slider.canAdvance = function(target, fromNav) {
- // ASNAV:
- var last = (asNav) ? slider.pagingCount - 1 : slider.last;
- return (fromNav) ? true :
- (asNav && slider.currentItem === slider.count - 1 && target === 0 && slider.direction === "prev") ? true :
- (asNav && slider.currentItem === 0 && target === slider.pagingCount - 1 && slider.direction !== "next") ? false :
- (target === slider.currentSlide && !asNav) ? false :
- (vars.animationLoop) ? true :
- (slider.atEnd && slider.currentSlide === 0 && target === last && slider.direction !== "next") ? false :
- (slider.atEnd && slider.currentSlide === last && target === 0 && slider.direction === "next") ? false :
- true;
- }
- slider.getTarget = function(dir) {
- slider.direction = dir;
- if (dir === "next") {
- return (slider.currentSlide === slider.last) ? 0 : slider.currentSlide + 1;
- } else {
- return (slider.currentSlide === 0) ? slider.last : slider.currentSlide - 1;
- }
- }
-
- // SLIDE:
- slider.setProps = function(pos, special, dur) {
- var target = (function() {
- var posCheck = (pos) ? pos : ((slider.itemW + vars.itemMargin) * slider.move) * slider.animatingTo,
- posCalc = (function() {
- if (carousel) {
- return (special === "setTouch") ? pos :
- (reverse && slider.animatingTo === slider.last) ? 0 :
- (reverse) ? slider.limit - (((slider.itemW + vars.itemMargin) * slider.move) * slider.animatingTo) :
- (slider.animatingTo === slider.last) ? slider.limit : posCheck;
- } else {
- switch (special) {
- case "setTotal": return (reverse) ? ((slider.count - 1) - slider.currentSlide + slider.cloneOffset) * pos : (slider.currentSlide + slider.cloneOffset) * pos;
- case "setTouch": return (reverse) ? pos : pos;
- case "jumpEnd": return (reverse) ? pos : slider.count * pos;
- case "jumpStart": return (reverse) ? slider.count * pos : pos;
- default: return pos;
- }
- }
- }());
- return (posCalc * -1) + "px";
- }());
-
- if (slider.transitions) {
- target = (vertical) ? "translate3d(0," + target + ",0)" : "translate3d(" + target + ",0,0)";
- dur = (dur !== undefined) ? (dur/1000) + "s" : "0s";
- slider.container.css("-" + slider.pfx + "-transition-duration", dur);
- }
-
- slider.args[slider.prop] = target;
- if (slider.transitions || dur === undefined) slider.container.css(slider.args);
- }
-
- slider.setup = function(type) {
- // SLIDE:
- if (!fade) {
- var sliderOffset, arr;
-
- if (type === "init") {
- slider.viewport = $('
').css({"overflow": "hidden", "position": "relative"}).appendTo(slider).append(slider.container);
- // INFINITE LOOP:
- slider.cloneCount = 0;
- slider.cloneOffset = 0;
- // REVERSE:
- if (reverse) {
- arr = $.makeArray(slider.slides).reverse();
- slider.slides = $(arr);
- slider.container.empty().append(slider.slides);
- }
- }
- // INFINITE LOOP && !CAROUSEL:
- if (vars.animationLoop && !carousel) {
- slider.cloneCount = 2;
- slider.cloneOffset = 1;
- // clear out old clones
- if (type !== "init") slider.container.find('.clone').remove();
- slider.container.append(slider.slides.first().clone().addClass('clone')).prepend(slider.slides.last().clone().addClass('clone'));
- }
- slider.newSlides = $(vars.selector, slider);
-
- sliderOffset = (reverse) ? slider.count - 1 - slider.currentSlide + slider.cloneOffset : slider.currentSlide + slider.cloneOffset;
- // VERTICAL:
- if (vertical && !carousel) {
- slider.container.height((slider.count + slider.cloneCount) * 200 + "%").css("position", "absolute").width("100%");
- setTimeout(function(){
- slider.newSlides.css({"display": "block"});
- slider.doMath();
- slider.viewport.height(slider.h);
- slider.setProps(sliderOffset * slider.h, "init");
- }, (type === "init") ? 100 : 0);
- } else {
- slider.container.width((slider.count + slider.cloneCount) * 200 + "%");
- slider.setProps(sliderOffset * slider.computedW, "init");
- setTimeout(function(){
- slider.doMath();
- slider.newSlides.css({"width": slider.computedW, "float": "left", "display": "block"});
- // SMOOTH HEIGHT:
- if (vars.smoothHeight) methods.smoothHeight();
- }, (type === "init") ? 100 : 0);
- }
- } else { // FADE:
- slider.slides.css({"width": "100%", "float": "left", "marginRight": "-100%", "position": "relative"});
- if (type === "init") {
- if (!touch) {
- slider.slides.eq(slider.currentSlide).fadeIn(vars.animationSpeed, vars.easing);
- } else {
- slider.slides.css({ "opacity": 0, "display": "block", "webkitTransition": "opacity " + vars.animationSpeed / 1000 + "s ease", "zIndex": 1 }).eq(slider.currentSlide).css({ "opacity": 1, "zIndex": 2});
- }
- }
- // SMOOTH HEIGHT:
- if (vars.smoothHeight) methods.smoothHeight();
- }
- // !CAROUSEL:
- // CANDIDATE: active slide
- if (!carousel) slider.slides.removeClass(namespace + "active-slide").eq(slider.currentSlide).addClass(namespace + "active-slide");
- }
-
- slider.doMath = function() {
- var slide = slider.slides.first(),
- slideMargin = vars.itemMargin,
- minItems = vars.minItems,
- maxItems = vars.maxItems;
-
- slider.w = slider.width();
- slider.h = slide.height();
- slider.boxPadding = slide.outerWidth() - slide.width();
-
- // CAROUSEL:
- if (carousel) {
- slider.itemT = vars.itemWidth + slideMargin;
- slider.minW = (minItems) ? minItems * slider.itemT : slider.w;
- slider.maxW = (maxItems) ? maxItems * slider.itemT : slider.w;
- slider.itemW = (slider.minW > slider.w) ? (slider.w - (slideMargin * minItems))/minItems :
- (slider.maxW < slider.w) ? (slider.w - (slideMargin * maxItems))/maxItems :
- (vars.itemWidth > slider.w) ? slider.w : vars.itemWidth;
- slider.visible = Math.floor(slider.w/(slider.itemW + slideMargin));
- slider.move = (vars.move > 0 && vars.move < slider.visible ) ? vars.move : slider.visible;
- slider.pagingCount = Math.ceil(((slider.count - slider.visible)/slider.move) + 1);
- slider.last = slider.pagingCount - 1;
- slider.limit = (slider.pagingCount === 1) ? 0 :
- (vars.itemWidth > slider.w) ? ((slider.itemW + (slideMargin * 2)) * slider.count) - slider.w - slideMargin : ((slider.itemW + slideMargin) * slider.count) - slider.w - slideMargin;
- } else {
- slider.itemW = slider.w;
- slider.pagingCount = slider.count;
- slider.last = slider.count - 1;
- }
- slider.computedW = slider.itemW - slider.boxPadding;
- }
-
- slider.update = function(pos, action) {
- slider.doMath();
-
- // update currentSlide and slider.animatingTo if necessary
- if (!carousel) {
- if (pos < slider.currentSlide) {
- slider.currentSlide += 1;
- } else if (pos <= slider.currentSlide && pos !== 0) {
- slider.currentSlide -= 1;
- }
- slider.animatingTo = slider.currentSlide;
- }
-
- // update controlNav
- if (vars.controlNav && !slider.manualControls) {
- if ((action === "add" && !carousel) || slider.pagingCount > slider.controlNav.length) {
- methods.controlNav.update("add");
- } else if ((action === "remove" && !carousel) || slider.pagingCount < slider.controlNav.length) {
- if (carousel && slider.currentSlide > slider.last) {
- slider.currentSlide -= 1;
- slider.animatingTo -= 1;
- }
- methods.controlNav.update("remove", slider.last);
- }
- }
- // update directionNav
- if (vars.directionNav) methods.directionNav.update();
-
- }
-
- slider.addSlide = function(obj, pos) {
- var $obj = $(obj);
-
- slider.count += 1;
- slider.last = slider.count - 1;
-
- // append new slide
- if (vertical && reverse) {
- (pos !== undefined) ? slider.slides.eq(slider.count - pos).after($obj) : slider.container.prepend($obj);
- } else {
- (pos !== undefined) ? slider.slides.eq(pos).before($obj) : slider.container.append($obj);
- }
-
- // update currentSlide, animatingTo, controlNav, and directionNav
- slider.update(pos, "add");
-
- // update slider.slides
- slider.slides = $(vars.selector + ':not(.clone)', slider);
- // re-setup the slider to accomdate new slide
- slider.setup();
-
- //FlexSlider: added() Callback
- vars.added(slider);
- }
- slider.removeSlide = function(obj) {
- var pos = (isNaN(obj)) ? slider.slides.index($(obj)) : obj;
-
- // update count
- slider.count -= 1;
- slider.last = slider.count - 1;
-
- // remove slide
- if (isNaN(obj)) {
- $(obj, slider.slides).remove();
- } else {
- (vertical && reverse) ? slider.slides.eq(slider.last).remove() : slider.slides.eq(obj).remove();
- }
-
- // update currentSlide, animatingTo, controlNav, and directionNav
- slider.doMath();
- slider.update(pos, "remove");
-
- // update slider.slides
- slider.slides = $(vars.selector + ':not(.clone)', slider);
- // re-setup the slider to accomdate new slide
- slider.setup();
-
- // FlexSlider: removed() Callback
- vars.removed(slider);
- }
-
- //FlexSlider: Initialize
- methods.init();
- }
-
- //FlexSlider: Default Settings
- $.flexslider.defaults = {
- namespace: "flex-", //{NEW} String: Prefix string attached to the class of every element generated by the plugin
- selector: ".slides > li", //{NEW} Selector: Must match a simple pattern. '{container} > {slide}' -- Ignore pattern at your own peril
- animation: "fade", //String: Select your animation type, "fade" or "slide"
- easing: "swing", //{NEW} String: Determines the easing method used in jQuery transitions. jQuery easing plugin is supported!
- direction: "horizontal", //String: Select the sliding direction, "horizontal" or "vertical"
- reverse: false, //{NEW} Boolean: Reverse the animation direction
- animationLoop: true, //Boolean: Should the animation loop? If false, directionNav will received "disable" classes at either end
- smoothHeight: false, //{NEW} Boolean: Allow height of the slider to animate smoothly in horizontal mode
- startAt: 0, //Integer: The slide that the slider should start on. Array notation (0 = first slide)
- slideshow: true, //Boolean: Animate slider automatically
- slideshowSpeed: 7000, //Integer: Set the speed of the slideshow cycling, in milliseconds
- animationSpeed: 600, //Integer: Set the speed of animations, in milliseconds
- initDelay: 0, //{NEW} Integer: Set an initialization delay, in milliseconds
- randomize: false, //Boolean: Randomize slide order
-
- // Usability features
- pauseOnAction: true, //Boolean: Pause the slideshow when interacting with control elements, highly recommended.
- pauseOnHover: false, //Boolean: Pause the slideshow when hovering over slider, then resume when no longer hovering
- useCSS: true, //{NEW} Boolean: Slider will use CSS3 transitions if available
- touch: true, //{NEW} Boolean: Allow touch swipe navigation of the slider on touch-enabled devices
- video: false, //{NEW} Boolean: If using video in the slider, will prevent CSS3 3D Transforms to avoid graphical glitches
-
- // Primary Controls
- controlNav: true, //Boolean: Create navigation for paging control of each clide? Note: Leave true for manualControls usage
- directionNav: true, //Boolean: Create navigation for previous/next navigation? (true/false)
- prevText: "Previous", //String: Set the text for the "previous" directionNav item
- nextText: "Next", //String: Set the text for the "next" directionNav item
-
- // Secondary Navigation
- keyboard: true, //Boolean: Allow slider navigating via keyboard left/right keys
- multipleKeyboard: false, //{NEW} Boolean: Allow keyboard navigation to affect multiple sliders. Default behavior cuts out keyboard navigation with more than one slider present.
- mousewheel: false, //{UPDATED} Boolean: Requires jquery.mousewheel.js (https://github.com/brandonaaron/jquery-mousewheel) - Allows slider navigating via mousewheel
- pausePlay: false, //Boolean: Create pause/play dynamic element
- pauseText: "Pause", //String: Set the text for the "pause" pausePlay item
- playText: "Play", //String: Set the text for the "play" pausePlay item
-
- // Special properties
- controlsContainer: "", //{UPDATED} jQuery Object/Selector: Declare which container the navigation elements should be appended too. Default container is the FlexSlider element. Example use would be $(".flexslider-container"). Property is ignored if given element is not found.
- manualControls: "", //{UPDATED} jQuery Object/Selector: Declare custom control navigation. Examples would be $(".flex-control-nav li") or "#tabs-nav li img", etc. The number of elements in your controlNav should match the number of slides/tabs.
- sync: "", //{NEW} Selector: Mirror the actions performed on this slider with another slider. Use with care.
- asNavFor: "", //{NEW} Selector: Internal property exposed for turning the slider into a thumbnail navigation for another slider
-
- // Carousel Options
- itemWidth: 0, //{NEW} Integer: Box-model width of individual carousel items, including horizontal borders and padding.
- itemMargin: 0, //{NEW} Integer: Margin between carousel items.
- minItems: 0, //{NEW} Integer: Minimum number of carousel items that should be visible. Items will resize fluidly when below this.
- maxItems: 0, //{NEW} Integer: Maxmimum number of carousel items that should be visible. Items will resize fluidly when above this limit.
- move: 0, //{NEW} Integer: Number of carousel items that should move on animation. If 0, slider will move all visible items.
-
- // Callback API
- start: function(){}, //Callback: function(slider) - Fires when the slider loads the first slide
- before: function(){}, //Callback: function(slider) - Fires asynchronously with each slider animation
- after: function(){}, //Callback: function(slider) - Fires after each slider animation completes
- end: function(){}, //Callback: function(slider) - Fires when the slider reaches the last slide (asynchronous)
- added: function(){}, //{NEW} Callback: function(slider) - Fires after a slide is added
- removed: function(){} //{NEW} Callback: function(slider) - Fires after a slide is removed
- }
-
-
- //FlexSlider: Plugin Function
- $.fn.flexslider = function(options) {
- if (options === undefined) options = {};
-
- if (typeof options === "object") {
- return this.each(function() {
- var $this = $(this),
- selector = (options.selector) ? options.selector : ".slides > li",
- $slides = $this.find(selector);
-
- if ($slides.length === 1) {
- $slides.fadeIn(400);
- if (options.start) options.start($this);
- } else if ($this.data('flexslider') == undefined) {
- new $.flexslider(this, options);
- }
- });
- } else {
- // Helper strings to quickly perform functions on the slider
- var $slider = $(this).data('flexslider');
- switch (options) {
- case "play": $slider.play(); break;
- case "pause": $slider.pause(); break;
- case "next": $slider.flexAnimate($slider.getTarget("next"), true); break;
- case "prev":
- case "previous": $slider.flexAnimate($slider.getTarget("prev"), true); break;
- default: if (typeof options === "number") $slider.flexAnimate(options, true);
- }
- }
- }
-
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/font-awesome/css/font-awesome-ie7.css b/assets/plugins/font-awesome/css/font-awesome-ie7.css
deleted file mode 100644
index dae5675..0000000
--- a/assets/plugins/font-awesome/css/font-awesome-ie7.css
+++ /dev/null
@@ -1,983 +0,0 @@
-/*!
- * Font Awesome 3.1.0
- * the iconic font designed for Bootstrap
- * -------------------------------------------------------
- * The full suite of pictographic icons, examples, and documentation
- * can be found at: http://fontawesome.io
- *
- * License
- * -------------------------------------------------------
- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
- * http://scripts.sil.org/OFL
- * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
- * http://opensource.org/licenses/mit-license.html
- * - Font Awesome documentation licensed under CC BY 3.0 License -
- * http://creativecommons.org/licenses/by/3.0/
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
-
- * Contact
- * -------------------------------------------------------
- * Email: dave@fontawesome.io
- * Twitter: http://twitter.com/fortaweso_me
- * Work: Lead Product Designer @ http://kyruus.com
- */
-.icon-large {
- font-size: 1.3333333333333333em;
- margin-top: -4px;
- padding-top: 3px;
- margin-bottom: -4px;
- padding-bottom: 3px;
- vertical-align: middle;
-}
-.nav [class^="icon-"],
-.nav [class*=" icon-"] {
- vertical-align: inherit;
- margin-top: -4px;
- padding-top: 3px;
- margin-bottom: -4px;
- padding-bottom: 3px;
-}
-.nav [class^="icon-"].icon-large,
-.nav [class*=" icon-"].icon-large {
- vertical-align: -25%;
-}
-.nav-pills [class^="icon-"].icon-large,
-.nav-tabs [class^="icon-"].icon-large,
-.nav-pills [class*=" icon-"].icon-large,
-.nav-tabs [class*=" icon-"].icon-large {
- line-height: .75em;
- margin-top: -7px;
- padding-top: 5px;
- margin-bottom: -5px;
- padding-bottom: 4px;
-}
-ul.icons-ul {
- text-indent: -1em;
- margin-left: 2.142857142857143em;
-}
-ul.icons-ul > li .icon-li {
- width: 1em;
- margin-right: 0;
-}
-.btn [class^="icon-"].pull-left,
-.btn [class*=" icon-"].pull-left,
-.btn [class^="icon-"].pull-right,
-.btn [class*=" icon-"].pull-right {
- vertical-align: inherit;
-}
-.btn [class^="icon-"].icon-large,
-.btn [class*=" icon-"].icon-large {
- margin-top: -0.5em;
-}
-a [class^="icon-"],
-a [class*=" icon-"] {
- cursor: pointer;
-}
-.icon-glass {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-music {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-search {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-envelope {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-heart {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-star {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-star-empty {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-user {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-film {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-th-large {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-th {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-th-list {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ok {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-remove {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-zoom-in {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-zoom-out {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-off {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-signal {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-cog {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-trash {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-home {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-file {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-time {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-road {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-download-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-download {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-upload {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-inbox {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-play-circle {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-repeat {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-refresh {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-list-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-lock {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-flag {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-headphones {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-volume-off {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-volume-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-volume-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-qrcode {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-barcode {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-tag {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-tags {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-book {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bookmark {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-print {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-camera {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-font {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bold {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-italic {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-text-height {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-text-width {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-align-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-align-center {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-align-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-align-justify {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-list {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-indent-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-indent-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-facetime-video {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-picture {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-pencil {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-map-marker {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-adjust {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-tint {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-edit {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-share {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-check {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-move {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-step-backward {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-fast-backward {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-backward {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-play {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-pause {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-stop {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-forward {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-fast-forward {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-step-forward {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-eject {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-plus-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-minus-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-remove-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ok-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-question-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-info-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-screenshot {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-remove-circle {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ok-circle {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ban-circle {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-arrow-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-arrow-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-arrow-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-arrow-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-share-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-resize-full {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-resize-small {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-plus {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-minus {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-asterisk {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-exclamation-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-gift {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-leaf {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-fire {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-eye-open {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-eye-close {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-warning-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-plane {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-calendar {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-random {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-comment {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-magnet {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-retweet {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-shopping-cart {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-folder-close {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-folder-open {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-resize-vertical {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-resize-horizontal {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bar-chart {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-twitter-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-facebook-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-camera-retro {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-key {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-cogs {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-comments {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-thumbs-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-thumbs-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-star-half {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-heart-empty {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-signout {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-linkedin-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-pushpin {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-external-link {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-signin {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-trophy {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-github-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-upload-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-lemon {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-phone {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-check-empty {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bookmark-empty {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-phone-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-twitter {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-facebook {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-github {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-unlock {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-credit-card {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-rss {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-hdd {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bullhorn {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bell {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-certificate {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-hand-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-hand-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-hand-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-hand-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-circle-arrow-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-circle-arrow-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-circle-arrow-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-circle-arrow-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-globe {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-wrench {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-tasks {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-filter {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-briefcase {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-fullscreen {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-group {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-link {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-cloud {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-beaker {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-cut {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-copy {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-paper-clip {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-save {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-sign-blank {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-reorder {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-list-ul {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-list-ol {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-strikethrough {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-underline {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-table {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-magic {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-truck {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-pinterest {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-pinterest-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-google-plus-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-google-plus {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-money {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-caret-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-caret-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-caret-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-caret-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-columns {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-sort {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-sort-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-sort-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-envelope-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-linkedin {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-undo {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-legal {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-dashboard {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-comment-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-comments-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bolt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-sitemap {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-umbrella {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-paste {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-lightbulb {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-exchange {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-cloud-download {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-cloud-upload {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-user-md {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-stethoscope {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-suitcase {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bell-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-coffee {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-food {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-file-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-building {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-hospital {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ambulance {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-medkit {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-fighter-jet {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-beer {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-h-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-plus-sign-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-double-angle-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-double-angle-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-double-angle-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-double-angle-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-angle-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-angle-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-angle-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-angle-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-desktop {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-laptop {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-tablet {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-mobile-phone {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-circle-blank {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-quote-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-quote-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-spinner {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-circle {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-reply {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-folder-close-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-folder-open-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-expand-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-collapse-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-smile {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-frown {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-meh {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-gamepad {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-keyboard {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-flag-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-flag-checkered {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-terminal {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-code {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-reply-all {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-mail-reply-all {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-star-half-full,
-.icon-star-half-empty {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-location-arrow {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-crop {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-code-fork {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-unlink {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-question {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-info {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-exclamation {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-superscript {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-subscript {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-eraser {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-puzzle-piece {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-microphone {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-microphone-off {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-shield {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-calendar-empty {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-fire-extinguisher {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-rocket {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-maxcdn {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-sign-left {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-sign-right {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-sign-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-chevron-sign-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-html5 {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-css3 {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-anchor {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-unlock-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-bullseye {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ellipsis-horizontal {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ellipsis-vertical {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-rss-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-play-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-ticket {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-minus-sign-alt {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-check-minus {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-level-up {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-level-down {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-check-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-edit-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-external-link-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
-.icon-share-sign {
- *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');
-}
diff --git a/assets/plugins/font-awesome/css/font-awesome-ie7.min.css b/assets/plugins/font-awesome/css/font-awesome-ie7.min.css
deleted file mode 100644
index 47e0508..0000000
--- a/assets/plugins/font-awesome/css/font-awesome-ie7.min.css
+++ /dev/null
@@ -1,24 +0,0 @@
-/*!
- * Font Awesome 3.1.0
- * the iconic font designed for Bootstrap
- * -------------------------------------------------------
- * The full suite of pictographic icons, examples, and documentation
- * can be found at: http://fontawesome.io
- *
- * License
- * -------------------------------------------------------
- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
- * http://scripts.sil.org/OFL
- * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
- * http://opensource.org/licenses/mit-license.html
- * - Font Awesome documentation licensed under CC BY 3.0 License -
- * http://creativecommons.org/licenses/by/3.0/
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
-
- * Contact
- * -------------------------------------------------------
- * Email: dave@fontawesome.io
- * Twitter: http://twitter.com/fortaweso_me
- * Work: Lead Product Designer @ http://kyruus.com
- */.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle}.nav [class^="icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px}.nav [class^="icon-"].icon-large,.nav [class*=" icon-"].icon-large{vertical-align:-25%}.nav-pills [class^="icon-"].icon-large,.nav-tabs [class^="icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px}ul.icons-ul{text-indent:-1em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:1em;margin-right:0}.btn [class^="icon-"].pull-left,.btn [class*=" icon-"].pull-left,.btn [class^="icon-"].pull-right,.btn [class*=" icon-"].pull-right{vertical-align:inherit}.btn [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large{margin-top:-0.5em}a [class^="icon-"],a [class*=" icon-"]{cursor:pointer}.icon-glass{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-music{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-search{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-film{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-large{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-in{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-out{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cog{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trash{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-home{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-time{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-road{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-inbox{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-repeat{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-refresh{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-flag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-headphones{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-qrcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-barcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tags{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-book{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-print{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-font{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-italic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-height{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-width{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-center{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-justify{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facetime-video{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-picture{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pencil{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-map-marker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-adjust{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tint{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-edit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-move{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pause{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eject{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-question-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-info-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-screenshot{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ban-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-full{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-asterisk{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exclamation-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-gift{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-leaf{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fire{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-warning-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plane{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-calendar{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-random{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magnet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-retweet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-shopping-cart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-vertical{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-horizontal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bar-chart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera-retro{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-key{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cogs{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-half{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signout{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pushpin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-external-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trophy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lemon{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-unlock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-credit-card{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-rss{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hdd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bullhorn{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-certificate{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-globe{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-wrench{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tasks{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-filter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-briefcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fullscreen{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-group{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beaker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cut{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-copy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paper-clip{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-save{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sign-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reorder{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ul{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ol{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-strikethrough{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-underline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-table{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-truck{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-money{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-columns{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-undo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-legal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-dashboard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bolt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sitemap{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-umbrella{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paste{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lightbulb{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exchange{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user-md{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stethoscope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-suitcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-coffee{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-food{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-building{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hospital{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ambulance{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-medkit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fighter-jet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beer{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-h-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-desktop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-laptop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tablet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-mobile-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-spinner{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reply{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-expand-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-collapse-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-smile{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-frown{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-meh{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-gamepad{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-keyboard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-flag-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-flag-checkered{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-terminal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-code{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reply-all{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-mail-reply-all{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-half-full,.icon-star-half-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-location-arrow{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-crop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-code-fork{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-unlink{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-question{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-info{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exclamation{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-superscript{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-subscript{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eraser{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-puzzle-piece{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-microphone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-microphone-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-shield{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-calendar-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fire-extinguisher{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-rocket{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-maxcdn{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-sign-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-sign-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-sign-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-sign-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-html5{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-css3{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-anchor{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-unlock-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bullseye{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ellipsis-horizontal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ellipsis-vertical{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-rss-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ticket{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus-sign-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check-minus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-level-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-level-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-edit-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-external-link-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}
\ No newline at end of file
diff --git a/assets/plugins/font-awesome/css/font-awesome.css b/assets/plugins/font-awesome/css/font-awesome.css
deleted file mode 100644
index db4fd90..0000000
--- a/assets/plugins/font-awesome/css/font-awesome.css
+++ /dev/null
@@ -1,1268 +0,0 @@
-/*!
- * Font Awesome 3.1.0
- * the iconic font designed for Bootstrap
- * -------------------------------------------------------
- * The full suite of pictographic icons, examples, and documentation
- * can be found at: http://fontawesome.io
- *
- * License
- * -------------------------------------------------------
- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
- * http://scripts.sil.org/OFL
- * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
- * http://opensource.org/licenses/mit-license.html
- * - Font Awesome documentation licensed under CC BY 3.0 License -
- * http://creativecommons.org/licenses/by/3.0/
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
-
- * Contact
- * -------------------------------------------------------
- * Email: dave@fontawesome.io
- * Twitter: http://twitter.com/fortaweso_me
- * Work: Lead Product Designer @ http://kyruus.com
- */
-/* FONT PATH
- * -------------------------- */
-@font-face {
- font-family: 'FontAwesome';
- src: url('../font/fontawesome-webfont.eot?v=3.1.0');
- src: url('../font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.1.0') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'), url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-/* FONT AWESOME CORE
- * -------------------------- */
-[class^="icon-"],
-[class*=" icon-"] {
- font-family: FontAwesome;
- font-weight: normal;
- font-style: normal;
- text-decoration: inherit;
- -webkit-font-smoothing: antialiased;
- *margin-right: .3em;
-}
-[class^="icon-"]:before,
-[class*=" icon-"]:before {
- text-decoration: inherit;
- display: inline-block;
- speak: none;
-}
-/* makes the font 33% larger relative to the icon container */
-.icon-large:before {
- vertical-align: -10%;
- font-size: 1.3333333333333333em;
-}
-/* makes sure icons active on rollover in links */
-a [class^="icon-"],
-a [class*=" icon-"],
-a [class^="icon-"]:before,
-a [class*=" icon-"]:before {
- display: inline;
-}
-/* increased font size for icon-large */
-[class^="icon-"].icon-fixed-width,
-[class*=" icon-"].icon-fixed-width {
- display: inline-block;
- width: 1.2857142857142858em;
- text-align: center;
-}
-[class^="icon-"].icon-fixed-width.icon-large,
-[class*=" icon-"].icon-fixed-width.icon-large {
- width: 1.5714285714285714em;
-}
-ul.icons-ul {
- list-style-type: none;
- text-indent: -0.7142857142857143em;
- margin-left: 2.142857142857143em;
-}
-ul.icons-ul > li .icon-li {
- width: 0.7142857142857143em;
- display: inline-block;
- text-align: center;
-}
-[class^="icon-"].hide,
-[class*=" icon-"].hide {
- display: none;
-}
-.icon-muted {
- color: #eeeeee;
-}
-.icon-light {
- color: #ffffff;
-}
-.icon-dark {
- color: #333333;
-}
-.icon-border {
- border: solid 1px #eeeeee;
- padding: .2em .25em .15em;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
-}
-.icon-2x {
- font-size: 2em;
-}
-.icon-2x.icon-border {
- border-width: 2px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
-}
-.icon-3x {
- font-size: 3em;
-}
-.icon-3x.icon-border {
- border-width: 3px;
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
-}
-.icon-4x {
- font-size: 4em;
-}
-.icon-4x.icon-border {
- border-width: 4px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- border-radius: 6px;
-}
-.icon-5x {
- font-size: 5em;
-}
-.icon-5x.icon-border {
- border-width: 5px;
- -webkit-border-radius: 7px;
- -moz-border-radius: 7px;
- border-radius: 7px;
-}
-.pull-right {
- float: right;
-}
-.pull-left {
- float: left;
-}
-[class^="icon-"].pull-left,
-[class*=" icon-"].pull-left {
- margin-right: .3em;
-}
-[class^="icon-"].pull-right,
-[class*=" icon-"].pull-right {
- margin-left: .3em;
-}
-/* BOOTSTRAP SPECIFIC CLASSES
- * -------------------------- */
-/* Bootstrap 2.0 sprites.less reset */
-[class^="icon-"],
-[class*=" icon-"] {
- display: inline;
- width: auto;
- height: auto;
- line-height: normal;
- vertical-align: baseline;
- background-image: none;
- background-position: 0% 0%;
- background-repeat: repeat;
- margin-top: 0;
-}
-/* more sprites.less reset */
-.icon-white,
-.nav-pills > .active > a > [class^="icon-"],
-.nav-pills > .active > a > [class*=" icon-"],
-.nav-list > .active > a > [class^="icon-"],
-.nav-list > .active > a > [class*=" icon-"],
-.navbar-inverse .nav > .active > a > [class^="icon-"],
-.navbar-inverse .nav > .active > a > [class*=" icon-"],
-.dropdown-menu > li > a:hover > [class^="icon-"],
-.dropdown-menu > li > a:hover > [class*=" icon-"],
-.dropdown-menu > .active > a > [class^="icon-"],
-.dropdown-menu > .active > a > [class*=" icon-"],
-.dropdown-submenu:hover > a > [class^="icon-"],
-.dropdown-submenu:hover > a > [class*=" icon-"] {
- background-image: none;
-}
-/* keeps Bootstrap styles with and without icons the same */
-.btn [class^="icon-"].icon-large,
-.nav [class^="icon-"].icon-large,
-.btn [class*=" icon-"].icon-large,
-.nav [class*=" icon-"].icon-large {
- line-height: .9em;
-}
-.btn [class^="icon-"].icon-spin,
-.nav [class^="icon-"].icon-spin,
-.btn [class*=" icon-"].icon-spin,
-.nav [class*=" icon-"].icon-spin {
- display: inline-block;
-}
-.nav-tabs [class^="icon-"],
-.nav-pills [class^="icon-"],
-.nav-tabs [class*=" icon-"],
-.nav-pills [class*=" icon-"],
-.nav-tabs [class^="icon-"].icon-large,
-.nav-pills [class^="icon-"].icon-large,
-.nav-tabs [class*=" icon-"].icon-large,
-.nav-pills [class*=" icon-"].icon-large {
- line-height: .9em;
-}
-.btn [class^="icon-"].pull-left.icon-2x,
-.btn [class*=" icon-"].pull-left.icon-2x,
-.btn [class^="icon-"].pull-right.icon-2x,
-.btn [class*=" icon-"].pull-right.icon-2x {
- margin-top: .18em;
-}
-.btn [class^="icon-"].icon-spin.icon-large,
-.btn [class*=" icon-"].icon-spin.icon-large {
- line-height: .8em;
-}
-.btn.btn-small [class^="icon-"].pull-left.icon-2x,
-.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
-.btn.btn-small [class^="icon-"].pull-right.icon-2x,
-.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
- margin-top: .25em;
-}
-.btn.btn-large [class^="icon-"],
-.btn.btn-large [class*=" icon-"] {
- margin-top: 0;
-}
-.btn.btn-large [class^="icon-"].pull-left.icon-2x,
-.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
-.btn.btn-large [class^="icon-"].pull-right.icon-2x,
-.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
- margin-top: .05em;
-}
-.btn.btn-large [class^="icon-"].pull-left.icon-2x,
-.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
- margin-right: .2em;
-}
-.btn.btn-large [class^="icon-"].pull-right.icon-2x,
-.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
- margin-left: .2em;
-}
-/* EXTRAS
- * -------------------------- */
-/* Stacked and layered icon */
-.icon-stack {
- position: relative;
- display: inline-block;
- width: 2em;
- height: 2em;
- line-height: 2em;
- vertical-align: -35%;
-}
-.icon-stack [class^="icon-"],
-.icon-stack [class*=" icon-"] {
- display: block;
- text-align: center;
- position: absolute;
- width: 100%;
- height: 100%;
- font-size: 1em;
- line-height: inherit;
- *line-height: 2em;
-}
-.icon-stack .icon-stack-base {
- font-size: 2em;
- *line-height: 1em;
-}
-/* Animated rotating icon */
-.icon-spin {
- display: inline-block;
- -moz-animation: spin 2s infinite linear;
- -o-animation: spin 2s infinite linear;
- -webkit-animation: spin 2s infinite linear;
- animation: spin 2s infinite linear;
-}
-@-moz-keyframes spin {
- 0% {
- -moz-transform: rotate(0deg);
- }
- 100% {
- -moz-transform: rotate(359deg);
- }
-}
-@-webkit-keyframes spin {
- 0% {
- -webkit-transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(359deg);
- }
-}
-@-o-keyframes spin {
- 0% {
- -o-transform: rotate(0deg);
- }
- 100% {
- -o-transform: rotate(359deg);
- }
-}
-@-ms-keyframes spin {
- 0% {
- -ms-transform: rotate(0deg);
- }
- 100% {
- -ms-transform: rotate(359deg);
- }
-}
-@keyframes spin {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(359deg);
- }
-}
-/* Icon rotations and mirroring */
-.icon-rotate-90:before {
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-}
-.icon-rotate-180:before {
- -webkit-transform: rotate(180deg);
- -moz-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-}
-.icon-rotate-270:before {
- -webkit-transform: rotate(270deg);
- -moz-transform: rotate(270deg);
- -ms-transform: rotate(270deg);
- -o-transform: rotate(270deg);
- transform: rotate(270deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-}
-.icon-flip-horizontal:before {
- -webkit-transform: scale(-1, 1);
- -moz-transform: scale(-1, 1);
- -ms-transform: scale(-1, 1);
- -o-transform: scale(-1, 1);
- transform: scale(-1, 1);
-}
-.icon-flip-vertical:before {
- -webkit-transform: scale(1, -1);
- -moz-transform: scale(1, -1);
- -ms-transform: scale(1, -1);
- -o-transform: scale(1, -1);
- transform: scale(1, -1);
-}
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
- readers do not read off random characters that represent icons */
-.icon-glass:before {
- content: "\f000";
-}
-.icon-music:before {
- content: "\f001";
-}
-.icon-search:before {
- content: "\f002";
-}
-.icon-envelope:before {
- content: "\f003";
-}
-.icon-heart:before {
- content: "\f004";
-}
-.icon-star:before {
- content: "\f005";
-}
-.icon-star-empty:before {
- content: "\f006";
-}
-.icon-user:before {
- content: "\f007";
-}
-.icon-film:before {
- content: "\f008";
-}
-.icon-th-large:before {
- content: "\f009";
-}
-.icon-th:before {
- content: "\f00a";
-}
-.icon-th-list:before {
- content: "\f00b";
-}
-.icon-ok:before {
- content: "\f00c";
-}
-.icon-remove:before {
- content: "\f00d";
-}
-.icon-zoom-in:before {
- content: "\f00e";
-}
-.icon-zoom-out:before {
- content: "\f010";
-}
-.icon-off:before {
- content: "\f011";
-}
-.icon-signal:before {
- content: "\f012";
-}
-.icon-cog:before {
- content: "\f013";
-}
-.icon-trash:before {
- content: "\f014";
-}
-.icon-home:before {
- content: "\f015";
-}
-.icon-file:before {
- content: "\f016";
-}
-.icon-time:before {
- content: "\f017";
-}
-.icon-road:before {
- content: "\f018";
-}
-.icon-download-alt:before {
- content: "\f019";
-}
-.icon-download:before {
- content: "\f01a";
-}
-.icon-upload:before {
- content: "\f01b";
-}
-.icon-inbox:before {
- content: "\f01c";
-}
-.icon-play-circle:before {
- content: "\f01d";
-}
-.icon-repeat:before,
-.icon-rotate-right:before {
- content: "\f01e";
-}
-/* F020 doesn't work in Safari. all shifted one down */
-.icon-refresh:before {
- content: "\f021";
-}
-.icon-list-alt:before {
- content: "\f022";
-}
-.icon-lock:before {
- content: "\f023";
-}
-.icon-flag:before {
- content: "\f024";
-}
-.icon-headphones:before {
- content: "\f025";
-}
-.icon-volume-off:before {
- content: "\f026";
-}
-.icon-volume-down:before {
- content: "\f027";
-}
-.icon-volume-up:before {
- content: "\f028";
-}
-.icon-qrcode:before {
- content: "\f029";
-}
-.icon-barcode:before {
- content: "\f02a";
-}
-.icon-tag:before {
- content: "\f02b";
-}
-.icon-tags:before {
- content: "\f02c";
-}
-.icon-book:before {
- content: "\f02d";
-}
-.icon-bookmark:before {
- content: "\f02e";
-}
-.icon-print:before {
- content: "\f02f";
-}
-.icon-camera:before {
- content: "\f030";
-}
-.icon-font:before {
- content: "\f031";
-}
-.icon-bold:before {
- content: "\f032";
-}
-.icon-italic:before {
- content: "\f033";
-}
-.icon-text-height:before {
- content: "\f034";
-}
-.icon-text-width:before {
- content: "\f035";
-}
-.icon-align-left:before {
- content: "\f036";
-}
-.icon-align-center:before {
- content: "\f037";
-}
-.icon-align-right:before {
- content: "\f038";
-}
-.icon-align-justify:before {
- content: "\f039";
-}
-.icon-list:before {
- content: "\f03a";
-}
-.icon-indent-left:before {
- content: "\f03b";
-}
-.icon-indent-right:before {
- content: "\f03c";
-}
-.icon-facetime-video:before {
- content: "\f03d";
-}
-.icon-picture:before {
- content: "\f03e";
-}
-.icon-pencil:before {
- content: "\f040";
-}
-.icon-map-marker:before {
- content: "\f041";
-}
-.icon-adjust:before {
- content: "\f042";
-}
-.icon-tint:before {
- content: "\f043";
-}
-.icon-edit:before {
- content: "\f044";
-}
-.icon-share:before {
- content: "\f045";
-}
-.icon-check:before {
- content: "\f046";
-}
-.icon-move:before {
- content: "\f047";
-}
-.icon-step-backward:before {
- content: "\f048";
-}
-.icon-fast-backward:before {
- content: "\f049";
-}
-.icon-backward:before {
- content: "\f04a";
-}
-.icon-play:before {
- content: "\f04b";
-}
-.icon-pause:before {
- content: "\f04c";
-}
-.icon-stop:before {
- content: "\f04d";
-}
-.icon-forward:before {
- content: "\f04e";
-}
-.icon-fast-forward:before {
- content: "\f050";
-}
-.icon-step-forward:before {
- content: "\f051";
-}
-.icon-eject:before {
- content: "\f052";
-}
-.icon-chevron-left:before {
- content: "\f053";
-}
-.icon-chevron-right:before {
- content: "\f054";
-}
-.icon-plus-sign:before {
- content: "\f055";
-}
-.icon-minus-sign:before {
- content: "\f056";
-}
-.icon-remove-sign:before {
- content: "\f057";
-}
-.icon-ok-sign:before {
- content: "\f058";
-}
-.icon-question-sign:before {
- content: "\f059";
-}
-.icon-info-sign:before {
- content: "\f05a";
-}
-.icon-screenshot:before {
- content: "\f05b";
-}
-.icon-remove-circle:before {
- content: "\f05c";
-}
-.icon-ok-circle:before {
- content: "\f05d";
-}
-.icon-ban-circle:before {
- content: "\f05e";
-}
-.icon-arrow-left:before {
- content: "\f060";
-}
-.icon-arrow-right:before {
- content: "\f061";
-}
-.icon-arrow-up:before {
- content: "\f062";
-}
-.icon-arrow-down:before {
- content: "\f063";
-}
-.icon-share-alt:before,
-.icon-mail-forward:before {
- content: "\f064";
-}
-.icon-resize-full:before {
- content: "\f065";
-}
-.icon-resize-small:before {
- content: "\f066";
-}
-.icon-plus:before {
- content: "\f067";
-}
-.icon-minus:before {
- content: "\f068";
-}
-.icon-asterisk:before {
- content: "\f069";
-}
-.icon-exclamation-sign:before {
- content: "\f06a";
-}
-.icon-gift:before {
- content: "\f06b";
-}
-.icon-leaf:before {
- content: "\f06c";
-}
-.icon-fire:before {
- content: "\f06d";
-}
-.icon-eye-open:before {
- content: "\f06e";
-}
-.icon-eye-close:before {
- content: "\f070";
-}
-.icon-warning-sign:before {
- content: "\f071";
-}
-.icon-plane:before {
- content: "\f072";
-}
-.icon-calendar:before {
- content: "\f073";
-}
-.icon-random:before {
- content: "\f074";
-}
-.icon-comment:before {
- content: "\f075";
-}
-.icon-magnet:before {
- content: "\f076";
-}
-.icon-chevron-up:before {
- content: "\f077";
-}
-.icon-chevron-down:before {
- content: "\f078";
-}
-.icon-retweet:before {
- content: "\f079";
-}
-.icon-shopping-cart:before {
- content: "\f07a";
-}
-.icon-folder-close:before {
- content: "\f07b";
-}
-.icon-folder-open:before {
- content: "\f07c";
-}
-.icon-resize-vertical:before {
- content: "\f07d";
-}
-.icon-resize-horizontal:before {
- content: "\f07e";
-}
-.icon-bar-chart:before {
- content: "\f080";
-}
-.icon-twitter-sign:before {
- content: "\f081";
-}
-.icon-facebook-sign:before {
- content: "\f082";
-}
-.icon-camera-retro:before {
- content: "\f083";
-}
-.icon-key:before {
- content: "\f084";
-}
-.icon-cogs:before {
- content: "\f085";
-}
-.icon-comments:before {
- content: "\f086";
-}
-.icon-thumbs-up:before {
- content: "\f087";
-}
-.icon-thumbs-down:before {
- content: "\f088";
-}
-.icon-star-half:before {
- content: "\f089";
-}
-.icon-heart-empty:before {
- content: "\f08a";
-}
-.icon-signout:before {
- content: "\f08b";
-}
-.icon-linkedin-sign:before {
- content: "\f08c";
-}
-.icon-pushpin:before {
- content: "\f08d";
-}
-.icon-external-link:before {
- content: "\f08e";
-}
-.icon-signin:before {
- content: "\f090";
-}
-.icon-trophy:before {
- content: "\f091";
-}
-.icon-github-sign:before {
- content: "\f092";
-}
-.icon-upload-alt:before {
- content: "\f093";
-}
-.icon-lemon:before {
- content: "\f094";
-}
-.icon-phone:before {
- content: "\f095";
-}
-.icon-check-empty:before {
- content: "\f096";
-}
-.icon-bookmark-empty:before {
- content: "\f097";
-}
-.icon-phone-sign:before {
- content: "\f098";
-}
-.icon-twitter:before {
- content: "\f099";
-}
-.icon-facebook:before {
- content: "\f09a";
-}
-.icon-github:before {
- content: "\f09b";
-}
-.icon-unlock:before {
- content: "\f09c";
-}
-.icon-credit-card:before {
- content: "\f09d";
-}
-.icon-rss:before {
- content: "\f09e";
-}
-.icon-hdd:before {
- content: "\f0a0";
-}
-.icon-bullhorn:before {
- content: "\f0a1";
-}
-.icon-bell:before {
- content: "\f0a2";
-}
-.icon-certificate:before {
- content: "\f0a3";
-}
-.icon-hand-right:before {
- content: "\f0a4";
-}
-.icon-hand-left:before {
- content: "\f0a5";
-}
-.icon-hand-up:before {
- content: "\f0a6";
-}
-.icon-hand-down:before {
- content: "\f0a7";
-}
-.icon-circle-arrow-left:before {
- content: "\f0a8";
-}
-.icon-circle-arrow-right:before {
- content: "\f0a9";
-}
-.icon-circle-arrow-up:before {
- content: "\f0aa";
-}
-.icon-circle-arrow-down:before {
- content: "\f0ab";
-}
-.icon-globe:before {
- content: "\f0ac";
-}
-.icon-wrench:before {
- content: "\f0ad";
-}
-.icon-tasks:before {
- content: "\f0ae";
-}
-.icon-filter:before {
- content: "\f0b0";
-}
-.icon-briefcase:before {
- content: "\f0b1";
-}
-.icon-fullscreen:before {
- content: "\f0b2";
-}
-.icon-group:before {
- content: "\f0c0";
-}
-.icon-link:before {
- content: "\f0c1";
-}
-.icon-cloud:before {
- content: "\f0c2";
-}
-.icon-beaker:before {
- content: "\f0c3";
-}
-.icon-cut:before {
- content: "\f0c4";
-}
-.icon-copy:before {
- content: "\f0c5";
-}
-.icon-paper-clip:before {
- content: "\f0c6";
-}
-.icon-save:before {
- content: "\f0c7";
-}
-.icon-sign-blank:before {
- content: "\f0c8";
-}
-.icon-reorder:before {
- content: "\f0c9";
-}
-.icon-list-ul:before {
- content: "\f0ca";
-}
-.icon-list-ol:before {
- content: "\f0cb";
-}
-.icon-strikethrough:before {
- content: "\f0cc";
-}
-.icon-underline:before {
- content: "\f0cd";
-}
-.icon-table:before {
- content: "\f0ce";
-}
-.icon-magic:before {
- content: "\f0d0";
-}
-.icon-truck:before {
- content: "\f0d1";
-}
-.icon-pinterest:before {
- content: "\f0d2";
-}
-.icon-pinterest-sign:before {
- content: "\f0d3";
-}
-.icon-google-plus-sign:before {
- content: "\f0d4";
-}
-.icon-google-plus:before {
- content: "\f0d5";
-}
-.icon-money:before {
- content: "\f0d6";
-}
-.icon-caret-down:before {
- content: "\f0d7";
-}
-.icon-caret-up:before {
- content: "\f0d8";
-}
-.icon-caret-left:before {
- content: "\f0d9";
-}
-.icon-caret-right:before {
- content: "\f0da";
-}
-.icon-columns:before {
- content: "\f0db";
-}
-.icon-sort:before {
- content: "\f0dc";
-}
-.icon-sort-down:before {
- content: "\f0dd";
-}
-.icon-sort-up:before {
- content: "\f0de";
-}
-.icon-envelope-alt:before {
- content: "\f0e0";
-}
-.icon-linkedin:before {
- content: "\f0e1";
-}
-.icon-undo:before,
-.icon-rotate-left:before {
- content: "\f0e2";
-}
-.icon-legal:before {
- content: "\f0e3";
-}
-.icon-dashboard:before {
- content: "\f0e4";
-}
-.icon-comment-alt:before {
- content: "\f0e5";
-}
-.icon-comments-alt:before {
- content: "\f0e6";
-}
-.icon-bolt:before {
- content: "\f0e7";
-}
-.icon-sitemap:before {
- content: "\f0e8";
-}
-.icon-umbrella:before {
- content: "\f0e9";
-}
-.icon-paste:before {
- content: "\f0ea";
-}
-.icon-lightbulb:before {
- content: "\f0eb";
-}
-.icon-exchange:before {
- content: "\f0ec";
-}
-.icon-cloud-download:before {
- content: "\f0ed";
-}
-.icon-cloud-upload:before {
- content: "\f0ee";
-}
-.icon-user-md:before {
- content: "\f0f0";
-}
-.icon-stethoscope:before {
- content: "\f0f1";
-}
-.icon-suitcase:before {
- content: "\f0f2";
-}
-.icon-bell-alt:before {
- content: "\f0f3";
-}
-.icon-coffee:before {
- content: "\f0f4";
-}
-.icon-food:before {
- content: "\f0f5";
-}
-.icon-file-alt:before {
- content: "\f0f6";
-}
-.icon-building:before {
- content: "\f0f7";
-}
-.icon-hospital:before {
- content: "\f0f8";
-}
-.icon-ambulance:before {
- content: "\f0f9";
-}
-.icon-medkit:before {
- content: "\f0fa";
-}
-.icon-fighter-jet:before {
- content: "\f0fb";
-}
-.icon-beer:before {
- content: "\f0fc";
-}
-.icon-h-sign:before {
- content: "\f0fd";
-}
-.icon-plus-sign-alt:before {
- content: "\f0fe";
-}
-.icon-double-angle-left:before {
- content: "\f100";
-}
-.icon-double-angle-right:before {
- content: "\f101";
-}
-.icon-double-angle-up:before {
- content: "\f102";
-}
-.icon-double-angle-down:before {
- content: "\f103";
-}
-.icon-angle-left:before {
- content: "\f104";
-}
-.icon-angle-right:before {
- content: "\f105";
-}
-.icon-angle-up:before {
- content: "\f106";
-}
-.icon-angle-down:before {
- content: "\f107";
-}
-.icon-desktop:before {
- content: "\f108";
-}
-.icon-laptop:before {
- content: "\f109";
-}
-.icon-tablet:before {
- content: "\f10a";
-}
-.icon-mobile-phone:before {
- content: "\f10b";
-}
-.icon-circle-blank:before {
- content: "\f10c";
-}
-.icon-quote-left:before {
- content: "\f10d";
-}
-.icon-quote-right:before {
- content: "\f10e";
-}
-.icon-spinner:before {
- content: "\f110";
-}
-.icon-circle:before {
- content: "\f111";
-}
-.icon-reply:before,
-.icon-mail-reply:before {
- content: "\f112";
-}
-.icon-folder-close-alt:before {
- content: "\f114";
-}
-.icon-folder-open-alt:before {
- content: "\f115";
-}
-.icon-expand-alt:before {
- content: "\f116";
-}
-.icon-collapse-alt:before {
- content: "\f117";
-}
-.icon-smile:before {
- content: "\f118";
-}
-.icon-frown:before {
- content: "\f119";
-}
-.icon-meh:before {
- content: "\f11a";
-}
-.icon-gamepad:before {
- content: "\f11b";
-}
-.icon-keyboard:before {
- content: "\f11c";
-}
-.icon-flag-alt:before {
- content: "\f11d";
-}
-.icon-flag-checkered:before {
- content: "\f11e";
-}
-.icon-terminal:before {
- content: "\f120";
-}
-.icon-code:before {
- content: "\f121";
-}
-.icon-reply-all:before {
- content: "\f122";
-}
-.icon-mail-reply-all:before {
- content: "\f122";
-}
-.icon-star-half-full:before,
-.icon-star-half-empty:before {
- content: "\f123";
-}
-.icon-location-arrow:before {
- content: "\f124";
-}
-.icon-crop:before {
- content: "\f125";
-}
-.icon-code-fork:before {
- content: "\f126";
-}
-.icon-unlink:before {
- content: "\f127";
-}
-.icon-question:before {
- content: "\f128";
-}
-.icon-info:before {
- content: "\f129";
-}
-.icon-exclamation:before {
- content: "\f12a";
-}
-.icon-superscript:before {
- content: "\f12b";
-}
-.icon-subscript:before {
- content: "\f12c";
-}
-.icon-eraser:before {
- content: "\f12d";
-}
-.icon-puzzle-piece:before {
- content: "\f12e";
-}
-.icon-microphone:before {
- content: "\f130";
-}
-.icon-microphone-off:before {
- content: "\f131";
-}
-.icon-shield:before {
- content: "\f132";
-}
-.icon-calendar-empty:before {
- content: "\f133";
-}
-.icon-fire-extinguisher:before {
- content: "\f134";
-}
-.icon-rocket:before {
- content: "\f135";
-}
-.icon-maxcdn:before {
- content: "\f136";
-}
-.icon-chevron-sign-left:before {
- content: "\f137";
-}
-.icon-chevron-sign-right:before {
- content: "\f138";
-}
-.icon-chevron-sign-up:before {
- content: "\f139";
-}
-.icon-chevron-sign-down:before {
- content: "\f13a";
-}
-.icon-html5:before {
- content: "\f13b";
-}
-.icon-css3:before {
- content: "\f13c";
-}
-.icon-anchor:before {
- content: "\f13d";
-}
-.icon-unlock-alt:before {
- content: "\f13e";
-}
-.icon-bullseye:before {
- content: "\f140";
-}
-.icon-ellipsis-horizontal:before {
- content: "\f141";
-}
-.icon-ellipsis-vertical:before {
- content: "\f142";
-}
-.icon-rss-sign:before {
- content: "\f143";
-}
-.icon-play-sign:before {
- content: "\f144";
-}
-.icon-ticket:before {
- content: "\f145";
-}
-.icon-minus-sign-alt:before {
- content: "\f146";
-}
-.icon-check-minus:before {
- content: "\f147";
-}
-.icon-level-up:before {
- content: "\f148";
-}
-.icon-level-down:before {
- content: "\f149";
-}
-.icon-check-sign:before {
- content: "\f14a";
-}
-.icon-edit-sign:before {
- content: "\f14b";
-}
-.icon-external-link-sign:before {
- content: "\f14c";
-}
-.icon-share-sign:before {
- content: "\f14d";
-}
diff --git a/assets/plugins/font-awesome/css/font-awesome.min.css b/assets/plugins/font-awesome/css/font-awesome.min.css
deleted file mode 100644
index 389f3b7..0000000
--- a/assets/plugins/font-awesome/css/font-awesome.min.css
+++ /dev/null
@@ -1,24 +0,0 @@
-/*!
- * Font Awesome 3.1.0
- * the iconic font designed for Bootstrap
- * -------------------------------------------------------
- * The full suite of pictographic icons, examples, and documentation
- * can be found at: http://fontawesome.io
- *
- * License
- * -------------------------------------------------------
- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
- * http://scripts.sil.org/OFL
- * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
- * http://opensource.org/licenses/mit-license.html
- * - Font Awesome documentation licensed under CC BY 3.0 License -
- * http://creativecommons.org/licenses/by/3.0/
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
-
- * Contact
- * -------------------------------------------------------
- * Email: dave@fontawesome.io
- * Twitter: http://twitter.com/fortaweso_me
- * Work: Lead Product Designer @ http://kyruus.com
- */@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.1.0');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.1.0') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.1.0') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.1.0') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.1.0') format('svg');font-weight:normal;font-style:normal}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em}a [class^="icon-"],a [class*=" icon-"],a [class^="icon-"]:before,a [class*=" icon-"]:before{display:inline}[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.2857142857142858em;text-align:center}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.5714285714285714em}ul.icons-ul{list-style-type:none;text-indent:-0.7142857142857143em;margin-left:2.142857142857143em}ul.icons-ul>li .icon-li{width:.7142857142857143em;display:inline-block;text-align:center}[class^="icon-"].hide,[class*=" icon-"].hide{display:none}.icon-muted{color:#eee}.icon-light{color:#fff}.icon-dark{color:#333}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.icon-5x{font-size:5em}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.pull-right{float:right}.pull-left{float:left}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em}[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none}.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block}.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em}.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em}.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em}.icon-stack .icon-stack-base{font-size:2em;*line-height:1em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2)}.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.icon-flip-horizontal:before{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.icon-flip-vertical:before{-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-repeat:before,.icon-rotate-right:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-share-alt:before,.icon-mail-forward:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up:before{content:"\f087"}.icon-thumbs-down:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope-alt:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-undo:before,.icon-rotate-left:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-lightbulb:before{content:"\f0eb"}.icon-exchange:before{content:"\f0ec"}.icon-cloud-download:before{content:"\f0ed"}.icon-cloud-upload:before{content:"\f0ee"}.icon-user-md:before{content:"\f0f0"}.icon-stethoscope:before{content:"\f0f1"}.icon-suitcase:before{content:"\f0f2"}.icon-bell-alt:before{content:"\f0f3"}.icon-coffee:before{content:"\f0f4"}.icon-food:before{content:"\f0f5"}.icon-file-alt:before{content:"\f0f6"}.icon-building:before{content:"\f0f7"}.icon-hospital:before{content:"\f0f8"}.icon-ambulance:before{content:"\f0f9"}.icon-medkit:before{content:"\f0fa"}.icon-fighter-jet:before{content:"\f0fb"}.icon-beer:before{content:"\f0fc"}.icon-h-sign:before{content:"\f0fd"}.icon-plus-sign-alt:before{content:"\f0fe"}.icon-double-angle-left:before{content:"\f100"}.icon-double-angle-right:before{content:"\f101"}.icon-double-angle-up:before{content:"\f102"}.icon-double-angle-down:before{content:"\f103"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-angle-down:before{content:"\f107"}.icon-desktop:before{content:"\f108"}.icon-laptop:before{content:"\f109"}.icon-tablet:before{content:"\f10a"}.icon-mobile-phone:before{content:"\f10b"}.icon-circle-blank:before{content:"\f10c"}.icon-quote-left:before{content:"\f10d"}.icon-quote-right:before{content:"\f10e"}.icon-spinner:before{content:"\f110"}.icon-circle:before{content:"\f111"}.icon-reply:before,.icon-mail-reply:before{content:"\f112"}.icon-folder-close-alt:before{content:"\f114"}.icon-folder-open-alt:before{content:"\f115"}.icon-expand-alt:before{content:"\f116"}.icon-collapse-alt:before{content:"\f117"}.icon-smile:before{content:"\f118"}.icon-frown:before{content:"\f119"}.icon-meh:before{content:"\f11a"}.icon-gamepad:before{content:"\f11b"}.icon-keyboard:before{content:"\f11c"}.icon-flag-alt:before{content:"\f11d"}.icon-flag-checkered:before{content:"\f11e"}.icon-terminal:before{content:"\f120"}.icon-code:before{content:"\f121"}.icon-reply-all:before{content:"\f122"}.icon-mail-reply-all:before{content:"\f122"}.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123"}.icon-location-arrow:before{content:"\f124"}.icon-crop:before{content:"\f125"}.icon-code-fork:before{content:"\f126"}.icon-unlink:before{content:"\f127"}.icon-question:before{content:"\f128"}.icon-info:before{content:"\f129"}.icon-exclamation:before{content:"\f12a"}.icon-superscript:before{content:"\f12b"}.icon-subscript:before{content:"\f12c"}.icon-eraser:before{content:"\f12d"}.icon-puzzle-piece:before{content:"\f12e"}.icon-microphone:before{content:"\f130"}.icon-microphone-off:before{content:"\f131"}.icon-shield:before{content:"\f132"}.icon-calendar-empty:before{content:"\f133"}.icon-fire-extinguisher:before{content:"\f134"}.icon-rocket:before{content:"\f135"}.icon-maxcdn:before{content:"\f136"}.icon-chevron-sign-left:before{content:"\f137"}.icon-chevron-sign-right:before{content:"\f138"}.icon-chevron-sign-up:before{content:"\f139"}.icon-chevron-sign-down:before{content:"\f13a"}.icon-html5:before{content:"\f13b"}.icon-css3:before{content:"\f13c"}.icon-anchor:before{content:"\f13d"}.icon-unlock-alt:before{content:"\f13e"}.icon-bullseye:before{content:"\f140"}.icon-ellipsis-horizontal:before{content:"\f141"}.icon-ellipsis-vertical:before{content:"\f142"}.icon-rss-sign:before{content:"\f143"}.icon-play-sign:before{content:"\f144"}.icon-ticket:before{content:"\f145"}.icon-minus-sign-alt:before{content:"\f146"}.icon-check-minus:before{content:"\f147"}.icon-level-up:before{content:"\f148"}.icon-level-down:before{content:"\f149"}.icon-check-sign:before{content:"\f14a"}.icon-edit-sign:before{content:"\f14b"}.icon-external-link-sign:before{content:"\f14c"}.icon-share-sign:before{content:"\f14d"}
\ No newline at end of file
diff --git a/assets/plugins/font-awesome/font/FontAwesome.otf b/assets/plugins/font-awesome/font/FontAwesome.otf
deleted file mode 100644
index 32dd8b1..0000000
Binary files a/assets/plugins/font-awesome/font/FontAwesome.otf and /dev/null differ
diff --git a/assets/plugins/font-awesome/font/fontawesome-webfont.eot b/assets/plugins/font-awesome/font/fontawesome-webfont.eot
deleted file mode 100644
index c080283..0000000
Binary files a/assets/plugins/font-awesome/font/fontawesome-webfont.eot and /dev/null differ
diff --git a/assets/plugins/font-awesome/font/fontawesome-webfont.svg b/assets/plugins/font-awesome/font/fontawesome-webfont.svg
deleted file mode 100644
index 10a1e1b..0000000
--- a/assets/plugins/font-awesome/font/fontawesome-webfont.svg
+++ /dev/null
@@ -1,339 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/font-awesome/font/fontawesome-webfont.ttf b/assets/plugins/font-awesome/font/fontawesome-webfont.ttf
deleted file mode 100644
index 908f69e..0000000
Binary files a/assets/plugins/font-awesome/font/fontawesome-webfont.ttf and /dev/null differ
diff --git a/assets/plugins/font-awesome/font/fontawesome-webfont.woff b/assets/plugins/font-awesome/font/fontawesome-webfont.woff
deleted file mode 100644
index a33af95..0000000
Binary files a/assets/plugins/font-awesome/font/fontawesome-webfont.woff and /dev/null differ
diff --git a/assets/plugins/font-awesome/less/bootstrap.less b/assets/plugins/font-awesome/less/bootstrap.less
deleted file mode 100644
index 444e298..0000000
--- a/assets/plugins/font-awesome/less/bootstrap.less
+++ /dev/null
@@ -1,78 +0,0 @@
-/* BOOTSTRAP SPECIFIC CLASSES
- * -------------------------- */
-
-/* Bootstrap 2.0 sprites.less reset */
-[class^="icon-"],
-[class*=" icon-"] {
- display: inline;
- width: auto;
- height: auto;
- line-height: normal;
- vertical-align: baseline;
- background-image: none;
- background-position: 0% 0%;
- background-repeat: repeat;
- margin-top: 0;
-}
-
-/* more sprites.less reset */
-.icon-white,
-.nav-pills > .active > a > [class^="icon-"],
-.nav-pills > .active > a > [class*=" icon-"],
-.nav-list > .active > a > [class^="icon-"],
-.nav-list > .active > a > [class*=" icon-"],
-.navbar-inverse .nav > .active > a > [class^="icon-"],
-.navbar-inverse .nav > .active > a > [class*=" icon-"],
-.dropdown-menu > li > a:hover > [class^="icon-"],
-.dropdown-menu > li > a:hover > [class*=" icon-"],
-.dropdown-menu > .active > a > [class^="icon-"],
-.dropdown-menu > .active > a > [class*=" icon-"],
-.dropdown-submenu:hover > a > [class^="icon-"],
-.dropdown-submenu:hover > a > [class*=" icon-"] {
- background-image: none;
-}
-
-
-/* keeps Bootstrap styles with and without icons the same */
-.btn, .nav {
- [class^="icon-"],
- [class*=" icon-"] {
-// display: inline;
- &.icon-large { line-height: .9em; }
- &.icon-spin { display: inline-block; }
- }
-}
-.nav-tabs, .nav-pills {
- [class^="icon-"],
- [class*=" icon-"] {
- &, &.icon-large { line-height: .9em; }
- }
-}
-.btn {
- [class^="icon-"],
- [class*=" icon-"] {
- &.pull-left, &.pull-right {
- &.icon-2x { margin-top: .18em; }
- }
- &.icon-spin.icon-large { line-height: .8em; }
- }
-}
-.btn.btn-small {
- [class^="icon-"],
- [class*=" icon-"] {
- &.pull-left, &.pull-right {
- &.icon-2x { margin-top: .25em; }
- }
- }
-}
-.btn.btn-large {
- [class^="icon-"],
- [class*=" icon-"] {
- margin-top: 0; // overrides bootstrap default
- &.pull-left, &.pull-right {
- &.icon-2x { margin-top: .05em; }
- }
- &.pull-left.icon-2x { margin-right: .2em; }
- &.pull-right.icon-2x { margin-left: .2em; }
- }
-}
diff --git a/assets/plugins/font-awesome/less/core.less b/assets/plugins/font-awesome/less/core.less
deleted file mode 100644
index 815d329..0000000
--- a/assets/plugins/font-awesome/less/core.less
+++ /dev/null
@@ -1,132 +0,0 @@
-/* FONT AWESOME CORE
- * -------------------------- */
-
-[class^="icon-"],
-[class*=" icon-"] {
- font-family: FontAwesome;
- font-weight: normal;
- font-style: normal;
- text-decoration: inherit;
- -webkit-font-smoothing: antialiased;
- *margin-right: .3em; // fixes ie7 issues
-}
-
-[class^="icon-"]:before,
-[class*=" icon-"]:before {
- text-decoration: inherit;
- display: inline-block;
- speak: none;
-}
-
-/* makes the font 33% larger relative to the icon container */
-.icon-large:before {
- vertical-align: -10%;
- font-size: 4/3em;
-}
-
-/* makes sure icons active on rollover in links */
-a {
- [class^="icon-"],
- [class*=" icon-"] {
- &, &:before { display: inline; }
- }
-}
-
-/* increased font size for icon-large */
-[class^="icon-"],
-[class*=" icon-"] {
- &.icon-fixed-width {
- display: inline-block;
- width: 18/14em;
- text-align: center;
- &.icon-large {
- width: 22/14em;
- }
- }
-}
-
-ul.icons-ul {
- list-style-type: none;
- text-indent: -10/14em;
- margin-left: 30/14em;
-
- > li {
- .icon-li {
- width: 10/14em;
- display: inline-block;
- text-align: center;
- }
- }
-}
-
-// allows usage of the hide class directly on font awesome icons
-[class^="icon-"],
-[class*=" icon-"] {
- &.hide {
- display: none;
- }
-}
-
-.icon-muted { color: @iconMuted; }
-.icon-light { color: @iconLight; }
-.icon-dark { color: @iconDark; }
-
-// Icon Borders
-// -------------------------
-
-.icon-border {
- border: solid 1px @borderColor;
- padding: .2em .25em .15em;
- .border-radius(3px);
-}
-
-// Icon Sizes
-// -------------------------
-
-.icon-2x {
- font-size: 2em;
- &.icon-border {
- border-width: 2px;
- .border-radius(4px);
- }
-}
-.icon-3x {
- font-size: 3em;
- &.icon-border {
- border-width: 3px;
- .border-radius(5px);
- }
-}
-.icon-4x {
- font-size: 4em;
- &.icon-border {
- border-width: 4px;
- .border-radius(6px);
- }
-}
-
-.icon-5x {
- font-size: 5em;
- &.icon-border {
- border-width: 5px;
- .border-radius(7px);
- }
-}
-
-
-// Floats & Margins
-// -------------------------
-
-// Quick floats
-.pull-right { float: right; }
-.pull-left { float: left; }
-
-[class^="icon-"],
-[class*=" icon-"] {
- &.pull-left {
- margin-right: .3em;
- }
- &.pull-right {
- margin-left: .3em;
- }
-}
diff --git a/assets/plugins/font-awesome/less/extras.less b/assets/plugins/font-awesome/less/extras.less
deleted file mode 100644
index 3d16eb6..0000000
--- a/assets/plugins/font-awesome/less/extras.less
+++ /dev/null
@@ -1,79 +0,0 @@
-/* EXTRAS
- * -------------------------- */
-
-/* Stacked and layered icon */
-.icon-stack();
-
-/* Animated rotating icon */
-.icon-spin {
- display: inline-block;
- -moz-animation: spin 2s infinite linear;
- -o-animation: spin 2s infinite linear;
- -webkit-animation: spin 2s infinite linear;
- animation: spin 2s infinite linear;
-}
-
-@-moz-keyframes spin {
- 0% { -moz-transform: rotate(0deg); }
- 100% { -moz-transform: rotate(359deg); }
-}
-@-webkit-keyframes spin {
- 0% { -webkit-transform: rotate(0deg); }
- 100% { -webkit-transform: rotate(359deg); }
-}
-@-o-keyframes spin {
- 0% { -o-transform: rotate(0deg); }
- 100% { -o-transform: rotate(359deg); }
-}
-@-ms-keyframes spin {
- 0% { -ms-transform: rotate(0deg); }
- 100% { -ms-transform: rotate(359deg); }
-}
-@keyframes spin {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(359deg); }
-}
-
-/* Icon rotations and mirroring */
-.icon-rotate-90:before{
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- -ms-transform: rotate(90deg);
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-}
-
-.icon-rotate-180:before{
- -webkit-transform: rotate(180deg);
- -moz-transform: rotate(180deg);
- -ms-transform: rotate(180deg);
- -o-transform: rotate(180deg);
- transform: rotate(180deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-}
-
-.icon-rotate-270:before{
- -webkit-transform: rotate(270deg);
- -moz-transform: rotate(270deg);
- -ms-transform: rotate(270deg);
- -o-transform: rotate(270deg);
- transform: rotate(270deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-}
-
-.icon-flip-horizontal:before {
- -webkit-transform: scale(-1, 1);
- -moz-transform: scale(-1, 1);
- -ms-transform: scale(-1, 1);
- -o-transform: scale(-1, 1);
- transform: scale(-1, 1);
-}
-
-.icon-flip-vertical:before {
- -webkit-transform: scale(1, -1);
- -moz-transform: scale(1, -1);
- -ms-transform: scale(1, -1);
- -o-transform: scale(1, -1);
- transform: scale(1, -1);
-}
\ No newline at end of file
diff --git a/assets/plugins/font-awesome/less/font-awesome-ie7.less b/assets/plugins/font-awesome/less/font-awesome-ie7.less
deleted file mode 100644
index 9e5ac0e..0000000
--- a/assets/plugins/font-awesome/less/font-awesome-ie7.less
+++ /dev/null
@@ -1,413 +0,0 @@
-/*!
- * Font Awesome 3.1.0
- * the iconic font designed for Bootstrap
- * -------------------------------------------------------
- * The full suite of pictographic icons, examples, and documentation
- * can be found at: http://fontawesome.io
- *
- * License
- * -------------------------------------------------------
- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
- * http://scripts.sil.org/OFL
- * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
- * http://opensource.org/licenses/mit-license.html
- * - Font Awesome documentation licensed under CC BY 3.0 License -
- * http://creativecommons.org/licenses/by/3.0/
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
-
- * Contact
- * -------------------------------------------------------
- * Email: dave@fontawesome.io
- * Twitter: http://twitter.com/fortaweso_me
- * Work: Lead Product Designer @ http://kyruus.com
- */
-
-.icon-large {
- font-size: 4/3em;
- margin-top: -4px;
- padding-top: 3px;
- margin-bottom: -4px;
- padding-bottom: 3px;
- vertical-align: middle;
-}
-
-.nav {
- [class^="icon-"],
- [class*=" icon-"] {
- vertical-align: inherit;
- margin-top: -4px;
- padding-top: 3px;
- margin-bottom: -4px;
- padding-bottom: 3px;
- &.icon-large {
- vertical-align: -25%;
- }
- }
-}
-
-.nav-pills, .nav-tabs {
- [class^="icon-"],
- [class*=" icon-"] {
- &.icon-large {
- line-height: .75em;
- margin-top: -7px;
- padding-top: 5px;
- margin-bottom: -5px;
- padding-bottom: 4px;
- }
- }
-}
-
-ul.icons-ul {
- text-indent: -1em;
- margin-left: 30/14em;
-
- > li {
- .icon-li {
- width: 1em;
- margin-right: 0;
- }
- }
-}
-
-.btn {
- [class^="icon-"],
- [class*=" icon-"] {
- &.pull-left, &.pull-right { vertical-align: inherit; }
- &.icon-large {
- margin-top: -.5em;
- }
- }
-}
-
-a [class^="icon-"],
-a [class*=" icon-"] {
- cursor: pointer;
-}
-
-.ie7icon(@inner) { *zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@{inner}')"; }
-
-.icon-glass { .ie7icon(''); }
-.icon-music { .ie7icon(''); }
-.icon-search { .ie7icon(''); }
-.icon-envelope { .ie7icon(''); }
-.icon-heart { .ie7icon(''); }
-.icon-star { .ie7icon(''); }
-.icon-star-empty { .ie7icon(''); }
-.icon-user { .ie7icon(''); }
-.icon-film { .ie7icon(''); }
-.icon-th-large { .ie7icon(''); }
-.icon-th { .ie7icon(''); }
-.icon-th-list { .ie7icon(''); }
-.icon-ok { .ie7icon(''); }
-.icon-remove { .ie7icon(''); }
-.icon-zoom-in { .ie7icon(''); }
-
-.icon-zoom-out { .ie7icon(''); }
-.icon-off { .ie7icon(''); }
-.icon-signal { .ie7icon(''); }
-.icon-cog { .ie7icon(''); }
-.icon-trash { .ie7icon(''); }
-.icon-home { .ie7icon(''); }
-.icon-file { .ie7icon(''); }
-.icon-time { .ie7icon(''); }
-.icon-road { .ie7icon(''); }
-.icon-download-alt { .ie7icon(''); }
-.icon-download { .ie7icon(''); }
-.icon-upload { .ie7icon(''); }
-.icon-inbox { .ie7icon(''); }
-.icon-play-circle { .ie7icon(''); }
-.icon-repeat { .ie7icon(''); }
-
-.icon-refresh { .ie7icon(''); }
-.icon-list-alt { .ie7icon(''); }
-.icon-lock { .ie7icon(''); }
-.icon-flag { .ie7icon(''); }
-.icon-headphones { .ie7icon(''); }
-.icon-volume-off { .ie7icon(''); }
-.icon-volume-down { .ie7icon(''); }
-.icon-volume-up { .ie7icon(''); }
-.icon-qrcode { .ie7icon(''); }
-.icon-barcode { .ie7icon(''); }
-.icon-tag { .ie7icon(''); }
-.icon-tags { .ie7icon(''); }
-.icon-book { .ie7icon(''); }
-.icon-bookmark { .ie7icon(''); }
-.icon-print { .ie7icon(''); }
-
-.icon-camera { .ie7icon(''); }
-.icon-font { .ie7icon(''); }
-.icon-bold { .ie7icon(''); }
-.icon-italic { .ie7icon(''); }
-.icon-text-height { .ie7icon(''); }
-.icon-text-width { .ie7icon(''); }
-.icon-align-left { .ie7icon(''); }
-.icon-align-center { .ie7icon(''); }
-.icon-align-right { .ie7icon(''); }
-.icon-align-justify { .ie7icon(''); }
-.icon-list { .ie7icon(''); }
-.icon-indent-left { .ie7icon(''); }
-.icon-indent-right { .ie7icon(''); }
-.icon-facetime-video { .ie7icon(''); }
-.icon-picture { .ie7icon(''); }
-
-.icon-pencil { .ie7icon(''); }
-.icon-map-marker { .ie7icon(''); }
-.icon-adjust { .ie7icon(''); }
-.icon-tint { .ie7icon(''); }
-.icon-edit { .ie7icon(''); }
-.icon-share { .ie7icon(''); }
-.icon-check { .ie7icon(''); }
-.icon-move { .ie7icon(''); }
-.icon-step-backward { .ie7icon(''); }
-.icon-fast-backward { .ie7icon(''); }
-.icon-backward { .ie7icon(''); }
-.icon-play { .ie7icon(''); }
-.icon-pause { .ie7icon(''); }
-.icon-stop { .ie7icon(''); }
-.icon-forward { .ie7icon(''); }
-
-.icon-fast-forward { .ie7icon(''); }
-.icon-step-forward { .ie7icon(''); }
-.icon-eject { .ie7icon(''); }
-.icon-chevron-left { .ie7icon(''); }
-.icon-chevron-right { .ie7icon(''); }
-.icon-plus-sign { .ie7icon(''); }
-.icon-minus-sign { .ie7icon(''); }
-.icon-remove-sign { .ie7icon(''); }
-.icon-ok-sign { .ie7icon(''); }
-.icon-question-sign { .ie7icon(''); }
-.icon-info-sign { .ie7icon(''); }
-.icon-screenshot { .ie7icon(''); }
-.icon-remove-circle { .ie7icon(''); }
-.icon-ok-circle { .ie7icon(''); }
-.icon-ban-circle { .ie7icon(''); }
-
-.icon-arrow-left { .ie7icon(''); }
-.icon-arrow-right { .ie7icon(''); }
-.icon-arrow-up { .ie7icon(''); }
-.icon-arrow-down { .ie7icon(''); }
-.icon-share-alt { .ie7icon(''); }
-.icon-resize-full { .ie7icon(''); }
-.icon-resize-small { .ie7icon(''); }
-.icon-plus { .ie7icon(''); }
-.icon-minus { .ie7icon(''); }
-.icon-asterisk { .ie7icon(''); }
-.icon-exclamation-sign { .ie7icon(''); }
-.icon-gift { .ie7icon(''); }
-.icon-leaf { .ie7icon(''); }
-.icon-fire { .ie7icon(''); }
-.icon-eye-open { .ie7icon(''); }
-
-.icon-eye-close { .ie7icon(''); }
-.icon-warning-sign { .ie7icon(''); }
-.icon-plane { .ie7icon(''); }
-.icon-calendar { .ie7icon(''); }
-.icon-random { .ie7icon(''); }
-.icon-comment { .ie7icon(''); }
-.icon-magnet { .ie7icon(''); }
-.icon-chevron-up { .ie7icon(''); }
-.icon-chevron-down { .ie7icon(''); }
-.icon-retweet { .ie7icon(''); }
-.icon-shopping-cart { .ie7icon(''); }
-.icon-folder-close { .ie7icon(''); }
-.icon-folder-open { .ie7icon(''); }
-.icon-resize-vertical { .ie7icon(''); }
-.icon-resize-horizontal { .ie7icon(''); }
-
-.icon-bar-chart { .ie7icon(''); }
-.icon-twitter-sign { .ie7icon(''); }
-.icon-facebook-sign { .ie7icon(''); }
-.icon-camera-retro { .ie7icon(''); }
-.icon-key { .ie7icon(''); }
-.icon-cogs { .ie7icon(''); }
-.icon-comments { .ie7icon(''); }
-.icon-thumbs-up { .ie7icon(''); }
-.icon-thumbs-down { .ie7icon(''); }
-.icon-star-half { .ie7icon(''); }
-.icon-heart-empty { .ie7icon(''); }
-.icon-signout { .ie7icon(''); }
-.icon-linkedin-sign { .ie7icon(''); }
-.icon-pushpin { .ie7icon(''); }
-.icon-external-link { .ie7icon(''); }
-
-.icon-signin { .ie7icon(''); }
-.icon-trophy { .ie7icon(''); }
-.icon-github-sign { .ie7icon(''); }
-.icon-upload-alt { .ie7icon(''); }
-.icon-lemon { .ie7icon(''); }
-.icon-phone { .ie7icon(''); }
-.icon-check-empty { .ie7icon(''); }
-.icon-bookmark-empty { .ie7icon(''); }
-.icon-phone-sign { .ie7icon(''); }
-.icon-twitter { .ie7icon(''); }
-.icon-facebook { .ie7icon(''); }
-.icon-github { .ie7icon(''); }
-.icon-unlock { .ie7icon(''); }
-.icon-credit-card { .ie7icon(''); }
-.icon-rss { .ie7icon(''); }
-
-.icon-hdd { .ie7icon(''); }
-.icon-bullhorn { .ie7icon(''); }
-.icon-bell { .ie7icon(''); }
-.icon-certificate { .ie7icon(''); }
-.icon-hand-right { .ie7icon(''); }
-.icon-hand-left { .ie7icon(''); }
-.icon-hand-up { .ie7icon(''); }
-.icon-hand-down { .ie7icon(''); }
-.icon-circle-arrow-left { .ie7icon(''); }
-.icon-circle-arrow-right { .ie7icon(''); }
-.icon-circle-arrow-up { .ie7icon(''); }
-.icon-circle-arrow-down { .ie7icon(''); }
-.icon-globe { .ie7icon(''); }
-.icon-wrench { .ie7icon(''); }
-.icon-tasks { .ie7icon(''); }
-
-.icon-filter { .ie7icon(''); }
-.icon-briefcase { .ie7icon(''); }
-.icon-fullscreen { .ie7icon(''); }
-
-.icon-group { .ie7icon(''); }
-.icon-link { .ie7icon(''); }
-.icon-cloud { .ie7icon(''); }
-.icon-beaker { .ie7icon(''); }
-.icon-cut { .ie7icon(''); }
-.icon-copy { .ie7icon(''); }
-.icon-paper-clip { .ie7icon(''); }
-.icon-save { .ie7icon(''); }
-.icon-sign-blank { .ie7icon(''); }
-.icon-reorder { .ie7icon(''); }
-.icon-list-ul { .ie7icon(''); }
-.icon-list-ol { .ie7icon(''); }
-.icon-strikethrough { .ie7icon(''); }
-.icon-underline { .ie7icon(''); }
-.icon-table { .ie7icon(''); }
-
-.icon-magic { .ie7icon(''); }
-.icon-truck { .ie7icon(''); }
-.icon-pinterest { .ie7icon(''); }
-.icon-pinterest-sign { .ie7icon(''); }
-.icon-google-plus-sign { .ie7icon(''); }
-.icon-google-plus { .ie7icon(''); }
-.icon-money { .ie7icon(''); }
-.icon-caret-down { .ie7icon(''); }
-.icon-caret-up { .ie7icon(''); }
-.icon-caret-left { .ie7icon(''); }
-.icon-caret-right { .ie7icon(''); }
-.icon-columns { .ie7icon(''); }
-.icon-sort { .ie7icon(''); }
-.icon-sort-down { .ie7icon(''); }
-.icon-sort-up { .ie7icon(''); }
-
-.icon-envelope-alt { .ie7icon(''); }
-.icon-linkedin { .ie7icon(''); }
-.icon-undo { .ie7icon(''); }
-.icon-legal { .ie7icon(''); }
-.icon-dashboard { .ie7icon(''); }
-.icon-comment-alt { .ie7icon(''); }
-.icon-comments-alt { .ie7icon(''); }
-.icon-bolt { .ie7icon(''); }
-.icon-sitemap { .ie7icon(''); }
-.icon-umbrella { .ie7icon(''); }
-.icon-paste { .ie7icon(''); }
-.icon-lightbulb { .ie7icon(''); }
-.icon-exchange { .ie7icon(''); }
-.icon-cloud-download { .ie7icon(''); }
-.icon-cloud-upload { .ie7icon(''); }
-
-.icon-user-md { .ie7icon(''); }
-.icon-stethoscope { .ie7icon(''); }
-.icon-suitcase { .ie7icon(''); }
-.icon-bell-alt { .ie7icon(''); }
-.icon-coffee { .ie7icon(''); }
-.icon-food { .ie7icon(''); }
-.icon-file-alt { .ie7icon(''); }
-.icon-building { .ie7icon(''); }
-.icon-hospital { .ie7icon(''); }
-.icon-ambulance { .ie7icon(''); }
-.icon-medkit { .ie7icon(''); }
-.icon-fighter-jet { .ie7icon(''); }
-.icon-beer { .ie7icon(''); }
-.icon-h-sign { .ie7icon(''); }
-.icon-plus-sign-alt { .ie7icon(''); }
-
-.icon-double-angle-left { .ie7icon(''); }
-.icon-double-angle-right { .ie7icon(''); }
-.icon-double-angle-up { .ie7icon(''); }
-.icon-double-angle-down { .ie7icon(''); }
-.icon-angle-left { .ie7icon(''); }
-.icon-angle-right { .ie7icon(''); }
-.icon-angle-up { .ie7icon(''); }
-.icon-angle-down { .ie7icon(''); }
-.icon-desktop { .ie7icon(''); }
-.icon-laptop { .ie7icon(''); }
-.icon-tablet { .ie7icon(''); }
-.icon-mobile-phone { .ie7icon(''); }
-.icon-circle-blank { .ie7icon(''); }
-.icon-quote-left { .ie7icon(''); }
-.icon-quote-right { .ie7icon(''); }
-
-.icon-spinner { .ie7icon(''); }
-.icon-circle { .ie7icon(''); }
-.icon-reply { .ie7icon(''); }
-.icon-folder-close-alt { .ie7icon(''); }
-.icon-folder-open-alt { .ie7icon(''); }
-.icon-expand-alt { .ie7icon(''); }
-.icon-collapse-alt { .ie7icon(''); }
-.icon-smile { .ie7icon(''); }
-.icon-frown { .ie7icon(''); }
-.icon-meh { .ie7icon(''); }
-.icon-gamepad { .ie7icon(''); }
-.icon-keyboard { .ie7icon(''); }
-.icon-flag-alt { .ie7icon(''); }
-.icon-flag-checkered { .ie7icon(''); }
-
-.icon-terminal { .ie7icon(''); }
-.icon-code { .ie7icon(''); }
-.icon-reply-all { .ie7icon(''); }
-.icon-mail-reply-all { .ie7icon(''); }
-.icon-star-half-full,
-.icon-star-half-empty { .ie7icon(''); }
-.icon-location-arrow { .ie7icon(''); }
-.icon-crop { .ie7icon(''); }
-.icon-code-fork { .ie7icon(''); }
-.icon-unlink { .ie7icon(''); }
-.icon-question { .ie7icon(''); }
-.icon-info { .ie7icon(''); }
-.icon-exclamation { .ie7icon(''); }
-.icon-superscript { .ie7icon(''); }
-.icon-subscript { .ie7icon(''); }
-.icon-eraser { .ie7icon(''); }
-.icon-puzzle-piece { .ie7icon(''); }
-
-.icon-microphone { .ie7icon(''); }
-.icon-microphone-off { .ie7icon(''); }
-.icon-shield { .ie7icon(''); }
-.icon-calendar-empty { .ie7icon(''); }
-.icon-fire-extinguisher { .ie7icon(''); }
-.icon-rocket { .ie7icon(''); }
-.icon-maxcdn { .ie7icon(''); }
-.icon-chevron-sign-left { .ie7icon(''); }
-.icon-chevron-sign-right { .ie7icon(''); }
-.icon-chevron-sign-up { .ie7icon(''); }
-.icon-chevron-sign-down { .ie7icon(''); }
-.icon-html5 { .ie7icon(''); }
-.icon-css3 { .ie7icon(''); }
-.icon-anchor { .ie7icon(''); }
-.icon-unlock-alt { .ie7icon(''); }
-
-.icon-bullseye { .ie7icon(''); }
-.icon-ellipsis-horizontal { .ie7icon(''); }
-.icon-ellipsis-vertical { .ie7icon(''); }
-.icon-rss-sign { .ie7icon(''); }
-.icon-play-sign { .ie7icon(''); }
-.icon-ticket { .ie7icon(''); }
-.icon-minus-sign-alt { .ie7icon(''); }
-.icon-check-minus { .ie7icon(''); }
-.icon-level-up { .ie7icon(''); }
-.icon-level-down { .ie7icon(''); }
-.icon-check-sign { .ie7icon(''); }
-.icon-edit-sign { .ie7icon(''); }
-.icon-external-link-sign { .ie7icon(''); }
-.icon-share-sign { .ie7icon(''); }
diff --git a/assets/plugins/font-awesome/less/font-awesome.less b/assets/plugins/font-awesome/less/font-awesome.less
deleted file mode 100644
index 0a9518e..0000000
--- a/assets/plugins/font-awesome/less/font-awesome.less
+++ /dev/null
@@ -1,32 +0,0 @@
-/*!
- * Font Awesome 3.1.0
- * the iconic font designed for Bootstrap
- * -------------------------------------------------------
- * The full suite of pictographic icons, examples, and documentation
- * can be found at: http://fontawesome.io
- *
- * License
- * -------------------------------------------------------
- * - The Font Awesome font is licensed under the SIL Open Font License v1.1 -
- * http://scripts.sil.org/OFL
- * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License -
- * http://opensource.org/licenses/mit-license.html
- * - Font Awesome documentation licensed under CC BY 3.0 License -
- * http://creativecommons.org/licenses/by/3.0/
- * - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
- * "Font Awesome by Dave Gandy - http://fontawesome.io"
-
- * Contact
- * -------------------------------------------------------
- * Email: dave@fontawesome.io
- * Twitter: http://twitter.com/fortaweso_me
- * Work: Lead Product Designer @ http://kyruus.com
- */
-
-@import "variables.less";
-@import "mixins.less";
-@import "path.less";
-@import "core.less";
-@import "bootstrap.less";
-@import "extras.less";
-@import "icons.less";
diff --git a/assets/plugins/font-awesome/less/icons.less b/assets/plugins/font-awesome/less/icons.less
deleted file mode 100644
index 027933a..0000000
--- a/assets/plugins/font-awesome/less/icons.less
+++ /dev/null
@@ -1,330 +0,0 @@
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
- readers do not read off random characters that represent icons */
-.icon-glass:before { content: "\f000"; }
-.icon-music:before { content: "\f001"; }
-.icon-search:before { content: "\f002"; }
-.icon-envelope:before { content: "\f003"; }
-.icon-heart:before { content: "\f004"; }
-.icon-star:before { content: "\f005"; }
-.icon-star-empty:before { content: "\f006"; }
-.icon-user:before { content: "\f007"; }
-.icon-film:before { content: "\f008"; }
-.icon-th-large:before { content: "\f009"; }
-.icon-th:before { content: "\f00a"; }
-.icon-th-list:before { content: "\f00b"; }
-.icon-ok:before { content: "\f00c"; }
-.icon-remove:before { content: "\f00d"; }
-.icon-zoom-in:before { content: "\f00e"; }
-
-.icon-zoom-out:before { content: "\f010"; }
-.icon-off:before { content: "\f011"; }
-.icon-signal:before { content: "\f012"; }
-.icon-cog:before { content: "\f013"; }
-.icon-trash:before { content: "\f014"; }
-.icon-home:before { content: "\f015"; }
-.icon-file:before { content: "\f016"; }
-.icon-time:before { content: "\f017"; }
-.icon-road:before { content: "\f018"; }
-.icon-download-alt:before { content: "\f019"; }
-.icon-download:before { content: "\f01a"; }
-.icon-upload:before { content: "\f01b"; }
-.icon-inbox:before { content: "\f01c"; }
-.icon-play-circle:before { content: "\f01d"; }
-.icon-repeat:before,
-.icon-rotate-right:before { content: "\f01e"; }
-
-/* F020 doesn't work in Safari. all shifted one down */
-.icon-refresh:before { content: "\f021"; }
-.icon-list-alt:before { content: "\f022"; }
-.icon-lock:before { content: "\f023"; }
-.icon-flag:before { content: "\f024"; }
-.icon-headphones:before { content: "\f025"; }
-.icon-volume-off:before { content: "\f026"; }
-.icon-volume-down:before { content: "\f027"; }
-.icon-volume-up:before { content: "\f028"; }
-.icon-qrcode:before { content: "\f029"; }
-.icon-barcode:before { content: "\f02a"; }
-.icon-tag:before { content: "\f02b"; }
-.icon-tags:before { content: "\f02c"; }
-.icon-book:before { content: "\f02d"; }
-.icon-bookmark:before { content: "\f02e"; }
-.icon-print:before { content: "\f02f"; }
-
-.icon-camera:before { content: "\f030"; }
-.icon-font:before { content: "\f031"; }
-.icon-bold:before { content: "\f032"; }
-.icon-italic:before { content: "\f033"; }
-.icon-text-height:before { content: "\f034"; }
-.icon-text-width:before { content: "\f035"; }
-.icon-align-left:before { content: "\f036"; }
-.icon-align-center:before { content: "\f037"; }
-.icon-align-right:before { content: "\f038"; }
-.icon-align-justify:before { content: "\f039"; }
-.icon-list:before { content: "\f03a"; }
-.icon-indent-left:before { content: "\f03b"; }
-.icon-indent-right:before { content: "\f03c"; }
-.icon-facetime-video:before { content: "\f03d"; }
-.icon-picture:before { content: "\f03e"; }
-
-.icon-pencil:before { content: "\f040"; }
-.icon-map-marker:before { content: "\f041"; }
-.icon-adjust:before { content: "\f042"; }
-.icon-tint:before { content: "\f043"; }
-.icon-edit:before { content: "\f044"; }
-.icon-share:before { content: "\f045"; }
-.icon-check:before { content: "\f046"; }
-.icon-move:before { content: "\f047"; }
-.icon-step-backward:before { content: "\f048"; }
-.icon-fast-backward:before { content: "\f049"; }
-.icon-backward:before { content: "\f04a"; }
-.icon-play:before { content: "\f04b"; }
-.icon-pause:before { content: "\f04c"; }
-.icon-stop:before { content: "\f04d"; }
-.icon-forward:before { content: "\f04e"; }
-
-.icon-fast-forward:before { content: "\f050"; }
-.icon-step-forward:before { content: "\f051"; }
-.icon-eject:before { content: "\f052"; }
-.icon-chevron-left:before { content: "\f053"; }
-.icon-chevron-right:before { content: "\f054"; }
-.icon-plus-sign:before { content: "\f055"; }
-.icon-minus-sign:before { content: "\f056"; }
-.icon-remove-sign:before { content: "\f057"; }
-.icon-ok-sign:before { content: "\f058"; }
-.icon-question-sign:before { content: "\f059"; }
-.icon-info-sign:before { content: "\f05a"; }
-.icon-screenshot:before { content: "\f05b"; }
-.icon-remove-circle:before { content: "\f05c"; }
-.icon-ok-circle:before { content: "\f05d"; }
-.icon-ban-circle:before { content: "\f05e"; }
-
-.icon-arrow-left:before { content: "\f060"; }
-.icon-arrow-right:before { content: "\f061"; }
-.icon-arrow-up:before { content: "\f062"; }
-.icon-arrow-down:before { content: "\f063"; }
-.icon-share-alt:before,
-.icon-mail-forward:before { content: "\f064"; }
-.icon-resize-full:before { content: "\f065"; }
-.icon-resize-small:before { content: "\f066"; }
-.icon-plus:before { content: "\f067"; }
-.icon-minus:before { content: "\f068"; }
-.icon-asterisk:before { content: "\f069"; }
-.icon-exclamation-sign:before { content: "\f06a"; }
-.icon-gift:before { content: "\f06b"; }
-.icon-leaf:before { content: "\f06c"; }
-.icon-fire:before { content: "\f06d"; }
-.icon-eye-open:before { content: "\f06e"; }
-
-.icon-eye-close:before { content: "\f070"; }
-.icon-warning-sign:before { content: "\f071"; }
-.icon-plane:before { content: "\f072"; }
-.icon-calendar:before { content: "\f073"; }
-.icon-random:before { content: "\f074"; }
-.icon-comment:before { content: "\f075"; }
-.icon-magnet:before { content: "\f076"; }
-.icon-chevron-up:before { content: "\f077"; }
-.icon-chevron-down:before { content: "\f078"; }
-.icon-retweet:before { content: "\f079"; }
-.icon-shopping-cart:before { content: "\f07a"; }
-.icon-folder-close:before { content: "\f07b"; }
-.icon-folder-open:before { content: "\f07c"; }
-.icon-resize-vertical:before { content: "\f07d"; }
-.icon-resize-horizontal:before { content: "\f07e"; }
-
-.icon-bar-chart:before { content: "\f080"; }
-.icon-twitter-sign:before { content: "\f081"; }
-.icon-facebook-sign:before { content: "\f082"; }
-.icon-camera-retro:before { content: "\f083"; }
-.icon-key:before { content: "\f084"; }
-.icon-cogs:before { content: "\f085"; }
-.icon-comments:before { content: "\f086"; }
-.icon-thumbs-up:before { content: "\f087"; }
-.icon-thumbs-down:before { content: "\f088"; }
-.icon-star-half:before { content: "\f089"; }
-.icon-heart-empty:before { content: "\f08a"; }
-.icon-signout:before { content: "\f08b"; }
-.icon-linkedin-sign:before { content: "\f08c"; }
-.icon-pushpin:before { content: "\f08d"; }
-.icon-external-link:before { content: "\f08e"; }
-
-.icon-signin:before { content: "\f090"; }
-.icon-trophy:before { content: "\f091"; }
-.icon-github-sign:before { content: "\f092"; }
-.icon-upload-alt:before { content: "\f093"; }
-.icon-lemon:before { content: "\f094"; }
-.icon-phone:before { content: "\f095"; }
-.icon-check-empty:before { content: "\f096"; }
-.icon-bookmark-empty:before { content: "\f097"; }
-.icon-phone-sign:before { content: "\f098"; }
-.icon-twitter:before { content: "\f099"; }
-.icon-facebook:before { content: "\f09a"; }
-.icon-github:before { content: "\f09b"; }
-.icon-unlock:before { content: "\f09c"; }
-.icon-credit-card:before { content: "\f09d"; }
-.icon-rss:before { content: "\f09e"; }
-
-.icon-hdd:before { content: "\f0a0"; }
-.icon-bullhorn:before { content: "\f0a1"; }
-.icon-bell:before { content: "\f0a2"; }
-.icon-certificate:before { content: "\f0a3"; }
-.icon-hand-right:before { content: "\f0a4"; }
-.icon-hand-left:before { content: "\f0a5"; }
-.icon-hand-up:before { content: "\f0a6"; }
-.icon-hand-down:before { content: "\f0a7"; }
-.icon-circle-arrow-left:before { content: "\f0a8"; }
-.icon-circle-arrow-right:before { content: "\f0a9"; }
-.icon-circle-arrow-up:before { content: "\f0aa"; }
-.icon-circle-arrow-down:before { content: "\f0ab"; }
-.icon-globe:before { content: "\f0ac"; }
-.icon-wrench:before { content: "\f0ad"; }
-.icon-tasks:before { content: "\f0ae"; }
-
-.icon-filter:before { content: "\f0b0"; }
-.icon-briefcase:before { content: "\f0b1"; }
-.icon-fullscreen:before { content: "\f0b2"; }
-
-.icon-group:before { content: "\f0c0"; }
-.icon-link:before { content: "\f0c1"; }
-.icon-cloud:before { content: "\f0c2"; }
-.icon-beaker:before { content: "\f0c3"; }
-.icon-cut:before { content: "\f0c4"; }
-.icon-copy:before { content: "\f0c5"; }
-.icon-paper-clip:before { content: "\f0c6"; }
-.icon-save:before { content: "\f0c7"; }
-.icon-sign-blank:before { content: "\f0c8"; }
-.icon-reorder:before { content: "\f0c9"; }
-.icon-list-ul:before { content: "\f0ca"; }
-.icon-list-ol:before { content: "\f0cb"; }
-.icon-strikethrough:before { content: "\f0cc"; }
-.icon-underline:before { content: "\f0cd"; }
-.icon-table:before { content: "\f0ce"; }
-
-.icon-magic:before { content: "\f0d0"; }
-.icon-truck:before { content: "\f0d1"; }
-.icon-pinterest:before { content: "\f0d2"; }
-.icon-pinterest-sign:before { content: "\f0d3"; }
-.icon-google-plus-sign:before { content: "\f0d4"; }
-.icon-google-plus:before { content: "\f0d5"; }
-.icon-money:before { content: "\f0d6"; }
-.icon-caret-down:before { content: "\f0d7"; }
-.icon-caret-up:before { content: "\f0d8"; }
-.icon-caret-left:before { content: "\f0d9"; }
-.icon-caret-right:before { content: "\f0da"; }
-.icon-columns:before { content: "\f0db"; }
-.icon-sort:before { content: "\f0dc"; }
-.icon-sort-down:before { content: "\f0dd"; }
-.icon-sort-up:before { content: "\f0de"; }
-
-.icon-envelope-alt:before { content: "\f0e0"; }
-.icon-linkedin:before { content: "\f0e1"; }
-.icon-undo:before,
-.icon-rotate-left:before { content: "\f0e2"; }
-.icon-legal:before { content: "\f0e3"; }
-.icon-dashboard:before { content: "\f0e4"; }
-.icon-comment-alt:before { content: "\f0e5"; }
-.icon-comments-alt:before { content: "\f0e6"; }
-.icon-bolt:before { content: "\f0e7"; }
-.icon-sitemap:before { content: "\f0e8"; }
-.icon-umbrella:before { content: "\f0e9"; }
-.icon-paste:before { content: "\f0ea"; }
-.icon-lightbulb:before { content: "\f0eb"; }
-.icon-exchange:before { content: "\f0ec"; }
-.icon-cloud-download:before { content: "\f0ed"; }
-.icon-cloud-upload:before { content: "\f0ee"; }
-
-.icon-user-md:before { content: "\f0f0"; }
-.icon-stethoscope:before { content: "\f0f1"; }
-.icon-suitcase:before { content: "\f0f2"; }
-.icon-bell-alt:before { content: "\f0f3"; }
-.icon-coffee:before { content: "\f0f4"; }
-.icon-food:before { content: "\f0f5"; }
-.icon-file-alt:before { content: "\f0f6"; }
-.icon-building:before { content: "\f0f7"; }
-.icon-hospital:before { content: "\f0f8"; }
-.icon-ambulance:before { content: "\f0f9"; }
-.icon-medkit:before { content: "\f0fa"; }
-.icon-fighter-jet:before { content: "\f0fb"; }
-.icon-beer:before { content: "\f0fc"; }
-.icon-h-sign:before { content: "\f0fd"; }
-.icon-plus-sign-alt:before { content: "\f0fe"; }
-
-.icon-double-angle-left:before { content: "\f100"; }
-.icon-double-angle-right:before { content: "\f101"; }
-.icon-double-angle-up:before { content: "\f102"; }
-.icon-double-angle-down:before { content: "\f103"; }
-.icon-angle-left:before { content: "\f104"; }
-.icon-angle-right:before { content: "\f105"; }
-.icon-angle-up:before { content: "\f106"; }
-.icon-angle-down:before { content: "\f107"; }
-.icon-desktop:before { content: "\f108"; }
-.icon-laptop:before { content: "\f109"; }
-.icon-tablet:before { content: "\f10a"; }
-.icon-mobile-phone:before { content: "\f10b"; }
-.icon-circle-blank:before { content: "\f10c"; }
-.icon-quote-left:before { content: "\f10d"; }
-.icon-quote-right:before { content: "\f10e"; }
-
-.icon-spinner:before { content: "\f110"; }
-.icon-circle:before { content: "\f111"; }
-.icon-reply:before,
-.icon-mail-reply:before { content: "\f112"; }
-.icon-folder-close-alt:before { content: "\f114"; }
-.icon-folder-open-alt:before { content: "\f115"; }
-.icon-expand-alt:before { content: "\f116"; }
-.icon-collapse-alt:before { content: "\f117"; }
-.icon-smile:before { content: "\f118"; }
-.icon-frown:before { content: "\f119"; }
-.icon-meh:before { content: "\f11a"; }
-.icon-gamepad:before { content: "\f11b"; }
-.icon-keyboard:before { content: "\f11c"; }
-.icon-flag-alt:before { content: "\f11d"; }
-.icon-flag-checkered:before { content: "\f11e"; }
-
-.icon-terminal:before { content: "\f120"; }
-.icon-code:before { content: "\f121"; }
-.icon-reply-all:before, { content: "\f122"; }
-.icon-mail-reply-all:before { content: "\f122"; }
-.icon-star-half-full:before,
-.icon-star-half-empty:before { content: "\f123"; }
-.icon-location-arrow:before { content: "\f124"; }
-.icon-crop:before { content: "\f125"; }
-.icon-code-fork:before { content: "\f126"; }
-.icon-unlink:before { content: "\f127"; }
-.icon-question:before { content: "\f128"; }
-.icon-info:before { content: "\f129"; }
-.icon-exclamation:before { content: "\f12a"; }
-.icon-superscript:before { content: "\f12b"; }
-.icon-subscript:before { content: "\f12c"; }
-.icon-eraser:before { content: "\f12d"; }
-.icon-puzzle-piece:before { content: "\f12e"; }
-
-.icon-microphone:before { content: "\f130"; }
-.icon-microphone-off:before { content: "\f131"; }
-.icon-shield:before { content: "\f132"; }
-.icon-calendar-empty:before { content: "\f133"; }
-.icon-fire-extinguisher:before { content: "\f134"; }
-.icon-rocket:before { content: "\f135"; }
-.icon-maxcdn:before { content: "\f136"; }
-.icon-chevron-sign-left:before { content: "\f137"; }
-.icon-chevron-sign-right:before { content: "\f138"; }
-.icon-chevron-sign-up:before { content: "\f139"; }
-.icon-chevron-sign-down:before { content: "\f13a"; }
-.icon-html5:before { content: "\f13b"; }
-.icon-css3:before { content: "\f13c"; }
-.icon-anchor:before { content: "\f13d"; }
-.icon-unlock-alt:before { content: "\f13e"; }
-
-.icon-bullseye:before { content: "\f140"; }
-.icon-ellipsis-horizontal:before { content: "\f141"; }
-.icon-ellipsis-vertical:before { content: "\f142"; }
-.icon-rss-sign:before { content: "\f143"; }
-.icon-play-sign:before { content: "\f144"; }
-.icon-ticket:before { content: "\f145"; }
-.icon-minus-sign-alt:before { content: "\f146"; }
-.icon-check-minus:before { content: "\f147"; }
-.icon-level-up:before { content: "\f148"; }
-.icon-level-down:before { content: "\f149"; }
-.icon-check-sign:before { content: "\f14a"; }
-.icon-edit-sign:before { content: "\f14b"; }
-.icon-external-link-sign:before { content: "\f14c"; }
-.icon-share-sign:before { content: "\f14d"; }
diff --git a/assets/plugins/font-awesome/less/mixins.less b/assets/plugins/font-awesome/less/mixins.less
deleted file mode 100644
index 4f8858e..0000000
--- a/assets/plugins/font-awesome/less/mixins.less
+++ /dev/null
@@ -1,34 +0,0 @@
-// Mixins
-// --------------------------
-
-.border-radius(@radius) {
- -webkit-border-radius: @radius;
- -moz-border-radius: @radius;
- border-radius: @radius;
-}
-
-.icon-stack(@width: 2em, @height: 2em, @top-font-size: 1em, @base-font-size: 2em) {
- .icon-stack {
- position: relative;
- display: inline-block;
- width: @width;
- height: @height;
- line-height: @width;
- vertical-align: -35%;
- [class^="icon-"],
- [class*=" icon-"] {
- display: block;
- text-align: center;
- position: absolute;
- width: 100%;
- height: 100%;
- font-size: @top-font-size;
- line-height: inherit;
- *line-height: @height;
- }
- .icon-stack-base {
- font-size: @base-font-size;
- *line-height: @height / @base-font-size;
- }
- }
-}
diff --git a/assets/plugins/font-awesome/less/path.less b/assets/plugins/font-awesome/less/path.less
deleted file mode 100644
index 8162d79..0000000
--- a/assets/plugins/font-awesome/less/path.less
+++ /dev/null
@@ -1,15 +0,0 @@
-/* FONT PATH
- * -------------------------- */
-
-@font-face {
- font-family: 'FontAwesome';
- src: url('@{FontAwesomePath}/fontawesome-webfont.eot?v=@{FontAwesomeVersion}');
- src: url('@{FontAwesomePath}/fontawesome-webfont.eot?#iefix&v=@{FontAwesomeVersion}') format('embedded-opentype'),
- url('@{FontAwesomePath}/fontawesome-webfont.woff?v=@{FontAwesomeVersion}') format('woff'),
- url('@{FontAwesomePath}/fontawesome-webfont.ttf?v=@{FontAwesomeVersion}') format('truetype'),
- url('@{FontAwesomePath}/fontawesome-webfont.svg#fontawesomeregular?v=@{FontAwesomeVersion}') format('svg');
-// src: url('@{FontAwesomePath}/FontAwesome.otf') format('opentype'); // used when developing fonts
-
- font-weight: normal;
- font-style: normal;
-}
diff --git a/assets/plugins/font-awesome/less/variables.less b/assets/plugins/font-awesome/less/variables.less
deleted file mode 100644
index 0f42d6a..0000000
--- a/assets/plugins/font-awesome/less/variables.less
+++ /dev/null
@@ -1,9 +0,0 @@
-// Variables
-// --------------------------
-
-@FontAwesomePath: "../font";
-@FontAwesomeVersion: "3.1.0";
-@borderColor: #eee;
-@iconMuted: #eee;
-@iconLight: #fff;
-@iconDark: #333;
\ No newline at end of file
diff --git a/assets/plugins/glyphicons/css/glyphicons.css b/assets/plugins/glyphicons/css/glyphicons.css
deleted file mode 100644
index 23c5841..0000000
--- a/assets/plugins/glyphicons/css/glyphicons.css
+++ /dev/null
@@ -1,2581 +0,0 @@
-/*!
- *
- * Project: GLYPHICONS
- * Author: Jan Kovarik - www.glyphicons.com
- * Twitter: @jankovarik
- *
- */
-html,
-html .halflings {
- -webkit-font-smoothing: antialiased !important;
-}
-@font-face {
- font-family: 'Glyphicons';
- src: url('../fonts/glyphicons-regular.eot');
- src: url('../fonts/glyphicons-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-regular.woff') format('woff'), url('../fonts/glyphicons-regular.ttf') format('truetype'), url('../fonts/glyphicons-regular.svg#glyphicons_halflingsregular') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-.glyphicons {
- display: inline-block;
- position: relative;
- padding: 5px 0 5px 35px;
- color: #1d1d1b;
- text-decoration: none;
- *display: inline;
- *zoom: 1;
-}
-.glyphicons i:before {
- position: absolute;
- left: 0;
- top: 0;
- font: 24px/1em 'Glyphicons';
- font-style: normal;
- color: #1d1d1b;
-}
-.glyphicons.white i:before {
- color: #fff;
-}
-.glyphicons.glass i:before {
- content: "\e001";
-}
-.glyphicons.leaf i:before {
- content: "\e002";
-}
-.glyphicons.dog i:before {
- content: "\e003";
-}
-.glyphicons.user i:before {
- content: "\e004";
-}
-.glyphicons.girl i:before {
- content: "\e005";
-}
-.glyphicons.car i:before {
- content: "\e006";
-}
-.glyphicons.user_add i:before {
- content: "\e007";
-}
-.glyphicons.user_remove i:before {
- content: "\e008";
-}
-.glyphicons.film i:before {
- content: "\e009";
-}
-.glyphicons.magic i:before {
- content: "\e010";
-}
-.glyphicons.envelope i:before {
- content: "\2709";
-}
-.glyphicons.camera i:before {
- content: "\e012";
-}
-.glyphicons.heart i:before {
- content: "\e013";
-}
-.glyphicons.beach_umbrella i:before {
- content: "\e014";
-}
-.glyphicons.train i:before {
- content: "\e015";
-}
-.glyphicons.print i:before {
- content: "\e016";
-}
-.glyphicons.bin i:before {
- content: "\e017";
-}
-.glyphicons.music i:before {
- content: "\e018";
-}
-.glyphicons.note i:before {
- content: "\e019";
-}
-.glyphicons.heart_empty i:before {
- content: "\e020";
-}
-.glyphicons.home i:before {
- content: "\e021";
-}
-.glyphicons.snowflake i:before {
- content: "\2744";
-}
-.glyphicons.fire i:before {
- content: "\e023";
-}
-.glyphicons.magnet i:before {
- content: "\e024";
-}
-.glyphicons.parents i:before {
- content: "\e025";
-}
-.glyphicons.binoculars i:before {
- content: "\e026";
-}
-.glyphicons.road i:before {
- content: "\e027";
-}
-.glyphicons.search i:before {
- content: "\e028";
-}
-.glyphicons.cars i:before {
- content: "\e029";
-}
-.glyphicons.notes_2 i:before {
- content: "\e030";
-}
-.glyphicons.pencil i:before {
- content: "\270F";
-}
-.glyphicons.bus i:before {
- content: "\e032";
-}
-.glyphicons.wifi_alt i:before {
- content: "\e033";
-}
-.glyphicons.luggage i:before {
- content: "\e034";
-}
-.glyphicons.old_man i:before {
- content: "\e035";
-}
-.glyphicons.woman i:before {
- content: "\e036";
-}
-.glyphicons.file i:before {
- content: "\e037";
-}
-.glyphicons.coins i:before {
- content: "\e038";
-}
-.glyphicons.airplane i:before {
- content: "\2708";
-}
-.glyphicons.notes i:before {
- content: "\e040";
-}
-.glyphicons.stats i:before {
- content: "\e041";
-}
-.glyphicons.charts i:before {
- content: "\e042";
-}
-.glyphicons.pie_chart i:before {
- content: "\e043";
-}
-.glyphicons.group i:before {
- content: "\e044";
-}
-.glyphicons.keys i:before {
- content: "\e045";
-}
-.glyphicons.calendar i:before {
- content: "\e046";
-}
-.glyphicons.router i:before {
- content: "\e047";
-}
-.glyphicons.camera_small i:before {
- content: "\e048";
-}
-.glyphicons.dislikes i:before {
- content: "\e049";
-}
-.glyphicons.star i:before {
- content: "\e050";
-}
-.glyphicons.link i:before {
- content: "\e051";
-}
-.glyphicons.eye_open i:before {
- content: "\e052";
-}
-.glyphicons.eye_close i:before {
- content: "\e053";
-}
-.glyphicons.alarm i:before {
- content: "\e054";
-}
-.glyphicons.clock i:before {
- content: "\e055";
-}
-.glyphicons.stopwatch i:before {
- content: "\e056";
-}
-.glyphicons.projector i:before {
- content: "\e057";
-}
-.glyphicons.history i:before {
- content: "\e058";
-}
-.glyphicons.truck i:before {
- content: "\e059";
-}
-.glyphicons.cargo i:before {
- content: "\e060";
-}
-.glyphicons.compass i:before {
- content: "\e061";
-}
-.glyphicons.keynote i:before {
- content: "\e062";
-}
-.glyphicons.paperclip i:before {
- content: "\e063";
-}
-.glyphicons.power i:before {
- content: "\e064";
-}
-.glyphicons.lightbulb i:before {
- content: "\e065";
-}
-.glyphicons.tag i:before {
- content: "\e066";
-}
-.glyphicons.tags i:before {
- content: "\e067";
-}
-.glyphicons.cleaning i:before {
- content: "\e068";
-}
-.glyphicons.ruller i:before {
- content: "\e069";
-}
-.glyphicons.gift i:before {
- content: "\e070";
-}
-.glyphicons.umbrella i:before {
- content: "\2602";
-}
-.glyphicons.book i:before {
- content: "\e072";
-}
-.glyphicons.bookmark i:before {
- content: "\e073";
-}
-.glyphicons.wifi i:before {
- content: "\e074";
-}
-.glyphicons.cup i:before {
- content: "\e075";
-}
-.glyphicons.stroller i:before {
- content: "\e076";
-}
-.glyphicons.headphones i:before {
- content: "\e077";
-}
-.glyphicons.headset i:before {
- content: "\e078";
-}
-.glyphicons.warning_sign i:before {
- content: "\e079";
-}
-.glyphicons.signal i:before {
- content: "\e080";
-}
-.glyphicons.retweet i:before {
- content: "\e081";
-}
-.glyphicons.refresh i:before {
- content: "\e082";
-}
-.glyphicons.roundabout i:before {
- content: "\e083";
-}
-.glyphicons.random i:before {
- content: "\e084";
-}
-.glyphicons.heat i:before {
- content: "\e085";
-}
-.glyphicons.repeat i:before {
- content: "\e086";
-}
-.glyphicons.display i:before {
- content: "\e087";
-}
-.glyphicons.log_book i:before {
- content: "\e088";
-}
-.glyphicons.adress_book i:before {
- content: "\e089";
-}
-.glyphicons.building i:before {
- content: "\e090";
-}
-.glyphicons.eyedropper i:before {
- content: "\e091";
-}
-.glyphicons.adjust i:before {
- content: "\e092";
-}
-.glyphicons.tint i:before {
- content: "\e093";
-}
-.glyphicons.crop i:before {
- content: "\e094";
-}
-.glyphicons.vector_path_square i:before {
- content: "\e095";
-}
-.glyphicons.vector_path_circle i:before {
- content: "\e096";
-}
-.glyphicons.vector_path_polygon i:before {
- content: "\e097";
-}
-.glyphicons.vector_path_line i:before {
- content: "\e098";
-}
-.glyphicons.vector_path_curve i:before {
- content: "\e099";
-}
-.glyphicons.vector_path_all i:before {
- content: "\e100";
-}
-.glyphicons.font i:before {
- content: "\e101";
-}
-.glyphicons.italic i:before {
- content: "\e102";
-}
-.glyphicons.bold i:before {
- content: "\e103";
-}
-.glyphicons.text_underline i:before {
- content: "\e104";
-}
-.glyphicons.text_strike i:before {
- content: "\e105";
-}
-.glyphicons.text_height i:before {
- content: "\e106";
-}
-.glyphicons.text_width i:before {
- content: "\e107";
-}
-.glyphicons.text_resize i:before {
- content: "\e108";
-}
-.glyphicons.left_indent i:before {
- content: "\e109";
-}
-.glyphicons.right_indent i:before {
- content: "\e110";
-}
-.glyphicons.align_left i:before {
- content: "\e111";
-}
-.glyphicons.align_center i:before {
- content: "\e112";
-}
-.glyphicons.align_right i:before {
- content: "\e113";
-}
-.glyphicons.justify i:before {
- content: "\e114";
-}
-.glyphicons.list i:before {
- content: "\e115";
-}
-.glyphicons.text_smaller i:before {
- content: "\e116";
-}
-.glyphicons.text_bigger i:before {
- content: "\e117";
-}
-.glyphicons.embed i:before {
- content: "\e118";
-}
-.glyphicons.embed_close i:before {
- content: "\e119";
-}
-.glyphicons.table i:before {
- content: "\e120";
-}
-.glyphicons.message_full i:before {
- content: "\e121";
-}
-.glyphicons.message_empty i:before {
- content: "\e122";
-}
-.glyphicons.message_in i:before {
- content: "\e123";
-}
-.glyphicons.message_out i:before {
- content: "\e124";
-}
-.glyphicons.message_plus i:before {
- content: "\e125";
-}
-.glyphicons.message_minus i:before {
- content: "\e126";
-}
-.glyphicons.message_ban i:before {
- content: "\e127";
-}
-.glyphicons.message_flag i:before {
- content: "\e128";
-}
-.glyphicons.message_lock i:before {
- content: "\e129";
-}
-.glyphicons.message_new i:before {
- content: "\e130";
-}
-.glyphicons.inbox i:before {
- content: "\e131";
-}
-.glyphicons.inbox_plus i:before {
- content: "\e132";
-}
-.glyphicons.inbox_minus i:before {
- content: "\e133";
-}
-.glyphicons.inbox_lock i:before {
- content: "\e134";
-}
-.glyphicons.inbox_in i:before {
- content: "\e135";
-}
-.glyphicons.inbox_out i:before {
- content: "\e136";
-}
-.glyphicons.cogwheel i:before {
- content: "\e137";
-}
-.glyphicons.cogwheels i:before {
- content: "\e138";
-}
-.glyphicons.picture i:before {
- content: "\e139";
-}
-.glyphicons.adjust_alt i:before {
- content: "\e140";
-}
-.glyphicons.database_lock i:before {
- content: "\e141";
-}
-.glyphicons.database_plus i:before {
- content: "\e142";
-}
-.glyphicons.database_minus i:before {
- content: "\e143";
-}
-.glyphicons.database_ban i:before {
- content: "\e144";
-}
-.glyphicons.folder_open i:before {
- content: "\e145";
-}
-.glyphicons.folder_plus i:before {
- content: "\e146";
-}
-.glyphicons.folder_minus i:before {
- content: "\e147";
-}
-.glyphicons.folder_lock i:before {
- content: "\e148";
-}
-.glyphicons.folder_flag i:before {
- content: "\e149";
-}
-.glyphicons.folder_new i:before {
- content: "\e150";
-}
-.glyphicons.edit i:before {
- content: "\e151";
-}
-.glyphicons.new_window i:before {
- content: "\e152";
-}
-.glyphicons.check i:before {
- content: "\e153";
-}
-.glyphicons.unchecked i:before {
- content: "\e154";
-}
-.glyphicons.more_windows i:before {
- content: "\e155";
-}
-.glyphicons.show_big_thumbnails i:before {
- content: "\e156";
-}
-.glyphicons.show_thumbnails i:before {
- content: "\e157";
-}
-.glyphicons.show_thumbnails_with_lines i:before {
- content: "\e158";
-}
-.glyphicons.show_lines i:before {
- content: "\e159";
-}
-.glyphicons.playlist i:before {
- content: "\e160";
-}
-.glyphicons.imac i:before {
- content: "\e161";
-}
-.glyphicons.macbook i:before {
- content: "\e162";
-}
-.glyphicons.ipad i:before {
- content: "\e163";
-}
-.glyphicons.iphone i:before {
- content: "\e164";
-}
-.glyphicons.iphone_transfer i:before {
- content: "\e165";
-}
-.glyphicons.iphone_exchange i:before {
- content: "\e166";
-}
-.glyphicons.ipod i:before {
- content: "\e167";
-}
-.glyphicons.ipod_shuffle i:before {
- content: "\e168";
-}
-.glyphicons.ear_plugs i:before {
- content: "\e169";
-}
-.glyphicons.phone i:before {
- content: "\e170";
-}
-.glyphicons.step_backward i:before {
- content: "\e171";
-}
-.glyphicons.fast_backward i:before {
- content: "\e172";
-}
-.glyphicons.rewind i:before {
- content: "\e173";
-}
-.glyphicons.play i:before {
- content: "\e174";
-}
-.glyphicons.pause i:before {
- content: "\e175";
-}
-.glyphicons.stop i:before {
- content: "\e176";
-}
-.glyphicons.forward i:before {
- content: "\e177";
-}
-.glyphicons.fast_forward i:before {
- content: "\e178";
-}
-.glyphicons.step_forward i:before {
- content: "\e179";
-}
-.glyphicons.eject i:before {
- content: "\e180";
-}
-.glyphicons.facetime_video i:before {
- content: "\e181";
-}
-.glyphicons.download_alt i:before {
- content: "\e182";
-}
-.glyphicons.mute i:before {
- content: "\e183";
-}
-.glyphicons.volume_down i:before {
- content: "\e184";
-}
-.glyphicons.volume_up i:before {
- content: "\e185";
-}
-.glyphicons.screenshot i:before {
- content: "\e186";
-}
-.glyphicons.move i:before {
- content: "\e187";
-}
-.glyphicons.more i:before {
- content: "\e188";
-}
-.glyphicons.brightness_reduce i:before {
- content: "\e189";
-}
-.glyphicons.brightness_increase i:before {
- content: "\e190";
-}
-.glyphicons.circle_plus i:before {
- content: "\e191";
-}
-.glyphicons.circle_minus i:before {
- content: "\e192";
-}
-.glyphicons.circle_remove i:before {
- content: "\e193";
-}
-.glyphicons.circle_ok i:before {
- content: "\e194";
-}
-.glyphicons.circle_question_mark i:before {
- content: "\e195";
-}
-.glyphicons.circle_info i:before {
- content: "\e196";
-}
-.glyphicons.circle_exclamation_mark i:before {
- content: "\e197";
-}
-.glyphicons.remove i:before {
- content: "\e198";
-}
-.glyphicons.ok i:before {
- content: "\e199";
-}
-.glyphicons.ban i:before {
- content: "\e200";
-}
-.glyphicons.download i:before {
- content: "\e201";
-}
-.glyphicons.upload i:before {
- content: "\e202";
-}
-.glyphicons.shopping_cart i:before {
- content: "\e203";
-}
-.glyphicons.lock i:before {
- content: "\e204";
-}
-.glyphicons.unlock i:before {
- content: "\e205";
-}
-.glyphicons.electricity i:before {
- content: "\e206";
-}
-.glyphicons.ok_2 i:before {
- content: "\e207";
-}
-.glyphicons.remove_2 i:before {
- content: "\e208";
-}
-.glyphicons.cart_out i:before {
- content: "\e209";
-}
-.glyphicons.cart_in i:before {
- content: "\e210";
-}
-.glyphicons.left_arrow i:before {
- content: "\e211";
-}
-.glyphicons.right_arrow i:before {
- content: "\e212";
-}
-.glyphicons.down_arrow i:before {
- content: "\e213";
-}
-.glyphicons.up_arrow i:before {
- content: "\e214";
-}
-.glyphicons.resize_small i:before {
- content: "\e215";
-}
-.glyphicons.resize_full i:before {
- content: "\e216";
-}
-.glyphicons.circle_arrow_left i:before {
- content: "\e217";
-}
-.glyphicons.circle_arrow_right i:before {
- content: "\e218";
-}
-.glyphicons.circle_arrow_top i:before {
- content: "\e219";
-}
-.glyphicons.circle_arrow_down i:before {
- content: "\e220";
-}
-.glyphicons.play_button i:before {
- content: "\e221";
-}
-.glyphicons.unshare i:before {
- content: "\e222";
-}
-.glyphicons.share i:before {
- content: "\e223";
-}
-.glyphicons.chevron-right i:before {
- content: "\e224";
-}
-.glyphicons.chevron-left i:before {
- content: "\e225";
-}
-.glyphicons.bluetooth i:before {
- content: "\e226";
-}
-.glyphicons.euro i:before {
- content: "\20AC";
-}
-.glyphicons.usd i:before {
- content: "\e228";
-}
-.glyphicons.gbp i:before {
- content: "\e229";
-}
-.glyphicons.retweet_2 i:before {
- content: "\e230";
-}
-.glyphicons.moon i:before {
- content: "\e231";
-}
-.glyphicons.sun i:before {
- content: "\2609";
-}
-.glyphicons.cloud i:before {
- content: "\2601";
-}
-.glyphicons.direction i:before {
- content: "\e234";
-}
-.glyphicons.brush i:before {
- content: "\e235";
-}
-.glyphicons.pen i:before {
- content: "\e236";
-}
-.glyphicons.zoom_in i:before {
- content: "\e237";
-}
-.glyphicons.zoom_out i:before {
- content: "\e238";
-}
-.glyphicons.pin i:before {
- content: "\e239";
-}
-.glyphicons.albums i:before {
- content: "\e240";
-}
-.glyphicons.rotation_lock i:before {
- content: "\e241";
-}
-.glyphicons.flash i:before {
- content: "\e242";
-}
-.glyphicons.google_maps i:before {
- content: "\e243";
-}
-.glyphicons.anchor i:before {
- content: "\2693";
-}
-.glyphicons.conversation i:before {
- content: "\e245";
-}
-.glyphicons.chat i:before {
- content: "\e246";
-}
-.glyphicons.male i:before {
- content: "\e247";
-}
-.glyphicons.female i:before {
- content: "\e248";
-}
-.glyphicons.asterisk i:before {
- content: "\002A";
-}
-.glyphicons.divide i:before {
- content: "\00F7";
-}
-.glyphicons.snorkel_diving i:before {
- content: "\e251";
-}
-.glyphicons.scuba_diving i:before {
- content: "\e252";
-}
-.glyphicons.oxygen_bottle i:before {
- content: "\e253";
-}
-.glyphicons.fins i:before {
- content: "\e254";
-}
-.glyphicons.fishes i:before {
- content: "\e255";
-}
-.glyphicons.boat i:before {
- content: "\e256";
-}
-.glyphicons.delete i:before {
- content: "\e257";
-}
-.glyphicons.sheriffs_star i:before {
- content: "\e258";
-}
-.glyphicons.qrcode i:before {
- content: "\e259";
-}
-.glyphicons.barcode i:before {
- content: "\e260";
-}
-.glyphicons.pool i:before {
- content: "\e261";
-}
-.glyphicons.buoy i:before {
- content: "\e262";
-}
-.glyphicons.spade i:before {
- content: "\e263";
-}
-.glyphicons.bank i:before {
- content: "\e264";
-}
-.glyphicons.vcard i:before {
- content: "\e265";
-}
-.glyphicons.electrical_plug i:before {
- content: "\e266";
-}
-.glyphicons.flag i:before {
- content: "\e267";
-}
-.glyphicons.credit_card i:before {
- content: "\e268";
-}
-.glyphicons.keyboard-wireless i:before {
- content: "\e269";
-}
-.glyphicons.keyboard-wired i:before {
- content: "\e270";
-}
-.glyphicons.shield i:before {
- content: "\e271";
-}
-.glyphicons.ring i:before {
- content: "\02DA";
-}
-.glyphicons.cake i:before {
- content: "\e273";
-}
-.glyphicons.drink i:before {
- content: "\e274";
-}
-.glyphicons.beer i:before {
- content: "\e275";
-}
-.glyphicons.fast_food i:before {
- content: "\e276";
-}
-.glyphicons.cutlery i:before {
- content: "\e277";
-}
-.glyphicons.pizza i:before {
- content: "\e278";
-}
-.glyphicons.birthday_cake i:before {
- content: "\e279";
-}
-.glyphicons.tablet i:before {
- content: "\e280";
-}
-.glyphicons.settings i:before {
- content: "\e281";
-}
-.glyphicons.bullets i:before {
- content: "\e282";
-}
-.glyphicons.cardio i:before {
- content: "\e283";
-}
-.glyphicons.t-shirt i:before {
- content: "\e284";
-}
-.glyphicons.pants i:before {
- content: "\e285";
-}
-.glyphicons.sweater i:before {
- content: "\e286";
-}
-.glyphicons.fabric i:before {
- content: "\e287";
-}
-.glyphicons.leather i:before {
- content: "\e288";
-}
-.glyphicons.scissors i:before {
- content: "\e289";
-}
-.glyphicons.bomb i:before {
- content: "\e290";
-}
-.glyphicons.skull i:before {
- content: "\e291";
-}
-.glyphicons.celebration i:before {
- content: "\e292";
-}
-.glyphicons.tea_kettle i:before {
- content: "\e293";
-}
-.glyphicons.french_press i:before {
- content: "\e294";
-}
-.glyphicons.coffe_cup i:before {
- content: "\e295";
-}
-.glyphicons.pot i:before {
- content: "\e296";
-}
-.glyphicons.grater i:before {
- content: "\e297";
-}
-.glyphicons.kettle i:before {
- content: "\e298";
-}
-.glyphicons.hospital i:before {
- content: "\e299";
-}
-.glyphicons.hospital_h i:before {
- content: "\e300";
-}
-.glyphicons.microphone i:before {
- content: "\e301";
-}
-.glyphicons.webcam i:before {
- content: "\e302";
-}
-.glyphicons.temple_christianity_church i:before {
- content: "\e303";
-}
-.glyphicons.temple_islam i:before {
- content: "\e304";
-}
-.glyphicons.temple_hindu i:before {
- content: "\e305";
-}
-.glyphicons.temple_buddhist i:before {
- content: "\e306";
-}
-.glyphicons.bicycle i:before {
- content: "\e307";
-}
-.glyphicons.life_preserver i:before {
- content: "\e308";
-}
-.glyphicons.share_alt i:before {
- content: "\e309";
-}
-.glyphicons.comments i:before {
- content: "\e310";
-}
-.glyphicons.flower i:before {
- content: "\2698";
-}
-.glyphicons.baseball i:before {
- content: "\e312";
-}
-.glyphicons.rugby i:before {
- content: "\e313";
-}
-.glyphicons.ax i:before {
- content: "\e314";
-}
-.glyphicons.table_tennis i:before {
- content: "\e315";
-}
-.glyphicons.bowling i:before {
- content: "\e316";
-}
-.glyphicons.tree_conifer i:before {
- content: "\e317";
-}
-.glyphicons.tree_deciduous i:before {
- content: "\e318";
-}
-.glyphicons.more_items i:before {
- content: "\e319";
-}
-.glyphicons.sort i:before {
- content: "\e320";
-}
-.glyphicons.filter i:before {
- content: "\e321";
-}
-.glyphicons.gamepad i:before {
- content: "\e322";
-}
-.glyphicons.playing_dices i:before {
- content: "\e323";
-}
-.glyphicons.calculator i:before {
- content: "\e324";
-}
-.glyphicons.tie i:before {
- content: "\e325";
-}
-.glyphicons.wallet i:before {
- content: "\e326";
-}
-.glyphicons.piano i:before {
- content: "\e327";
-}
-.glyphicons.sampler i:before {
- content: "\e328";
-}
-.glyphicons.podium i:before {
- content: "\e329";
-}
-.glyphicons.soccer_ball i:before {
- content: "\e330";
-}
-.glyphicons.blog i:before {
- content: "\e331";
-}
-.glyphicons.dashboard i:before {
- content: "\e332";
-}
-.glyphicons.certificate i:before {
- content: "\e333";
-}
-.glyphicons.bell i:before {
- content: "\e334";
-}
-.glyphicons.candle i:before {
- content: "\e335";
-}
-.glyphicons.pushpin i:before {
- content: "\e336";
-}
-.glyphicons.iphone_shake i:before {
- content: "\e337";
-}
-.glyphicons.pin_flag i:before {
- content: "\e338";
-}
-.glyphicons.turtle i:before {
- content: "\e339";
-}
-.glyphicons.rabbit i:before {
- content: "\e340";
-}
-.glyphicons.globe i:before {
- content: "\e341";
-}
-.glyphicons.briefcase i:before {
- content: "\e342";
-}
-.glyphicons.hdd i:before {
- content: "\e343";
-}
-.glyphicons.thumbs_up i:before {
- content: "\e344";
-}
-.glyphicons.thumbs_down i:before {
- content: "\e345";
-}
-.glyphicons.hand_right i:before {
- content: "\e346";
-}
-.glyphicons.hand_left i:before {
- content: "\e347";
-}
-.glyphicons.hand_up i:before {
- content: "\e348";
-}
-.glyphicons.hand_down i:before {
- content: "\e349";
-}
-.glyphicons.fullscreen i:before {
- content: "\e350";
-}
-.glyphicons.shopping_bag i:before {
- content: "\e351";
-}
-.glyphicons.book_open i:before {
- content: "\e352";
-}
-.glyphicons.nameplate i:before {
- content: "\e353";
-}
-.glyphicons.nameplate_alt i:before {
- content: "\e354";
-}
-.glyphicons.vases i:before {
- content: "\e355";
-}
-.glyphicons.bullhorn i:before {
- content: "\e356";
-}
-.glyphicons.dumbbell i:before {
- content: "\e357";
-}
-.glyphicons.suitcase i:before {
- content: "\e358";
-}
-.glyphicons.file_import i:before {
- content: "\e359";
-}
-.glyphicons.file_export i:before {
- content: "\e360";
-}
-.glyphicons.bug i:before {
- content: "\e361";
-}
-.glyphicons.crown i:before {
- content: "\e362";
-}
-.glyphicons.smoking i:before {
- content: "\e363";
-}
-.glyphicons.cloud-upload i:before {
- content: "\e364";
-}
-.glyphicons.cloud-download i:before {
- content: "\e365";
-}
-.glyphicons.restart i:before {
- content: "\e366";
-}
-.glyphicons.security_camera i:before {
- content: "\e367";
-}
-.glyphicons.expand i:before {
- content: "\e368";
-}
-.glyphicons.collapse i:before {
- content: "\e369";
-}
-.glyphicons.collapse_top i:before {
- content: "\e370";
-}
-.glyphicons.globe_af i:before {
- content: "\e371";
-}
-.glyphicons.global i:before {
- content: "\e372";
-}
-.glyphicons.spray i:before {
- content: "\e373";
-}
-.glyphicons.nails i:before {
- content: "\e374";
-}
-.glyphicons.claw_hammer i:before {
- content: "\e375";
-}
-.glyphicons.classic_hammer i:before {
- content: "\e376";
-}
-.glyphicons.hand_saw i:before {
- content: "\e377";
-}
-.glyphicons.riflescope i:before {
- content: "\e378";
-}
-.glyphicons.electrical_socket_eu i:before {
- content: "\e379";
-}
-.glyphicons.electrical_socket_us i:before {
- content: "\e380";
-}
-.glyphicons.pinterest i:before {
- content: "\e381";
-}
-.glyphicons.dropbox i:before {
- content: "\e382";
-}
-.glyphicons.google_plus i:before {
- content: "\e383";
-}
-.glyphicons.jolicloud i:before {
- content: "\e384";
-}
-.glyphicons.yahoo i:before {
- content: "\e385";
-}
-.glyphicons.blogger i:before {
- content: "\e386";
-}
-.glyphicons.picasa i:before {
- content: "\e387";
-}
-.glyphicons.amazon i:before {
- content: "\e388";
-}
-.glyphicons.tumblr i:before {
- content: "\e389";
-}
-.glyphicons.wordpress i:before {
- content: "\e390";
-}
-.glyphicons.instapaper i:before {
- content: "\e391";
-}
-.glyphicons.evernote i:before {
- content: "\e392";
-}
-.glyphicons.xing i:before {
- content: "\e393";
-}
-.glyphicons.zootool i:before {
- content: "\e394";
-}
-.glyphicons.dribbble i:before {
- content: "\e395";
-}
-.glyphicons.deviantart i:before {
- content: "\e396";
-}
-.glyphicons.read_it_later i:before {
- content: "\e397";
-}
-.glyphicons.linked_in i:before {
- content: "\e398";
-}
-.glyphicons.forrst i:before {
- content: "\e399";
-}
-.glyphicons.pinboard i:before {
- content: "\e400";
-}
-.glyphicons.behance i:before {
- content: "\e401";
-}
-.glyphicons.github i:before {
- content: "\e402";
-}
-.glyphicons.youtube i:before {
- content: "\e403";
-}
-.glyphicons.skitch i:before {
- content: "\e404";
-}
-.glyphicons.foursquare i:before {
- content: "\e405";
-}
-.glyphicons.quora i:before {
- content: "\e406";
-}
-.glyphicons.badoo i:before {
- content: "\e407";
-}
-.glyphicons.spotify i:before {
- content: "\e408";
-}
-.glyphicons.stumbleupon i:before {
- content: "\e409";
-}
-.glyphicons.readability i:before {
- content: "\e410";
-}
-.glyphicons.facebook i:before {
- content: "\e411";
-}
-.glyphicons.twitter i:before {
- content: "\e412";
-}
-.glyphicons.instagram i:before {
- content: "\e413";
-}
-.glyphicons.posterous_spaces i:before {
- content: "\e414";
-}
-.glyphicons.vimeo i:before {
- content: "\e415";
-}
-.glyphicons.flickr i:before {
- content: "\e416";
-}
-.glyphicons.last_fm i:before {
- content: "\e417";
-}
-.glyphicons.rss i:before {
- content: "\e418";
-}
-.glyphicons.skype i:before {
- content: "\e419";
-}
-.glyphicons.e-mail i:before {
- content: "\e420";
-}
-.glyphicons-icon {
- display: inline-block;
- width: 48px;
- height: 48px;
- line-height: 48px;
- vertical-align: text-top;
- background-image: url(../images/glyphicons.png);
- background-position: 0 0;
- background-repeat: no-repeat;
- vertical-align: top;
- *display: inline;
- *zoom: 1;
- *margin-right: .3em;
-}
-.no-inlinesvg .glyphicons-icon {
- background-image: url(../images/glyphicons.png);
-}
-.glyphicons-icon.white {
- background-image: url(../images/glyphicons-white.svg);
-}
-.no-inlinesvg .glyphicons-icon.white {
- background-image: url(../images/glyphicons-white.png);
-}
-.glyphicons-icon.glass {
- background-position: 4px 11px;
-}
-.glyphicons-icon.leaf {
- background-position: -44px 11px;
-}
-.glyphicons-icon.dog {
- background-position: -92px 11px;
-}
-.glyphicons-icon.user {
- background-position: -140px 11px;
-}
-.glyphicons-icon.girl {
- background-position: -188px 11px;
-}
-.glyphicons-icon.car {
- background-position: -236px 11px;
-}
-.glyphicons-icon.user_add {
- background-position: -284px 11px;
-}
-.glyphicons-icon.user_remove {
- background-position: -332px 11px;
-}
-.glyphicons-icon.film {
- background-position: -380px 11px;
-}
-.glyphicons-icon.magic {
- background-position: -428px 11px;
-}
-.glyphicons-icon.envelope {
- background-position: 4px -37px;
-}
-.glyphicons-icon.camera {
- background-position: -44px -37px;
-}
-.glyphicons-icon.heart {
- background-position: -92px -37px;
-}
-.glyphicons-icon.beach_umbrella {
- background-position: -140px -37px;
-}
-.glyphicons-icon.train {
- background-position: -188px -37px;
-}
-.glyphicons-icon.print {
- background-position: -236px -37px;
-}
-.glyphicons-icon.bin {
- background-position: -284px -37px;
-}
-.glyphicons-icon.music {
- background-position: -332px -37px;
-}
-.glyphicons-icon.note {
- background-position: -380px -37px;
-}
-.glyphicons-icon.heart_empty {
- background-position: -428px -37px;
-}
-.glyphicons-icon.home {
- background-position: 4px -85px;
-}
-.glyphicons-icon.snowflake {
- background-position: -44px -85px;
-}
-.glyphicons-icon.fire {
- background-position: -92px -85px;
-}
-.glyphicons-icon.magnet {
- background-position: -140px -85px;
-}
-.glyphicons-icon.parents {
- background-position: -188px -85px;
-}
-.glyphicons-icon.binoculars {
- background-position: -236px -85px;
-}
-.glyphicons-icon.road {
- background-position: -284px -85px;
-}
-.glyphicons-icon.search {
- background-position: -332px -85px;
-}
-.glyphicons-icon.cars {
- background-position: -380px -85px;
-}
-.glyphicons-icon.notes_2 {
- background-position: -428px -85px;
-}
-.glyphicons-icon.pencil {
- background-position: 4px -133px;
-}
-.glyphicons-icon.bus {
- background-position: -44px -133px;
-}
-.glyphicons-icon.wifi_alt {
- background-position: -92px -133px;
-}
-.glyphicons-icon.luggage {
- background-position: -140px -133px;
-}
-.glyphicons-icon.old_man {
- background-position: -188px -133px;
-}
-.glyphicons-icon.woman {
- background-position: -236px -133px;
-}
-.glyphicons-icon.file {
- background-position: -284px -133px;
-}
-.glyphicons-icon.coins {
- background-position: -332px -133px;
-}
-.glyphicons-icon.airplane {
- background-position: -380px -133px;
-}
-.glyphicons-icon.notes {
- background-position: -428px -133px;
-}
-.glyphicons-icon.stats {
- background-position: 4px -181px;
-}
-.glyphicons-icon.charts {
- background-position: -44px -181px;
-}
-.glyphicons-icon.pie_chart {
- background-position: -92px -181px;
-}
-.glyphicons-icon.group {
- background-position: -140px -181px;
-}
-.glyphicons-icon.keys {
- background-position: -188px -181px;
-}
-.glyphicons-icon.calendar {
- background-position: -236px -181px;
-}
-.glyphicons-icon.router {
- background-position: -284px -181px;
-}
-.glyphicons-icon.camera_small {
- background-position: -332px -181px;
-}
-.glyphicons-icon.dislikes {
- background-position: -380px -181px;
-}
-.glyphicons-icon.star {
- background-position: -428px -181px;
-}
-.glyphicons-icon.link {
- background-position: 4px -229px;
-}
-.glyphicons-icon.eye_open {
- background-position: -44px -229px;
-}
-.glyphicons-icon.eye_close {
- background-position: -92px -229px;
-}
-.glyphicons-icon.alarm {
- background-position: -140px -229px;
-}
-.glyphicons-icon.clock {
- background-position: -188px -229px;
-}
-.glyphicons-icon.stopwatch {
- background-position: -236px -229px;
-}
-.glyphicons-icon.projector {
- background-position: -284px -229px;
-}
-.glyphicons-icon.history {
- background-position: -332px -229px;
-}
-.glyphicons-icon.truck {
- background-position: -380px -229px;
-}
-.glyphicons-icon.cargo {
- background-position: -428px -229px;
-}
-.glyphicons-icon.compass {
- background-position: 4px -277px;
-}
-.glyphicons-icon.keynote {
- background-position: -44px -277px;
-}
-.glyphicons-icon.paperclip {
- background-position: -92px -277px;
-}
-.glyphicons-icon.power {
- background-position: -140px -277px;
-}
-.glyphicons-icon.lightbulb {
- background-position: -188px -277px;
-}
-.glyphicons-icon.tag {
- background-position: -236px -277px;
-}
-.glyphicons-icon.tags {
- background-position: -284px -277px;
-}
-.glyphicons-icon.cleaning {
- background-position: -332px -277px;
-}
-.glyphicons-icon.ruller {
- background-position: -380px -277px;
-}
-.glyphicons-icon.gift {
- background-position: -428px -277px;
-}
-.glyphicons-icon.umbrella {
- background-position: 4px -325px;
-}
-.glyphicons-icon.book {
- background-position: -44px -325px;
-}
-.glyphicons-icon.bookmark {
- background-position: -92px -325px;
-}
-.glyphicons-icon.wifi {
- background-position: -140px -325px;
-}
-.glyphicons-icon.cup {
- background-position: -188px -325px;
-}
-.glyphicons-icon.stroller {
- background-position: -236px -325px;
-}
-.glyphicons-icon.headphones {
- background-position: -284px -325px;
-}
-.glyphicons-icon.headset {
- background-position: -332px -325px;
-}
-.glyphicons-icon.warning_sign {
- background-position: -380px -325px;
-}
-.glyphicons-icon.signal {
- background-position: -428px -325px;
-}
-.glyphicons-icon.retweet {
- background-position: 4px -373px;
-}
-.glyphicons-icon.refresh {
- background-position: -44px -373px;
-}
-.glyphicons-icon.roundabout {
- background-position: -92px -373px;
-}
-.glyphicons-icon.random {
- background-position: -140px -373px;
-}
-.glyphicons-icon.heat {
- background-position: -188px -373px;
-}
-.glyphicons-icon.repeat {
- background-position: -236px -373px;
-}
-.glyphicons-icon.display {
- background-position: -284px -373px;
-}
-.glyphicons-icon.log_book {
- background-position: -332px -373px;
-}
-.glyphicons-icon.adress_book {
- background-position: -380px -373px;
-}
-.glyphicons-icon.building {
- background-position: -428px -373px;
-}
-.glyphicons-icon.eyedropper {
- background-position: 4px -421px;
-}
-.glyphicons-icon.adjust {
- background-position: -44px -421px;
-}
-.glyphicons-icon.tint {
- background-position: -92px -421px;
-}
-.glyphicons-icon.crop {
- background-position: -140px -421px;
-}
-.glyphicons-icon.vector_path_square {
- background-position: -188px -421px;
-}
-.glyphicons-icon.vector_path_circle {
- background-position: -236px -421px;
-}
-.glyphicons-icon.vector_path_polygon {
- background-position: -284px -421px;
-}
-.glyphicons-icon.vector_path_line {
- background-position: -332px -421px;
-}
-.glyphicons-icon.vector_path_curve {
- background-position: -380px -421px;
-}
-.glyphicons-icon.vector_path_all {
- background-position: -428px -421px;
-}
-.glyphicons-icon.font {
- background-position: 4px -469px;
-}
-.glyphicons-icon.italic {
- background-position: -44px -469px;
-}
-.glyphicons-icon.bold {
- background-position: -92px -469px;
-}
-.glyphicons-icon.text_underline {
- background-position: -140px -469px;
-}
-.glyphicons-icon.text_strike {
- background-position: -188px -469px;
-}
-.glyphicons-icon.text_height {
- background-position: -236px -469px;
-}
-.glyphicons-icon.text_width {
- background-position: -284px -469px;
-}
-.glyphicons-icon.text_resize {
- background-position: -332px -469px;
-}
-.glyphicons-icon.left_indent {
- background-position: -380px -469px;
-}
-.glyphicons-icon.right_indent {
- background-position: -428px -469px;
-}
-.glyphicons-icon.align_left {
- background-position: 4px -517px;
-}
-.glyphicons-icon.align_center {
- background-position: -44px -517px;
-}
-.glyphicons-icon.align_right {
- background-position: -92px -517px;
-}
-.glyphicons-icon.justify {
- background-position: -140px -517px;
-}
-.glyphicons-icon.list {
- background-position: -188px -517px;
-}
-.glyphicons-icon.text_smaller {
- background-position: -236px -517px;
-}
-.glyphicons-icon.text_bigger {
- background-position: -284px -517px;
-}
-.glyphicons-icon.embed {
- background-position: -332px -517px;
-}
-.glyphicons-icon.embed_close {
- background-position: -380px -517px;
-}
-.glyphicons-icon.table {
- background-position: -428px -517px;
-}
-.glyphicons-icon.message_full {
- background-position: 4px -565px;
-}
-.glyphicons-icon.message_empty {
- background-position: -44px -565px;
-}
-.glyphicons-icon.message_in {
- background-position: -92px -565px;
-}
-.glyphicons-icon.message_out {
- background-position: -140px -565px;
-}
-.glyphicons-icon.message_plus {
- background-position: -188px -565px;
-}
-.glyphicons-icon.message_minus {
- background-position: -236px -565px;
-}
-.glyphicons-icon.message_ban {
- background-position: -284px -565px;
-}
-.glyphicons-icon.message_flag {
- background-position: -332px -565px;
-}
-.glyphicons-icon.message_lock {
- background-position: -380px -565px;
-}
-.glyphicons-icon.message_new {
- background-position: -428px -565px;
-}
-.glyphicons-icon.inbox {
- background-position: 4px -613px;
-}
-.glyphicons-icon.inbox_plus {
- background-position: -44px -613px;
-}
-.glyphicons-icon.inbox_minus {
- background-position: -92px -613px;
-}
-.glyphicons-icon.inbox_lock {
- background-position: -140px -613px;
-}
-.glyphicons-icon.inbox_in {
- background-position: -188px -613px;
-}
-.glyphicons-icon.inbox_out {
- background-position: -236px -613px;
-}
-.glyphicons-icon.cogwheel {
- background-position: -284px -613px;
-}
-.glyphicons-icon.cogwheels {
- background-position: -332px -613px;
-}
-.glyphicons-icon.picture {
- background-position: -380px -613px;
-}
-.glyphicons-icon.adjust_alt {
- background-position: -428px -613px;
-}
-.glyphicons-icon.database_lock {
- background-position: 4px -661px;
-}
-.glyphicons-icon.database_plus {
- background-position: -44px -661px;
-}
-.glyphicons-icon.database_minus {
- background-position: -92px -661px;
-}
-.glyphicons-icon.database_ban {
- background-position: -140px -661px;
-}
-.glyphicons-icon.folder_open {
- background-position: -188px -661px;
-}
-.glyphicons-icon.folder_plus {
- background-position: -236px -661px;
-}
-.glyphicons-icon.folder_minus {
- background-position: -284px -661px;
-}
-.glyphicons-icon.folder_lock {
- background-position: -332px -661px;
-}
-.glyphicons-icon.folder_flag {
- background-position: -380px -661px;
-}
-.glyphicons-icon.folder_new {
- background-position: -428px -661px;
-}
-.glyphicons-icon.edit {
- background-position: 4px -709px;
-}
-.glyphicons-icon.new_window {
- background-position: -44px -709px;
-}
-.glyphicons-icon.check {
- background-position: -92px -709px;
-}
-.glyphicons-icon.unchecked {
- background-position: -140px -709px;
-}
-.glyphicons-icon.more_windows {
- background-position: -188px -709px;
-}
-.glyphicons-icon.show_big_thumbnails {
- background-position: -236px -709px;
-}
-.glyphicons-icon.show_thumbnails {
- background-position: -284px -709px;
-}
-.glyphicons-icon.show_thumbnails_with_lines {
- background-position: -332px -709px;
-}
-.glyphicons-icon.show_lines {
- background-position: -380px -709px;
-}
-.glyphicons-icon.playlist {
- background-position: -428px -709px;
-}
-.glyphicons-icon.imac {
- background-position: 4px -757px;
-}
-.glyphicons-icon.macbook {
- background-position: -44px -757px;
-}
-.glyphicons-icon.ipad {
- background-position: -92px -757px;
-}
-.glyphicons-icon.iphone {
- background-position: -140px -757px;
-}
-.glyphicons-icon.iphone_transfer {
- background-position: -188px -757px;
-}
-.glyphicons-icon.iphone_exchange {
- background-position: -236px -757px;
-}
-.glyphicons-icon.ipod {
- background-position: -284px -757px;
-}
-.glyphicons-icon.ipod_shuffle {
- background-position: -332px -757px;
-}
-.glyphicons-icon.ear_plugs {
- background-position: -380px -757px;
-}
-.glyphicons-icon.phone {
- background-position: -428px -757px;
-}
-.glyphicons-icon.step_backward {
- background-position: 4px -805px;
-}
-.glyphicons-icon.fast_backward {
- background-position: -44px -805px;
-}
-.glyphicons-icon.rewind {
- background-position: -92px -805px;
-}
-.glyphicons-icon.play {
- background-position: -140px -805px;
-}
-.glyphicons-icon.pause {
- background-position: -188px -805px;
-}
-.glyphicons-icon.stop {
- background-position: -236px -805px;
-}
-.glyphicons-icon.forward {
- background-position: -284px -805px;
-}
-.glyphicons-icon.fast_forward {
- background-position: -332px -805px;
-}
-.glyphicons-icon.step_forward {
- background-position: -380px -805px;
-}
-.glyphicons-icon.eject {
- background-position: -428px -805px;
-}
-.glyphicons-icon.facetime_video {
- background-position: 4px -853px;
-}
-.glyphicons-icon.download_alt {
- background-position: -44px -853px;
-}
-.glyphicons-icon.mute {
- background-position: -92px -853px;
-}
-.glyphicons-icon.volume_down {
- background-position: -140px -853px;
-}
-.glyphicons-icon.volume_up {
- background-position: -188px -853px;
-}
-.glyphicons-icon.screenshot {
- background-position: -236px -853px;
-}
-.glyphicons-icon.move {
- background-position: -284px -853px;
-}
-.glyphicons-icon.more {
- background-position: -332px -853px;
-}
-.glyphicons-icon.brightness_reduce {
- background-position: -380px -853px;
-}
-.glyphicons-icon.brightness_increase {
- background-position: -428px -853px;
-}
-.glyphicons-icon.circle_plus {
- background-position: 4px -901px;
-}
-.glyphicons-icon.circle_minus {
- background-position: -44px -901px;
-}
-.glyphicons-icon.circle_remove {
- background-position: -92px -901px;
-}
-.glyphicons-icon.circle_ok {
- background-position: -140px -901px;
-}
-.glyphicons-icon.circle_question_mark {
- background-position: -188px -901px;
-}
-.glyphicons-icon.circle_info {
- background-position: -236px -901px;
-}
-.glyphicons-icon.circle_exclamation_mark {
- background-position: -284px -901px;
-}
-.glyphicons-icon.remove {
- background-position: -332px -901px;
-}
-.glyphicons-icon.ok {
- background-position: -380px -901px;
-}
-.glyphicons-icon.ban {
- background-position: -428px -901px;
-}
-.glyphicons-icon.download {
- background-position: 4px -949px;
-}
-.glyphicons-icon.upload {
- background-position: -44px -949px;
-}
-.glyphicons-icon.shopping_cart {
- background-position: -92px -949px;
-}
-.glyphicons-icon.lock {
- background-position: -140px -949px;
-}
-.glyphicons-icon.unlock {
- background-position: -188px -949px;
-}
-.glyphicons-icon.electricity {
- background-position: -236px -949px;
-}
-.glyphicons-icon.ok_2 {
- background-position: -284px -949px;
-}
-.glyphicons-icon.remove_2 {
- background-position: -332px -949px;
-}
-.glyphicons-icon.cart_out {
- background-position: -380px -949px;
-}
-.glyphicons-icon.cart_in {
- background-position: -428px -949px;
-}
-.glyphicons-icon.left_arrow {
- background-position: 4px -997px;
-}
-.glyphicons-icon.right_arrow {
- background-position: -44px -997px;
-}
-.glyphicons-icon.down_arrow {
- background-position: -92px -997px;
-}
-.glyphicons-icon.up_arrow {
- background-position: -140px -997px;
-}
-.glyphicons-icon.resize_small {
- background-position: -188px -997px;
-}
-.glyphicons-icon.resize_full {
- background-position: -236px -997px;
-}
-.glyphicons-icon.circle_arrow_left {
- background-position: -284px -997px;
-}
-.glyphicons-icon.circle_arrow_right {
- background-position: -332px -997px;
-}
-.glyphicons-icon.circle_arrow_top {
- background-position: -380px -997px;
-}
-.glyphicons-icon.circle_arrow_down {
- background-position: -428px -997px;
-}
-.glyphicons-icon.play_button {
- background-position: 4px -1045px;
-}
-.glyphicons-icon.unshare {
- background-position: -44px -1045px;
-}
-.glyphicons-icon.share {
- background-position: -92px -1045px;
-}
-.glyphicons-icon.chevron-right {
- background-position: -140px -1045px;
-}
-.glyphicons-icon.chevron-left {
- background-position: -188px -1045px;
-}
-.glyphicons-icon.bluetooth {
- background-position: -236px -1045px;
-}
-.glyphicons-icon.euro {
- background-position: -284px -1045px;
-}
-.glyphicons-icon.usd {
- background-position: -332px -1045px;
-}
-.glyphicons-icon.gbp {
- background-position: -380px -1045px;
-}
-.glyphicons-icon.retweet_2 {
- background-position: -428px -1045px;
-}
-.glyphicons-icon.moon {
- background-position: 4px -1093px;
-}
-.glyphicons-icon.sun {
- background-position: -44px -1093px;
-}
-.glyphicons-icon.cloud {
- background-position: -92px -1093px;
-}
-.glyphicons-icon.direction {
- background-position: -140px -1093px;
-}
-.glyphicons-icon.brush {
- background-position: -188px -1093px;
-}
-.glyphicons-icon.pen {
- background-position: -236px -1093px;
-}
-.glyphicons-icon.zoom_in {
- background-position: -284px -1093px;
-}
-.glyphicons-icon.zoom_out {
- background-position: -332px -1093px;
-}
-.glyphicons-icon.pin {
- background-position: -380px -1093px;
-}
-.glyphicons-icon.albums {
- background-position: -428px -1093px;
-}
-.glyphicons-icon.rotation_lock {
- background-position: 4px -1141px;
-}
-.glyphicons-icon.flash {
- background-position: -44px -1141px;
-}
-.glyphicons-icon.google_maps {
- background-position: -92px -1141px;
-}
-.glyphicons-icon.anchor {
- background-position: -140px -1141px;
-}
-.glyphicons-icon.conversation {
- background-position: -188px -1141px;
-}
-.glyphicons-icon.chat {
- background-position: -236px -1141px;
-}
-.glyphicons-icon.male {
- background-position: -284px -1141px;
-}
-.glyphicons-icon.female {
- background-position: -332px -1141px;
-}
-.glyphicons-icon.asterisk {
- background-position: -380px -1141px;
-}
-.glyphicons-icon.divide {
- background-position: -428px -1141px;
-}
-.glyphicons-icon.snorkel_diving {
- background-position: 4px -1189px;
-}
-.glyphicons-icon.scuba_diving {
- background-position: -44px -1189px;
-}
-.glyphicons-icon.oxygen_bottle {
- background-position: -92px -1189px;
-}
-.glyphicons-icon.fins {
- background-position: -140px -1189px;
-}
-.glyphicons-icon.fishes {
- background-position: -188px -1189px;
-}
-.glyphicons-icon.boat {
- background-position: -236px -1189px;
-}
-.glyphicons-icon.delete {
- background-position: -284px -1189px;
-}
-.glyphicons-icon.sheriffs_star {
- background-position: -332px -1189px;
-}
-.glyphicons-icon.qrcode {
- background-position: -380px -1189px;
-}
-.glyphicons-icon.barcode {
- background-position: -428px -1189px;
-}
-.glyphicons-icon.pool {
- background-position: 4px -1237px;
-}
-.glyphicons-icon.buoy {
- background-position: -44px -1237px;
-}
-.glyphicons-icon.spade {
- background-position: -92px -1237px;
-}
-.glyphicons-icon.bank {
- background-position: -140px -1237px;
-}
-.glyphicons-icon.vcard {
- background-position: -188px -1237px;
-}
-.glyphicons-icon.electrical_plug {
- background-position: -236px -1237px;
-}
-.glyphicons-icon.flag {
- background-position: -284px -1237px;
-}
-.glyphicons-icon.credit_card {
- background-position: -332px -1237px;
-}
-.glyphicons-icon.keyboard-wireless {
- background-position: -380px -1237px;
-}
-.glyphicons-icon.keyboard-wired {
- background-position: -428px -1237px;
-}
-.glyphicons-icon.shield {
- background-position: 4px -1285px;
-}
-.glyphicons-icon.ring {
- background-position: -44px -1285px;
-}
-.glyphicons-icon.cake {
- background-position: -92px -1285px;
-}
-.glyphicons-icon.drink {
- background-position: -140px -1285px;
-}
-.glyphicons-icon.beer {
- background-position: -188px -1285px;
-}
-.glyphicons-icon.fast_food {
- background-position: -236px -1285px;
-}
-.glyphicons-icon.cutlery {
- background-position: -284px -1285px;
-}
-.glyphicons-icon.pizza {
- background-position: -332px -1285px;
-}
-.glyphicons-icon.birthday_cake {
- background-position: -380px -1285px;
-}
-.glyphicons-icon.tablet {
- background-position: -428px -1285px;
-}
-.glyphicons-icon.settings {
- background-position: 4px -1333px;
-}
-.glyphicons-icon.bullets {
- background-position: -44px -1333px;
-}
-.glyphicons-icon.cardio {
- background-position: -92px -1333px;
-}
-.glyphicons-icon.t-shirt {
- background-position: -140px -1333px;
-}
-.glyphicons-icon.pants {
- background-position: -188px -1333px;
-}
-.glyphicons-icon.sweater {
- background-position: -236px -1333px;
-}
-.glyphicons-icon.fabric {
- background-position: -284px -1333px;
-}
-.glyphicons-icon.leather {
- background-position: -332px -1333px;
-}
-.glyphicons-icon.scissors {
- background-position: -380px -1333px;
-}
-.glyphicons-icon.bomb {
- background-position: -428px -1333px;
-}
-.glyphicons-icon.skull {
- background-position: 4px -1381px;
-}
-.glyphicons-icon.celebration {
- background-position: -44px -1381px;
-}
-.glyphicons-icon.tea_kettle {
- background-position: -92px -1381px;
-}
-.glyphicons-icon.french_press {
- background-position: -140px -1381px;
-}
-.glyphicons-icon.coffe_cup {
- background-position: -188px -1381px;
-}
-.glyphicons-icon.pot {
- background-position: -236px -1381px;
-}
-.glyphicons-icon.grater {
- background-position: -284px -1381px;
-}
-.glyphicons-icon.kettle {
- background-position: -332px -1381px;
-}
-.glyphicons-icon.hospital {
- background-position: -380px -1381px;
-}
-.glyphicons-icon.hospital_h {
- background-position: -428px -1381px;
-}
-.glyphicons-icon.microphone {
- background-position: 4px -1429px;
-}
-.glyphicons-icon.webcam {
- background-position: -44px -1429px;
-}
-.glyphicons-icon.temple_christianity_church {
- background-position: -92px -1429px;
-}
-.glyphicons-icon.temple_islam {
- background-position: -140px -1429px;
-}
-.glyphicons-icon.temple_hindu {
- background-position: -188px -1429px;
-}
-.glyphicons-icon.temple_buddhist {
- background-position: -236px -1429px;
-}
-.glyphicons-icon.bicycle {
- background-position: -284px -1429px;
-}
-.glyphicons-icon.life_preserver {
- background-position: -332px -1429px;
-}
-.glyphicons-icon.share_alt {
- background-position: -380px -1429px;
-}
-.glyphicons-icon.comments {
- background-position: -428px -1429px;
-}
-.glyphicons-icon.flower {
- background-position: 4px -1477px;
-}
-.glyphicons-icon.baseball {
- background-position: -44px -1477px;
-}
-.glyphicons-icon.rugby {
- background-position: -92px -1477px;
-}
-.glyphicons-icon.ax {
- background-position: -140px -1477px;
-}
-.glyphicons-icon.table_tennis {
- background-position: -188px -1477px;
-}
-.glyphicons-icon.bowling {
- background-position: -236px -1477px;
-}
-.glyphicons-icon.tree_conifer {
- background-position: -284px -1477px;
-}
-.glyphicons-icon.tree_deciduous {
- background-position: -332px -1477px;
-}
-.glyphicons-icon.more_items {
- background-position: -380px -1477px;
-}
-.glyphicons-icon.sort {
- background-position: -428px -1477px;
-}
-.glyphicons-icon.filter {
- background-position: 4px -1525px;
-}
-.glyphicons-icon.gamepad {
- background-position: -44px -1525px;
-}
-.glyphicons-icon.playing_dices {
- background-position: -92px -1525px;
-}
-.glyphicons-icon.calculator {
- background-position: -140px -1525px;
-}
-.glyphicons-icon.tie {
- background-position: -188px -1525px;
-}
-.glyphicons-icon.wallet {
- background-position: -236px -1525px;
-}
-.glyphicons-icon.piano {
- background-position: -284px -1525px;
-}
-.glyphicons-icon.sampler {
- background-position: -332px -1525px;
-}
-.glyphicons-icon.podium {
- background-position: -380px -1525px;
-}
-.glyphicons-icon.soccer_ball {
- background-position: -428px -1525px;
-}
-.glyphicons-icon.blog {
- background-position: 4px -1573px;
-}
-.glyphicons-icon.dashboard {
- background-position: -44px -1573px;
-}
-.glyphicons-icon.certificate {
- background-position: -92px -1573px;
-}
-.glyphicons-icon.bell {
- background-position: -140px -1573px;
-}
-.glyphicons-icon.candle {
- background-position: -188px -1573px;
-}
-.glyphicons-icon.pushpin {
- background-position: -236px -1573px;
-}
-.glyphicons-icon.iphone_shake {
- background-position: -284px -1573px;
-}
-.glyphicons-icon.pin_flag {
- background-position: -332px -1573px;
-}
-.glyphicons-icon.turtle {
- background-position: -380px -1573px;
-}
-.glyphicons-icon.rabbit {
- background-position: -428px -1573px;
-}
-.glyphicons-icon.globe {
- background-position: 4px -1621px;
-}
-.glyphicons-icon.briefcase {
- background-position: -44px -1621px;
-}
-.glyphicons-icon.hdd {
- background-position: -92px -1621px;
-}
-.glyphicons-icon.thumbs_up {
- background-position: -140px -1621px;
-}
-.glyphicons-icon.thumbs_down {
- background-position: -188px -1621px;
-}
-.glyphicons-icon.hand_right {
- background-position: -236px -1621px;
-}
-.glyphicons-icon.hand_left {
- background-position: -284px -1621px;
-}
-.glyphicons-icon.hand_up {
- background-position: -332px -1621px;
-}
-.glyphicons-icon.hand_down {
- background-position: -380px -1621px;
-}
-.glyphicons-icon.fullscreen {
- background-position: -428px -1621px;
-}
-.glyphicons-icon.shopping_bag {
- background-position: 4px -1669px;
-}
-.glyphicons-icon.book_open {
- background-position: -44px -1669px;
-}
-.glyphicons-icon.nameplate {
- background-position: -92px -1669px;
-}
-.glyphicons-icon.nameplate_alt {
- background-position: -140px -1669px;
-}
-.glyphicons-icon.vases {
- background-position: -188px -1669px;
-}
-.glyphicons-icon.bullhorn {
- background-position: -236px -1669px;
-}
-.glyphicons-icon.dumbbell {
- background-position: -284px -1669px;
-}
-.glyphicons-icon.suitcase {
- background-position: -332px -1669px;
-}
-.glyphicons-icon.file_import {
- background-position: -380px -1669px;
-}
-.glyphicons-icon.file_export {
- background-position: -428px -1669px;
-}
-.glyphicons-icon.bug {
- background-position: 4px -1717px;
-}
-.glyphicons-icon.crown {
- background-position: -44px -1717px;
-}
-.glyphicons-icon.smoking {
- background-position: -92px -1717px;
-}
-.glyphicons-icon.cloud-upload {
- background-position: -140px -1717px;
-}
-.glyphicons-icon.cloud-download {
- background-position: -188px -1717px;
-}
-.glyphicons-icon.restart {
- background-position: -236px -1717px;
-}
-.glyphicons-icon.security_camera {
- background-position: -284px -1717px;
-}
-.glyphicons-icon.expand {
- background-position: -332px -1717px;
-}
-.glyphicons-icon.collapse {
- background-position: -380px -1717px;
-}
-.glyphicons-icon.collapse_top {
- background-position: -428px -1717px;
-}
-.glyphicons-icon.globe_af {
- background-position: 4px -1765px;
-}
-.glyphicons-icon.global {
- background-position: -44px -1765px;
-}
-.glyphicons-icon.spray {
- background-position: -92px -1765px;
-}
-.glyphicons-icon.nails {
- background-position: -140px -1765px;
-}
-.glyphicons-icon.claw_hammer {
- background-position: -188px -1765px;
-}
-.glyphicons-icon.classic_hammer {
- background-position: -236px -1765px;
-}
-.glyphicons-icon.hand_saw {
- background-position: -284px -1765px;
-}
-.glyphicons-icon.riflescope {
- background-position: -332px -1765px;
-}
-.glyphicons-icon.electrical_socket_eu {
- background-position: -380px -1765px;
-}
-.glyphicons-icon.electrical_socket_us {
- background-position: -428px -1765px;
-}
-.glyphicons-icon.pinterest {
- background-position: 4px -1813px;
-}
-.glyphicons-icon.dropbox {
- background-position: -44px -1813px;
-}
-.glyphicons-icon.google_plus {
- background-position: -92px -1813px;
-}
-.glyphicons-icon.jolicloud {
- background-position: -140px -1813px;
-}
-.glyphicons-icon.yahoo {
- background-position: -188px -1813px;
-}
-.glyphicons-icon.blogger {
- background-position: -236px -1813px;
-}
-.glyphicons-icon.picasa {
- background-position: -284px -1813px;
-}
-.glyphicons-icon.amazon {
- background-position: -332px -1813px;
-}
-.glyphicons-icon.tumblr {
- background-position: -380px -1813px;
-}
-.glyphicons-icon.wordpress {
- background-position: -428px -1813px;
-}
-.glyphicons-icon.instapaper {
- background-position: 4px -1861px;
-}
-.glyphicons-icon.evernote {
- background-position: -44px -1861px;
-}
-.glyphicons-icon.xing {
- background-position: -92px -1861px;
-}
-.glyphicons-icon.zootool {
- background-position: -140px -1861px;
-}
-.glyphicons-icon.dribbble {
- background-position: -188px -1861px;
-}
-.glyphicons-icon.deviantart {
- background-position: -236px -1861px;
-}
-.glyphicons-icon.read_it_later {
- background-position: -284px -1861px;
-}
-.glyphicons-icon.linked_in {
- background-position: -332px -1861px;
-}
-.glyphicons-icon.forrst {
- background-position: -380px -1861px;
-}
-.glyphicons-icon.pinboard {
- background-position: -428px -1861px;
-}
-.glyphicons-icon.behance {
- background-position: 4px -1909px;
-}
-.glyphicons-icon.github {
- background-position: -44px -1909px;
-}
-.glyphicons-icon.youtube {
- background-position: -92px -1909px;
-}
-.glyphicons-icon.skitch {
- background-position: -140px -1909px;
-}
-.glyphicons-icon.foursquare {
- background-position: -188px -1909px;
-}
-.glyphicons-icon.quora {
- background-position: -236px -1909px;
-}
-.glyphicons-icon.badoo {
- background-position: -284px -1909px;
-}
-.glyphicons-icon.spotify {
- background-position: -332px -1909px;
-}
-.glyphicons-icon.stumbleupon {
- background-position: -380px -1909px;
-}
-.glyphicons-icon.readability {
- background-position: -428px -1909px;
-}
-.glyphicons-icon.facebook {
- background-position: 4px -1957px;
-}
-.glyphicons-icon.twitter {
- background-position: -44px -1957px;
-}
-.glyphicons-icon.instagram {
- background-position: -92px -1957px;
-}
-.glyphicons-icon.posterous_spaces {
- background-position: -140px -1957px;
-}
-.glyphicons-icon.vimeo {
- background-position: -188px -1957px;
-}
-.glyphicons-icon.flickr {
- background-position: -236px -1957px;
-}
-.glyphicons-icon.last_fm {
- background-position: -284px -1957px;
-}
-.glyphicons-icon.rss {
- background-position: -332px -1957px;
-}
-.glyphicons-icon.skype {
- background-position: -380px -1957px;
-}
-.glyphicons-icon.e-mail {
- background-position: -428px -1957px;
-}
diff --git a/assets/plugins/glyphicons/css/style.css b/assets/plugins/glyphicons/css/style.css
deleted file mode 100644
index 400f5d6..0000000
--- a/assets/plugins/glyphicons/css/style.css
+++ /dev/null
@@ -1 +0,0 @@
-article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}html,body{margin:0;padding:0}h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,em,img,q,s,samp,small,strike,strong,sub,sup,tt,var,dd,dl,dt,li,ol,ul,fieldset,form,label,legend,button,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-size:100%;line-height:1;font-family:inherit}html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:hover,a:active{outline:0}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{-ms-interpolation-mode:bicubic}html,body{height:100%}body{background:#fff;margin:0;font-size:14px;color:#000;padding:20px 20px}h2{margin:0 0 5px 0;font-size:27px}p,.glyphicons{display:inline-block;*display:inline;*zoom:1;width:240px;font-size:18px;line-height:48px}p i:before,.glyphicons i:before{line-height:55px!important}p{width:275px;line-height:48px}.white-content{margin:0 -20px 0 -20px;padding:20px;background:#000;background:rgba(0,0,0,0.9)}.white-content *,.white-content p,.white-content a{color:#fff}
\ No newline at end of file
diff --git a/assets/plugins/glyphicons/fonts/glyphicons-regular.eot b/assets/plugins/glyphicons/fonts/glyphicons-regular.eot
deleted file mode 100644
index c73cdd8..0000000
Binary files a/assets/plugins/glyphicons/fonts/glyphicons-regular.eot and /dev/null differ
diff --git a/assets/plugins/glyphicons/fonts/glyphicons-regular.otf b/assets/plugins/glyphicons/fonts/glyphicons-regular.otf
deleted file mode 100644
index b428a69..0000000
Binary files a/assets/plugins/glyphicons/fonts/glyphicons-regular.otf and /dev/null differ
diff --git a/assets/plugins/glyphicons/fonts/glyphicons-regular.svg b/assets/plugins/glyphicons/fonts/glyphicons-regular.svg
deleted file mode 100644
index d84cf19..0000000
--- a/assets/plugins/glyphicons/fonts/glyphicons-regular.svg
+++ /dev/null
@@ -1,435 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/glyphicons/fonts/glyphicons-regular.ttf b/assets/plugins/glyphicons/fonts/glyphicons-regular.ttf
deleted file mode 100644
index 42d0591..0000000
Binary files a/assets/plugins/glyphicons/fonts/glyphicons-regular.ttf and /dev/null differ
diff --git a/assets/plugins/glyphicons/fonts/glyphicons-regular.woff b/assets/plugins/glyphicons/fonts/glyphicons-regular.woff
deleted file mode 100644
index 6d892ed..0000000
Binary files a/assets/plugins/glyphicons/fonts/glyphicons-regular.woff and /dev/null differ
diff --git a/assets/plugins/glyphicons/images/glyphicons-white.png b/assets/plugins/glyphicons/images/glyphicons-white.png
deleted file mode 100644
index 327f949..0000000
Binary files a/assets/plugins/glyphicons/images/glyphicons-white.png and /dev/null differ
diff --git a/assets/plugins/glyphicons/images/glyphicons-white.svg b/assets/plugins/glyphicons/images/glyphicons-white.svg
deleted file mode 100644
index a2be78a..0000000
--- a/assets/plugins/glyphicons/images/glyphicons-white.svg
+++ /dev/null
@@ -1,4259 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/plugins/glyphicons/images/glyphicons.png b/assets/plugins/glyphicons/images/glyphicons.png
deleted file mode 100644
index 68fe6a5..0000000
Binary files a/assets/plugins/glyphicons/images/glyphicons.png and /dev/null differ
diff --git a/assets/plugins/glyphicons/images/glyphicons.svg b/assets/plugins/glyphicons/images/glyphicons.svg
deleted file mode 100644
index a05dbd2..0000000
--- a/assets/plugins/glyphicons/images/glyphicons.svg
+++ /dev/null
@@ -1,4157 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/plugins/glyphicons/index.html b/assets/plugins/glyphicons/index.html
deleted file mode 100644
index 0c73c79..0000000
--- a/assets/plugins/glyphicons/index.html
+++ /dev/null
@@ -1,1718 +0,0 @@
-
-
-
-
-
-
- Glyphicons
-
-
-
-
-
-
-
-
-
-
-
- Image
- glass
- leaf
- dog
- user
- girl
- car
- user_add
- user_remove
- film
- magic
- envelope
- camera
- heart
- beach_umbrella
- train
- print
- bin
- music
- note
- heart_empty
- home
- snowflake
- fire
- magnet
- parents
- binoculars
- road
- search
- cars
- notes_2
- pencil
- bus
- wifi_alt
- luggage
- old_man
- woman
- file
- coins
- airplane
- notes
- stats
- charts
- pie_chart
- group
- keys
- calendar
- router
- camera_small
- dislikes
- star
- link
- eye_open
- eye_close
- alarm
- clock
- stopwatch
- projector
- history
- truck
- cargo
- compass
- keynote
- paperclip
- power
- lightbulb
- tag
- tags
- cleaning
- ruller
- gift
- umbrella
- book
- bookmark
- wifi
- cup
- stroller
- headphones
- headset
- warning_sign
- signal
- retweet
- refresh
- roundabout
- random
- heat
- repeat
- display
- log_book
- adress_book
- building
- eyedropper
- adjust
- tint
- crop
- vector_path_square
- vector_path_circle
- vector_path_polygon
- vector_path_line
- vector_path_curve
- vector_path_all
- font
- italic
- bold
- text_underline
- text_strike
- text_height
- text_width
- text_resize
- left_indent
- right_indent
- align_left
- align_center
- align_right
- justify
- list
- text_smaller
- text_bigger
- embed
- embed_close
- table
- message_full
- message_empty
- message_in
- message_out
- message_plus
- message_minus
- message_ban
- message_flag
- message_lock
- message_new
- inbox
- inbox_plus
- inbox_minus
- inbox_lock
- inbox_in
- inbox_out
- cogwheel
- cogwheels
- picture
- adjust_alt
- database_lock
- database_plus
- database_minus
- database_ban
- folder_open
- folder_plus
- folder_minus
- folder_lock
- folder_flag
- folder_new
- edit
- new_window
- check
- unchecked
- more_windows
- show_big_thumbnails
- show_thumbnails
- show_thumbnails_with_lines
- show_lines
- playlist
- imac
- macbook
- ipad
- iphone
- iphone_transfer
- iphone_exchange
- ipod
- ipod_shuffle
- ear_plugs
- phone
- step_backward
- fast_backward
- rewind
- play
- pause
- stop
- forward
- fast_forward
- step_forward
- eject
- facetime_video
- download_alt
- mute
- volume_down
- volume_up
- screenshot
- move
- more
- brightness_reduce
- brightness_increase
- circle_plus
- circle_minus
- circle_remove
- circle_ok
- circle_question_mark
- circle_info
- circle_exclamation_mark
- remove
- ok
- ban
- download
- upload
- shopping_cart
- lock
- unlock
- electricity
- ok_2
- remove_2
- cart_out
- cart_in
- left_arrow
- right_arrow
- down_arrow
- up_arrow
- resize_small
- resize_full
- circle_arrow_left
- circle_arrow_right
- circle_arrow_top
- circle_arrow_down
- play_button
- unshare
- share
- chevron-right
- chevron-left
- bluetooth
- euro
- usd
- gbp
- retweet_2
- moon
- sun
- cloud
- direction
- brush
- pen
- zoom_in
- zoom_out
- pin
- albums
- rotation_lock
- flash
- google_maps
- anchor
- conversation
- chat
- male
- female
- asterisk
- divide
- snorkel_diving
- scuba_diving
- oxygen_bottle
- fins
- fishes
- boat
- delete
- sheriffs_star
- qrcode
- barcode
- pool
- buoy
- spade
- bank
- vcard
- electrical_plug
- flag
- credit_card
- keyboard-wireless
- keyboard-wired
- shield
- ring
- cake
- drink
- beer
- fast_food
- cutlery
- pizza
- birthday_cake
- tablet
- settings
- bullets
- cardio
- t-shirt
- pants
- sweater
- fabric
- leather
- scissors
- bomb
- skull
- celebration
- tea_kettle
- french_press
- coffe_cup
- pot
- grater
- kettle
- hospital
- hospital_h
- microphone
- webcam
- temple_christianity_church
- temple_islam
- temple_hindu
- temple_buddhist
- bicycle
- life_preserver
- share_alt
- comments
- flower
- baseball
- rugby
- ax
- table_tennis
- bowling
- tree_conifer
- tree_deciduous
- more_items
- sort
- filter
- gamepad
- playing_dices
- calculator
- tie
- wallet
- piano
- sampler
- podium
- soccer_ball
- blog
- dashboard
- certificate
- bell
- candle
- pushpin
- iphone_shake
- pin_flag
- turtle
- rabbit
- globe
- briefcase
- hdd
- thumbs_up
- thumbs_down
- hand_right
- hand_left
- hand_up
- hand_down
- fullscreen
- shopping_bag
- book_open
- nameplate
- nameplate_alt
- vases
- bullhorn
- dumbbell
- suitcase
- file_import
- file_export
- bug
- crown
- smoking
- cloud-upload
- cloud-download
- restart
- security_camera
- expand
- collapse
- collapse_top
- globe_af
- global
- spray
- nails
- claw_hammer
- classic_hammer
- hand_saw
- riflescope
- electrical_socket_eu
- electrical_socket_us
- pinterest
- dropbox
- google_plus
- jolicloud
- yahoo
- blogger
- picasa
- amazon
- tumblr
- wordpress
- instapaper
- evernote
- xing
- zootool
- dribbble
- deviantart
- read_it_later
- linked_in
- forrst
- pinboard
- behance
- github
- youtube
- skitch
- foursquare
- quora
- badoo
- spotify
- stumbleupon
- readability
- facebook
- twitter
- instagram
- posterous_spaces
- vimeo
- flickr
- last_fm
- rss
- skype
- e-mail
-
-
-
-
-
Image - white
-
glass
-
leaf
-
dog
-
user
-
girl
-
car
-
user_add
-
user_remove
-
film
-
magic
-
envelope
-
camera
-
heart
-
beach_umbrella
-
train
-
print
-
bin
-
music
-
note
-
heart_empty
-
home
-
snowflake
-
fire
-
magnet
-
parents
-
binoculars
-
road
-
search
-
cars
-
notes_2
-
pencil
-
bus
-
wifi_alt
-
luggage
-
old_man
-
woman
-
file
-
coins
-
airplane
-
notes
-
stats
-
charts
-
pie_chart
-
group
-
keys
-
calendar
-
router
-
camera_small
-
dislikes
-
star
-
link
-
eye_open
-
eye_close
-
alarm
-
clock
-
stopwatch
-
projector
-
history
-
truck
-
cargo
-
compass
-
keynote
-
paperclip
-
power
-
lightbulb
-
tag
-
tags
-
cleaning
-
ruller
-
gift
-
umbrella
-
book
-
bookmark
-
wifi
-
cup
-
stroller
-
headphones
-
headset
-
warning_sign
-
signal
-
retweet
-
refresh
-
roundabout
-
random
-
heat
-
repeat
-
display
-
log_book
-
adress_book
-
building
-
eyedropper
-
adjust
-
tint
-
crop
-
vector_path_square
-
vector_path_circle
-
vector_path_polygon
-
vector_path_line
-
vector_path_curve
-
vector_path_all
-
font
-
italic
-
bold
-
text_underline
-
text_strike
-
text_height
-
text_width
-
text_resize
-
left_indent
-
right_indent
-
align_left
-
align_center
-
align_right
-
justify
-
list
-
text_smaller
-
text_bigger
-
embed
-
embed_close
-
table
-
message_full
-
message_empty
-
message_in
-
message_out
-
message_plus
-
message_minus
-
message_ban
-
message_flag
-
message_lock
-
message_new
-
inbox
-
inbox_plus
-
inbox_minus
-
inbox_lock
-
inbox_in
-
inbox_out
-
cogwheel
-
cogwheels
-
picture
-
adjust_alt
-
database_lock
-
database_plus
-
database_minus
-
database_ban
-
folder_open
-
folder_plus
-
folder_minus
-
folder_lock
-
folder_flag
-
folder_new
-
edit
-
new_window
-
check
-
unchecked
-
more_windows
-
show_big_thumbnails
-
show_thumbnails
-
show_thumbnails_with_lines
-
show_lines
-
playlist
-
imac
-
macbook
-
ipad
-
iphone
-
iphone_transfer
-
iphone_exchange
-
ipod
-
ipod_shuffle
-
ear_plugs
-
phone
-
step_backward
-
fast_backward
-
rewind
-
play
-
pause
-
stop
-
forward
-
fast_forward
-
step_forward
-
eject
-
facetime_video
-
download_alt
-
mute
-
volume_down
-
volume_up
-
screenshot
-
move
-
more
-
brightness_reduce
-
brightness_increase
-
circle_plus
-
circle_minus
-
circle_remove
-
circle_ok
-
circle_question_mark
-
circle_info
-
circle_exclamation_mark
-
remove
-
ok
-
ban
-
download
-
upload
-
shopping_cart
-
lock
-
unlock
-
electricity
-
ok_2
-
remove_2
-
cart_out
-
cart_in
-
left_arrow
-
right_arrow
-
down_arrow
-
up_arrow
-
resize_small
-
resize_full
-
circle_arrow_left
-
circle_arrow_right
-
circle_arrow_top
-
circle_arrow_down
-
play_button
-
unshare
-
share
-
chevron-right
-
chevron-left
-
bluetooth
-
euro
-
usd
-
gbp
-
retweet_2
-
moon
-
sun
-
cloud
-
direction
-
brush
-
pen
-
zoom_in
-
zoom_out
-
pin
-
albums
-
rotation_lock
-
flash
-
google_maps
-
anchor
-
conversation
-
chat
-
male
-
female
-
asterisk
-
divide
-
snorkel_diving
-
scuba_diving
-
oxygen_bottle
-
fins
-
fishes
-
boat
-
delete
-
sheriffs_star
-
qrcode
-
barcode
-
pool
-
buoy
-
spade
-
bank
-
vcard
-
electrical_plug
-
flag
-
credit_card
-
keyboard-wireless
-
keyboard-wired
-
shield
-
ring
-
cake
-
drink
-
beer
-
fast_food
-
cutlery
-
pizza
-
birthday_cake
-
tablet
-
settings
-
bullets
-
cardio
-
t-shirt
-
pants
-
sweater
-
fabric
-
leather
-
scissors
-
bomb
-
skull
-
celebration
-
tea_kettle
-
french_press
-
coffe_cup
-
pot
-
grater
-
kettle
-
hospital
-
hospital_h
-
microphone
-
webcam
-
temple_christianity_church
-
temple_islam
-
temple_hindu
-
temple_buddhist
-
bicycle
-
life_preserver
-
share_alt
-
comments
-
flower
-
baseball
-
rugby
-
ax
-
table_tennis
-
bowling
-
tree_conifer
-
tree_deciduous
-
more_items
-
sort
-
filter
-
gamepad
-
playing_dices
-
calculator
-
tie
-
wallet
-
piano
-
sampler
-
podium
-
soccer_ball
-
blog
-
dashboard
-
certificate
-
bell
-
candle
-
pushpin
-
iphone_shake
-
pin_flag
-
turtle
-
rabbit
-
globe
-
briefcase
-
hdd
-
thumbs_up
-
thumbs_down
-
hand_right
-
hand_left
-
hand_up
-
hand_down
-
fullscreen
-
shopping_bag
-
book_open
-
nameplate
-
nameplate_alt
-
vases
-
bullhorn
-
dumbbell
-
suitcase
-
file_import
-
file_export
-
bug
-
crown
-
smoking
-
cloud-upload
-
cloud-download
-
restart
-
security_camera
-
expand
-
collapse
-
collapse_top
-
globe_af
-
global
-
spray
-
nails
-
claw_hammer
-
classic_hammer
-
hand_saw
-
riflescope
-
electrical_socket_eu
-
electrical_socket_us
-
pinterest
-
dropbox
-
google_plus
-
jolicloud
-
yahoo
-
blogger
-
picasa
-
amazon
-
tumblr
-
wordpress
-
instapaper
-
evernote
-
xing
-
zootool
-
dribbble
-
deviantart
-
read_it_later
-
linked_in
-
forrst
-
pinboard
-
behance
-
github
-
youtube
-
skitch
-
foursquare
-
quora
-
badoo
-
spotify
-
stumbleupon
-
readability
-
facebook
-
twitter
-
instagram
-
posterous_spaces
-
vimeo
-
flickr
-
last_fm
-
rss
-
skype
-
e-mail
-
-
-
-
- Fonts
- glass
- leaf
- dog
- user
- girl
- car
- user_add
- user_remove
- film
- magic
- envelope
- camera
- heart
- beach_umbrella
- train
- print
- bin
- music
- note
- heart_empty
- home
- snowflake
- fire
- magnet
- parents
- binoculars
- road
- search
- cars
- notes_2
- pencil
- bus
- wifi_alt
- luggage
- old_man
- woman
- file
- coins
- airplane
- notes
- stats
- charts
- pie_chart
- group
- keys
- calendar
- router
- camera_small
- dislikes
- star
- link
- eye_open
- eye_close
- alarm
- clock
- stopwatch
- projector
- history
- truck
- cargo
- compass
- keynote
- paperclip
- power
- lightbulb
- tag
- tags
- cleaning
- ruller
- gift
- umbrella
- book
- bookmark
- wifi
- cup
- stroller
- headphones
- headset
- warning_sign
- signal
-
- refresh
- roundabout
- random
- heat
- repeat
- display
- log_book
- adress_book
- building
- eyedropper
- adjust
- tint
- crop
- vector_path_square
- vector_path_circle
- vector_path_polygon
- vector_path_line
- vector_path_curve
- vector_path_all
- font
- italic
- bold
- text_underline
- text_strike
- text_height
- text_width
- text_resize
- left_indent
- right_indent
- align_left
- align_center
- align_right
- justify
- list
- text_smaller
- text_bigger
- embed
- embed_close
- table
- message_full
- message_empty
- message_in
- message_out
- message_plus
- message_minus
- message_ban
- message_flag
- message_lock
- message_new
- inbox
- inbox_plus
- inbox_minus
- inbox_lock
- inbox_in
- inbox_out
- cogwheel
- cogwheels
- picture
- adjust_alt
- database_lock
- database_plus
- database_minus
- database_ban
- folder_open
- folder_plus
- folder_minus
- folder_lock
- folder_flag
- folder_new
- edit
- new_window
- check
- unchecked
- more_windows
- show_big_thumbnails
- show_thumbnails
- show_thumbnails_with_lines
- show_lines
- playlist
- imac
- macbook
- ipad
- iphone
- iphone_transfer
- iphone_exchange
- ipod
- ipod_shuffle
- ear_plugs
- phone
- step_backward
- fast_backward
- rewind
- play
- pause
- stop
- forward
- fast_forward
- step_forward
- eject
- facetime_video
- download_alt
- mute
- volume_down
- volume_up
- screenshot
- move
- more
- brightness_reduce
- brightness_increase
- circle_plus
- circle_minus
- circle_remove
- circle_ok
- circle_question_mark
- circle_info
- circle_exclamation_mark
- remove
- ok
- ban
- download
- upload
- shopping_cart
- lock
- unlock
- electricity
- ok_2
- remove_2
- cart_out
- cart_in
- left_arrow
- right_arrow
- down_arrow
- up_arrow
- resize_small
- resize_full
- circle_arrow_left
- circle_arrow_right
- circle_arrow_top
- circle_arrow_down
- play_button
- unshare
- share
- chevron-right
- chevron-left
- bluetooth
- euro
- usd
- gbp
-
- moon
- sun
- cloud
- direction
- brush
- pen
- zoom_in
- zoom_out
- pin
- albums
- rotation_lock
- flash
- google_maps
- anchor
- conversation
- chat
- male
- female
- asterisk
- divide
- snorkel_diving
- scuba_diving
- oxygen_bottle
- fins
- fishes
- boat
- delete
- sheriffs_star
- qrcode
- barcode
- pool
- buoy
- spade
- bank
- vcard
- electrical_plug
- flag
- credit_card
- keyboard-wireless
- keyboard-wired
- shield
- ring
- cake
- drink
- beer
- fast_food
- cutlery
- pizza
- birthday_cake
- tablet
- settings
- bullets
- cardio
- t-shirt
- pants
- sweater
- fabric
- leather
- scissors
- bomb
- skull
- celebration
- tea_kettle
- french_press
- coffe_cup
- pot
- grater
- kettle
- hospital
- hospital_h
- microphone
- webcam
- temple_christianity_church
- temple_islam
- temple_hindu
- temple_buddhist
- bicycle
- life_preserver
- share_alt
-
- flower
- baseball
- rugby
- ax
- table_tennis
- bowling
- tree_conifer
- tree_deciduous
- more_items
- sort
- filter
- gamepad
- playing_dices
- calculator
- tie
- wallet
- piano
- sampler
- podium
- soccer_ball
- blog
- dashboard
- certificate
- bell
- candle
- pushpin
- iphone_shake
- pin_flag
- turtle
- rabbit
- globe
- briefcase
- hdd
- thumbs_up
- thumbs_down
- hand_right
- hand_left
- hand_up
- hand_down
- fullscreen
- shopping_bag
- book_open
- nameplate
- nameplate_alt
- vases
- bullhorn
- dumbbell
- suitcase
- file_import
- file_export
- bug
- crown
- smoking
- cloud-upload
- cloud-download
- restart
- security_camera
- expand
- collapse
- collapse_top
- globe_af
- global
- spray
- nails
- claw_hammer
- classic_hammer
- hand_saw
- riflescope
- electrical_socket_eu
- electrical_socket_us
- pinterest
- dropbox
- google_plus
- jolicloud
- yahoo
- blogger
- picasa
- amazon
- tumblr
- wordpress
- instapaper
- evernote
- xing
- zootool
- dribbble
- deviantart
- read_it_later
- linked_in
- forrst
- pinboard
- behance
- github
- youtube
- skitch
- foursquare
- quora
- badoo
- spotify
- stumbleupon
- readability
- facebook
-
- instagram
- posterous_spaces
- vimeo
- flickr
- last_fm
-
- skype
- e-mail
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/assets/plugins/glyphicons/less/glyphicons.less b/assets/plugins/glyphicons/less/glyphicons.less
deleted file mode 100644
index 0f220b7..0000000
--- a/assets/plugins/glyphicons/less/glyphicons.less
+++ /dev/null
@@ -1,918 +0,0 @@
-/*!
- *
- * Project: GLYPHICONS
- * Author: Jan Kovarik - www.glyphicons.com
- * Twitter: @jankovarik
- *
- */
-
-// CHROME FONT FIX
-html, html .halflings {
- -webkit-font-smoothing: antialiased !important;
-}
-
-// IMPORT FONTS
-@font-face {
- font-family: 'Glyphicons';
- src: url('../fonts/glyphicons-regular.eot');
- src: url('../fonts/glyphicons-regular.eot?#iefix') format('embedded-opentype'),
- url('../fonts/glyphicons-regular.woff') format('woff'),
- url('../fonts/glyphicons-regular.ttf') format('truetype'),
- url('../fonts/glyphicons-regular.svg#glyphicons_halflingsregular') format('svg');
- font-weight: normal;
- font-style: normal;
-}
-
-// FONT ICONS
-.glyphicons{
- display: inline-block;
- position: relative;
- padding: 5px 0 5px 35px;
- color: #1d1d1b;
- text-decoration: none;
- *display: inline;
- *zoom: 1;
-
- i:before{
- position: absolute;
- left: 0;
- top: 0;
- font: 24px/1em 'Glyphicons';
- font-style: normal;
- color: #1d1d1b;
- }
- &.white{
- i:before{
- color: #fff;
- }
- }
-
- &.glass{ i:before{ content:"\e001"; } }
- &.leaf{ i:before{ content:"\e002"; } }
- &.dog{ i:before{ content:"\e003"; } }
- &.user{ i:before{ content:"\e004"; } }
- &.girl{ i:before{ content:"\e005"; } }
- &.car{ i:before{ content:"\e006"; } }
- &.user_add{ i:before{ content:"\e007"; } }
- &.user_remove{ i:before{ content:"\e008"; } }
- &.film{ i:before{ content:"\e009"; } }
- &.magic{ i:before{ content:"\e010"; } }
- &.envelope{ i:before{ content:"\2709"; } }
- &.camera{ i:before{ content:"\e012"; } }
- &.heart{ i:before{ content:"\e013"; } }
- &.beach_umbrella{ i:before{ content:"\e014"; } }
- &.train{ i:before{ content:"\e015"; } }
- &.print{ i:before{ content:"\e016"; } }
- &.bin{ i:before{ content:"\e017"; } }
- &.music{ i:before{ content:"\e018"; } }
- &.note{ i:before{ content:"\e019"; } }
- &.heart_empty{ i:before{ content:"\e020"; } }
- &.home{ i:before{ content:"\e021"; } }
- &.snowflake{ i:before{ content:"\2744"; } }
- &.fire{ i:before{ content:"\e023"; } }
- &.magnet{ i:before{ content:"\e024"; } }
- &.parents{ i:before{ content:"\e025"; } }
- &.binoculars{ i:before{ content:"\e026"; } }
- &.road{ i:before{ content:"\e027"; } }
- &.search{ i:before{ content:"\e028"; } }
- &.cars{ i:before{ content:"\e029"; } }
- &.notes_2{ i:before{ content:"\e030"; } }
- &.pencil{ i:before{ content:"\270F"; } }
- &.bus{ i:before{ content:"\e032"; } }
- &.wifi_alt{ i:before{ content:"\e033"; } }
- &.luggage{ i:before{ content:"\e034"; } }
- &.old_man{ i:before{ content:"\e035"; } }
- &.woman{ i:before{ content:"\e036"; } }
- &.file{ i:before{ content:"\e037"; } }
- &.coins{ i:before{ content:"\e038"; } }
- &.airplane{ i:before{ content:"\2708"; } }
- &.notes{ i:before{ content:"\e040"; } }
- &.stats{ i:before{ content:"\e041"; } }
- &.charts{ i:before{ content:"\e042"; } }
- &.pie_chart{ i:before{ content:"\e043"; } }
- &.group{ i:before{ content:"\e044"; } }
- &.keys{ i:before{ content:"\e045"; } }
- &.calendar{ i:before{ content:"\e046"; } }
- &.router{ i:before{ content:"\e047"; } }
- &.camera_small{ i:before{ content:"\e048"; } }
- &.dislikes{ i:before{ content:"\e049"; } }
- &.star{ i:before{ content:"\e050"; } }
- &.link{ i:before{ content:"\e051"; } }
- &.eye_open{ i:before{ content:"\e052"; } }
- &.eye_close{ i:before{ content:"\e053"; } }
- &.alarm{ i:before{ content:"\e054"; } }
- &.clock{ i:before{ content:"\e055"; } }
- &.stopwatch{ i:before{ content:"\e056"; } }
- &.projector{ i:before{ content:"\e057"; } }
- &.history{ i:before{ content:"\e058"; } }
- &.truck{ i:before{ content:"\e059"; } }
- &.cargo{ i:before{ content:"\e060"; } }
- &.compass{ i:before{ content:"\e061"; } }
- &.keynote{ i:before{ content:"\e062"; } }
- &.paperclip{ i:before{ content:"\e063"; } }
- &.power{ i:before{ content:"\e064"; } }
- &.lightbulb{ i:before{ content:"\e065"; } }
- &.tag{ i:before{ content:"\e066"; } }
- &.tags{ i:before{ content:"\e067"; } }
- &.cleaning{ i:before{ content:"\e068"; } }
- &.ruller{ i:before{ content:"\e069"; } }
- &.gift{ i:before{ content:"\e070"; } }
- &.umbrella{ i:before{ content:"\2602"; } }
- &.book{ i:before{ content:"\e072"; } }
- &.bookmark{ i:before{ content:"\e073"; } }
- &.wifi{ i:before{ content:"\e074"; } }
- &.cup{ i:before{ content:"\e075"; } }
- &.stroller{ i:before{ content:"\e076"; } }
- &.headphones{ i:before{ content:"\e077"; } }
- &.headset{ i:before{ content:"\e078"; } }
- &.warning_sign{ i:before{ content:"\e079"; } }
- &.signal{ i:before{ content:"\e080"; } }
- &.retweet{ i:before{ content:"\e081"; } }
- &.refresh{ i:before{ content:"\e082"; } }
- &.roundabout{ i:before{ content:"\e083"; } }
- &.random{ i:before{ content:"\e084"; } }
- &.heat{ i:before{ content:"\e085"; } }
- &.repeat{ i:before{ content:"\e086"; } }
- &.display{ i:before{ content:"\e087"; } }
- &.log_book{ i:before{ content:"\e088"; } }
- &.adress_book{ i:before{ content:"\e089"; } }
- &.building{ i:before{ content:"\e090"; } }
- &.eyedropper{ i:before{ content:"\e091"; } }
- &.adjust{ i:before{ content:"\e092"; } }
- &.tint{ i:before{ content:"\e093"; } }
- &.crop{ i:before{ content:"\e094"; } }
- &.vector_path_square{ i:before{ content:"\e095"; } }
- &.vector_path_circle{ i:before{ content:"\e096"; } }
- &.vector_path_polygon{ i:before{ content:"\e097"; } }
- &.vector_path_line{ i:before{ content:"\e098"; } }
- &.vector_path_curve{ i:before{ content:"\e099"; } }
- &.vector_path_all{ i:before{ content:"\e100"; } }
- &.font{ i:before{ content:"\e101"; } }
- &.italic{ i:before{ content:"\e102"; } }
- &.bold{ i:before{ content:"\e103"; } }
- &.text_underline{ i:before{ content:"\e104"; } }
- &.text_strike{ i:before{ content:"\e105"; } }
- &.text_height{ i:before{ content:"\e106"; } }
- &.text_width{ i:before{ content:"\e107"; } }
- &.text_resize{ i:before{ content:"\e108"; } }
- &.left_indent{ i:before{ content:"\e109"; } }
- &.right_indent{ i:before{ content:"\e110"; } }
- &.align_left{ i:before{ content:"\e111"; } }
- &.align_center{ i:before{ content:"\e112"; } }
- &.align_right{ i:before{ content:"\e113"; } }
- &.justify{ i:before{ content:"\e114"; } }
- &.list{ i:before{ content:"\e115"; } }
- &.text_smaller{ i:before{ content:"\e116"; } }
- &.text_bigger{ i:before{ content:"\e117"; } }
- &.embed{ i:before{ content:"\e118"; } }
- &.embed_close{ i:before{ content:"\e119"; } }
- &.table{ i:before{ content:"\e120"; } }
- &.message_full{ i:before{ content:"\e121"; } }
- &.message_empty{ i:before{ content:"\e122"; } }
- &.message_in{ i:before{ content:"\e123"; } }
- &.message_out{ i:before{ content:"\e124"; } }
- &.message_plus{ i:before{ content:"\e125"; } }
- &.message_minus{ i:before{ content:"\e126"; } }
- &.message_ban{ i:before{ content:"\e127"; } }
- &.message_flag{ i:before{ content:"\e128"; } }
- &.message_lock{ i:before{ content:"\e129"; } }
- &.message_new{ i:before{ content:"\e130"; } }
- &.inbox{ i:before{ content:"\e131"; } }
- &.inbox_plus{ i:before{ content:"\e132"; } }
- &.inbox_minus{ i:before{ content:"\e133"; } }
- &.inbox_lock{ i:before{ content:"\e134"; } }
- &.inbox_in{ i:before{ content:"\e135"; } }
- &.inbox_out{ i:before{ content:"\e136"; } }
- &.cogwheel{ i:before{ content:"\e137"; } }
- &.cogwheels{ i:before{ content:"\e138"; } }
- &.picture{ i:before{ content:"\e139"; } }
- &.adjust_alt{ i:before{ content:"\e140"; } }
- &.database_lock{ i:before{ content:"\e141"; } }
- &.database_plus{ i:before{ content:"\e142"; } }
- &.database_minus{ i:before{ content:"\e143"; } }
- &.database_ban{ i:before{ content:"\e144"; } }
- &.folder_open{ i:before{ content:"\e145"; } }
- &.folder_plus{ i:before{ content:"\e146"; } }
- &.folder_minus{ i:before{ content:"\e147"; } }
- &.folder_lock{ i:before{ content:"\e148"; } }
- &.folder_flag{ i:before{ content:"\e149"; } }
- &.folder_new{ i:before{ content:"\e150"; } }
- &.edit{ i:before{ content:"\e151"; } }
- &.new_window{ i:before{ content:"\e152"; } }
- &.check{ i:before{ content:"\e153"; } }
- &.unchecked{ i:before{ content:"\e154"; } }
- &.more_windows{ i:before{ content:"\e155"; } }
- &.show_big_thumbnails{ i:before{ content:"\e156"; } }
- &.show_thumbnails{ i:before{ content:"\e157"; } }
- &.show_thumbnails_with_lines{ i:before{ content:"\e158"; } }
- &.show_lines{ i:before{ content:"\e159"; } }
- &.playlist{ i:before{ content:"\e160"; } }
- &.imac{ i:before{ content:"\e161"; } }
- &.macbook{ i:before{ content:"\e162"; } }
- &.ipad{ i:before{ content:"\e163"; } }
- &.iphone{ i:before{ content:"\e164"; } }
- &.iphone_transfer{ i:before{ content:"\e165"; } }
- &.iphone_exchange{ i:before{ content:"\e166"; } }
- &.ipod{ i:before{ content:"\e167"; } }
- &.ipod_shuffle{ i:before{ content:"\e168"; } }
- &.ear_plugs{ i:before{ content:"\e169"; } }
- &.phone{ i:before{ content:"\e170"; } }
- &.step_backward{ i:before{ content:"\e171"; } }
- &.fast_backward{ i:before{ content:"\e172"; } }
- &.rewind{ i:before{ content:"\e173"; } }
- &.play{ i:before{ content:"\e174"; } }
- &.pause{ i:before{ content:"\e175"; } }
- &.stop{ i:before{ content:"\e176"; } }
- &.forward{ i:before{ content:"\e177"; } }
- &.fast_forward{ i:before{ content:"\e178"; } }
- &.step_forward{ i:before{ content:"\e179"; } }
- &.eject{ i:before{ content:"\e180"; } }
- &.facetime_video{ i:before{ content:"\e181"; } }
- &.download_alt{ i:before{ content:"\e182"; } }
- &.mute{ i:before{ content:"\e183"; } }
- &.volume_down{ i:before{ content:"\e184"; } }
- &.volume_up{ i:before{ content:"\e185"; } }
- &.screenshot{ i:before{ content:"\e186"; } }
- &.move{ i:before{ content:"\e187"; } }
- &.more{ i:before{ content:"\e188"; } }
- &.brightness_reduce{ i:before{ content:"\e189"; } }
- &.brightness_increase{ i:before{ content:"\e190"; } }
- &.circle_plus{ i:before{ content:"\e191"; } }
- &.circle_minus{ i:before{ content:"\e192"; } }
- &.circle_remove{ i:before{ content:"\e193"; } }
- &.circle_ok{ i:before{ content:"\e194"; } }
- &.circle_question_mark{ i:before{ content:"\e195"; } }
- &.circle_info{ i:before{ content:"\e196"; } }
- &.circle_exclamation_mark{ i:before{ content:"\e197"; } }
- &.remove{ i:before{ content:"\e198"; } }
- &.ok{ i:before{ content:"\e199"; } }
- &.ban{ i:before{ content:"\e200"; } }
- &.download{ i:before{ content:"\e201"; } }
- &.upload{ i:before{ content:"\e202"; } }
- &.shopping_cart{ i:before{ content:"\e203"; } }
- &.lock{ i:before{ content:"\e204"; } }
- &.unlock{ i:before{ content:"\e205"; } }
- &.electricity{ i:before{ content:"\e206"; } }
- &.ok_2{ i:before{ content:"\e207"; } }
- &.remove_2{ i:before{ content:"\e208"; } }
- &.cart_out{ i:before{ content:"\e209"; } }
- &.cart_in{ i:before{ content:"\e210"; } }
- &.left_arrow{ i:before{ content:"\e211"; } }
- &.right_arrow{ i:before{ content:"\e212"; } }
- &.down_arrow{ i:before{ content:"\e213"; } }
- &.up_arrow{ i:before{ content:"\e214"; } }
- &.resize_small{ i:before{ content:"\e215"; } }
- &.resize_full{ i:before{ content:"\e216"; } }
- &.circle_arrow_left{ i:before{ content:"\e217"; } }
- &.circle_arrow_right{ i:before{ content:"\e218"; } }
- &.circle_arrow_top{ i:before{ content:"\e219"; } }
- &.circle_arrow_down{ i:before{ content:"\e220"; } }
- &.play_button{ i:before{ content:"\e221"; } }
- &.unshare{ i:before{ content:"\e222"; } }
- &.share{ i:before{ content:"\e223"; } }
- &.chevron-right{ i:before{ content:"\e224"; } }
- &.chevron-left{ i:before{ content:"\e225"; } }
- &.bluetooth{ i:before{ content:"\e226"; } }
- &.euro{ i:before{ content:"\20AC"; } }
- &.usd{ i:before{ content:"\e228"; } }
- &.gbp{ i:before{ content:"\e229"; } }
- &.retweet_2{ i:before{ content:"\e230"; } }
- &.moon{ i:before{ content:"\e231"; } }
- &.sun{ i:before{ content:"\2609"; } }
- &.cloud{ i:before{ content:"\2601"; } }
- &.direction{ i:before{ content:"\e234"; } }
- &.brush{ i:before{ content:"\e235"; } }
- &.pen{ i:before{ content:"\e236"; } }
- &.zoom_in{ i:before{ content:"\e237"; } }
- &.zoom_out{ i:before{ content:"\e238"; } }
- &.pin{ i:before{ content:"\e239"; } }
- &.albums{ i:before{ content:"\e240"; } }
- &.rotation_lock{ i:before{ content:"\e241"; } }
- &.flash{ i:before{ content:"\e242"; } }
- &.google_maps{ i:before{ content:"\e243"; } }
- &.anchor{ i:before{ content:"\2693"; } }
- &.conversation{ i:before{ content:"\e245"; } }
- &.chat{ i:before{ content:"\e246"; } }
- &.male{ i:before{ content:"\e247"; } }
- &.female{ i:before{ content:"\e248"; } }
- &.asterisk{ i:before{ content:"\002A"; } }
- &.divide{ i:before{ content:"\00F7"; } }
- &.snorkel_diving{ i:before{ content:"\e251"; } }
- &.scuba_diving{ i:before{ content:"\e252"; } }
- &.oxygen_bottle{ i:before{ content:"\e253"; } }
- &.fins{ i:before{ content:"\e254"; } }
- &.fishes{ i:before{ content:"\e255"; } }
- &.boat{ i:before{ content:"\e256"; } }
- &.delete{ i:before{ content:"\e257"; } }
- &.sheriffs_star{ i:before{ content:"\e258"; } }
- &.qrcode{ i:before{ content:"\e259"; } }
- &.barcode{ i:before{ content:"\e260"; } }
- &.pool{ i:before{ content:"\e261"; } }
- &.buoy{ i:before{ content:"\e262"; } }
- &.spade{ i:before{ content:"\e263"; } }
- &.bank{ i:before{ content:"\e264"; } }
- &.vcard{ i:before{ content:"\e265"; } }
- &.electrical_plug{ i:before{ content:"\e266"; } }
- &.flag{ i:before{ content:"\e267"; } }
- &.credit_card{ i:before{ content:"\e268"; } }
- &.keyboard-wireless{ i:before{ content:"\e269"; } }
- &.keyboard-wired{ i:before{ content:"\e270"; } }
- &.shield{ i:before{ content:"\e271"; } }
- &.ring{ i:before{ content:"\02DA"; } }
- &.cake{ i:before{ content:"\e273"; } }
- &.drink{ i:before{ content:"\e274"; } }
- &.beer{ i:before{ content:"\e275"; } }
- &.fast_food{ i:before{ content:"\e276"; } }
- &.cutlery{ i:before{ content:"\e277"; } }
- &.pizza{ i:before{ content:"\e278"; } }
- &.birthday_cake{ i:before{ content:"\e279"; } }
- &.tablet{ i:before{ content:"\e280"; } }
- &.settings{ i:before{ content:"\e281"; } }
- &.bullets{ i:before{ content:"\e282"; } }
- &.cardio{ i:before{ content:"\e283"; } }
- &.t-shirt{ i:before{ content:"\e284"; } }
- &.pants{ i:before{ content:"\e285"; } }
- &.sweater{ i:before{ content:"\e286"; } }
- &.fabric{ i:before{ content:"\e287"; } }
- &.leather{ i:before{ content:"\e288"; } }
- &.scissors{ i:before{ content:"\e289"; } }
- &.bomb{ i:before{ content:"\e290"; } }
- &.skull{ i:before{ content:"\e291"; } }
- &.celebration{ i:before{ content:"\e292"; } }
- &.tea_kettle{ i:before{ content:"\e293"; } }
- &.french_press{ i:before{ content:"\e294"; } }
- &.coffe_cup{ i:before{ content:"\e295"; } }
- &.pot{ i:before{ content:"\e296"; } }
- &.grater{ i:before{ content:"\e297"; } }
- &.kettle{ i:before{ content:"\e298"; } }
- &.hospital{ i:before{ content:"\e299"; } }
- &.hospital_h{ i:before{ content:"\e300"; } }
- &.microphone{ i:before{ content:"\e301"; } }
- &.webcam{ i:before{ content:"\e302"; } }
- &.temple_christianity_church{ i:before{ content:"\e303"; } }
- &.temple_islam{ i:before{ content:"\e304"; } }
- &.temple_hindu{ i:before{ content:"\e305"; } }
- &.temple_buddhist{ i:before{ content:"\e306"; } }
- &.bicycle{ i:before{ content:"\e307"; } }
- &.life_preserver{ i:before{ content:"\e308"; } }
- &.share_alt{ i:before{ content:"\e309"; } }
- &.comments{ i:before{ content:"\e310"; } }
- &.flower{ i:before{ content:"\2698"; } }
- &.baseball{ i:before{ content:"\e312"; } }
- &.rugby{ i:before{ content:"\e313"; } }
- &.ax{ i:before{ content:"\e314"; } }
- &.table_tennis{ i:before{ content:"\e315"; } }
- &.bowling{ i:before{ content:"\e316"; } }
- &.tree_conifer{ i:before{ content:"\e317"; } }
- &.tree_deciduous{ i:before{ content:"\e318"; } }
- &.more_items{ i:before{ content:"\e319"; } }
- &.sort{ i:before{ content:"\e320"; } }
- &.filter{ i:before{ content:"\e321"; } }
- &.gamepad{ i:before{ content:"\e322"; } }
- &.playing_dices{ i:before{ content:"\e323"; } }
- &.calculator{ i:before{ content:"\e324"; } }
- &.tie{ i:before{ content:"\e325"; } }
- &.wallet{ i:before{ content:"\e326"; } }
- &.piano{ i:before{ content:"\e327"; } }
- &.sampler{ i:before{ content:"\e328"; } }
- &.podium{ i:before{ content:"\e329"; } }
- &.soccer_ball{ i:before{ content:"\e330"; } }
- &.blog{ i:before{ content:"\e331"; } }
- &.dashboard{ i:before{ content:"\e332"; } }
- &.certificate{ i:before{ content:"\e333"; } }
- &.bell{ i:before{ content:"\e334"; } }
- &.candle{ i:before{ content:"\e335"; } }
- &.pushpin{ i:before{ content:"\e336"; } }
- &.iphone_shake{ i:before{ content:"\e337"; } }
- &.pin_flag{ i:before{ content:"\e338"; } }
- &.turtle{ i:before{ content:"\e339"; } }
- &.rabbit{ i:before{ content:"\e340"; } }
- &.globe{ i:before{ content:"\e341"; } }
- &.briefcase{ i:before{ content:"\e342"; } }
- &.hdd{ i:before{ content:"\e343"; } }
- &.thumbs_up{ i:before{ content:"\e344"; } }
- &.thumbs_down{ i:before{ content:"\e345"; } }
- &.hand_right{ i:before{ content:"\e346"; } }
- &.hand_left{ i:before{ content:"\e347"; } }
- &.hand_up{ i:before{ content:"\e348"; } }
- &.hand_down{ i:before{ content:"\e349"; } }
- &.fullscreen{ i:before{ content:"\e350"; } }
- &.shopping_bag{ i:before{ content:"\e351"; } }
- &.book_open{ i:before{ content:"\e352"; } }
- &.nameplate{ i:before{ content:"\e353"; } }
- &.nameplate_alt{ i:before{ content:"\e354"; } }
- &.vases{ i:before{ content:"\e355"; } }
- &.bullhorn{ i:before{ content:"\e356"; } }
- &.dumbbell{ i:before{ content:"\e357"; } }
- &.suitcase{ i:before{ content:"\e358"; } }
- &.file_import{ i:before{ content:"\e359"; } }
- &.file_export{ i:before{ content:"\e360"; } }
- &.bug{ i:before{ content:"\e361"; } }
- &.crown{ i:before{ content:"\e362"; } }
- &.smoking{ i:before{ content:"\e363"; } }
- &.cloud-upload{ i:before{ content:"\e364"; } }
- &.cloud-download{ i:before{ content:"\e365"; } }
- &.restart{ i:before{ content:"\e366"; } }
- &.security_camera{ i:before{ content:"\e367"; } }
- &.expand{ i:before{ content:"\e368"; } }
- &.collapse{ i:before{ content:"\e369"; } }
- &.collapse_top{ i:before{ content:"\e370"; } }
- &.globe_af{ i:before{ content:"\e371"; } }
- &.global{ i:before{ content:"\e372"; } }
- &.spray{ i:before{ content:"\e373"; } }
- &.nails{ i:before{ content:"\e374"; } }
- &.claw_hammer{ i:before{ content:"\e375"; } }
- &.classic_hammer{ i:before{ content:"\e376"; } }
- &.hand_saw{ i:before{ content:"\e377"; } }
- &.riflescope{ i:before{ content:"\e378"; } }
- &.electrical_socket_eu{ i:before{ content:"\e379"; } }
- &.electrical_socket_us{ i:before{ content:"\e380"; } }
- &.pinterest{ i:before{ content:"\e381"; } }
- &.dropbox{ i:before{ content:"\e382"; } }
- &.google_plus{ i:before{ content:"\e383"; } }
- &.jolicloud{ i:before{ content:"\e384"; } }
- &.yahoo{ i:before{ content:"\e385"; } }
- &.blogger{ i:before{ content:"\e386"; } }
- &.picasa{ i:before{ content:"\e387"; } }
- &.amazon{ i:before{ content:"\e388"; } }
- &.tumblr{ i:before{ content:"\e389"; } }
- &.wordpress{ i:before{ content:"\e390"; } }
- &.instapaper{ i:before{ content:"\e391"; } }
- &.evernote{ i:before{ content:"\e392"; } }
- &.xing{ i:before{ content:"\e393"; } }
- &.zootool{ i:before{ content:"\e394"; } }
- &.dribbble{ i:before{ content:"\e395"; } }
- &.deviantart{ i:before{ content:"\e396"; } }
- &.read_it_later{ i:before{ content:"\e397"; } }
- &.linked_in{ i:before{ content:"\e398"; } }
- &.forrst{ i:before{ content:"\e399"; } }
- &.pinboard{ i:before{ content:"\e400"; } }
- &.behance{ i:before{ content:"\e401"; } }
- &.github{ i:before{ content:"\e402"; } }
- &.youtube{ i:before{ content:"\e403"; } }
- &.skitch{ i:before{ content:"\e404"; } }
- &.foursquare{ i:before{ content:"\e405"; } }
- &.quora{ i:before{ content:"\e406"; } }
- &.badoo{ i:before{ content:"\e407"; } }
- &.spotify{ i:before{ content:"\e408"; } }
- &.stumbleupon{ i:before{ content:"\e409"; } }
- &.readability{ i:before{ content:"\e410"; } }
- &.facebook{ i:before{ content:"\e411"; } }
- &.twitter{ i:before{ content:"\e412"; } }
- &.instagram{ i:before{ content:"\e413"; } }
- &.posterous_spaces{ i:before{ content:"\e414"; } }
- &.vimeo{ i:before{ content:"\e415"; } }
- &.flickr{ i:before{ content:"\e416"; } }
- &.last_fm{ i:before{ content:"\e417"; } }
- &.rss{ i:before{ content:"\e418"; } }
- &.skype{ i:before{ content:"\e419"; } }
- &.e-mail{ i:before{ content:"\e420"; } }
-}
-
-// IMAGE ICONS
-.glyphicons-icon {
- display: inline-block;
- width: 48px;
- height: 48px;
- line-height: 48px;
- vertical-align: text-top;
- background-image: url(../images/glyphicons.png);
- background-position: 0 0;
- background-repeat: no-repeat;
- vertical-align: top;
- *display: inline;
- *zoom: 1;
- *margin-right: .3em;
-
- .no-inlinesvg &{
- background-image: url(../images/glyphicons.png);
- }
- &.white{
- background-image: url(../images/glyphicons-white.svg);
-
- .no-inlinesvg &{
- background-image: url(../images/glyphicons-white.png);
- }
- }
-
- &.glass{ background-position: 4px 11px; }
- &.leaf{ background-position: -44px 11px; }
- &.dog{ background-position: -92px 11px; }
- &.user{ background-position: -140px 11px; }
- &.girl{ background-position: -188px 11px; }
- &.car{ background-position: -236px 11px }
- &.user_add{ background-position: -284px 11px; }
- &.user_remove{ background-position: -332px 11px; }
- &.film{ background-position: -380px 11px; }
- &.magic{ background-position: -428px 11px; }
- &.envelope{ background-position: 4px -37px; }
- &.camera{ background-position: -44px -37px; }
- &.heart{ background-position: -92px -37px; }
- &.beach_umbrella{ background-position: -140px -37px; }
- &.train{ background-position: -188px -37px; }
- &.print{ background-position: -236px -37px; }
- &.bin{ background-position: -284px -37px; }
- &.music{ background-position: -332px -37px; }
- &.note{ background-position: -380px -37px; }
- &.heart_empty{ background-position: -428px -37px; }
- &.home{ background-position: 4px -85px; }
- &.snowflake{ background-position: -44px -85px; }
- &.fire{ background-position: -92px -85px; }
- &.magnet{ background-position: -140px -85px; }
- &.parents{ background-position: -188px -85px; }
- &.binoculars{ background-position: -236px -85px; }
- &.road{ background-position: -284px -85px; }
- &.search{ background-position: -332px -85px; }
- &.cars{ background-position: -380px -85px; }
- &.notes_2{ background-position: -428px -85px; }
- &.pencil{ background-position: 4px -133px; }
- &.bus{ background-position: -44px -133px; }
- &.wifi_alt{ background-position: -92px -133px; }
- &.luggage{ background-position: -140px -133px; }
- &.old_man{ background-position: -188px -133px; }
- &.woman{ background-position: -236px -133px; }
- &.file{ background-position: -284px -133px; }
- &.coins{ background-position: -332px -133px; }
- &.airplane{ background-position: -380px -133px; }
- &.notes{ background-position: -428px -133px; }
- &.stats{ background-position: 4px -181px; }
- &.charts{ background-position: -44px -181px; }
- &.pie_chart{ background-position: -92px -181px; }
- &.group{ background-position: -140px -181px; }
- &.keys{ background-position: -188px -181px; }
- &.calendar{ background-position: -236px -181px; }
- &.router{ background-position: -284px -181px; }
- &.camera_small{ background-position: -332px -181px; }
- &.dislikes{ background-position: -380px -181px; }
- &.star{ background-position: -428px -181px; }
- &.link{ background-position: 4px -229px; }
- &.eye_open{ background-position: -44px -229px; }
- &.eye_close{ background-position: -92px -229px; }
- &.alarm{ background-position: -140px -229px; }
- &.clock{ background-position: -188px -229px; }
- &.stopwatch{ background-position: -236px -229px; }
- &.projector{ background-position: -284px -229px; }
- &.history{ background-position: -332px -229px; }
- &.truck{ background-position: -380px -229px; }
- &.cargo{ background-position: -428px -229px; }
- &.compass{ background-position: 4px -277px; }
- &.keynote{ background-position: -44px -277px; }
- &.paperclip{ background-position: -92px -277px; }
- &.power{ background-position: -140px -277px; }
- &.lightbulb{ background-position: -188px -277px; }
- &.tag{ background-position: -236px -277px; }
- &.tags{ background-position: -284px -277px; }
- &.cleaning{ background-position: -332px -277px; }
- &.ruller{ background-position: -380px -277px; }
- &.gift{ background-position: -428px -277px; }
- &.umbrella{ background-position: 4px -325px; }
- &.book{ background-position: -44px -325px; }
- &.bookmark{ background-position: -92px -325px; }
- &.wifi{ background-position: -140px -325px; }
- &.cup{ background-position: -188px -325px; }
- &.stroller{ background-position: -236px -325px; }
- &.headphones{ background-position: -284px -325px; }
- &.headset{ background-position: -332px -325px; }
- &.warning_sign{ background-position: -380px -325px; }
- &.signal{ background-position: -428px -325px; }
- &.retweet{ background-position: 4px -373px; }
- &.refresh{ background-position: -44px -373px; }
- &.roundabout{ background-position: -92px -373px; }
- &.random{ background-position: -140px -373px; }
- &.heat{ background-position: -188px -373px; }
- &.repeat{ background-position: -236px -373px; }
- &.display{ background-position: -284px -373px; }
- &.log_book{ background-position: -332px -373px; }
- &.adress_book{ background-position: -380px -373px; }
- &.building{ background-position: -428px -373px; }
- &.eyedropper{ background-position: 4px -421px; }
- &.adjust{ background-position: -44px -421px; }
- &.tint{ background-position: -92px -421px; }
- &.crop{ background-position: -140px -421px; }
- &.vector_path_square{ background-position: -188px -421px; }
- &.vector_path_circle{ background-position: -236px -421px; }
- &.vector_path_polygon{ background-position: -284px -421px; }
- &.vector_path_line{ background-position: -332px -421px; }
- &.vector_path_curve{ background-position: -380px -421px; }
- &.vector_path_all{ background-position: -428px -421px; }
- &.font{ background-position: 4px -469px; }
- &.italic{ background-position: -44px -469px; }
- &.bold{ background-position: -92px -469px; }
- &.text_underline{ background-position: -140px -469px; }
- &.text_strike{ background-position: -188px -469px; }
- &.text_height{ background-position: -236px -469px; }
- &.text_width{ background-position: -284px -469px; }
- &.text_resize{ background-position: -332px -469px; }
- &.left_indent{ background-position: -380px -469px; }
- &.right_indent{ background-position: -428px -469px; }
- &.align_left{ background-position: 4px -517px; }
- &.align_center{ background-position: -44px -517px; }
- &.align_right{ background-position: -92px -517px; }
- &.justify{ background-position: -140px -517px; }
- &.list{ background-position: -188px -517px; }
- &.text_smaller{ background-position: -236px -517px; }
- &.text_bigger{ background-position: -284px -517px; }
- &.embed{ background-position: -332px -517px; }
- &.embed_close{ background-position: -380px -517px; }
- &.table{ background-position: -428px -517px; }
- &.message_full{ background-position: 4px -565px; }
- &.message_empty{ background-position: -44px -565px; }
- &.message_in{ background-position: -92px -565px; }
- &.message_out{ background-position: -140px -565px; }
- &.message_plus{ background-position: -188px -565px; }
- &.message_minus{ background-position: -236px -565px; }
- &.message_ban{ background-position: -284px -565px; }
- &.message_flag{ background-position: -332px -565px; }
- &.message_lock{ background-position: -380px -565px; }
- &.message_new{ background-position: -428px -565px; }
- &.inbox{ background-position: 4px -613px; }
- &.inbox_plus{ background-position: -44px -613px; }
- &.inbox_minus{ background-position: -92px -613px; }
- &.inbox_lock{ background-position: -140px -613px; }
- &.inbox_in{ background-position: -188px -613px; }
- &.inbox_out{ background-position: -236px -613px; }
- &.cogwheel{ background-position: -284px -613px; }
- &.cogwheels{ background-position: -332px -613px; }
- &.picture{ background-position: -380px -613px; }
- &.adjust_alt{ background-position: -428px -613px; }
- &.database_lock{ background-position: 4px -661px; }
- &.database_plus{ background-position: -44px -661px; }
- &.database_minus{ background-position: -92px -661px; }
- &.database_ban{ background-position: -140px -661px; }
- &.folder_open{ background-position: -188px -661px; }
- &.folder_plus{ background-position: -236px -661px; }
- &.folder_minus{ background-position: -284px -661px; }
- &.folder_lock{ background-position: -332px -661px; }
- &.folder_flag{ background-position: -380px -661px; }
- &.folder_new{ background-position: -428px -661px; }
- &.edit{ background-position: 4px -709px; }
- &.new_window{ background-position: -44px -709px; }
- &.check{ background-position: -92px -709px; }
- &.unchecked{ background-position: -140px -709px; }
- &.more_windows{ background-position: -188px -709px; }
- &.show_big_thumbnails{ background-position: -236px -709px; }
- &.show_thumbnails{ background-position: -284px -709px; }
- &.show_thumbnails_with_lines{ background-position: -332px -709px; }
- &.show_lines{ background-position: -380px -709px; }
- &.playlist{ background-position: -428px -709px; }
- &.imac{ background-position: 4px -757px; }
- &.macbook{ background-position: -44px -757px; }
- &.ipad{ background-position: -92px -757px; }
- &.iphone{ background-position: -140px -757px; }
- &.iphone_transfer{ background-position: -188px -757px; }
- &.iphone_exchange{ background-position: -236px -757px; }
- &.ipod{ background-position: -284px -757px; }
- &.ipod_shuffle{ background-position: -332px -757px; }
- &.ear_plugs{ background-position: -380px -757px; }
- &.phone{ background-position: -428px -757px; }
- &.step_backward{ background-position: 4px -805px; }
- &.fast_backward{ background-position: -44px -805px; }
- &.rewind{ background-position: -92px -805px; }
- &.play{ background-position: -140px -805px; }
- &.pause{ background-position: -188px -805px; }
- &.stop{ background-position: -236px -805px; }
- &.forward{ background-position: -284px -805px; }
- &.fast_forward{ background-position: -332px -805px; }
- &.step_forward{ background-position: -380px -805px; }
- &.eject{ background-position: -428px -805px; }
- &.facetime_video{ background-position: 4px -853px; }
- &.download_alt{ background-position: -44px -853px; }
- &.mute{ background-position: -92px -853px; }
- &.volume_down{ background-position: -140px -853px; }
- &.volume_up{ background-position: -188px -853px; }
- &.screenshot{ background-position: -236px -853px; }
- &.move{ background-position: -284px -853px; }
- &.more{ background-position: -332px -853px; }
- &.brightness_reduce{ background-position: -380px -853px; }
- &.brightness_increase{ background-position: -428px -853px; }
- &.circle_plus{ background-position: 4px -901px; }
- &.circle_minus{ background-position: -44px -901px; }
- &.circle_remove{ background-position: -92px -901px; }
- &.circle_ok{ background-position: -140px -901px; }
- &.circle_question_mark{ background-position: -188px -901px; }
- &.circle_info{ background-position: -236px -901px; }
- &.circle_exclamation_mark{ background-position: -284px -901px; }
- &.remove{ background-position: -332px -901px; }
- &.ok{ background-position: -380px -901px; }
- &.ban{ background-position: -428px -901px; }
- &.download{ background-position: 4px -949px; }
- &.upload{ background-position: -44px -949px; }
- &.shopping_cart{ background-position: -92px -949px; }
- &.lock{ background-position: -140px -949px; }
- &.unlock{ background-position: -188px -949px; }
- &.electricity{ background-position: -236px -949px; }
- &.ok_2{ background-position: -284px -949px; }
- &.remove_2{ background-position: -332px -949px; }
- &.cart_out{ background-position: -380px -949px; }
- &.cart_in{ background-position: -428px -949px; }
- &.left_arrow{ background-position: 4px -997px; }
- &.right_arrow{ background-position: -44px -997px; }
- &.down_arrow{ background-position: -92px -997px; }
- &.up_arrow{ background-position: -140px -997px; }
- &.resize_small{ background-position: -188px -997px; }
- &.resize_full{ background-position: -236px -997px; }
- &.circle_arrow_left{ background-position: -284px -997px; }
- &.circle_arrow_right{ background-position: -332px -997px; }
- &.circle_arrow_top{ background-position: -380px -997px; }
- &.circle_arrow_down{ background-position: -428px -997px; }
- &.play_button{ background-position: 4px -1045px; }
- &.unshare{ background-position: -44px -1045px; }
- &.share{ background-position: -92px -1045px; }
- &.chevron-right{ background-position: -140px -1045px; }
- &.chevron-left{ background-position: -188px -1045px; }
- &.bluetooth{ background-position: -236px -1045px; }
- &.euro{ background-position: -284px -1045px; }
- &.usd{ background-position: -332px -1045px; }
- &.gbp{ background-position: -380px -1045px; }
- &.retweet_2{ background-position: -428px -1045px; }
- &.moon{ background-position: 4px -1093px; }
- &.sun{ background-position: -44px -1093px; }
- &.cloud{ background-position: -92px -1093px; }
- &.direction{ background-position: -140px -1093px; }
- &.brush{ background-position: -188px -1093px; }
- &.pen{ background-position: -236px -1093px; }
- &.zoom_in{ background-position: -284px -1093px; }
- &.zoom_out{ background-position: -332px -1093px; }
- &.pin{ background-position: -380px -1093px; }
- &.albums{ background-position: -428px -1093px; }
- &.rotation_lock{ background-position: 4px -1141px; }
- &.flash{ background-position: -44px -1141px; }
- &.google_maps{ background-position: -92px -1141px; }
- &.anchor{ background-position: -140px -1141px; }
- &.conversation{ background-position: -188px -1141px; }
- &.chat{ background-position: -236px -1141px; }
- &.male{ background-position: -284px -1141px; }
- &.female{ background-position: -332px -1141px; }
- &.asterisk{ background-position: -380px -1141px; }
- &.divide{ background-position: -428px -1141px; }
- &.snorkel_diving{ background-position: 4px -1189px; }
- &.scuba_diving{ background-position: -44px -1189px; }
- &.oxygen_bottle{ background-position: -92px -1189px; }
- &.fins{ background-position: -140px -1189px; }
- &.fishes{ background-position: -188px -1189px; }
- &.boat{ background-position: -236px -1189px; }
- &.delete{ background-position: -284px -1189px; }
- &.sheriffs_star{ background-position: -332px -1189px; }
- &.qrcode{ background-position: -380px -1189px; }
- &.barcode{ background-position: -428px -1189px; }
- &.pool{ background-position: 4px -1237px; }
- &.buoy{ background-position: -44px -1237px; }
- &.spade{ background-position: -92px -1237px; }
- &.bank{ background-position: -140px -1237px; }
- &.vcard{ background-position: -188px -1237px; }
- &.electrical_plug{ background-position: -236px -1237px; }
- &.flag{ background-position: -284px -1237px; }
- &.credit_card{ background-position: -332px -1237px; }
- &.keyboard-wireless{ background-position: -380px -1237px; }
- &.keyboard-wired{ background-position: -428px -1237px; }
- &.shield{ background-position: 4px -1285px; }
- &.ring{ background-position: -44px -1285px; }
- &.cake{ background-position: -92px -1285px; }
- &.drink{ background-position: -140px -1285px; }
- &.beer{ background-position: -188px -1285px; }
- &.fast_food{ background-position: -236px -1285px; }
- &.cutlery{ background-position: -284px -1285px; }
- &.pizza{ background-position: -332px -1285px; }
- &.birthday_cake{ background-position: -380px -1285px; }
- &.tablet{ background-position: -428px -1285px; }
- &.settings{ background-position: 4px -1333px; }
- &.bullets{ background-position: -44px -1333px; }
- &.cardio{ background-position: -92px -1333px; }
- &.t-shirt{ background-position: -140px -1333px; }
- &.pants{ background-position: -188px -1333px; }
- &.sweater{ background-position: -236px -1333px; }
- &.fabric{ background-position: -284px -1333px; }
- &.leather{ background-position: -332px -1333px; }
- &.scissors{ background-position: -380px -1333px; }
- &.bomb{ background-position: -428px -1333px; }
- &.skull{ background-position: 4px -1381px; }
- &.celebration{ background-position: -44px -1381px; }
- &.tea_kettle{ background-position: -92px -1381px; }
- &.french_press{ background-position: -140px -1381px; }
- &.coffe_cup{ background-position: -188px -1381px; }
- &.pot{ background-position: -236px -1381px; }
- &.grater{ background-position: -284px -1381px; }
- &.kettle{ background-position: -332px -1381px; }
- &.hospital{ background-position: -380px -1381px; }
- &.hospital_h{ background-position: -428px -1381px; }
- &.microphone{ background-position: 4px -1429px; }
- &.webcam{ background-position: -44px -1429px; }
- &.temple_christianity_church{ background-position: -92px -1429px; }
- &.temple_islam{ background-position: -140px -1429px; }
- &.temple_hindu{ background-position: -188px -1429px; }
- &.temple_buddhist{ background-position: -236px -1429px; }
- &.bicycle{ background-position: -284px -1429px; }
- &.life_preserver{ background-position: -332px -1429px; }
- &.share_alt{ background-position: -380px -1429px; }
- &.comments{ background-position: -428px -1429px; }
- &.flower{ background-position: 4px -1477px; }
- &.baseball{ background-position: -44px -1477px; }
- &.rugby{ background-position: -92px -1477px; }
- &.ax{ background-position: -140px -1477px; }
- &.table_tennis{ background-position: -188px -1477px; }
- &.bowling{ background-position: -236px -1477px; }
- &.tree_conifer{ background-position: -284px -1477px; }
- &.tree_deciduous{ background-position: -332px -1477px; }
- &.more_items{ background-position: -380px -1477px; }
- &.sort{ background-position: -428px -1477px; }
- &.filter{ background-position: 4px -1525px; }
- &.gamepad{ background-position: -44px -1525px; }
- &.playing_dices{ background-position: -92px -1525px; }
- &.calculator{ background-position: -140px -1525px; }
- &.tie{ background-position: -188px -1525px; }
- &.wallet{ background-position: -236px -1525px; }
- &.piano{ background-position: -284px -1525px; }
- &.sampler{ background-position: -332px -1525px; }
- &.podium{ background-position: -380px -1525px; }
- &.soccer_ball{ background-position: -428px -1525px; }
- &.blog{ background-position: 4px -1573px; }
- &.dashboard{ background-position: -44px -1573px; }
- &.certificate{ background-position: -92px -1573px; }
- &.bell{ background-position: -140px -1573px; }
- &.candle{ background-position: -188px -1573px; }
- &.pushpin{ background-position: -236px -1573px; }
- &.iphone_shake{ background-position: -284px -1573px; }
- &.pin_flag{ background-position: -332px -1573px; }
- &.turtle{ background-position: -380px -1573px; }
- &.rabbit{ background-position: -428px -1573px; }
- &.globe{ background-position: 4px -1621px; }
- &.briefcase{ background-position: -44px -1621px; }
- &.hdd{ background-position: -92px -1621px; }
- &.thumbs_up{ background-position: -140px -1621px; }
- &.thumbs_down{ background-position: -188px -1621px; }
- &.hand_right{ background-position: -236px -1621px; }
- &.hand_left{ background-position: -284px -1621px; }
- &.hand_up{ background-position: -332px -1621px; }
- &.hand_down{ background-position: -380px -1621px; }
- &.fullscreen{ background-position: -428px -1621px; }
- &.shopping_bag{ background-position: 4px -1669px; }
- &.book_open{ background-position: -44px -1669px; }
- &.nameplate{ background-position: -92px -1669px; }
- &.nameplate_alt{ background-position: -140px -1669px; }
- &.vases{ background-position: -188px -1669px; }
- &.bullhorn{ background-position: -236px -1669px; }
- &.dumbbell{ background-position: -284px -1669px; }
- &.suitcase{ background-position: -332px -1669px; }
- &.file_import{ background-position: -380px -1669px; }
- &.file_export{ background-position: -428px -1669px; }
- &.bug{ background-position: 4px -1717px; }
- &.crown{ background-position: -44px -1717px; }
- &.smoking{ background-position: -92px -1717px; }
- &.cloud-upload{ background-position: -140px -1717px; }
- &.cloud-download{ background-position: -188px -1717px; }
- &.restart{ background-position: -236px -1717px; }
- &.security_camera{ background-position: -284px -1717px; }
- &.expand{ background-position: -332px -1717px; }
- &.collapse{ background-position: -380px -1717px; }
- &.collapse_top{ background-position: -428px -1717px; }
- &.globe_af{ background-position: 4px -1765px; }
- &.global{ background-position: -44px -1765px; }
- &.spray{ background-position: -92px -1765px; }
- &.nails{ background-position: -140px -1765px; }
- &.claw_hammer{ background-position: -188px -1765px; }
- &.classic_hammer{ background-position: -236px -1765px; }
- &.hand_saw{ background-position: -284px -1765px; }
- &.riflescope{ background-position: -332px -1765px; }
- &.electrical_socket_eu{ background-position: -380px -1765px; }
- &.electrical_socket_us{ background-position: -428px -1765px; }
- &.pinterest{ background-position: 4px -1813px; }
- &.dropbox{ background-position: -44px -1813px; }
- &.google_plus{ background-position: -92px -1813px; }
- &.jolicloud{ background-position: -140px -1813px; }
- &.yahoo{ background-position: -188px -1813px; }
- &.blogger{ background-position: -236px -1813px; }
- &.picasa{ background-position: -284px -1813px; }
- &.amazon{ background-position: -332px -1813px; }
- &.tumblr{ background-position: -380px -1813px; }
- &.wordpress{ background-position: -428px -1813px; }
- &.instapaper{ background-position: 4px -1861px; }
- &.evernote{ background-position: -44px -1861px; }
- &.xing{ background-position: -92px -1861px; }
- &.zootool{ background-position: -140px -1861px; }
- &.dribbble{ background-position: -188px -1861px; }
- &.deviantart{ background-position: -236px -1861px; }
- &.read_it_later{ background-position: -284px -1861px; }
- &.linked_in{ background-position: -332px -1861px; }
- &.forrst{ background-position: -380px -1861px; }
- &.pinboard{ background-position: -428px -1861px; }
- &.behance{ background-position: 4px -1909px; }
- &.github{ background-position: -44px -1909px; }
- &.youtube{ background-position: -92px -1909px; }
- &.skitch{ background-position: -140px -1909px; }
- &.foursquare{ background-position: -188px -1909px; }
- &.quora{ background-position: -236px -1909px; }
- &.badoo{ background-position: -284px -1909px; }
- &.spotify{ background-position: -332px -1909px; }
- &.stumbleupon{ background-position: -380px -1909px; }
- &.readability{ background-position: -428px -1909px; }
- &.facebook{ background-position: 4px -1957px; }
- &.twitter{ background-position: -44px -1957px; }
- &.instagram{ background-position: -92px -1957px; }
- &.posterous_spaces{ background-position: -140px -1957px; }
- &.vimeo{ background-position: -188px -1957px; }
- &.flickr{ background-position: -236px -1957px; }
- &.last_fm{ background-position: -284px -1957px; }
- &.rss{ background-position: -332px -1957px; }
- &.skype{ background-position: -380px -1957px; }
- &.e-mail{ background-position: -428px -1957px; }
-}
diff --git a/assets/plugins/glyphicons/less/reset.less b/assets/plugins/glyphicons/less/reset.less
deleted file mode 100644
index f5e9396..0000000
--- a/assets/plugins/glyphicons/less/reset.less
+++ /dev/null
@@ -1,84 +0,0 @@
-// Reset.less
-// Adapted from Normalize.css http://github.com/necolas/normalize.css
-// ------------------------------------------------------------------------
-
-// Display in IE6-9 and FF3
-// -------------------------
-
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-nav,
-section {
- display: block;
-}
-
-// Display block in IE6-9 and FF3
-// -------------------------
-
-audio,
-canvas,
-video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
-}
-
-// Prevents modern browsers from displaying 'audio' without controls
-// -------------------------
-
-audio:not([controls]) {
- display: none;
-}
-
-// Base settings
-// -------------------------
-
-html, body { margin: 0; padding: 0; }
-
-h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-size: 100%; line-height: 1; font-family: inherit;
-}
-
-html {
- font-size: 62.5%;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-
-// Hover & Active
-a:hover,
-a:active {
- outline: 0;
-}
-
-// Prevents sub and sup affecting line-height in all browsers
-// -------------------------
-
-sub,
-sup {
- position: relative;
- font-size: 75%;
- line-height: 0;
- vertical-align: baseline;
-}
-sup {
- top: -0.5em;
-}
-sub {
- bottom: -0.25em;
-}
-
-// Img border in a's and image quality
-// -------------------------
-
-img {
- //max-width: 100%;
- //height: auto;
- //border: 0;
- -ms-interpolation-mode: bicubic;
-}
diff --git a/assets/plugins/glyphicons/less/site.less b/assets/plugins/glyphicons/less/site.less
deleted file mode 100644
index 8acad72..0000000
--- a/assets/plugins/glyphicons/less/site.less
+++ /dev/null
@@ -1,46 +0,0 @@
-// BODY
-// ---------
-html, body {
- height: 100%;
-}
-
-body {
- background: #fff;
- margin: 0;
- font-size: 14px;
- color: #000;
- padding: 20px 20px;
-}
-
-h2{
- margin: 0 0 5px 0;
- font-size: 27px;
-}
-
-p,.glyphicons{
- display: inline-block;
- *display: inline;
- *zoom: 1;
- width: 240px;
- font-size: 18px;
- line-height: 48px;
-
- i:before{
- line-height:55px !important;
- }
-}
-p{
- width: 275px;
- line-height:48px;
-}
-
-.white-content{
- margin:0 -20px 0 -20px;
- padding:20px;
- background:rgb(0,0,0);
- background:rgba(0,0,0,.9);
-
- *,p,a{
- color:#fff;
- }
-}
\ No newline at end of file
diff --git a/assets/plugins/glyphicons/less/style.less b/assets/plugins/glyphicons/less/style.less
deleted file mode 100644
index 3ae6f6e..0000000
--- a/assets/plugins/glyphicons/less/style.less
+++ /dev/null
@@ -1,5 +0,0 @@
-// CSS Reset
-@import "reset.less";
-
-// Main styles
-@import "site.less";
diff --git a/assets/plugins/glyphicons/scripts/modernizr.js b/assets/plugins/glyphicons/scripts/modernizr.js
deleted file mode 100644
index fda8d71..0000000
--- a/assets/plugins/glyphicons/scripts/modernizr.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/* Modernizr 2.6.1 (Custom Build) | MIT & BSD
- * Build: http://modernizr.com/download/#-inlinesvg-shiv-cssclasses-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes
- */
-;window.Modernizr=function(a,b,c){function B(a){j.cssText=a}function C(a,b){return B(m.join(a+";")+(b||""))}function D(a,b){return typeof a===b}function E(a,b){return!!~(""+a).indexOf(b)}function F(a,b){for(var d in a){var e=a[d];if(!E(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function G(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:D(f,"function")?f.bind(d||b):f}return!1}function H(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+o.join(d+" ")+d).split(" ");return D(b,"string")||D(b,"undefined")?F(e,b):(e=(a+" "+p.join(d+" ")+d).split(" "),G(e,b,c))}var d="2.6.1",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n="Webkit Moz O ms",o=n.split(" "),p=n.toLowerCase().split(" "),q={svg:"http://www.w3.org/2000/svg"},r={},s={},t={},u=[],v=u.slice,w,x=function(a,c,d,e){var f,i,j,k=b.createElement("div"),l=b.body,m=l?l:b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),k.appendChild(j);return f=["",'"].join(""),k.id=h,(l?k:m).innerHTML+=f,m.appendChild(k),l||(m.style.background="",g.appendChild(m)),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},y=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=D(e[d],"function"),D(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),z={}.hasOwnProperty,A;!D(z,"undefined")&&!D(z.call,"undefined")?A=function(a,b){return z.call(a,b)}:A=function(a,b){return b in a&&D(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=v.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(v.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(v.call(arguments)))};return e}),r.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML=" ",(a.firstChild&&a.firstChild.namespaceURI)==q.svg};for(var I in r)A(r,I)&&(w=I.toLowerCase(),e[w]=r[I](),u.push((e[w]?"":"no-")+w));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)A(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},B(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=m,e._domPrefixes=p,e._cssomPrefixes=o,e.hasEvent=y,e.testProp=function(a){return F([a])},e.testAllProps=H,e.testStyles=x,e.prefixed=function(a,b,c){return b?H(a,b,c):H(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+u.join(" "):""),e}(this,this.document);
\ No newline at end of file
diff --git a/assets/plugins/glyphicons/scripts/modernizr_license.txt b/assets/plugins/glyphicons/scripts/modernizr_license.txt
deleted file mode 100644
index ad38cdf..0000000
--- a/assets/plugins/glyphicons/scripts/modernizr_license.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-Modernizr [http://modernizr.com/] is the right micro-library to get you up and running with HTML5 & CSS3 today and it is licensed under the MIT license [http://www.opensource.org/licenses/mit-license.php].
-
-You may find its full online version here: http://modernizr.com/license/
\ No newline at end of file
diff --git a/assets/plugins/gmap/gmap.js b/assets/plugins/gmap/gmap.js
deleted file mode 100644
index a7d051f..0000000
--- a/assets/plugins/gmap/gmap.js
+++ /dev/null
@@ -1,1803 +0,0 @@
-/*!
- * GMaps.js v0.2.30
- * http://hpneo.github.com/gmaps/
- *
- * Copyright 2012, Gustavo Leon
- * Released under the MIT License.
- */
-
-if(window.google && window.google.maps){
-
- var GMaps = (function(global) {
- "use strict";
-
- var doc = document;
- var getElementById = function(id, context) {
- var ele
- if('jQuery' in global && context){
- ele = $("#"+id.replace('#', ''), context)[0]
- }else{
- ele = doc.getElementById(id.replace('#', ''));
- };
- return ele;
- };
-
- var GMaps = function(options) {
- var self = this;
- var events_that_hide_context_menu = ['bounds_changed', 'center_changed', 'click', 'dblclick', 'drag', 'dragend', 'dragstart', 'idle', 'maptypeid_changed', 'projection_changed', 'resize', 'tilesloaded', 'zoom_changed'];
- var events_that_doesnt_hide_context_menu = ['mousemove', 'mouseout', 'mouseover'];
-
- window.context_menu = {};
-
- if (typeof(options.el) === 'string' || typeof(options.div) === 'string') {
- this.el = getElementById(options.el || options.div, options.context);
- } else {
- this.el = options.el || options.div;
- };
- this.el.style.width = options.width || this.el.scrollWidth || this.el.offsetWidth;
- this.el.style.height = options.height || this.el.scrollHeight || this.el.offsetHeight;
-
- this.controls = [];
- this.overlays = [];
- this.layers = []; // array with kml and ft layers, can be as many
- this.singleLayers = {}; // object with the other layers, only one per layer
- this.markers = [];
- this.polylines = [];
- this.routes = [];
- this.polygons = [];
- this.infoWindow = null;
- this.overlay_el = null;
- this.zoom = options.zoom || 15;
-
- var markerClusterer = options.markerClusterer;
-
- //'Hybrid', 'Roadmap', 'Satellite' or 'Terrain'
- var mapType;
-
- if (options.mapType) {
- mapType = google.maps.MapTypeId[options.mapType.toUpperCase()];
- }
- else {
- mapType = google.maps.MapTypeId.ROADMAP;
- }
-
- var map_center = new google.maps.LatLng(options.lat, options.lng);
-
- delete options.el;
- delete options.lat;
- delete options.lng;
- delete options.mapType;
- delete options.width;
- delete options.height;
- delete options.markerClusterer;
-
- var zoomControlOpt = options.zoomControlOpt || {
- style: 'DEFAULT',
- position: 'TOP_LEFT'
- };
-
- var zoomControl = options.zoomControl || true,
- zoomControlStyle = zoomControlOpt.style || 'DEFAULT',
- zoomControlPosition = zoomControlOpt.position || 'TOP_LEFT',
- panControl = options.panControl || true,
- mapTypeControl = options.mapTypeControl || true,
- scaleControl = options.scaleControl || true,
- streetViewControl = options.streetViewControl || true,
- overviewMapControl = overviewMapControl || true;
-
- var map_options = {};
-
- var map_base_options = {
- zoom: this.zoom,
- center: map_center,
- mapTypeId: mapType
- };
-
- var map_controls_options = {
- panControl: panControl,
- zoomControl: zoomControl,
- zoomControlOptions: {
- style: google.maps.ZoomControlStyle[zoomControlStyle], // DEFAULT LARGE SMALL
- position: google.maps.ControlPosition[zoomControlPosition]
- },
- mapTypeControl: mapTypeControl,
- scaleControl: scaleControl,
- streetViewControl: streetViewControl,
- overviewMapControl: overviewMapControl
- }
-
- if(options.disableDefaultUI != true)
- map_base_options = extend_object(map_base_options, map_controls_options);
-
- map_options = extend_object(map_base_options, options);
-
- for(var i = 0; i < events_that_hide_context_menu.length; i++) {
- delete map_options[events_that_hide_context_menu[i]];
- }
-
- for(var i = 0; i < events_that_doesnt_hide_context_menu.length; i++) {
- delete map_options[events_that_doesnt_hide_context_menu[i]];
- }
-
- this.map = new google.maps.Map(this.el, map_options);
-
- if(markerClusterer) {
- this.markerClusterer = markerClusterer.apply(this, [this.map]);
- }
-
- // Context menus
- var buildContextMenuHTML = function(control, e) {
- var html = '';
- var options = window.context_menu[control];
- for (var i in options){
- if (options.hasOwnProperty(i)){
- var option = options[i];
- html += '' +
- option.title + ' ';
- }
- }
-
- if(!getElementById('gmaps_context_menu')) return;
-
- var context_menu_element = getElementById('gmaps_context_menu');
- context_menu_element.innerHTML = html;
-
- var context_menu_items = context_menu_element.getElementsByTagName('a');
-
- var context_menu_items_count = context_menu_items.length;
-
- for(var i = 0; i < context_menu_items_count; i++){
- var context_menu_item = context_menu_items[i];
-
- var assign_menu_item_action = function(ev){
- ev.preventDefault();
-
- options[this.id.replace(control + '_', '')].action.apply(self, [e]);
- self.hideContextMenu();
- };
-
- google.maps.event.clearListeners(context_menu_item, 'click');
- google.maps.event.addDomListenerOnce(context_menu_item, 'click', assign_menu_item_action, false);
- }
-
- var left = self.el.offsetLeft + e.pixel.x - 15;
- var top = self.el.offsetTop + e.pixel.y - 15;
-
- context_menu_element.style.left = left + "px";
- context_menu_element.style.top = top + "px";
-
- context_menu_element.style.display = 'block';
- };
-
- var buildContextMenu = function(control, e) {
- if (control === 'marker') {
- e.pixel = {};
- var overlay = new google.maps.OverlayView();
- overlay.setMap(self.map);
- overlay.draw = function() {
- var projection = overlay.getProjection();
- var position = e.marker.getPosition();
- e.pixel = projection.fromLatLngToContainerPixel(position);
-
- buildContextMenuHTML(control, e);
- };
- }
- else {
- buildContextMenuHTML(control, e);
- }
- };
-
- this.setContextMenu = function(options) {
- window.context_menu[options.control] = {};
-
- for (var i in options.options){
- if (options.options.hasOwnProperty(i)){
- var option = options.options[i];
- window.context_menu[options.control][option.name] = {
- title: option.title,
- action: option.action
- };
- }
- }
-
- var ul = doc.createElement('ul');
-
- ul.id = 'gmaps_context_menu';
- ul.style.display = 'none';
- ul.style.position = 'absolute';
- ul.style.minWidth = '100px';
- ul.style.background = 'white';
- ul.style.listStyle = 'none';
- ul.style.padding = '8px';
- ul.style.boxShadow = '2px 2px 6px #ccc';
-
- doc.body.appendChild(ul);
-
- var context_menu_element = getElementById('gmaps_context_menu');
-
- google.maps.event.addDomListener(context_menu_element, 'mouseout', function(ev) {
- if(!ev.relatedTarget || !this.contains(ev.relatedTarget)){
- window.setTimeout(function(){
- context_menu_element.style.display = 'none';
- }, 400);
- }
- }, false);
- };
-
- this.hideContextMenu = function() {
- var context_menu_element = getElementById('gmaps_context_menu');
- if(context_menu_element)
- context_menu_element.style.display = 'none';
- };
-
- //Events
-
- var setupListener = function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- if(e == undefined) {
- e = this;
- }
-
- options[name].apply(this, [e]);
-
- self.hideContextMenu();
- });
- }
-
- for (var ev = 0; ev < events_that_hide_context_menu.length; ev++) {
- var name = events_that_hide_context_menu[ev];
-
- if (name in options) {
- setupListener(this.map, name);
- }
- }
-
- for (var ev = 0; ev < events_that_doesnt_hide_context_menu.length; ev++) {
- var name = events_that_doesnt_hide_context_menu[ev];
-
- if (name in options) {
- setupListener(this.map, name);
- }
- }
-
- google.maps.event.addListener(this.map, 'rightclick', function(e) {
- if (options.rightclick) {
- options.rightclick.apply(this, [e]);
- }
-
- if(window.context_menu['map'] != undefined) {
- buildContextMenu('map', e);
- }
- });
-
- this.refresh = function() {
- google.maps.event.trigger(this.map, 'resize');
- };
-
- this.fitZoom = function() {
- var latLngs = [];
- var markers_length = this.markers.length;
-
- for(var i=0; i < markers_length; i++) {
- latLngs.push(this.markers[i].getPosition());
- }
-
- this.fitLatLngBounds(latLngs);
- };
-
- this.fitLatLngBounds = function(latLngs) {
- var total = latLngs.length;
- var bounds = new google.maps.LatLngBounds();
-
- for(var i=0; i < total; i++) {
- bounds.extend(latLngs[i]);
- }
-
- this.map.fitBounds(bounds);
- };
-
- // Map methods
- this.setCenter = function(lat, lng, callback) {
- this.map.panTo(new google.maps.LatLng(lat, lng));
- if (callback) {
- callback();
- }
- };
-
- this.getElement = function() {
- return this.el;
- };
-
- this.zoomIn = function(value) {
- this.zoom = this.map.getZoom() + value;
- this.map.setZoom(this.zoom);
- };
-
- this.zoomOut = function(value) {
- this.zoom = this.map.getZoom() - value;
- this.map.setZoom(this.zoom);
- };
-
- var native_methods = [];
-
- for(var method in this.map){
- if(typeof(this.map[method]) == 'function' && !this[method]){
- native_methods.push(method);
- }
- }
-
- for(var i=0; i < native_methods.length; i++){
- (function(gmaps, scope, method_name) {
- gmaps[method_name] = function(){
- return scope[method_name].apply(scope, arguments);
- };
- })(this, this.map, native_methods[i]);
- }
-
- this.createControl = function(options) {
- var control = doc.createElement('div');
-
- control.style.cursor = 'pointer';
- control.style.fontFamily = 'Arial, sans-serif';
- control.style.fontSize = '13px';
- control.style.boxShadow = 'rgba(0, 0, 0, 0.398438) 0px 2px 4px';
-
- for(var option in options.style)
- control.style[option] = options.style[option];
-
- if(options.id) {
- control.id = options.id;
- }
-
- if(options.classes) {
- control.className = options.classes;
- }
-
- if(options.content) {
- control.innerHTML = options.content;
- }
-
- for (var ev in options.events) {
- (function(object, name) {
- google.maps.event.addDomListener(object, name, function(){
- options.events[name].apply(this, [this]);
- });
- })(control, ev);
- }
-
- control.index = 1;
-
- return control;
- };
-
- this.addControl = function(options) {
- var position = google.maps.ControlPosition[options.position.toUpperCase()];
-
- delete options.position;
-
- var control = this.createControl(options);
- this.controls.push(control);
- this.map.controls[position].push(control);
-
- return control;
- };
-
- // Markers
- this.createMarker = function(options) {
- if ((options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) || options.position) {
- var self = this;
- var details = options.details;
- var fences = options.fences;
- var outside = options.outside;
-
- var base_options = {
- position: new google.maps.LatLng(options.lat, options.lng),
- map: null
- };
-
- delete options.lat;
- delete options.lng;
- delete options.fences;
- delete options.outside;
-
- var marker_options = extend_object(base_options, options);
-
- var marker = new google.maps.Marker(marker_options);
-
- marker.fences = fences;
-
- if (options.infoWindow) {
- marker.infoWindow = new google.maps.InfoWindow(options.infoWindow);
-
- var info_window_events = ['closeclick', 'content_changed', 'domready', 'position_changed', 'zindex_changed'];
-
- for (var ev = 0; ev < info_window_events.length; ev++) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- if (options.infoWindow[name])
- options.infoWindow[name].apply(this, [e]);
- });
- })(marker.infoWindow, info_window_events[ev]);
- }
- }
-
- var marker_events = ['animation_changed', 'clickable_changed', 'cursor_changed', 'draggable_changed', 'flat_changed', 'icon_changed', 'position_changed', 'shadow_changed', 'shape_changed', 'title_changed', 'visible_changed', 'zindex_changed'];
-
- var marker_events_with_mouse = ['dblclick', 'drag', 'dragend', 'dragstart', 'mousedown', 'mouseout', 'mouseover', 'mouseup'];
-
- for (var ev = 0; ev < marker_events.length; ev++) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(){
- if (options[name])
- options[name].apply(this, [this]);
- });
- })(marker, marker_events[ev]);
- }
-
- for (var ev = 0; ev < marker_events_with_mouse.length; ev++) {
- (function(map, object, name) {
- google.maps.event.addListener(object, name, function(me){
- if(!me.pixel){
- me.pixel = map.getProjection().fromLatLngToPoint(me.latLng)
- }
- if (options[name])
- options[name].apply(this, [me]);
- });
- })(this.map, marker, marker_events_with_mouse[ev]);
- }
-
- google.maps.event.addListener(marker, 'click', function() {
- this.details = details;
-
- if (options.click) {
- options.click.apply(this, [this]);
- }
-
- if (marker.infoWindow) {
- self.hideInfoWindows();
- marker.infoWindow.open(self.map, marker);
- }
- });
-
- google.maps.event.addListener(marker, 'rightclick', function(e) {
- e.marker = this;
-
- if (options.rightclick) {
- options.rightclick.apply(this, [e]);
- }
-
- if (window.context_menu['marker'] != undefined) {
- buildContextMenu('marker', e);
- }
- });
-
- if (options.dragend || marker.fences) {
- google.maps.event.addListener(marker, 'dragend', function() {
- if (marker.fences) {
- self.checkMarkerGeofence(marker, function(m, f) {
- outside(m, f);
- });
- }
- });
- }
-
- return marker;
- }
- else {
- throw 'No latitude or longitude defined';
- }
- };
-
- this.addMarker = function(options) {
- var marker;
- if(options.hasOwnProperty('gm_accessors_')) {
- // Native google.maps.Marker object
- marker = options;
- }
- else {
- if ((options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) || options.position) {
- marker = this.createMarker(options);
- }
- else {
- throw 'No latitude or longitude defined';
- }
- }
-
- marker.setMap(this.map);
-
- if(this.markerClusterer)
- this.markerClusterer.addMarker(marker);
-
- this.markers.push(marker);
-
- return marker;
- };
-
- this.addMarkers = function(array) {
- for (var i=0, marker; marker=array[i]; i++) {
- this.addMarker(marker);
- }
- return this.markers;
- };
-
- this.hideInfoWindows = function() {
- for (var i=0, marker; marker=this.markers[i]; i++){
- if (marker.infoWindow){
- marker.infoWindow.close();
- }
- }
- };
-
- this.removeMarker = function(marker) {
- for(var i = 0; i < this.markers.length; i++) {
- if(this.markers[i] === marker) {
- this.markers[i].setMap(null);
- this.markers.splice(i, 1);
-
- break;
- }
- }
-
- return marker;
- };
-
- this.removeMarkers = function(collection) {
- var collection = (collection || this.markers);
-
- for(var i=0;i < this.markers.length; i++){
- if(this.markers[i] === collection[i])
- this.markers[i].setMap(null);
- }
-
- var new_markers = [];
-
- for(var i=0;i < this.markers.length; i++){
- if(this.markers[i].getMap() != null)
- new_markers.push(this.markers[i]);
- }
-
- this.markers = new_markers;
- };
-
- // Overlays
-
- this.drawOverlay = function(options) {
- var overlay = new google.maps.OverlayView();
- overlay.setMap(self.map);
-
- var auto_show = true;
-
- if(options.auto_show != null)
- auto_show = options.auto_show;
-
- overlay.onAdd = function() {
- var el = doc.createElement('div');
- el.style.borderStyle = "none";
- el.style.borderWidth = "0px";
- el.style.position = "absolute";
- el.style.zIndex = 100;
- el.innerHTML = options.content;
-
- overlay.el = el;
-
- var panes = this.getPanes();
- if (!options.layer) {
- options.layer = 'overlayLayer';
- }
- var overlayLayer = panes[options.layer];
- overlayLayer.appendChild(el);
-
- var stop_overlay_events = ['contextmenu', 'DOMMouseScroll', 'dblclick', 'mousedown'];
-
- for (var ev = 0; ev < stop_overlay_events.length; ev++) {
- (function(object, name) {
- google.maps.event.addDomListener(object, name, function(e){
- if(navigator.userAgent.toLowerCase().indexOf('msie') != -1 && document.all) {
- e.cancelBubble = true;
- e.returnValue = false;
- }
- else {
- e.stopPropagation();
- }
- });
- })(el, stop_overlay_events[ev]);
- }
-
- google.maps.event.trigger(this, 'ready');
- };
-
- overlay.draw = function() {
- var projection = this.getProjection();
- var pixel = projection.fromLatLngToDivPixel(new google.maps.LatLng(options.lat, options.lng));
-
- options.horizontalOffset = options.horizontalOffset || 0;
- options.verticalOffset = options.verticalOffset || 0;
-
- var el = overlay.el;
- var content = el.children[0];
-
- var content_height = content.clientHeight;
- var content_width = content.clientWidth;
-
- switch (options.verticalAlign) {
- case 'top':
- el.style.top = (pixel.y - content_height + options.verticalOffset) + 'px';
- break;
- default:
- case 'middle':
- el.style.top = (pixel.y - (content_height / 2) + options.verticalOffset) + 'px';
- break;
- case 'bottom':
- el.style.top = (pixel.y + options.verticalOffset) + 'px';
- break;
- }
-
- switch (options.horizontalAlign) {
- case 'left':
- el.style.left = (pixel.x - content_width + options.horizontalOffset) + 'px';
- break;
- default:
- case 'center':
- el.style.left = (pixel.x - (content_width / 2) + options.horizontalOffset) + 'px';
- break;
- case 'right':
- el.style.left = (pixel.x + options.horizontalOffset) + 'px';
- break;
- }
-
- el.style.display = auto_show ? 'block' : 'none';
-
- if(!auto_show){
- options.show.apply(this, [el]);
- }
- };
-
- overlay.onRemove = function() {
- var el = overlay.el;
-
- if(options.remove){
- options.remove.apply(this, [el]);
- }
- else{
- overlay.el.parentNode.removeChild(overlay.el);
- overlay.el = null;
- }
- };
-
- self.overlays.push(overlay);
- return overlay;
- };
-
- this.removeOverlay = function(overlay) {
- for(var i = 0; i < this.overlays.length; i++) {
- if(this.overlays[i] === overlay) {
- this.overlays[i].setMap(null);
- this.overlays.splice(i, 1);
-
- break;
- }
- }
- };
-
- this.removeOverlays = function() {
- for (var i=0, item; item=self.overlays[i]; i++){
- item.setMap(null);
- }
- self.overlays = [];
- };
-
- // Geometry
-
- this.drawPolyline = function(options) {
- var path = [];
- var points = options.path;
-
- if (points.length){
- if (points[0][0] === undefined){
- path = points;
- }
- else {
- for (var i=0, latlng; latlng=points[i]; i++){
- path.push(new google.maps.LatLng(latlng[0], latlng[1]));
- }
- }
- }
-
- var polyline_options = {
- map: this.map,
- path: path,
- strokeColor: options.strokeColor,
- strokeOpacity: options.strokeOpacity,
- strokeWeight: options.strokeWeight,
- geodesic: options.geodesic,
- clickable: true,
- editable: false,
- visible: true
- };
-
- if(options.hasOwnProperty("clickable"))
- polyline_options.clickable = options.clickable;
-
- if(options.hasOwnProperty("editable"))
- polyline_options.editable = options.editable;
-
- if(options.hasOwnProperty("icons"))
- polyline_options.icons = options.icons;
-
- if(options.hasOwnProperty("zIndex"))
- polyline_options.zIndex = options.zIndex;
-
- var polyline = new google.maps.Polyline(polyline_options);
-
- var polyline_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick'];
-
- for (var ev = 0; ev < polyline_events.length; ev++) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- if (options[name])
- options[name].apply(this, [e]);
- });
- })(polyline, polyline_events[ev]);
- }
-
- this.polylines.push(polyline);
-
- return polyline;
- };
-
- this.removePolyline = function(polyline) {
- for(var i = 0; i < this.polylines.length; i++) {
- if(this.polylines[i] === polyline) {
- this.polylines[i].setMap(null);
- this.polylines.splice(i, 1);
-
- break;
- }
- }
- };
-
- this.removePolylines = function() {
- for (var i=0, item; item=self.polylines[i]; i++){
- item.setMap(null);
- }
- self.polylines = [];
- };
-
- this.drawCircle = function(options) {
- options = extend_object({
- map: this.map,
- center: new google.maps.LatLng(options.lat, options.lng)
- }, options);
-
- delete options.lat;
- delete options.lng;
- var polygon = new google.maps.Circle(options);
-
- var polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick'];
-
- for (var ev = 0; ev < polygon_events.length; ev++) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- if (options[name])
- options[name].apply(this, [e]);
- });
- })(polygon, polygon_events[ev]);
- }
-
- this.polygons.push(polygon);
-
- return polygon;
- };
-
- this.drawRectangle = function(options) {
- options = extend_object({
- map: this.map
- }, options);
-
- var latLngBounds = new google.maps.LatLngBounds(
- new google.maps.LatLng(options.bounds[0][0], options.bounds[0][1]),
- new google.maps.LatLng(options.bounds[1][0], options.bounds[1][1])
- );
-
- options.bounds = latLngBounds;
-
- var polygon = new google.maps.Rectangle(options);
-
- var polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick'];
-
- for (var ev = 0; ev < polygon_events.length; ev++) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- if (options[name])
- options[name].apply(this, [e]);
- });
- })(polygon, polygon_events[ev]);
- }
-
- this.polygons.push(polygon);
-
- return polygon;
- };
-
- this.drawPolygon = function(options) {
- var useGeoJSON = false;
- if(options.hasOwnProperty("useGeoJSON"))
- useGeoJSON = options.useGeoJSON;
-
- delete options.useGeoJSON;
-
- options = extend_object({
- map: this.map
- }, options);
-
- if(useGeoJSON == false)
- options.paths = [options.paths.slice(0)];
-
- if(options.paths.length > 0) {
- if(options.paths[0].length > 0) {
- options.paths = array_flat(array_map(options.paths, arrayToLatLng, useGeoJSON));
- }
- }
-
- var polygon = new google.maps.Polygon(options);
-
- var polygon_events = ['click', 'dblclick', 'mousedown', 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'rightclick'];
-
- for (var ev = 0; ev < polygon_events.length; ev++) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- if (options[name])
- options[name].apply(this, [e]);
- });
- })(polygon, polygon_events[ev]);
- }
-
- this.polygons.push(polygon);
-
- return polygon;
- };
-
- this.removePolygon = function(polygon) {
- for(var i = 0; i < this.polygons.length; i++) {
- if(this.polygons[i] === polygon) {
- this.polygons[i].setMap(null);
- this.polygons.splice(i, 1);
-
- break;
- }
- }
- };
-
- this.removePolygons = function() {
- for (var i=0, item; item=self.polygons[i]; i++){
- item.setMap(null);
- }
- self.polygons = [];
- };
-
- // Fusion Tables
-
- this.getFromFusionTables = function(options) {
- var events = options.events;
-
- delete options.events;
-
- var fusion_tables_options = options;
-
- var layer = new google.maps.FusionTablesLayer(fusion_tables_options);
-
- for (var ev in events) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- events[name].apply(this, [e]);
- });
- })(layer, ev);
- }
-
- this.layers.push(layer);
-
- return layer;
- };
-
- this.loadFromFusionTables = function(options) {
- var layer = this.getFromFusionTables(options);
- layer.setMap(this.map);
-
- return layer;
- };
-
- // KML
-
- this.getFromKML = function(options) {
- var url = options.url;
- var events = options.events;
-
- delete options.url;
- delete options.events;
-
- var kml_options = options;
-
- var layer = new google.maps.KmlLayer(url, kml_options);
-
- for (var ev in events) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(e){
- events[name].apply(this, [e]);
- });
- })(layer, ev);
- }
-
- this.layers.push(layer);
-
- return layer;
- };
-
- this.loadFromKML = function(options) {
- var layer = this.getFromKML(options);
- layer.setMap(this.map);
-
- return layer;
- };
-
- // Routes
-
- var travelMode, unitSystem;
- this.getRoutes = function(options) {
- switch (options.travelMode) {
- case 'bicycling':
- travelMode = google.maps.TravelMode.BICYCLING;
- break;
- case 'transit':
- travelMode = google.maps.TravelMode.TRANSIT;
- break;
- case 'driving':
- travelMode = google.maps.TravelMode.DRIVING;
- break;
- // case 'walking':
- default:
- travelMode = google.maps.TravelMode.WALKING;
- break;
- }
-
- if (options.unitSystem === 'imperial') {
- unitSystem = google.maps.UnitSystem.IMPERIAL;
- }
- else {
- unitSystem = google.maps.UnitSystem.METRIC;
- }
-
- var base_options = {
- avoidHighways: false,
- avoidTolls: false,
- optimizeWaypoints: false,
- waypoints: []
- };
-
- var request_options = extend_object(base_options, options);
-
- request_options.origin = new google.maps.LatLng(options.origin[0], options.origin[1]);
- request_options.destination = new google.maps.LatLng(options.destination[0], options.destination[1]);
- request_options.travelMode = travelMode;
- request_options.unitSystem = unitSystem;
-
- delete request_options.callback;
-
- var self = this;
- var service = new google.maps.DirectionsService();
-
- service.route(request_options, function(result, status) {
- if (status === google.maps.DirectionsStatus.OK) {
- for (var r in result.routes) {
- if (result.routes.hasOwnProperty(r)) {
- self.routes.push(result.routes[r]);
- }
- }
- }
- if (options.callback) {
- options.callback(self.routes);
- }
- });
- };
-
- this.removeRoutes = function() {
- this.routes = [];
- };
-
- this.getElevations = function(options) {
- options = extend_object({
- locations: [],
- path : false,
- samples : 256
- }, options);
-
- if(options.locations.length > 0) {
- if(options.locations[0].length > 0) {
- options.locations = array_flat(array_map([options.locations], arrayToLatLng, false));
- }
- }
-
- var callback = options.callback;
- delete options.callback;
-
- var service = new google.maps.ElevationService();
-
- //location request
- if (!options.path) {
- delete options.path;
- delete options.samples;
- service.getElevationForLocations(options, function(result, status){
- if (callback && typeof(callback) === "function") {
- callback(result, status);
- }
- });
- //path request
- } else {
- var pathRequest = {
- path : options.locations,
- samples : options.samples
- };
-
- service.getElevationAlongPath(pathRequest, function(result, status){
- if (callback && typeof(callback) === "function") {
- callback(result, status);
- }
- });
- }
- };
-
- // Alias for the method "drawRoute"
- this.cleanRoute = this.removePolylines;
-
- this.drawRoute = function(options) {
- var self = this;
- this.getRoutes({
- origin: options.origin,
- destination: options.destination,
- travelMode: options.travelMode,
- waypoints: options.waypoints,
- unitSystem: options.unitSystem,
- callback: function(e) {
- if (e.length > 0) {
- self.drawPolyline({
- path: e[e.length - 1].overview_path,
- strokeColor: options.strokeColor,
- strokeOpacity: options.strokeOpacity,
- strokeWeight: options.strokeWeight
- });
- if (options.callback) {
- options.callback(e[e.length - 1]);
- }
- }
- }
- });
- };
-
- this.travelRoute = function(options) {
- if (options.origin && options.destination) {
- this.getRoutes({
- origin: options.origin,
- destination: options.destination,
- travelMode: options.travelMode,
- waypoints : options.waypoints,
- callback: function(e) {
- //start callback
- if (e.length > 0 && options.start) {
- options.start(e[e.length - 1]);
- }
-
- //step callback
- if (e.length > 0 && options.step) {
- var route = e[e.length - 1];
- if (route.legs.length > 0) {
- var steps = route.legs[0].steps;
- for (var i=0, step; step=steps[i]; i++) {
- step.step_number = i;
- options.step(step, (route.legs[0].steps.length - 1));
- }
- }
- }
-
- //end callback
- if (e.length > 0 && options.end) {
- options.end(e[e.length - 1]);
- }
- }
- });
- }
- else if (options.route) {
- if (options.route.legs.length > 0) {
- var steps = options.route.legs[0].steps;
- for (var i=0, step; step=steps[i]; i++) {
- step.step_number = i;
- options.step(step);
- }
- }
- }
- };
-
- this.drawSteppedRoute = function(options) {
- if (options.origin && options.destination) {
- this.getRoutes({
- origin: options.origin,
- destination: options.destination,
- travelMode: options.travelMode,
- waypoints : options.waypoints,
- callback: function(e) {
- //start callback
- if (e.length > 0 && options.start) {
- options.start(e[e.length - 1]);
- }
-
- //step callback
- if (e.length > 0 && options.step) {
- var route = e[e.length - 1];
- if (route.legs.length > 0) {
- var steps = route.legs[0].steps;
- for (var i=0, step; step=steps[i]; i++) {
- step.step_number = i;
- self.drawPolyline({
- path: step.path,
- strokeColor: options.strokeColor,
- strokeOpacity: options.strokeOpacity,
- strokeWeight: options.strokeWeight
- });
- options.step(step, (route.legs[0].steps.length - 1));
- }
- }
- }
-
- //end callback
- if (e.length > 0 && options.end) {
- options.end(e[e.length - 1]);
- }
- }
- });
- }
- else if (options.route) {
- if (options.route.legs.length > 0) {
- var steps = options.route.legs[0].steps;
- for (var i=0, step; step=steps[i]; i++) {
- step.step_number = i;
- self.drawPolyline({
- path: step.path,
- strokeColor: options.strokeColor,
- strokeOpacity: options.strokeOpacity,
- strokeWeight: options.strokeWeight
- });
-
- options.step(step);
- }
- }
- }
- };
-
- // Geofence
-
- this.checkGeofence = function(lat, lng, fence) {
- return fence.containsLatLng(new google.maps.LatLng(lat, lng));
- };
-
- this.checkMarkerGeofence = function(marker, outside_callback) {
- if (marker.fences) {
- for (var i=0, fence; fence=marker.fences[i]; i++) {
- var pos = marker.getPosition();
- if (!self.checkGeofence(pos.lat(), pos.lng(), fence)) {
- outside_callback(marker, fence);
- }
- }
- }
- };
-
- // Layers
-
- this.addLayer = function(layerName, options) {
- //var default_layers = ['weather', 'clouds', 'traffic', 'transit', 'bicycling', 'panoramio', 'places'];
- options = options || {};
- var layer;
-
- switch(layerName) {
- case 'weather': this.singleLayers.weather = layer = new google.maps.weather.WeatherLayer();
- break;
- case 'clouds': this.singleLayers.clouds = layer = new google.maps.weather.CloudLayer();
- break;
- case 'traffic': this.singleLayers.traffic = layer = new google.maps.TrafficLayer();
- break;
- case 'transit': this.singleLayers.transit = layer = new google.maps.TransitLayer();
- break;
- case 'bicycling': this.singleLayers.bicycling = layer = new google.maps.BicyclingLayer();
- break;
- case 'panoramio':
- this.singleLayers.panoramio = layer = new google.maps.panoramio.PanoramioLayer();
- layer.setTag(options.filter);
- delete options.filter;
-
- //click event
- if(options.click) {
- google.maps.event.addListener(layer, 'click', function(event) {
- options.click(event);
- delete options.click;
- });
- }
- break;
- case 'places':
- this.singleLayers.places = layer = new google.maps.places.PlacesService(this.map);
-
- //search and nearbySearch callback, Both are the same
- if(options.search || options.nearbySearch) {
- var placeSearchRequest = {
- bounds : options.bounds || null,
- keyword : options.keyword || null,
- location : options.location || null,
- name : options.name || null,
- radius : options.radius || null,
- rankBy : options.rankBy || null,
- types : options.types || null
- };
-
- if(options.search) {
- layer.search(placeSearchRequest, options.search);
- }
-
- if(options.nearbySearch) {
- layer.nearbySearch(placeSearchRequest, options.nearbySearch);
- }
- }
-
- //textSearch callback
- if(options.textSearch) {
- var textSearchRequest = {
- bounds : options.bounds || null,
- location : options.location || null,
- query : options.query || null,
- radius : options.radius || null
- };
-
- layer.textSearch(textSearchRequest, options.textSearch);
- }
- break;
- }
-
- if(layer !== undefined) {
- if(typeof layer.setOptions == 'function') {
- layer.setOptions(options);
- }
- if(typeof layer.setMap == 'function') {
- layer.setMap(this.map);
- }
-
- return layer;
- }
- };
-
- this.removeLayer = function(layerName) {
- if(this.singleLayers[layerName] !== undefined) {
- this.singleLayers[layerName].setMap(null);
- delete this.singleLayers[layerName];
- }
- };
-
- // Static Maps
-
- this.toImage = function(options) {
- var options = options || {};
- var static_map_options = {};
- static_map_options['size'] = options['size'] || [this.el.clientWidth, this.el.clientHeight];
- static_map_options['lat'] = this.getCenter().lat();
- static_map_options['lng'] = this.getCenter().lng();
-
- if(this.markers.length > 0) {
- static_map_options['markers'] = [];
- for(var i=0; i < this.markers.length; i++) {
- static_map_options['markers'].push({
- lat: this.markers[i].getPosition().lat(),
- lng: this.markers[i].getPosition().lng()
- });
- }
- }
-
- if(this.polylines.length > 0) {
- var polyline = this.polylines[0];
- static_map_options['polyline'] = {};
- static_map_options['polyline']['path'] = google.maps.geometry.encoding.encodePath(polyline.getPath());
- static_map_options['polyline']['strokeColor'] = polyline.strokeColor
- static_map_options['polyline']['strokeOpacity'] = polyline.strokeOpacity
- static_map_options['polyline']['strokeWeight'] = polyline.strokeWeight
- }
-
- return GMaps.staticMapURL(static_map_options);
- };
-
- // Map Types
-
- this.addMapType = function(mapTypeId, options) {
- if(options.hasOwnProperty("getTileUrl") && typeof(options["getTileUrl"]) == "function") {
- options.tileSize = options.tileSize || new google.maps.Size(256, 256);
-
- var mapType = new google.maps.ImageMapType(options);
-
- this.map.mapTypes.set(mapTypeId, mapType);
- }
- else {
- throw "'getTileUrl' function required";
- }
- };
-
- this.addOverlayMapType = function(options) {
- if(options.hasOwnProperty("getTile") && typeof(options["getTile"]) == "function") {
- var overlayMapTypeIndex = options.index;
-
- delete options.index;
-
- this.map.overlayMapTypes.insertAt(overlayMapTypeIndex, options);
- }
- else {
- throw "'getTile' function required";
- }
- };
-
- this.removeOverlayMapType = function(overlayMapTypeIndex) {
- this.map.overlayMapTypes.removeAt(overlayMapTypeIndex);
- };
-
- // Styles
-
- this.addStyle = function(options) {
- var styledMapType = new google.maps.StyledMapType(options.styles, options.styledMapName);
-
- this.map.mapTypes.set(options.mapTypeId, styledMapType);
- };
-
- this.setStyle = function(mapTypeId) {
- this.map.setMapTypeId(mapTypeId);
- };
-
- // StreetView
-
- this.createPanorama = function(streetview_options) {
- if (!streetview_options.hasOwnProperty('lat') || !streetview_options.hasOwnProperty('lng')) {
- streetview_options.lat = this.getCenter().lat();
- streetview_options.lng = this.getCenter().lng();
- }
-
- this.panorama = GMaps.createPanorama(streetview_options);
-
- this.map.setStreetView(this.panorama);
-
- return this.panorama;
- };
- };
-
- GMaps.createPanorama = function(options) {
- var el = getElementById(options.el, options.context);
-
- options.position = new google.maps.LatLng(options.lat, options.lng);
-
- delete options.el;
- delete options.context;
- delete options.lat;
- delete options.lng;
-
- var streetview_events = ['closeclick', 'links_changed', 'pano_changed', 'position_changed', 'pov_changed', 'resize', 'visible_changed'];
-
- var streetview_options = extend_object({visible : true}, options);
-
- for(var i = 0; i < streetview_events.length; i++) {
- delete streetview_options[streetview_events[i]];
- }
-
- var panorama = new google.maps.StreetViewPanorama(el, streetview_options);
-
- for(var i = 0; i < streetview_events.length; i++) {
- (function(object, name) {
- google.maps.event.addListener(object, name, function(){
- if (options[name]) {
- options[name].apply(this);
- }
- });
- })(panorama, streetview_events[i]);
- }
-
- return panorama;
- };
-
- GMaps.Route = function(options) {
- this.map = options.map;
- this.route = options.route;
- this.step_count = 0;
- this.steps = this.route.legs[0].steps;
- this.steps_length = this.steps.length;
-
- this.polyline = this.map.drawPolyline({
- path: new google.maps.MVCArray(),
- strokeColor: options.strokeColor,
- strokeOpacity: options.strokeOpacity,
- strokeWeight: options.strokeWeight
- }).getPath();
-
- this.back = function() {
- if (this.step_count > 0) {
- this.step_count--;
- var path = this.route.legs[0].steps[this.step_count].path;
- for (var p in path){
- if (path.hasOwnProperty(p)){
- this.polyline.pop();
- }
- }
- }
- };
-
- this.forward = function() {
- if (this.step_count < this.steps_length) {
- var path = this.route.legs[0].steps[this.step_count].path;
- for (var p in path){
- if (path.hasOwnProperty(p)){
- this.polyline.push(path[p]);
- }
- }
- this.step_count++;
- }
- };
- };
-
- // Geolocation (Modern browsers only)
- GMaps.geolocate = function(options) {
- var complete_callback = options.always || options.complete;
-
- if (navigator.geolocation) {
- navigator.geolocation.getCurrentPosition(function(position) {
- options.success(position);
-
- if (complete_callback) {
- complete_callback();
- }
- }, function(error) {
- options.error(error);
-
- if (complete_callback) {
- complete_callback();
- }
- }, options.options);
- }
- else {
- options.not_supported();
-
- if (complete_callback) {
- complete_callback();
- }
- }
- };
-
- // Geocoding
- GMaps.geocode = function(options) {
- this.geocoder = new google.maps.Geocoder();
- var callback = options.callback;
- if (options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) {
- options.latLng = new google.maps.LatLng(options.lat, options.lng);
- }
-
- delete options.lat;
- delete options.lng;
- delete options.callback;
- this.geocoder.geocode(options, function(results, status) {
- callback(results, status);
- });
- };
-
- // Static maps
- GMaps.staticMapURL = function(options){
- var parameters = [];
- var data;
-
- var static_root = 'http://maps.googleapis.com/maps/api/staticmap';
- if (options.url){
- static_root = options.url;
- delete options.url;
- }
- static_root += '?';
-
- var markers = options.markers;
- delete options.markers;
- if (!markers && options.marker){
- markers = [options.marker];
- delete options.marker;
- }
-
- var polyline = options.polyline;
- delete options.polyline;
-
- /** Map options **/
- if (options.center){
- parameters.push('center=' + options.center);
- delete options.center;
- }
- else if (options.address){
- parameters.push('center=' + options.address);
- delete options.address;
- }
- else if (options.lat){
- parameters.push(['center=', options.lat, ',', options.lng].join(''));
- delete options.lat;
- delete options.lng;
- }
- else if (options.visible){
- var visible = encodeURI(options.visible.join('|'));
- parameters.push('visible=' + visible);
- }
-
- var size = options.size;
- if (size){
- if (size.join){
- size = size.join('x');
- }
- delete options.size;
- }
- else {
- size = '630x300';
- }
- parameters.push('size=' + size);
-
- if (!options.zoom){
- options.zoom = 15;
- }
-
- var sensor = options.hasOwnProperty('sensor') ? !!options.sensor : true;
- delete options.sensor;
- parameters.push('sensor=' + sensor);
-
- for (var param in options){
- if (options.hasOwnProperty(param)){
- parameters.push(param + '=' + options[param]);
- }
- }
-
- /** Markers **/
- if (markers){
- var marker, loc;
-
- for (var i=0; data=markers[i]; i++){
- marker = [];
-
- if (data.size && data.size !== 'normal'){
- marker.push('size:' + data.size);
- }
- else if (data.icon){
- marker.push('icon:' + encodeURI(data.icon));
- }
-
- if (data.color){
- marker.push('color:' + data.color.replace('#', '0x'));
- }
-
- if (data.label){
- marker.push('label:' + data.label[0].toUpperCase());
- }
-
- loc = (data.address ? data.address : data.lat + ',' + data.lng);
-
- if (marker.length || i === 0){
- marker.push(loc);
- marker = marker.join('|');
- parameters.push('markers=' + encodeURI(marker));
- }
- // New marker without styles
- else {
- marker = parameters.pop() + encodeURI('|' + loc);
- parameters.push(marker);
- }
- }
- }
-
- /** Polylines **/
- function parseColor(color, opacity){
- if (color[0] === '#'){
- color = color.replace('#', '0x');
-
- if (opacity){
- opacity = parseFloat(opacity);
- opacity = Math.min(1, Math.max(opacity, 0));
- if (opacity === 0){
- return '0x00000000';
- }
- opacity = (opacity * 255).toString(16);
- if (opacity.length === 1){
- opacity += opacity;
- }
-
- color = color.slice(0,8) + opacity;
- }
- }
- return color;
- }
-
- if (polyline){
- data = polyline;
- polyline = [];
-
- if (data.strokeWeight){
- polyline.push('weight:' + parseInt(data.strokeWeight, 10));
- }
-
- if (data.strokeColor){
- var color = parseColor(data.strokeColor, data.strokeOpacity);
- polyline.push('color:' + color);
- }
-
- if (data.fillColor){
- var fillcolor = parseColor(data.fillColor, data.fillOpacity);
- polyline.push('fillcolor:' + fillcolor);
- }
-
- var path = data.path;
- if (path.join){
- for (var j=0, pos; pos=path[j]; j++){
- polyline.push(pos.join(','));
- }
- }
- else {
- polyline.push('enc:' + path);
- }
-
- polyline = polyline.join('|');
- parameters.push('path=' + encodeURI(polyline));
- }
-
- parameters = parameters.join('&');
- return static_root + parameters;
- };
-
- //==========================
- // Polygon containsLatLng
- // https://github.com/tparkin/Google-Maps-Point-in-Polygon
- // Poygon getBounds extension - google-maps-extensions
- // http://code.google.com/p/google-maps-extensions/source/browse/google.maps.Polygon.getBounds.js
- if (!google.maps.Polygon.prototype.getBounds) {
- google.maps.Polygon.prototype.getBounds = function(latLng) {
- var bounds = new google.maps.LatLngBounds();
- var paths = this.getPaths();
- var path;
-
- for (var p = 0; p < paths.getLength(); p++) {
- path = paths.getAt(p);
- for (var i = 0; i < path.getLength(); i++) {
- bounds.extend(path.getAt(i));
- }
- }
-
- return bounds;
- };
- }
-
- if (!google.maps.Polygon.prototype.containsLatLng) {
- // Polygon containsLatLng - method to determine if a latLng is within a polygon
- google.maps.Polygon.prototype.containsLatLng = function(latLng) {
- // Exclude points outside of bounds as there is no way they are in the poly
- var bounds = this.getBounds();
-
- if (bounds !== null && !bounds.contains(latLng)) {
- return false;
- }
-
- // Raycast point in polygon method
- var inPoly = false;
-
- var numPaths = this.getPaths().getLength();
- for (var p = 0; p < numPaths; p++) {
- var path = this.getPaths().getAt(p);
- var numPoints = path.getLength();
- var j = numPoints - 1;
-
- for (var i = 0; i < numPoints; i++) {
- var vertex1 = path.getAt(i);
- var vertex2 = path.getAt(j);
-
- if (vertex1.lng() < latLng.lng() && vertex2.lng() >= latLng.lng() || vertex2.lng() < latLng.lng() && vertex1.lng() >= latLng.lng()) {
- if (vertex1.lat() + (latLng.lng() - vertex1.lng()) / (vertex2.lng() - vertex1.lng()) * (vertex2.lat() - vertex1.lat()) < latLng.lat()) {
- inPoly = !inPoly;
- }
- }
-
- j = i;
- }
- }
-
- return inPoly;
- };
- }
-
- google.maps.LatLngBounds.prototype.containsLatLng = function(latLng) {
- return this.contains(latLng);
- };
-
- google.maps.Marker.prototype.setFences = function(fences) {
- this.fences = fences;
- };
-
- google.maps.Marker.prototype.addFence = function(fence) {
- this.fences.push(fence);
- };
-
- return GMaps;
- }(this));
-
- var coordsToLatLngs = function(coords, useGeoJSON) {
- var first_coord = coords[0];
- var second_coord = coords[1];
-
- if(useGeoJSON) {
- first_coord = coords[1];
- second_coord = coords[0];
- }
-
- return new google.maps.LatLng(first_coord, second_coord);
- };
-
- var arrayToLatLng = function(coords, useGeoJSON) {
- for(var i=0; i < coords.length; i++) {
- if(coords[i].length > 0 && typeof(coords[i][0]) != "number") {
- coords[i] = arrayToLatLng(coords[i], useGeoJSON);
- }
- else {
- coords[i] = coordsToLatLngs(coords[i], useGeoJSON);
- }
- }
-
- return coords;
- };
-
- var extend_object = function(obj, new_obj) {
- if(obj === new_obj) return obj;
-
- for(var name in new_obj) {
- obj[name] = new_obj[name];
- }
-
- return obj;
- };
-
- var replace_object = function(obj, replace) {
- if(obj === replace) return obj;
-
- for(var name in replace) {
- if(obj[name] != undefined)
- obj[name] = replace[name];
- }
-
- return obj;
- };
-
- var array_map = function(array, callback) {
- var original_callback_params = Array.prototype.slice.call(arguments, 2);
-
- if (Array.prototype.map && array.map === Array.prototype.map) {
- return Array.prototype.map.call(array, function(item) {
- callback_params = original_callback_params;
- callback_params.splice(0, 0, item);
-
- return callback.apply(this, callback_params);
- });
- }
- else {
- var array_return = [];
- var array_length = array.length;
-
- for(var i = 0; i < array_length; i++) {
- callback_params = original_callback_params;
- callback_params = callback_params.splice(0, 0, array[i]);
- array_return.push(callback.apply(this, callback_params));
- }
-
- return array_return;
- }
- };
-
- var array_flat = function(array) {
- new_array = [];
-
- for(var i=0; i < array.length; i++) {
- new_array = new_array.concat(array[i]);
- }
-
- return new_array;
- };
-
-}
\ No newline at end of file
diff --git a/assets/plugins/horizontal-parallax/css/horizontal-parallax.css b/assets/plugins/horizontal-parallax/css/horizontal-parallax.css
deleted file mode 100644
index 503390c..0000000
--- a/assets/plugins/horizontal-parallax/css/horizontal-parallax.css
+++ /dev/null
@@ -1,342 +0,0 @@
-/*
-Theme created for use with Sequence.js (http://www.sequencejs.com/)
-
-Theme: Sliding Horizontal Parallax
-Version: 1.0
-Theme Author: Ian Lunn @IanLunn
-Author URL: http://www.ianlunn.co.uk/
-Theme URL: http://www.sequencejs.com/themes/sliding-horizontal-parallax/
-
-This is a FREE theme and is available under a MIT License:
-http://www.opensource.org/licenses/mit-license.php
-
-Sequence.js and its dependencies are (c) Ian Lunn Design 2012 unless otherwise stated.
-
-/* prefix declarations */
-/* THEME STYLES */
-
-/* Inner Slider */
-.sequence-inner,
-.sequence-inner h2,
-.sequence-inner .info p {
- background:none !important;
-}
-/* End Inner Slider */
-
-#sequence-theme {
- background: url(../images/bg-sky.png) repeat-x #65b7f1;
- color: #fff;
- font-family:'Open Sans', sans-serif;
- max-width: 2560px;
- position: relative;
- margin: 0 auto;
- overflow: hidden;
- -webkit-backface-visibility: hidden;
- /* prevent graphical glitches in WebKit browsers when using transitions */
-}
-#sequence-theme .next,
-#sequence-theme .prev {
- color: white;
- cursor: pointer;
- display: none;
- font-size: 80px;
- font-weight: bold;
- position: absolute;
- opacity: 0.4;
- top: 50%;
- height: 41px;
- width: 39px;
- z-index: 20;
- -webkit-transition-duration: 0.4s;
- -moz-transition-duration: 0.4s;
- -ms-transition-duration: 0.4s;
- -o-transition-duration: 0.4s;
- transition-duration: 0.4s;
-}
-#sequence-theme .prev {
- left: 30px;
- position: absolute;
-}
-#sequence-theme .next {
- position: absolute;
- right: 30px;
-}
-#sequence-theme .next:hover,
-#sequence-theme .prev:hover {
- opacity: 1;
- -webkit-transform: scale(1.2);
- -moz-transform: scale(1.2);
- -ms-transform: scale(1.2);
- -o-transform: scale(1.2);
- transform: scale(1.2);
- -webkit-transition-duration: 0.4s;
- -moz-transition-duration: 0.4s;
- -ms-transition-duration: 0.4s;
- -o-transition-duration: 0.4s;
- transition-duration: 0.4s;
-}
-#sequence-theme #sequence li > * {
- position: absolute;
-}
-#sequence-theme #sequence {
- min-height: 420px;
- margin: 0 auto;
- position: relative;
- max-width: 1400px;
-}
-#sequence-theme .info {
- font-size: 1.5em;
- right: 150%;
- line-height: 1.4em;
- top: 120px;
- width: 40%;
- z-index: 10;
- vertical-align: middle;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
-}
-#sequence-theme h2 {
- color:#555;
- font-size: 2em;
- line-height: 1.2em;
- padding:5px 8px;
- display:inline-block;
- background:url(../images/bg-text.png) repeat;
-}
-#sequence-theme .info p {
- padding:5px 10px;
- background:url(../images/bg-text.png) repeat;
-}
-#sequence-theme .animate-in .info {
- right: 15%;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
-}
-#sequence-theme .animate-out .info {
- right: -150%;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
-}
-#sequence-theme .balloon {
- left: -140%;
- top: 150px;
- max-width: 40%;
- z-index: 6;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
-}
-#sequence-theme .animate-in .balloon {
- left: 15%;
- top: 70px;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
- z-index: 4;
-}
-#sequence-theme .animate-out .balloon {
- left: 140%;
- top: -30px;
- z-index: 2;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
-}
-#sequence-theme .aeroplane {
- left: -50%;
- max-width: 40%;
- top: 800px;
- z-index: 6;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
-}
-#sequence-theme .animate-in .aeroplane {
- left: 10%;
- top: 100px;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
- -webkit-transform: rotate(20deg);
- -moz-transform: rotate(20deg);
- -ms-transform: rotate(20deg);
- -o-transform: rotate(20deg);
- transform: rotate(20deg);
- -webkit-transition-property: left top -webkit-transform;
- -moz-transition-property: left top -moz-transform;
- -o-transition-property: left top -o-transform;
- -ms-transition-property: left top -ms-transform;
- transition-property: left top transform;
- z-index: 4;
-}
-#sequence-theme .animate-out .aeroplane {
- left: 70%;
- top: -900px;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
- -webkit-transform: rotate(40deg);
- -moz-transform: rotate(40deg);
- -ms-transform: rotate(40deg);
- -o-transform: rotate(40deg);
- transform: rotate(40deg);
- -webkit-transition-property: left top -webkit-transform;
- -moz-transition-property: left top -moz-transform;
- -o-transition-property: left top -o-transform;
- -ms-transition-property: left top -ms-transform;
- transition-property: left top transform;
- z-index: 2;
-}
-#sequence-theme .sky {
- height: auto;
- width: 100%;
- left: -6%;
- opacity: 0;
- top: 0;
- vertical-align: middle;
- z-index: 1;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
-}
-#sequence-theme .animate-in .sky {
- left: 0%;
- opacity: 1;
- top: 0;
- z-index: 1;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
-}
-#sequence-theme .animate-out .sky {
- left: 6%;
- opacity: 0;
- top: 0;
- z-index: 1;
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
-}
-#sequence-theme .kite {
- left: -30%;
- opacity: 0;
- max-width: 40%;
- top: 300px;
- z-index: 6;
- -webkit-transform-origin: 100%;
- -moz-transform-origin: 100%;
- -ms-transform-origin: 100%;
- -o-transform-origin: 100%;
- transform-origin: 100%;
- -webkit-transition-property: left top;
- -moz-transition-property: left top;
- -ms-transition-property: left top;
- -o-transition-property: left top;
- transition-property: left top;
-}
-#sequence-theme .animate-in .kite {
- left: -15%;
- top: 300px;
- opacity: 1;
- z-index: 4;
- -webkit-transition-property: left top -webkit-transform;
- -moz-transition-property: left top -moz-transform;
- -o-transition-property: left top -o-transform;
- -ms-transition-property: left top -ms-transform;
- transition-property: left top transform;
- -webkit-transform-origin: 100%;
- -moz-transform-origin: 100%;
- -ms-transform-origin: 100%;
- -o-transform-origin: 100%;
- transform-origin: 100%;
- -webkit-transform: rotate(80deg);
- -moz-transform: rotate(80deg);
- -ms-transform: rotate(80deg);
- -o-transform: rotate(80deg);
- transform: rotate(80deg);
- -webkit-transition-duration: 4s;
- -moz-transition-duration: 4s;
- -ms-transition-duration: 4s;
- -o-transition-duration: 4s;
- transition-duration: 4s;
-}
-#sequence-theme .animate-out .kite {
- left: -15%;
- opacity: 0;
- top: 300px;
- z-index: 2;
- -webkit-transition-property: left top -webkit-transform;
- -moz-transition-property: left top -moz-transform;
- -o-transition-property: left top -o-transform;
- -ms-transition-property: left top -ms-transform;
- transition-property: left top transform;
- -webkit-transform-origin: 100%;
- -moz-transform-origin: 100%;
- -ms-transform-origin: 100%;
- -o-transform-origin: 100%;
- transform-origin: 100%;
- -webkit-transform: rotate(200deg);
- -moz-transform: rotate(200deg);
- -ms-transform: rotate(200deg);
- -o-transform: rotate(200deg);
- transform: rotate(200deg);
- -webkit-transition-duration: 3s;
- -moz-transition-duration: 3s;
- -ms-transition-duration: 3s;
- -o-transition-duration: 3s;
- transition-duration: 3s;
-}
-#sequence-theme .sequence-fallback .animate-in .kite {
- left: 20%;
- top: 200px;
-}
-#sequence-theme ul {
- list-style:none;
-}
\ No newline at end of file
diff --git a/assets/plugins/horizontal-parallax/images/aeroplane.png b/assets/plugins/horizontal-parallax/images/aeroplane.png
deleted file mode 100644
index 811fe53..0000000
Binary files a/assets/plugins/horizontal-parallax/images/aeroplane.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/balloon.png b/assets/plugins/horizontal-parallax/images/balloon.png
deleted file mode 100644
index 9b38184..0000000
Binary files a/assets/plugins/horizontal-parallax/images/balloon.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bg-clouds.png b/assets/plugins/horizontal-parallax/images/bg-clouds.png
deleted file mode 100644
index c172d91..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bg-clouds.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bg-heading.png b/assets/plugins/horizontal-parallax/images/bg-heading.png
deleted file mode 100644
index d96290e..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bg-heading.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bg-sky.png b/assets/plugins/horizontal-parallax/images/bg-sky.png
deleted file mode 100644
index 870db85..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bg-sky.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bg-text.png b/assets/plugins/horizontal-parallax/images/bg-text.png
deleted file mode 100644
index d93b435..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bg-text.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bt-next.png b/assets/plugins/horizontal-parallax/images/bt-next.png
deleted file mode 100644
index 5d0ae4d..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bt-next.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bt-next1.png b/assets/plugins/horizontal-parallax/images/bt-next1.png
deleted file mode 100644
index e68df56..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bt-next1.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bt-prev.png b/assets/plugins/horizontal-parallax/images/bt-prev.png
deleted file mode 100644
index be425d8..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bt-prev.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/bt-prev1.png b/assets/plugins/horizontal-parallax/images/bt-prev1.png
deleted file mode 100644
index 1394872..0000000
Binary files a/assets/plugins/horizontal-parallax/images/bt-prev1.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/kite.png b/assets/plugins/horizontal-parallax/images/kite.png
deleted file mode 100644
index dece774..0000000
Binary files a/assets/plugins/horizontal-parallax/images/kite.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/images/sequence-logo.png b/assets/plugins/horizontal-parallax/images/sequence-logo.png
deleted file mode 100644
index 4b2b833..0000000
Binary files a/assets/plugins/horizontal-parallax/images/sequence-logo.png and /dev/null differ
diff --git a/assets/plugins/horizontal-parallax/js/horizontal-parallax.js b/assets/plugins/horizontal-parallax/js/horizontal-parallax.js
deleted file mode 100644
index 731870f..0000000
--- a/assets/plugins/horizontal-parallax/js/horizontal-parallax.js
+++ /dev/null
@@ -1,14 +0,0 @@
-$(document).ready(function(){
- var options = {
- nextButton: true,
- prevButton: true,
- preloader: true,
- navigationSkipThreshold: 1000,
- fadeFrameWhenSkipped: false
- };
- var sequence = $("#sequence").sequence(options).data("sequence");
-
- sequence.afterLoaded = function(){
- $(".prev, .next").fadeIn(500);
- }
-});
\ No newline at end of file
diff --git a/assets/plugins/horizontal-parallax/js/sequence.jquery-min.js b/assets/plugins/horizontal-parallax/js/sequence.jquery-min.js
deleted file mode 100644
index 450b924..0000000
--- a/assets/plugins/horizontal-parallax/js/sequence.jquery-min.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-Sequence.js (http://www.sequencejs.com)
-Version: 0.8.3 Beta
-Author: Ian Lunn @IanLunn
-Author URL: http://www.ianlunn.co.uk/
-Github: https://github.com/IanLunn/Sequence
-
-This is a FREE script and is available under a MIT License:
-http://www.opensource.org/licenses/mit-license.php
-
-Sequence.js and its dependencies are (c) Ian Lunn Design 2012 unless otherwise stated.
-
-Sequence also relies on the following open source scripts:
-
-- jQuery imagesLoaded 2.1.0 (http://github.com/desandro/imagesloaded)
- Paul Irish et al
- Available under a MIT License: http://www.opensource.org/licenses/mit-license.php
-
-- jQuery TouchWipe 1.1.1 (http://www.netcu.de/jquery-touchwipe-iphone-ipad-library)
- Andreas Waltl, netCU Internetagentur (http://www.netcu.de)
- Available under a MIT License: http://www.opensource.org/licenses/mit-license.php
-
-- Modernizr 2.6.1 Custom Build (http://modernizr.com/)
- Copyright (c) Faruk Ates, Paul Irish, Alex Sexton
- Available under the BSD and MIT licenses: www.modernizr.com/license/
-*/(function(e){function t(t,n,r,i){function f(){s.afterLoaded();s.settings.hideFramesUntilPreloaded&&s.settings.preloader&&s.sequence.children("li").show();if(s.settings.preloader)if(s.settings.hidePreloaderUsingCSS&&s.transitionsSupported){s.prependPreloadingCompleteTo=s.settings.prependPreloadingComplete==1?s.settings.preloader:e(s.settings.prependPreloadingComplete);s.prependPreloadingCompleteTo.addClass("preloading-complete");setTimeout(y,s.settings.hidePreloaderDelay)}else s.settings.preloader.fadeOut(s.settings.hidePreloaderDelay,function(){clearInterval(s.defaultPreloader);y()});else y()}function g(t,n){function l(){var t=e(a),s=e(f);i&&(f.length?i.reject(o,t,s):i.resolve(o));e.isFunction(n)&&n.call(r,o,t,s)}function c(t,n){if(t.src===BLANK||e.inArray(t,u)!==-1)return;u.push(t);n?f.push(t):a.push(t);e.data(t,"imagesLoaded",{isBroken:n,src:t.src});s&&i.notifyWith(e(t),[n,o,e(a),e(f)]);if(o.length===u.length){setTimeout(l);o.unbind(".imagesLoaded")}}BLANK="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";var r=t,i=e.isFunction(e.Deferred)?e.Deferred():0,s=e.isFunction(i.notify),o=r.find("img").add(r.filter("img")),u=[],a=[],f=[];e.isPlainObject(n)&&e.each(n,function(e,t){e==="callback"?n=t:i&&i[e](t)});o.length?o.bind("load.imagesLoaded error.imagesLoaded",function(e){c(e.target,e.type==="error")}).each(function(t,n){var r=n.src,i=e.data(n,"imagesLoaded");if(i&&i.src===r){c(n,i.isBroken);return}if(n.complete&&n.naturalWidth!==undefined){c(n,n.naturalWidth===0||n.naturalHeight===0);return}if(n.readyState||n.complete){n.src=BLANK;n.src=r}}):l()}function y(){e(s.settings.preloader).remove();s.nextButton=s.init.uiElements(s.settings.nextButton,".next");s.prevButton=s.init.uiElements(s.settings.prevButton,".prev");s.pauseButton=s.init.uiElements(s.settings.pauseButton,".pause");s.nextButton!==undefined&&s.nextButton!==!1&&s.settings.showNextButtonOnInit&&s.nextButton.show();s.prevButton!==undefined&&s.prevButton!==!1&&s.settings.showPrevButtonOnInit&&s.prevButton.show();s.pauseButton!==undefined&&s.pauseButton!==!1&&s.pauseButton.show();if(s.settings.pauseIcon!==!1){s.pauseIcon=s.init.uiElements(s.settings.pauseIcon,".pause-icon");s.pauseIcon!==undefined&&s.pauseIcon.hide()}else s.pauseIcon=undefined;s.nextFrameID=s.settings.startingFrameID;if(s.settings.hashTags){s.sequence.children("li").each(function(){s.frameHashID.push(e(this).attr(s.getHashTagFrom))});s.currentHashTag=location.hash.replace("#","");if(s.currentHashTag===undefined||s.currentHashTag==="")s.nextFrameID=s.settings.startingFrameID;else{s.frameHashIndex=e.inArray(s.currentHashTag,s.frameHashID);s.frameHashIndex!==-1?s.nextFrameID=s.frameHashIndex+1:s.nextFrameID=s.settings.startingFrameID}}s.nextFrame=s.sequence.children("li:nth-child("+s.nextFrameID+")");s.nextFrameChildren=s.nextFrame.children();s.sequence.css({width:"100%",height:"100%",position:"relative"});s.sequence.children("li").css({width:"100%",height:"100%",position:"absolute","z-index":1});if(s.transitionsSupported)if(!s.settings.animateStartingFrameIn){s.currentFrameID=s.nextFrameID;s.settings.moveActiveFrameToTop&&s.nextFrame.css("z-index",s.numberOfFrames);s.modifyElements(s.nextFrameChildren,"0s");s.nextFrame.addClass("animate-in");if(s.settings.hashTags&&s.settings.hashChangesOnFirstFrame){s.currentHashTag=s.nextFrame.attr(s.getHashTagFrom);document.location.hash="#"+s.currentHashTag}setTimeout(function(){s.modifyElements(s.nextFrameChildren,"")},100);s.resetAutoPlay(!0,s.settings.autoPlayDelay)}else if(s.settings.reverseAnimationsWhenNavigatingBackwards&&s.settings.autoPlayDirection-1&&s.settings.animateStartingFrameIn){s.modifyElements(s.nextFrameChildren,"0s");s.nextFrame.addClass("animate-out");s.goTo(s.nextFrameID,-1)}else s.goTo(s.nextFrameID,1);else{s.container.addClass("sequence-fallback");s.currentFrameID=s.nextFrameID;if(s.settings.hashTags&&s.settings.hashChangesOnFirstFrame){s.currentHashTag=s.nextFrame.attr(s.getHashTagFrom);document.location.hash="#"+s.currentHashTag}s.sequence.children("li").addClass("animate-in");s.sequence.children(":not(li:nth-child("+s.nextFrameID+"))").css({display:"none",opacity:0});s.resetAutoPlay(!0,s.settings.autoPlayDelay)}s.nextButton!==undefined&&s.nextButton.click(function(){s.next()});s.prevButton!==undefined&&s.prevButton.click(function(){s.prev()});s.pauseButton!==undefined&&s.pauseButton.click(function(){s.pause(!0)});if(s.settings.keyNavigation){var t={left:37,right:39};function n(e,n){var r;for(keyCodes in n){keyCodes==="left"||keyCodes==="right"?r=t[keyCodes]:r=keyCodes;e===parseFloat(r)&&s.initCustomKeyEvent(n[keyCodes])}}e(document).keydown(function(e){var t=String.fromCharCode(e.keyCode);if(t>0&&t<=s.numberOfFrames&&s.settings.numericKeysGoToFrames){s.nextFrameID=t;s.goTo(s.nextFrameID)}n(e.keyCode,s.settings.keyEvents);n(e.keyCode,s.settings.customKeyEvents)})}s.settings.pauseOnHover&&s.settings.autoPlay&&!s.hasTouch&&s.sequence.on({mouseenter:function(){s.mouseover=!0;s.isHardPaused||s.pause()},mouseleave:function(){s.mouseover=!1;s.isHardPaused||s.unpause()}});s.settings.hashTags&&e(window).hashchange(function(){newTag=location.hash.replace("#","");if(s.currentHashTag!==newTag){s.currentHashTag=newTag;s.frameHashIndex=e.inArray(s.currentHashTag,s.frameHashID);if(s.frameHashIndex!==-1){s.nextFrameID=s.frameHashIndex+1;s.goTo(s.nextFrameID)}}});if(s.settings.swipeNavigation&&s.hasTouch){var r,i,o=!1;function u(){s.sequence.on("touchmove",a);r=null;o=!1}function a(e){s.settings.swipePreventsDefault&&e.preventDefault();if(o){var t=e.originalEvent.touches[0].pageX,n=e.originalEvent.touches[0].pageY,a=r-t,f=i-n;if(Math.abs(a)>=s.settings.swipeThreshold){u();a>0?s.initCustomKeyEvent(s.settings.swipeEvents.left):s.initCustomKeyEvent(s.settings.swipeEvents.right)}else if(Math.abs(f)>=s.settings.swipeThreshold){u();f>0?s.initCustomKeyEvent(s.settings.swipeEvents.down):s.initCustomKeyEvent(s.settings.swipeEvents.up)}}}function f(e){if(e.originalEvent.touches.length==1){r=e.originalEvent.touches[0].pageX;i=e.originalEvent.touches[0].pageY;o=!0;s.sequence.on("touchmove",a)}}s.sequence.on("touchstart",f)}}var s=this;s.container=e(t),s.sequence=s.container.children("ul");try{Modernizr.prefixed;if(Modernizr.prefixed===undefined)throw"undefined"}catch(o){i.modernizr()}var u={WebkitTransition:"-webkit-",MozTransition:"-moz-",OTransition:"-o-",msTransition:"-ms-",transition:""},a={WebkitTransition:"webkitTransitionEnd webkitAnimationEnd",MozTransition:"transitionend animationend",OTransition:"otransitionend oanimationend",msTransition:"MSTransitionEnd MSAnimationEnd",transition:"transitionend animationend"};s.prefix=u[Modernizr.prefixed("transition")],s.transitionEnd=a[Modernizr.prefixed("transition")],s.transitionProperties={},s.numberOfFrames=s.sequence.children("li").length,s.transitionsSupported=s.prefix!==undefined?!0:!1,s.hasTouch="ontouchstart"in window?!0:!1,s.active,s.navigationSkipThresholdActive=!1,s.autoPlayTimer,s.isPaused=!1,s.isHardPaused=!1,s.mouseover=!1,s.defaultPreloader,s.nextButton,s.prevButton,s.pauseButton,s.pauseIcon,s.delayUnpause,s.init={uiElements:function(t,n){switch(t){case!1:return undefined;case!0:n===".sequence-preloader"&&i.defaultPreloader(s.container,s.transitionsSupported,s.prefix);return e(n);default:return e(t)}}};s.paused=function(){},s.unpaused=function(){},s.beforeNextFrameAnimatesIn=function(){},s.afterNextFrameAnimatesIn=function(){},s.beforeCurrentFrameAnimatesOut=function(){},s.afterCurrentFrameAnimatesOut=function(){},s.afterLoaded=function(){};s.settings=e.extend({},r,n);s.settings.preloader=s.init.uiElements(s.settings.preloader,".sequence-preloader");s.firstFrame=s.settings.animateStartingFrameIn?!0:!1;s.settings.unpauseDelay=s.settings.unpauseDelay===null?s.settings.autoPlayDelay:s.settings.unpauseDelay;s.currentHashTag;s.getHashTagFrom=s.settings.hashDataAttribute?"data-sequence-hashtag":"id";s.frameHashID=[];s.direction=s.settings.autoPlayDirection;s.settings.hideFramesUntilPreloaded&&s.settings.preloader&&s.sequence.children("li").hide();s.prefix==="-o-"&&(s.transitionsSupported=i.operaTest());s.modifyElements(s.sequence.children("li"),"0s");s.sequence.children("li").removeClass("animate-in");var l=s.settings.preloadTheseFrames.length,c=s.settings.preloadTheseImages.length;if(!s.settings.preloader||l===0&&c===0)e(window).bind("load",function(){f();e(this).unbind("load")});else{function h(t,n){var r=[];if(!n)for(var i=t;i>0;i--)s.sequence.children("li:nth-child("+s.settings.preloadTheseFrames[i-1]+")").find("img").each(function(){r.push(e(this)[0])});else for(var i=t;i>0;i--)r.push(e("body").find('img[src="'+s.settings.preloadTheseImages[i-1]+'"]')[0]);return r}var p=h(l),d=h(c,!0),v=e(p.concat(d)),m=v.length;g(v,f)}}t.prototype={initCustomKeyEvent:function(e){var t=this;switch(e){case"next":t.next();break;case"prev":t.prev();break;case"pause":t.pause(!0)}},modifyElements:function(e,t){var n=this;e.css(n.prefixCSS(n.prefix,{"transition-duration":t,"transition-delay":t}))},prefixCSS:function(e,t){var n={};for(property in t)n[e+property]=t[property];return n},setTransitionProperties:function(t){var n=this;t.each(function(){n.transitionProperties["transition-duration"]=e(this).css(n.prefix+"transition-duration");n.transitionProperties["transition-delay"]=e(this).css(n.prefix+"transition-delay");e(this).css(n.prefixCSS(n.prefix,n.transitionProperties))})},startAutoPlay:function(e){var t=this,e=e===undefined?t.settings.autoPlayDelay:e;t.unpause();t.resetAutoPlay();t.autoPlayTimer=setTimeout(function(){t.settings.autoPlayDirection===1?t.next():t.prev()},e)},stopAutoPlay:function(){var e=this;e.pause(!0);clearTimeout(e.autoPlayTimer)},resetAutoPlay:function(e,t){var n=this;if(e===!0){if(n.settings.autoPlay&&!n.isPaused){clearTimeout(n.autoPlayTimer);n.autoPlayTimer=setTimeout(function(){n.settings.autoPlayDirection===1?n.next():n.prev()},t)}}else clearTimeout(n.autoPlayTimer)},pause:function(e){var t=this;if(!t.isPaused){if(t.pauseButton!==undefined){t.pauseButton.addClass("paused");t.pauseIcon!==undefined&&t.pauseIcon.show()}t.paused();t.isPaused=!0;t.isHardPaused=e?!0:!1;t.resetAutoPlay()}else t.unpause()},unpause:function(e){var t=this;if(t.pauseButton!==undefined){t.pauseButton.removeClass("paused");t.pauseIcon!==undefined&&t.pauseIcon.hide()}t.isPaused=!1;t.isHardPaused=!1;if(!t.active){e!==!1&&t.unpaused();t.resetAutoPlay(!0,t.settings.unpauseDelay)}else t.delayUnpause=!0},next:function(){var e=this;e.nextFrameID=e.currentFrameID!==e.numberOfFrames?e.currentFrameID+1:1;e.goTo(e.nextFrameID,1)},prev:function(){var e=this;e.nextFrameID=e.currentFrameID===1?e.numberOfFrames:e.currentFrameID-1;e.goTo(e.nextFrameID,-1)},goTo:function(e,t){var n=this,e=parseFloat(e);if(e===n.currentFrameID||n.settings.navigationSkip&&n.navigationSkipThresholdActive||!n.settings.navigationSkip&&n.active||!n.transitionsSupported&&n.active||!n.settings.cycle&&t===1&&n.currentFrameID===n.numberOfFrames||!n.settings.cycle&&t===-1&&n.currentFrameID===1||n.settings.preventReverseSkipping&&n.direction!==t&&n.active)return!1;if(n.settings.navigationSkip&&n.active){n.navigationSkipThresholdActive=!0;n.settings.fadeFrameWhenSkipped&&n.nextFrame.stop().animate({opacity:0},n.settings.fadeFrameTime);navigationSkipThresholdTimer=setTimeout(function(){n.navigationSkipThresholdActive=!1},n.settings.navigationSkipThreshold)}if(!n.active||n.settings.navigationSkip){n.active=!0;n.resetAutoPlay();t===undefined?n.direction=e>n.currentFrameID?1:-1:n.direction=t;n.currentFrame=n.sequence.children(".animate-in");n.nextFrame=n.sequence.children("li:nth-child("+e+")");n.frameChildren=n.currentFrame.children();n.nextFrameChildren=n.nextFrame.children();if(n.transitionsSupported){if(n.currentFrame.length!==undefined){n.beforeCurrentFrameAnimatesOut();n.settings.moveActiveFrameToTop&&n.currentFrame.css("z-index",1);n.modifyElements(n.nextFrameChildren,"0s");if(!n.settings.reverseAnimationsWhenNavigatingBackwards||n.direction===1){n.nextFrame.removeClass("animate-out");n.modifyElements(n.frameChildren,"")}else if(n.settings.reverseAnimationsWhenNavigatingBackwards&&n.direction===-1){n.nextFrame.addClass("animate-out");n.setTransitionProperties(n.frameChildren)}}else n.firstFrame=!1;n.active=!0;n.currentFrame.unbind(n.transitionEnd);n.nextFrame.unbind(n.transitionEnd);n.settings.fadeFrameWhenSkipped&&n.nextFrame.css("opacity",1);n.beforeNextFrameAnimatesIn();n.settings.moveActiveFrameToTop&&n.nextFrame.css({"z-index":n.numberOfFrames});!n.settings.reverseAnimationsWhenNavigatingBackwards||n.direction===1?setTimeout(function(){n.modifyElements(n.nextFrameChildren,"");n.waitForAnimationsToComplete(n.nextFrame,n.nextFrameChildren,"in");n.afterCurrentFrameAnimatesOut!=="function () {}"&&n.waitForAnimationsToComplete(n.currentFrame,n.frameChildren,"out")},50):n.settings.reverseAnimationsWhenNavigatingBackwards&&n.direction===-1&&setTimeout(function(){n.modifyElements(n.nextFrameChildren,"");n.setTransitionProperties(n.frameChildren);n.waitForAnimationsToComplete(n.nextFrame,n.nextFrameChildren,"in");n.afterCurrentFrameAnimatesOut!="function () {}"&&n.waitForAnimationsToComplete(n.currentFrame,n.frameChildren,"out")},50);!n.settings.reverseAnimationsWhenNavigatingBackwards||n.direction===1?setTimeout(function(){n.currentFrame.toggleClass("animate-out animate-in");n.nextFrame.addClass("animate-in")},50):n.settings.reverseAnimationsWhenNavigatingBackwards&&n.direction===-1&&setTimeout(function(){n.nextFrame.toggleClass("animate-out animate-in");n.currentFrame.removeClass("animate-in")},50)}else{function r(){n.setHashTag();n.active=!1;n.resetAutoPlay(!0,n.settings.autoPlayDelay)}switch(n.settings.fallback.theme){case"fade":n.sequence.children("li").css({position:"relative"});n.beforeCurrentFrameAnimatesOut();n.currentFrame=n.sequence.children("li:nth-child("+n.currentFrameID+")");n.currentFrame.animate({opacity:0},n.settings.fallback.speed,function(){n.currentFrame.css({display:"none","z-index":"1"});n.afterCurrentFrameAnimatesOut();n.beforeNextFrameAnimatesIn();n.nextFrame.css({display:"block","z-index":n.numberOfFrames}).animate({opacity:1},500,function(){n.afterNextFrameAnimatesIn()});r()});n.sequence.children("li").css({position:"relative"});break;case"slide":default:var i={},s={},o={};if(n.direction===1){i.left="-100%";s.left="100%"}else{i.left="100%";s.left="-100%"}o.left="0";o.opacity=1;n.currentFrame=n.sequence.children("li:nth-child("+n.currentFrameID+")");n.beforeCurrentFrameAnimatesOut();n.currentFrame.animate(i,n.settings.fallback.speed,function(){n.afterCurrentFrameAnimatesOut()});n.beforeNextFrameAnimatesIn();n.nextFrame.show().css(s);n.nextFrame.animate(o,n.settings.fallback.speed,function(){r();n.afterNextFrameAnimatesIn()})}}n.currentFrameID=e}},waitForAnimationsToComplete:function(t,n,r){var i=this;if(r==="out")var s=function(){i.afterCurrentFrameAnimatesOut()};else if(r==="in")var s=function(){i.afterNextFrameAnimatesIn();i.setHashTag();i.active=!1;if(!i.isHardPaused&&!i.mouseover)if(!i.delayUnpause)i.unpause(!1);else{i.delayUnpause=!1;i.unpause()}};n.data("animationEnded",!1);t.bind(i.transitionEnd,function(r){e(r.target).data("animationEnded",!0);var o=!0;n.each(function(){if(e(this).data("animationEnded")===!1){o=!1;return!1}});if(o){t.unbind(i.transitionEnd);s()}})},setHashTag:function(){var t=this;if(t.settings.hashTags){t.currentHashTag=t.nextFrame.attr(t.getHashTagFrom);t.frameHashIndex=e.inArray(t.currentHashTag,t.frameHashID);if(t.frameHashIndex!==-1&&(t.settings.hashChangesOnFirstFrame||!t.firstFrame||!t.transitionsSupported)){t.nextFrameID=t.frameHashIndex+1;document.location.hash="#"+t.currentHashTag}else{t.nextFrameID=t.settings.startingFrameID;t.firstFrame=!1}}}};e.fn.sequence=function(i){var s=this;return s.each(function(){var s=new t(e(this),i,r,n);e(this).data("sequence",s)})};var n={modernizr:function(){window.Modernizr=function(e,t,n){function r(e){v.cssText=e}function i(e,t){return r(prefixes.join(e+";")+(t||""))}function s(e,t){return typeof e===t}function o(e,t){return!!~(""+e).indexOf(t)}function u(e,t){for(var r in e){var i=e[r];if(!o(i,"-")&&v[i]!==n)return t=="pfx"?i:!0}return!1}function a(e,t,r){for(var i in e){var o=t[e[i]];if(o!==n)return r===!1?e[i]:s(o,"function")?o.bind(r||t):o}return!1}function f(e,t,n){var r=e.charAt(0).toUpperCase()+e.slice(1),i=(e+" "+b.join(r+" ")+r).split(" ");return s(t,"string")||s(t,"undefined")?u(i,t):(i=(e+" "+w.join(r+" ")+r).split(" "),a(i,t,n))}var l="2.6.1",c={},h=t.documentElement,p="modernizr",d=t.createElement(p),v=d.style,m,g={}.toString,y="Webkit Moz O ms",b=y.split(" "),w=y.toLowerCase().split(" "),E={svg:"http://www.w3.org/2000/svg"},S={},x={},T={},N=[],C=N.slice,k,L={}.hasOwnProperty,A;!s(L,"undefined")&&!s(L.call,"undefined")?A=function(e,t){return L.call(e,t)}:A=function(e,t){return t in e&&s(e.constructor.prototype[t],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(e){var t=self;if(typeof t!="function")throw new TypeError;var n=C.call(arguments,1),r=function(){if(self instanceof r){var i=function(){};i.prototype=t.prototype;var s=new i,o=t.apply(s,n.concat(C.call(arguments)));return Object(o)===o?o:s}return t.apply(e,n.concat(C.call(arguments)))};return r}),S.svg=function(){return!!t.createElementNS&&!!t.createElementNS(E.svg,"svg").createSVGRect};for(var O in S)A(S,O)&&(k=O.toLowerCase(),c[k]=S[O](),N.push((c[k]?"":"no-")+k));return c.addTest=function(e,t){if(typeof e=="object")for(var r in e)A(e,r)&&c.addTest(r,e[r]);else{e=e.toLowerCase();if(c[e]!==n)return c;t=typeof t=="function"?t():t,enableClasses&&(h.className+=" "+(t?"":"no-")+e),c[e]=t}return c},r(""),d=m=null,c._version=l,c._domPrefixes=w,c._cssomPrefixes=b,c.testProp=function(e){return u([e])},c.testAllProps=f,c.prefixed=function(e,t,n){return t?f(e,t,n):f(e,"pfx")},c}(self,self.document)},defaultPreloader:function(t,n,r){var i='
';e("head").append("");t.prepend(i);if(!Modernizr.svg&&!n){e(".sequence-preloader").prepend('');setInterval(function(){e(".sequence-preloader .circle").fadeToggle(500)},500)}else n||setInterval(function(){e(".sequence-preloader").fadeToggle(500)},500)},operaTest:function(){e("body").append(' ');var t=e("#sequence-opera-test");t.css("-o-transition","1s");return t.css("-o-transition")!="1s"?!1:!0}},r={startingFrameID:1,cycle:!0,animateStartingFrameIn:!1,reverseAnimationsWhenNavigatingBackwards:!0,moveActiveFrameToTop:!0,autoPlay:!0,autoPlayDirection:1,autoPlayDelay:5e3,navigationSkip:!0,navigationSkipThreshold:250,fadeFrameWhenSkipped:!0,fadeFrameTime:150,preventReverseSkipping:!1,nextButton:!1,showNextButtonOnInit:!0,prevButton:!1,showPrevButtonOnInit:!0,pauseButton:!1,unpauseDelay:null,pauseOnHover:!0,pauseIcon:!1,preloader:!1,preloadTheseFrames:[1],preloadTheseImages:[],hideFramesUntilPreloaded:!0,prependPreloadingComplete:!0,hidePreloaderUsingCSS:!0,hidePreloaderDelay:0,keyNavigation:!0,numericKeysGoToFrames:!0,keyEvents:{left:"prev",right:"next"},customKeyEvents:{},swipeNavigation:!0,swipeThreshold:20,swipePreventsDefault:!1,swipeEvents:{left:"prev",right:"next",up:!1,down:!1},hashTags:!1,hashDataAttribute:!1,hashChangesOnFirstFrame:!1,fallback:{theme:"slide",speed:500}}})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/parallax-slider/css/parallax-slider.css b/assets/plugins/parallax-slider/css/parallax-slider.css
deleted file mode 100644
index 48ca46a..0000000
--- a/assets/plugins/parallax-slider/css/parallax-slider.css
+++ /dev/null
@@ -1,722 +0,0 @@
-.da-slider{
- width: 100%;
- height: 427px;
- position: relative;
- margin: 0 auto;
- overflow: hidden;
- background: transparent url(../img/bg.jpg) repeat 0% 0%;
- box-shadow: 0px 1px 1px rgba(0,0,0,0.2), 0px -2px 1px #fff;
- -webkit-transition: background-position 1.4s ease-in-out 0.3s;
- -moz-transition: background-position 1.4s ease-in-out 0.3s;
- -o-transition: background-position 1.4s ease-in-out 0.3s;
- -ms-transition: background-position 1.4s ease-in-out 0.3s;
- transition: background-position 1.4s ease-in-out 0.3s;
-}
-.da-slide{
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
- text-align: left;
-}
-.da-slide-current{
- z-index: 10;
-}
-.da-slider-fb .da-slide{
- left: 100%;
-}
-.da-slider-fb .da-slide.da-slide-current{
- left: 0px;
-}
-.da-slide h2,
-.da-slide p,
-.da-slide .da-link,
-.da-slide .da-img{
- position: absolute;
- opacity: 0;
- left: 110%;
-}
-.da-slider-fb .da-slide h2,
-.da-slider-fb .da-slide p,
-.da-slider-fb .da-slide .da-link{
- left: 10%;
- opacity: 1;
-}
-.da-slider-fb .da-slide .da-img{
- left: 60%;
- opacity: 1;
-}
-.da-slide h2{
- font-family: 'Open Sans', sans-serif;
- color: #f9f9f9;
- line-height:50px;
- top: 100px;
- z-index: 10;
- padding:0;
- margin-left:-2%;
-}
-.da-slide h2 i {
- font-size: 36px;
- font-style:normal;
- background:url(../img/bg-heading.png) repeat;
- padding:0 5px;
- text-transform:uppercase;
-}
-.da-slide p {
- font-family: 'Open Sans', sans-serif;
- font-size:18px;
- font-weight:400;
- line-height: 25px;
- width:100%;
- top: 300px;
- color: #fff;
- overflow: hidden;
- margin-left:-2%;
-}
-.da-slide p i {
- background:url(../img/bg-text.png) repeat;
- padding:0 10px;
- font-style:normal;
-}
-.da-slide .da-img{
- text-align: center;
- width: 50%;
- top: 80px;
- height: 328px;
- line-height: 320px;
- left: 110%; /*60%*/
- margin-left:-16%;
-}
-.da-slide-current .da-img{
- left: 60%;
- opacity: 1;
-}
-
-.da-slide .da-link{
- top: 320px; /*depends on p height*/
- border-radius: 3px !important;
- min-width:15%;
- color: #666;
- text-shadow:0 1px 0 #eee;
- box-shadow: 0 0 4px #bbb;
- border: 1px solid #fff;
- padding: 2px 20px;
- font-size: 25px;
- text-align: center;
- background: rgba(255,255,255,0.2);
-}
-.da-slide .da-link:hover{
- background: rgba(255,255,255,0.3);
- box-shadow: 0 0 5px #eee;
- text-decoration:none;
-}
-.da-dots{
- width: 100%;
- position: absolute;
- text-align: center;
- left: 0px;
- bottom: 15px;
- z-index: 99;
- -moz-user-select: none;
- -webkit-user-select: none;
-}
-.da-dots span{
- display: inline-block;
- position: relative;
- width: 12px;
- height: 12px;
- border-radius: 50% !important;
- background: url(../img/bg-text.png) repeat;
- margin: 3px;
- cursor: pointer;
-}
-.da-dots span.da-dots-current:after{
- content: '';
- width: 8px;
- height: 8px;
- position: absolute;
- top: 2px;
- left: 2px;
- border-radius: 50% !important;
- background:#fff;
-}
-.da-arrows{
- -moz-user-select: none;
- -webkit-user-select: none;
-}
-.da-arrows span{
- background: transparent url(../img/arrows.png) no-repeat;
- position: absolute;
- top: 50%;
- height: 49px;
- width: 49px;
- cursor: pointer;
- z-index: 2000;
- opacity: 0;
- -webkit-transition: opacity 0.4s ease-in-out 0.2s;
- -moz-transition: opacity 0.4s ease-in-out 0.2s;
- -o-transition: opacity 0.4s ease-in-out 0.2s;
- -ms-transition: opacity 0.4s ease-in-out 0.2s;
- transition: opacity 0.4s ease-in-out 0.2s;
-}
-.da-slider:hover .da-arrows span{
- opacity: 0.8;
-}
-.da-slider:hover .da-arrows span:hover{
- opacity: 1;
-}
-.da-arrows span:after{
- content: '';
- position: absolute;
- width: 49px;
- height: 49px;
-}
-.da-arrows span.da-arrows-prev{
- left: 12px;
- background-position:0 -68px;
-}
-.da-arrows span.da-arrows-next{
- right: 15px;
- background-position:0 1px;
-}
-
-.da-slide-current h2,
-.da-slide-current p,
-.da-slide-current .da-link{
- left: 10%;
- opacity: 1;
-}
-
-
-/* Animation classes and animations */
-
-/* Slide in from the right*/
-.da-slide-fromright h2{
- -webkit-animation: fromRightAnim1 0.6s ease-in 0.8s both;
- -moz-animation: fromRightAnim1 0.6s ease-in 0.8s both;
- -o-animation: fromRightAnim1 0.6s ease-in 0.8s both;
- -ms-animation: fromRightAnim1 0.6s ease-in 0.8s both;
- animation: fromRightAnim1 0.6s ease-in 0.8s both;
-}
-.da-slide-fromright p{
- -webkit-animation: fromRightAnim2 0.6s ease-in 0.8s both;
- -moz-animation: fromRightAnim2 0.6s ease-in 0.8s both;
- -o-animation: fromRightAnim2 0.6s ease-in 0.8s both;
- -ms-animation: fromRightAnim2 0.6s ease-in 0.8s both;
- animation: fromRightAnim2 0.6s ease-in 0.8s both;
-}
-.da-slide-fromright .da-link{
- -webkit-animation: fromRightAnim3 0.4s ease-in 1.2s both;
- -moz-animation: fromRightAnim3 0.4s ease-in 1.2s both;
- -o-animation: fromRightAnim3 0.4s ease-in 1.2s both;
- -ms-animation: fromRightAnim3 0.4s ease-in 1.2s both;
- animation: fromRightAnim3 0.4s ease-in 1.2s both;
-}
-.da-slide-fromright .da-img{
- -webkit-animation: fromRightAnim4 0.6s ease-in 0.8s both;
- -moz-animation: fromRightAnim4 0.6s ease-in 0.8s both;
- -o-animation: fromRightAnim4 0.6s ease-in 0.8s both;
- -ms-animation: fromRightAnim4 0.6s ease-in 0.8s both;
- animation: fromRightAnim4 0.6s ease-in 0.8s both;
-}
-@-webkit-keyframes fromRightAnim1{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-webkit-keyframes fromRightAnim2{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-webkit-keyframes fromRightAnim3{
- 0%{ left: 110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-webkit-keyframes fromRightAnim4{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@-moz-keyframes fromRightAnim1{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-moz-keyframes fromRightAnim2{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-moz-keyframes fromRightAnim3{
- 0%{ left: 110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-moz-keyframes fromRightAnim4{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@-o-keyframes fromRightAnim1{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-o-keyframes fromRightAnim2{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-o-keyframes fromRightAnim3{
- 0%{ left: 110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-o-keyframes fromRightAnim4{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@-ms-keyframes fromRightAnim1{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-ms-keyframes fromRightAnim2{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-ms-keyframes fromRightAnim3{
- 0%{ left: 110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-ms-keyframes fromRightAnim4{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@keyframes fromRightAnim1{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@keyframes fromRightAnim2{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@keyframes fromRightAnim3{
- 0%{ left: 110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@keyframes fromRightAnim4{
- 0%{ left: 110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-/* Slide in from the left*/
-.da-slide-fromleft h2{
- -webkit-animation: fromLeftAnim1 0.6s ease-in 0.6s both;
- -moz-animation: fromLeftAnim1 0.6s ease-in 0.6s both;
- -o-animation: fromLeftAnim1 0.6s ease-in 0.6s both;
- -ms-animation: fromLeftAnim1 0.6s ease-in 0.6s both;
- animation: fromLeftAnim1 0.6s ease-in 0.6s both;
-}
-.da-slide-fromleft p{
- -webkit-animation: fromLeftAnim2 0.6s ease-in 0.6s both;
- -moz-animation: fromLeftAnim2 0.6s ease-in 0.6s both;
- -o-animation: fromLeftAnim2 0.6s ease-in 0.6s both;
- -ms-animation: fromLeftAnim2 0.6s ease-in 0.6s both;
- animation: fromLeftAnim2 0.6s ease-in 0.6s both;
-}
-.da-slide-fromleft .da-link{
- -webkit-animation: fromLeftAnim3 0.4s ease-in 1.2s both;
- -moz-animation: fromLeftAnim3 0.4s ease-in 1.2s both;
- -o-animation: fromLeftAnim3 0.4s ease-in 1.2s both;
- -ms-animation: fromLeftAnim3 0.4s ease-in 1.2s both;
- animation: fromLeftAnim3 0.4s ease-in 1.2s both;
-}
-.da-slide-fromleft .da-img{
- -webkit-animation: fromLeftAnim4 0.6s ease-in 0.6s both;
- -moz-animation: fromLeftAnim4 0.6s ease-in 0.6s both;
- -o-animation: fromLeftAnim4 0.6s ease-in 0.6s both;
- -ms-animation: fromLeftAnim4 0.6s ease-in 0.6s both;
- animation: fromLeftAnim4 0.6s ease-in 0.6s both;
-}
-@-webkit-keyframes fromLeftAnim1{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-webkit-keyframes fromLeftAnim2{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-webkit-keyframes fromLeftAnim3{
- 0%{ left: -110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-webkit-keyframes fromLeftAnim4{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@-moz-keyframes fromLeftAnim1{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-moz-keyframes fromLeftAnim2{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-moz-keyframes fromLeftAnim3{
- 0%{ left: -110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-moz-keyframes fromLeftAnim4{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@-o-keyframes fromLeftAnim1{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-o-keyframes fromLeftAnim2{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-o-keyframes fromLeftAnim3{
- 0%{ left: -110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-o-keyframes fromLeftAnim4{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@-ms-keyframes fromLeftAnim1{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-ms-keyframes fromLeftAnim2{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-ms-keyframes fromLeftAnim3{
- 0%{ left: -110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@-ms-keyframes fromLeftAnim4{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-
-@keyframes fromLeftAnim1{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@keyframes fromLeftAnim2{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@keyframes fromLeftAnim3{
- 0%{ left: -110%; opacity: 0; }
- 1%{ left: 10%; opacity: 0; }
- 100%{ left: 10%; opacity: 1; }
-}
-@keyframes fromLeftAnim4{
- 0%{ left: -110%; opacity: 0; }
- 100%{ left: 60%; opacity: 1; }
-}
-/* Slide out to the right */
-.da-slide-toright h2{
- -webkit-animation: toRightAnim1 0.6s ease-in 0.6s both;
- -moz-animation: toRightAnim1 0.6s ease-in 0.6s both;
- -o-animation: toRightAnim1 0.6s ease-in 0.6s both;
- -ms-animation: toRightAnim1 0.6s ease-in 0.6s both;
- animation: toRightAnim1 0.6s ease-in 0.6s both;
-}
-.da-slide-toright p{
- -webkit-animation: toRightAnim2 0.6s ease-in 0.3s both;
- -moz-animation: toRightAnim2 0.6s ease-in 0.3s both;
- -o-animation: toRightAnim2 0.6s ease-in 0.3s both;
- -ms-animation: toRightAnim2 0.6s ease-in 0.3s both;
- animation: toRightAnim2 0.6s ease-in 0.3s both;
-}
-.da-slide-toright .da-link{
- -webkit-animation: toRightAnim3 0.4s ease-in both;
- -moz-animation: toRightAnim3 0.4s ease-in both;
- -o-animation: toRightAnim3 0.4s ease-in both;
- -ms-animation: toRightAnim3 0.4s ease-in both;
- animation: toRightAnim3 0.4s ease-in both;
-}
-.da-slide-toright .da-img{
- -webkit-animation: toRightAnim4 0.6s ease-in both;
- -moz-animation: toRightAnim4 0.6s ease-in both;
- -o-animation: toRightAnim4 0.6s ease-in both;
- -ms-animation: toRightAnim4 0.6s ease-in both;
- animation: toRightAnim4 0.6s ease-in both;
-}
-@-webkit-keyframes toRightAnim1{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-webkit-keyframes toRightAnim2{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-webkit-keyframes toRightAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-webkit-keyframes toRightAnim4{
- 0%{ left: 60%; opacity: 1; }
- 30%{ left: 55%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-
-@-moz-keyframes toRightAnim1{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-moz-keyframes toRightAnim2{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-moz-keyframes toRightAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-moz-keyframes toRightAnim4{
- 0%{ left: 60%; opacity: 1; }
- 30%{ left: 55%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-
-@-o-keyframes toRightAnim1{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-o-keyframes toRightAnim2{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-o-keyframes toRightAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-o-keyframes toRightAnim4{
- 0%{ left: 60%; opacity: 1; }
- 30%{ left: 55%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-
-@-ms-keyframes toRightAnim1{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-ms-keyframes toRightAnim2{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-ms-keyframes toRightAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: 100%; opacity: 0; }
-}
-@-ms-keyframes toRightAnim4{
- 0%{ left: 60%; opacity: 1; }
- 30%{ left: 55%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-
-@keyframes toRightAnim1{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@keyframes toRightAnim2{
- 0%{ left: 10%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-@keyframes toRightAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: 100%; opacity: 0; }
-}
-@keyframes toRightAnim4{
- 0%{ left: 60%; opacity: 1; }
- 30%{ left: 55%; opacity: 1; }
- 100%{ left: 100%; opacity: 0; }
-}
-/* Slide out to the left*/
-.da-slide-toleft h2{
- -webkit-animation: toLeftAnim1 0.6s ease-in both;
- -moz-animation: toLeftAnim1 0.6s ease-in both;
- -o-animation: toLeftAnim1 0.6s ease-in both;
- -ms-animation: toLeftAnim1 0.6s ease-in both;
- animation: toLeftAnim1 0.6s ease-in both;
-}
-.da-slide-toleft p{
- -webkit-animation: toLeftAnim2 0.6s ease-in 0.3s both;
- -moz-animation: toLeftAnim2 0.6s ease-in 0.3s both;
- -o-animation: toLeftAnim2 0.6s ease-in 0.3s both;
- -ms-animation: toLeftAnim2 0.6s ease-in 0.3s both;
- animation: toLeftAnim2 0.6s ease-in 0.3s both;
-}
-.da-slide-toleft .da-link{
- -webkit-animation: toLeftAnim3 0.4s ease-in both;
- -moz-animation: toLeftAnim3 0.4s ease-in both;
- -o-animation: toLeftAnim3 0.4s ease-in both;
- -ms-animation: toLeftAnim3 0.4s ease-in both;
- animation: toLeftAnim3 0.4s ease-in both;
-}
-.da-slide-toleft .da-img{
- -webkit-animation: toLeftAnim4 0.6s ease-in 0.6s both;
- -moz-animation: toLeftAnim4 0.6s ease-in 0.6s both;
- -o-animation: toLeftAnim4 0.6s ease-in 0.6s both;
- -ms-animation: toLeftAnim4 0.6s ease-in 0.6s both;
- animation: toLeftAnim4 0.6s ease-in 0.6s both;
-}
-@-webkit-keyframes toLeftAnim1{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-webkit-keyframes toLeftAnim2{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-webkit-keyframes toLeftAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-webkit-keyframes toLeftAnim4{
- 0%{ left: 60%; opacity: 1; }
- 40%{ left: 70%; opacity: 1; }
- 90%{ left: 0%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-
-@-moz-keyframes toLeftAnim1{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-moz-keyframes toLeftAnim2{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-moz-keyframes toLeftAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-moz-keyframes toLeftAnim4{
- 0%{ left: 60%; opacity: 1; }
- 40%{ left: 70%; opacity: 1; }
- 90%{ left: 0%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-
-@-o-keyframes toLeftAnim1{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-o-keyframes toLeftAnim2{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-o-keyframes toLeftAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-o-keyframes toLeftAnim4{
- 0%{ left: 60%; opacity: 1; }
- 40%{ left: 70%; opacity: 1; }
- 90%{ left: 0%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-
-@-ms-keyframes toLeftAnim1{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-ms-keyframes toLeftAnim2{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-ms-keyframes toLeftAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-@-ms-keyframes toLeftAnim4{
- 0%{ left: 60%; opacity: 1; }
- 40%{ left: 70%; opacity: 1; }
- 90%{ left: 0%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-
-@keyframes toLeftAnim1{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@keyframes toLeftAnim2{
- 0%{ left: 10%; opacity: 1; }
- 30%{ left: 15%; opacity: 1; }
- 100%{ left: -50%; opacity: 0; }
-}
-@keyframes toLeftAnim3{
- 0%{ left: 10%; opacity: 1; }
- 99%{ left: 10%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-@keyframes toLeftAnim4{
- 0%{ left: 60%; opacity: 1; }
- 40%{ left: 70%; opacity: 1; }
- 90%{ left: 0%; opacity: 0; }
- 100%{ left: -50%; opacity: 0; }
-}
-
-/*Higher Resolutions*/
-@media (min-width: 1440px) {
- .da-slide h2,
- .da-slide p {
- margin-left:3%;
- }
- .da-slide .da-img{
- margin-left:-18%;
- }
-}
-
-@media (min-width: 1680px) {
- .da-slide h2,
- .da-slide p {
- margin-left:7%;
- }
- .da-slide .da-img{
- margin-left:-20%;
- }
-}
-
-@media (min-width: 1920px) {
- .da-slide h2,
- .da-slide p {
- margin-left:12%;
- }
- .da-slide .da-img{
- margin-left:-22%;
- }
-}
\ No newline at end of file
diff --git a/assets/plugins/parallax-slider/img/1.png b/assets/plugins/parallax-slider/img/1.png
deleted file mode 100644
index 9d72ee4..0000000
Binary files a/assets/plugins/parallax-slider/img/1.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/arrows.png b/assets/plugins/parallax-slider/img/arrows.png
deleted file mode 100644
index 913adcd..0000000
Binary files a/assets/plugins/parallax-slider/img/arrows.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/bg-heading-blue.png b/assets/plugins/parallax-slider/img/bg-heading-blue.png
deleted file mode 100644
index c0d0285..0000000
Binary files a/assets/plugins/parallax-slider/img/bg-heading-blue.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/bg-heading-light.png b/assets/plugins/parallax-slider/img/bg-heading-light.png
deleted file mode 100644
index 2909b14..0000000
Binary files a/assets/plugins/parallax-slider/img/bg-heading-light.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/bg-heading-orange.png b/assets/plugins/parallax-slider/img/bg-heading-orange.png
deleted file mode 100644
index 07b0ac6..0000000
Binary files a/assets/plugins/parallax-slider/img/bg-heading-orange.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/bg-heading-red.png b/assets/plugins/parallax-slider/img/bg-heading-red.png
deleted file mode 100644
index bc7b8c5..0000000
Binary files a/assets/plugins/parallax-slider/img/bg-heading-red.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/bg-heading.png b/assets/plugins/parallax-slider/img/bg-heading.png
deleted file mode 100644
index d96290e..0000000
Binary files a/assets/plugins/parallax-slider/img/bg-heading.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/bg-text.png b/assets/plugins/parallax-slider/img/bg-text.png
deleted file mode 100644
index ee53d63..0000000
Binary files a/assets/plugins/parallax-slider/img/bg-text.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/bg.jpg b/assets/plugins/parallax-slider/img/bg.jpg
deleted file mode 100644
index 7e6a99a..0000000
Binary files a/assets/plugins/parallax-slider/img/bg.jpg and /dev/null differ
diff --git a/assets/plugins/parallax-slider/img/html5andcss3.png b/assets/plugins/parallax-slider/img/html5andcss3.png
deleted file mode 100644
index 692c67a..0000000
Binary files a/assets/plugins/parallax-slider/img/html5andcss3.png and /dev/null differ
diff --git a/assets/plugins/parallax-slider/js/jquery.cslider.js b/assets/plugins/parallax-slider/js/jquery.cslider.js
deleted file mode 100644
index d9b290c..0000000
--- a/assets/plugins/parallax-slider/js/jquery.cslider.js
+++ /dev/null
@@ -1,320 +0,0 @@
-(function( $, undefined ) {
-
- /*
- * Slider object.
- */
- $.Slider = function( options, element ) {
-
- this.$el = $( element );
-
- this._init( options );
-
- };
-
- $.Slider.defaults = {
- current : 0, // index of current slide
- bgincrement : 50, // increment the bg position (parallax effect) when sliding
- autoplay : true, // slideshow on / off
- interval : 8000 // time between transitions
- };
-
- $.Slider.prototype = {
- _init : function( options ) {
-
- this.options = $.extend( true, {}, $.Slider.defaults, options );
-
- this.$slides = this.$el.children('div.da-slide');
- this.slidesCount = this.$slides.length;
-
- this.current = this.options.current;
-
- if( this.current < 0 || this.current >= this.slidesCount ) {
-
- this.current = 0;
-
- }
-
- this.$slides.eq( this.current ).addClass( 'da-slide-current' );
-
- var $navigation = $( ' ' );
- for( var i = 0; i < this.slidesCount; ++i ) {
-
- $navigation.append( ' ' );
-
- }
- $navigation.appendTo( this.$el );
-
- this.$pages = this.$el.find('nav.da-dots > span');
- this.$navNext = this.$el.find('span.da-arrows-next');
- this.$navPrev = this.$el.find('span.da-arrows-prev');
-
- this.isAnimating = false;
-
- this.bgpositer = 0;
-
- this.cssAnimations = Modernizr.cssanimations;
- this.cssTransitions = Modernizr.csstransitions;
-
- if( !this.cssAnimations || !this.cssAnimations ) {
-
- this.$el.addClass( 'da-slider-fb' );
-
- }
-
- this._updatePage();
-
- // load the events
- this._loadEvents();
-
- // slideshow
- if( this.options.autoplay ) {
-
- this._startSlideshow();
-
- }
-
- },
- _navigate : function( page, dir ) {
-
- var $current = this.$slides.eq( this.current ), $next, _self = this;
-
- if( this.current === page || this.isAnimating ) return false;
-
- this.isAnimating = true;
-
- // check dir
- var classTo, classFrom, d;
-
- if( !dir ) {
-
- ( page > this.current ) ? d = 'next' : d = 'prev';
-
- }
- else {
-
- d = dir;
-
- }
-
- if( this.cssAnimations && this.cssAnimations ) {
-
- if( d === 'next' ) {
-
- classTo = 'da-slide-toleft';
- classFrom = 'da-slide-fromright';
- ++this.bgpositer;
-
- }
- else {
-
- classTo = 'da-slide-toright';
- classFrom = 'da-slide-fromleft';
- --this.bgpositer;
-
- }
-
- this.$el.css( 'background-position' , this.bgpositer * this.options.bgincrement + '% 0%' );
-
- }
-
- this.current = page;
-
- $next = this.$slides.eq( this.current );
-
- if( this.cssAnimations && this.cssAnimations ) {
-
- var rmClasses = 'da-slide-toleft da-slide-toright da-slide-fromleft da-slide-fromright';
- $current.removeClass( rmClasses );
- $next.removeClass( rmClasses );
-
- $current.addClass( classTo );
- $next.addClass( classFrom );
-
- $current.removeClass( 'da-slide-current' );
- $next.addClass( 'da-slide-current' );
-
- }
-
- // fallback
- if( !this.cssAnimations || !this.cssAnimations ) {
-
- $next.css( 'left', ( d === 'next' ) ? '100%' : '-100%' ).stop().animate( {
- left : '0%'
- }, 1000, function() {
- _self.isAnimating = false;
- });
-
- $current.stop().animate( {
- left : ( d === 'next' ) ? '-100%' : '100%'
- }, 1000, function() {
- $current.removeClass( 'da-slide-current' );
- });
-
- }
-
- this._updatePage();
-
- },
- _updatePage : function() {
-
- this.$pages.removeClass( 'da-dots-current' );
- this.$pages.eq( this.current ).addClass( 'da-dots-current' );
-
- },
- _startSlideshow : function() {
-
- var _self = this;
-
- this.slideshow = setTimeout( function() {
-
- var page = ( _self.current < _self.slidesCount - 1 ) ? page = _self.current + 1 : page = 0;
- _self._navigate( page, 'next' );
-
- if( _self.options.autoplay ) {
-
- _self._startSlideshow();
-
- }
-
- }, this.options.interval );
-
- },
- page : function( idx ) {
-
- if( idx >= this.slidesCount || idx < 0 ) {
-
- return false;
-
- }
-
- if( this.options.autoplay ) {
-
- clearTimeout( this.slideshow );
- this.options.autoplay = false;
-
- }
-
- this._navigate( idx );
-
- },
- _loadEvents : function() {
-
- var _self = this;
-
- this.$pages.on( 'click.cslider', function( event ) {
-
- _self.page( $(this).index() );
- return false;
-
- });
-
- this.$navNext.on( 'click.cslider', function( event ) {
-
- if( _self.options.autoplay ) {
-
- clearTimeout( _self.slideshow );
- _self.options.autoplay = false;
-
- }
-
- var page = ( _self.current < _self.slidesCount - 1 ) ? page = _self.current + 1 : page = 0;
- _self._navigate( page, 'next' );
- return false;
-
- });
-
- this.$navPrev.on( 'click.cslider', function( event ) {
-
- if( _self.options.autoplay ) {
-
- clearTimeout( _self.slideshow );
- _self.options.autoplay = false;
-
- }
-
- var page = ( _self.current > 0 ) ? page = _self.current - 1 : page = _self.slidesCount - 1;
- _self._navigate( page, 'prev' );
- return false;
-
- });
-
- if( this.cssTransitions ) {
-
- if( !this.options.bgincrement ) {
-
- this.$el.on( 'webkitAnimationEnd.cslider animationend.cslider OAnimationEnd.cslider', function( event ) {
-
- if( event.originalEvent.animationName === 'toRightAnim4' || event.originalEvent.animationName === 'toLeftAnim4' ) {
-
- _self.isAnimating = false;
-
- }
-
- });
-
- }
- else {
-
- this.$el.on( 'webkitTransitionEnd.cslider transitionend.cslider OTransitionEnd.cslider', function( event ) {
-
- if( event.target.id === _self.$el.attr( 'id' ) )
- _self.isAnimating = false;
-
- });
-
- }
-
- }
-
- }
- };
-
- var logError = function( message ) {
- if ( this.console ) {
- console.error( message );
- }
- };
-
- $.fn.cslider = function( options ) {
-
- if ( typeof options === 'string' ) {
-
- var args = Array.prototype.slice.call( arguments, 1 );
-
- this.each(function() {
-
- var instance = $.data( this, 'cslider' );
-
- if ( !instance ) {
- logError( "cannot call methods on cslider prior to initialization; " +
- "attempted to call method '" + options + "'" );
- return;
- }
-
- if ( !$.isFunction( instance[options] ) || options.charAt(0) === "_" ) {
- logError( "no such method '" + options + "' for cslider instance" );
- return;
- }
-
- instance[ options ].apply( instance, args );
-
- });
-
- }
- else {
-
- this.each(function() {
-
- var instance = $.data( this, 'cslider' );
- if ( !instance ) {
- $.data( this, 'cslider', new $.Slider( options, this ) );
- }
- });
-
- }
-
- return this;
-
- };
-
-})( jQuery );
\ No newline at end of file
diff --git a/assets/plugins/parallax-slider/js/modernizr.js b/assets/plugins/parallax-slider/js/modernizr.js
deleted file mode 100644
index 762dbd6..0000000
--- a/assets/plugins/parallax-slider/js/modernizr.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/* Modernizr 2.5.3 (Custom Build) | MIT & BSD
- * Build: http://www.modernizr.com/download/#-cssanimations-csstransitions-shiv-cssclasses-testprop-testallprops-domprefixes-load
- */
-;window.Modernizr=function(a,b,c){function x(a){j.cssText=a}function y(a,b){return x(prefixes.join(a+";")+(b||""))}function z(a,b){return typeof a===b}function A(a,b){return!!~(""+a).indexOf(b)}function B(a,b){for(var d in a)if(j[a[d]]!==c)return b=="pfx"?a[d]:!0;return!1}function C(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:z(f,"function")?f.bind(d||b):f}return!1}function D(a,b,c){var d=a.charAt(0).toUpperCase()+a.substr(1),e=(a+" "+n.join(d+" ")+d).split(" ");return z(b,"string")||z(b,"undefined")?B(e,b):(e=(a+" "+o.join(d+" ")+d).split(" "),C(e,b,c))}var d="2.5.3",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m="Webkit Moz O ms",n=m.split(" "),o=m.toLowerCase().split(" "),p={},q={},r={},s=[],t=s.slice,u,v={}.hasOwnProperty,w;!z(v,"undefined")&&!z(v.call,"undefined")?w=function(a,b){return v.call(a,b)}:w=function(a,b){return b in a&&z(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=t.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(t.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(t.call(arguments)))};return e}),p.cssanimations=function(){return D("animationName")},p.csstransitions=function(){return D("transition")};for(var E in p)w(p,E)&&(u=E.toLowerCase(),e[u]=p[E](),s.push((e[u]?"":"no-")+u));return x(""),i=k=null,function(a,b){function g(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML=" ",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,e._domPrefixes=o,e._cssomPrefixes=n,e.testProp=function(a){return B([a])},e.testAllProps=D,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+s.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f *',
- dx: 0,
- dy: 0
- };
- $.extend(options, customOptions);
-
- if ($.browser.msie || (typeof($.fn.scale) == 'undefined')) {
- // Got IE and want scaling effect? Kiss my ass.
- options.useScaling = false;
- }
-
- var callbackFunction;
- if (typeof(arguments[1]) == 'function') {
- var callbackFunction = arguments[1];
- } else if (typeof(arguments[2] == 'function')) {
- var callbackFunction = arguments[2];
- }
-
-
- return this.each(function (i) {
- var val;
- var animationQueue = []; // used to store all the animation params before starting the animation; solves initial animation slowdowns
- var $collection = $(collection).clone(); // destination (target) collection
- var $sourceParent = $(this); // source, the visible container of source collection
- var sourceHeight = $(this).css('height'); // used to keep height and document flow during the animation
-
- var destHeight;
- var adjustHeightOnCallback = false;
-
- var offset = $($sourceParent).offset(); // offset of visible container, used in animation calculations
- var offsets = []; // coordinates of every source collection item
-
- var $source = $(this).find(options.selector); // source collection items
-
- // Replace the collection and quit if IE6
- if ($.browser.msie && $.browser.version.substr(0,1)<7) {
- $sourceParent.html('').append($collection);
- return;
- }
-
- // Gets called when any animation is finished
- var postCallbackPerformed = 0; // prevents the function from being called more than one time
- var postCallback = function () {
-
- if (!postCallbackPerformed) {
- postCallbackPerformed = 1;
-
- // hack:
- // used to be: $sourceParent.html($dest.html()); // put target HTML into visible source container
- // but new webkit builds cause flickering when replacing the collections
- $toDelete = $sourceParent.find('> *');
- $sourceParent.prepend($dest.find('> *'));
- $toDelete.remove();
-
- if (adjustHeightOnCallback) {
- $sourceParent.css('height', destHeight);
- }
- options.enhancement($sourceParent); // Perform custom visual enhancements on a newly replaced collection
- if (typeof callbackFunction == 'function') {
- callbackFunction.call(this);
- }
- }
- };
-
- // Position: relative situations
- var $correctionParent = $sourceParent.offsetParent();
- var correctionOffset = $correctionParent.offset();
- if ($correctionParent.css('position') == 'relative') {
- if ($correctionParent.get(0).nodeName.toLowerCase() == 'body') {
-
- } else {
- correctionOffset.top += (parseFloat($correctionParent.css('border-top-width')) || 0);
- correctionOffset.left +=( parseFloat($correctionParent.css('border-left-width')) || 0);
- }
- } else {
- correctionOffset.top -= (parseFloat($correctionParent.css('border-top-width')) || 0);
- correctionOffset.left -= (parseFloat($correctionParent.css('border-left-width')) || 0);
- correctionOffset.top -= (parseFloat($correctionParent.css('margin-top')) || 0);
- correctionOffset.left -= (parseFloat($correctionParent.css('margin-left')) || 0);
- }
-
- // perform custom corrections from options (use when Quicksand fails to detect proper correction)
- if (isNaN(correctionOffset.left)) {
- correctionOffset.left = 0;
- }
- if (isNaN(correctionOffset.top)) {
- correctionOffset.top = 0;
- }
-
- correctionOffset.left -= options.dx;
- correctionOffset.top -= options.dy;
-
- // keeps nodes after source container, holding their position
- $sourceParent.css('height', $(this).height());
-
- // get positions of source collections
- $source.each(function (i) {
- offsets[i] = $(this).offset();
- });
-
- // stops previous animations on source container
- $(this).stop();
- var dx = 0; var dy = 0;
- $source.each(function (i) {
- $(this).stop(); // stop animation of collection items
- var rawObj = $(this).get(0);
- if (rawObj.style.position == 'absolute') {
- dx = -options.dx;
- dy = -options.dy;
- } else {
- dx = options.dx;
- dy = options.dy;
- }
-
- rawObj.style.position = 'absolute';
- rawObj.style.margin = '0';
-
- rawObj.style.top = (offsets[i].top - parseFloat(rawObj.style.marginTop) - correctionOffset.top + dy) + 'px';
- rawObj.style.left = (offsets[i].left - parseFloat(rawObj.style.marginLeft) - correctionOffset.left + dx) + 'px';
- });
-
- // create temporary container with destination collection
- var $dest = $($sourceParent).clone();
- var rawDest = $dest.get(0);
- rawDest.innerHTML = '';
- rawDest.setAttribute('id', '');
- rawDest.style.height = 'auto';
- rawDest.style.width = $sourceParent.width() + 'px';
- $dest.append($collection);
- // insert node into HTML
- // Note that the node is under visible source container in the exactly same position
- // The browser render all the items without showing them (opacity: 0.0)
- // No offset calculations are needed, the browser just extracts position from underlayered destination items
- // and sets animation to destination positions.
- $dest.insertBefore($sourceParent);
- $dest.css('opacity', 0.0);
- rawDest.style.zIndex = -1;
-
- rawDest.style.margin = '0';
- rawDest.style.position = 'absolute';
- rawDest.style.top = offset.top - correctionOffset.top + 'px';
- rawDest.style.left = offset.left - correctionOffset.left + 'px';
-
-
-
-
-
- if (options.adjustHeight === 'dynamic') {
- // If destination container has different height than source container
- // the height can be animated, adjusting it to destination height
- $sourceParent.animate({height: $dest.height()}, options.duration, options.easing);
- } else if (options.adjustHeight === 'auto') {
- destHeight = $dest.height();
- if (parseFloat(sourceHeight) < parseFloat(destHeight)) {
- // Adjust the height now so that the items don't move out of the container
- $sourceParent.css('height', destHeight);
- } else {
- // Adjust later, on callback
- adjustHeightOnCallback = true;
- }
- }
-
- // Now it's time to do shuffling animation
- // First of all, we need to identify same elements within source and destination collections
- $source.each(function (i) {
- var destElement = [];
- if (typeof(options.attribute) == 'function') {
-
- val = options.attribute($(this));
- $collection.each(function() {
- if (options.attribute(this) == val) {
- destElement = $(this);
- return false;
- }
- });
- } else {
- destElement = $collection.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']');
- }
- if (destElement.length) {
- // The item is both in source and destination collections
- // It it's under different position, let's move it
- if (!options.useScaling) {
- animationQueue.push(
- {
- element: $(this),
- animation:
- {top: destElement.offset().top - correctionOffset.top,
- left: destElement.offset().left - correctionOffset.left,
- opacity: 1.0
- }
- });
-
- } else {
- animationQueue.push({
- element: $(this),
- animation: {top: destElement.offset().top - correctionOffset.top,
- left: destElement.offset().left - correctionOffset.left,
- opacity: 1.0,
- scale: '1.0'
- }
- });
-
- }
- } else {
- // The item from source collection is not present in destination collections
- // Let's remove it
- if (!options.useScaling) {
- animationQueue.push({element: $(this),
- animation: {opacity: '0.0'}});
- } else {
- animationQueue.push({element: $(this), animation: {opacity: '0.0',
- scale: '0.0'}});
- }
- }
- });
-
- $collection.each(function (i) {
- // Grab all items from target collection not present in visible source collection
-
- var sourceElement = [];
- var destElement = [];
- if (typeof(options.attribute) == 'function') {
- val = options.attribute($(this));
- $source.each(function() {
- if (options.attribute(this) == val) {
- sourceElement = $(this);
- return false;
- }
- });
-
- $collection.each(function() {
- if (options.attribute(this) == val) {
- destElement = $(this);
- return false;
- }
- });
- } else {
- sourceElement = $source.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']');
- destElement = $collection.filter('[' + options.attribute + '=' + $(this).attr(options.attribute) + ']');
- }
-
- var animationOptions;
- if (sourceElement.length === 0) {
- // No such element in source collection...
- if (!options.useScaling) {
- animationOptions = {
- opacity: '1.0'
- };
- } else {
- animationOptions = {
- opacity: '1.0',
- scale: '1.0'
- };
- }
- // Let's create it
- d = destElement.clone();
- var rawDestElement = d.get(0);
- rawDestElement.style.position = 'absolute';
- rawDestElement.style.margin = '0';
- rawDestElement.style.top = destElement.offset().top - correctionOffset.top + 'px';
- rawDestElement.style.left = destElement.offset().left - correctionOffset.left + 'px';
- d.css('opacity', 0.0); // IE
- if (options.useScaling) {
- d.css('transform', 'scale(0.0)');
- }
- d.appendTo($sourceParent);
-
- animationQueue.push({element: $(d),
- animation: animationOptions});
- }
- });
-
- $dest.remove();
- options.enhancement($sourceParent); // Perform custom visual enhancements during the animation
- for (i = 0; i < animationQueue.length; i++) {
- animationQueue[i].element.animate(animationQueue[i].animation, options.duration, options.easing, postCallback);
- }
- });
- };
-})(jQuery);
\ No newline at end of file
diff --git a/assets/plugins/portfolioSorting/js/sorting.js b/assets/plugins/portfolioSorting/js/sorting.js
deleted file mode 100644
index fd24b8a..0000000
--- a/assets/plugins/portfolioSorting/js/sorting.js
+++ /dev/null
@@ -1,30 +0,0 @@
-$(document).ready(function(){
- var pclone = $(".portfolio").clone();
-
- $("#sort a").on("click", function(e){
- e.preventDefault();
- var sorttype = $(this).attr("class");
-
- // determine if another link is selected
- if(!$(this).hasClass("selected")) {
- $("#sort a").removeClass("selected");
- $(this).addClass("selected");
- }
-
- // check filter sort type
- if(sorttype == "all") {
- var filterselect = pclone.find("li");
- } else {
- var filterselect = pclone.find("li[class="+sorttype+"]");
- }
-
- $(".portfolio").quicksand(filterselect,
- {
- adjustHeight: 'auto',
- duration: 550
- }, function() {
- // callback function
- });
-
- }); // end click event listener
-});
\ No newline at end of file
diff --git a/assets/plugins/revolution_slider/css/preview.css b/assets/plugins/revolution_slider/css/preview.css
deleted file mode 100644
index 968b02b..0000000
--- a/assets/plugins/revolution_slider/css/preview.css
+++ /dev/null
@@ -1,251 +0,0 @@
-/*-----------------------------------------------------------------------------
-
-KENBURNER RESPONSIVE BASIC STYLES OF HTML DOCUMENT
-
-Screen Stylesheet
-
-version: 1.0
-date: 07/27/11
-author: themepunch
-email: support@themepunch.com
-website: http://www.themepunch.com
------------------------------------------------------------------------------*/
-
-
-/**********************
- - RESET -
-************************/
-html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
- margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent;
-}
-
-* {
- -moz-user-select: none;
- -khtml-user-select: none;
- -webkit-user-select: none;
- -o-user-select: none;
-
-}
-
-/***********************
- - BASICS -
-***********************/
-html {
- overflow-x:hidden;
- padding: 0 !important;
- background-image:url(../images/tiles/bgtile.png);
- margin:0px !important;
-}
-
-
-ol, ul { list-style: none; }
-
-a { text-decoration:none;}
-
-.clear { clear:both;}
-.space10 { width:100%;height:10px;}
-.space15 { width:100%;height:15px;}
-.space20 { width:100%;height:20px;}
-.space30 { width:100%;height:30px;}
-.space40 { width:100%;height:40px;}
-
-/************************
- - HEADER -
-************************/
-
-
-.header { max-width:960px; margin:auto; padding:0px 20px;}
-
-.header .left { float:left; }
-.header .right { float:right;}
-
-.header .logo { margin-top:20px; margin-bottom:15px; width:360px; height:100px; background:url(../images/tiles/logo.png) no-repeat;}
-
-.divider { max-width:960px; margin:auto;height:10px; background:url(../images/tiles/divider.png) repeat;}
-
-.menupoint, .menupoint:visited { color:#000; font-weight:800; font-family: 'Open Sans', sans-serif; font-size:13px; line-height:52px; padding:0px 20px; border-right:1px solid #cdc;}
-.menupoint:hover, .menupoint.red { color:#D31E00; }
-
-.menupoint:first-child { padding-left:0px;}
-.menupoint:last-child { border-right:none; padding-right:0px;}
-
-.purchase { -webkit-border-radius:5px; border-radius:5px; -moz-border-radius:5px;
- background-color:rgba(211,30,0,0.5);
- padding:3px 2px 3px 3px;
- margin-top:40px;
- }
-
-.purchase-inside { -webkit-border-radius:5px; border-radius:5px; -moz-border-radius:5px;
- color:#fff; background-color:#D31E00;
- font-family: 'Open Sans', sans-serif; font-size:13px; line-height:30px; font-weight:300;
- padding:0px 17px;
-
- cursor:pointer;
- }
-
-.purchase:hover { background:rgba(0,0,0,0.5); }
-.purchase:hover .purchase-inside { background:#000;}
-
-
-
-/***************************
- - CONFIGURATOR -
-*****************************/
-
-.configurator { max-width:960px; margin:auto; padding:0px 20px;}
-.one_third { width:32%;margin-right:2%; float:left;}
-.one_third.last { margin-right:0}
-
-.configurator table tr { width:100%; color:#D31E00; font-weight:900; font-family: 'Open Sans', sans-serif; font-size:37px; line-height:39px; }
-.config_title.small { font-size:18px; white-space:nowrap; }
-
-.configurator table td:first-child { padding-right:10px;}
-.configurator table td.divider { width:100%; height:10px; background:url(../images/tiles/divider.png) repeat-x left 24px;}
-.configurator table td.divider.small { width:100%; height:10px; background:url(../images/tiles/divider.png) repeat-x left 18px;}
-
-.configurator .conftitle { color:#000; font-weight:800; font-family: 'Open Sans', sans-serif; font-size:12px;}
-.configurator .conftitle span { font-size:10px; font-weight:500; color:#999;}
-
-.configurator .selecter { position:relative; min-width:200px; max-width:320px; margin:5px auto 0px;}
-.configurator select { min-width:200px; max-width:320px; width:100%; opacity:0; -moz-opacity: 0; -webkit-opacity: 0; filter: alpha(opacity = 0); cursor:pointer; background:#fff; height:30px; }
-
-
-.configurator .dropdown { min-width:200px; max-width:320px; width:100%; height:28px;
- position:absolute;top:0px; left:0px;
- background-color:#fff;
- -webkit-border-radius:5px; border-radius:5px; -moz-border-radius:5px;
- border:1px solid rgba(0,0,0,0.1);
- }
-
-.configurator .dropcontent { line-height:30px;padding:0px 20px;
- font-family: 'Open Sans', sans-serif;font-size:12px;
- color:#404040;
- float:left;
- }
-
-.configurator .dropbutton { width:23px;height:23px; background:url(../images/tiles/dropdown.png) no-repeat;
- float:right;margin-right:2px;
- margin-top:2px;
- }
-.configurator .selecter:hover .dropbutton { background-position:bottom;}
-
-.configurator .inputfield { width:154px;height:30px; background:url(../images/tiles/inputfield.png) no-repeat -2px 0px;
- font-family: 'Open Sans', sans-serif;font-size:12px; line-height:30px;padding-left:20px;color:#404040;
- margin-top:5px;
- }
-
-
-.infofield { font-family:Arial; color:#555;font-size:12px; line-height:22px;}
-.infofield span { font-size:13px;font-weight:bold;}
-
-
-.configurator table.features tr td:first-child { width:100px;}
-
-.slogan { text-align:center; color:#4e5b6c; font-weight:900; font-family: 'Open Sans', sans-serif; font-size:28px;}
-.plus { background:url(../images/tiles/plus.png) no-repeat; width:23px; height:23px; float:left; margin-right:5px; cursor:pointer;}
-.minus { background:url(../images/tiles/minus.png) no-repeat; width:23px; height:23px; float:left; cursor:pointer;}
-
-.plus.slot, .minus.slot { margin-top:10px;}
-
-.plus:hover, .minus:hover { background-position:bottom;}
-
-.configurator .pmbutcont { position:relative; min-width:200px; max-width:320px; margin:0px auto 0px; }
-
-
-/******************************
- - ROTATOR -
-*******************************/
-.configurator .rotator { background:url(../images/tiles/rotator.png) no-repeat; width:75px; height:75px; margin-top:-10px;margin-right:10px; position:relative; cursor:pointer;}
-
-.configurator .rotator-line { background:url(../images/tiles/rotator-line.png) no-repeat; width:75px; height:75px; position:absolute; top:0px; left:0px;}
-.configurator .rotator:hover .rotator-line { background-position: bottom;}
-
-.configurator .rotbutcont { min-width:260px; max-width:260px; margin:0px auto 0px; }
-
-
-
-/***********************************
- - THE LIST OF FUNCTIONS -
-************************************/
-.configurator ul li { background:url(../images/tiles/ok.png) no-repeat 0px 4px; padding-left:45px;
- font-family: 'Open Sans', sans-serif;font-size:12px; line-height:15px;padding-left:20px;color:#404040;margin-bottom:10px;
- }
-.configurator ul li span { font-size:13px;font-weight:bold; line-height:15px;}
-
-/***************************************
- - TABLE OF COMPATIBILITY -
-****************************************/
-
-.configurator table.features { width:100%;}
-.configurator table.features tr { font-size:11px;line-height:16px !important; color:#000; font-weight:900; font-family: 'Open Sans', sans-serif;
- height:50px;
- }
-.configurator table.features td { border-bottom:1px solid #ddd; vertical-align:middle;}
-
-.configurator table.features span { font-size:11px;line-height:16px !important; color:#000; font-weight:500;}
-
-.configurator table.features tr.titles { color:#999; font-size:10px; font-weight:500; text-align:center;}
-
-.yo { background:url(../images/tiles/ok.png) no-repeat; width:11px;height:8px; margin:auto;}
-.nop { background:url(../images/tiles/no.png) no-repeat; width:11px;height:8px; margin:auto;}
-
-
-
-/*************************************
- - TESTIMONIALS -
-**************************************/
-.testimonials { padding:20px; background-color:#eee; border:1px solid rgb(229,229,229); margin-bottom:10px;
- font-family: 'Open Sans', sans-serif;font-size:16px; line-height:22px; color:#555; font-weight:300;
- }
-.testimonials span {font-weight:900;}
-
-
-
-
- @media only screen and (min-width: 768px) and (max-width: 959px) {
-
-
- .configurator select,
- .configurator .dropdown { width:100%;}
-
-
-
-
-
- }
-
- @media only screen and (min-width: 480px) and (max-width: 767px) {
-
- .one_third { float:none; width:100%; margin-bottom:20px;}
- .one_third.last { margin-bottom:0px !important;}
- .configurator .conftitle { text-align:center; }
- .configurator .pmbutcont { position:relative; width:207px; margin:0px auto 0px; }
-
- }
-
- @media only screen and (min-width: 0px) and (max-width: 600px) {
-
-
- .logo { margin-bottom:0px;}
- .header .right { clear:left; float:left;}
- .purchase { margin-top:0px; margin-bottom:20px;}
- .configurator .conftitle { text-align:center; }
- .configurator .pmbutcont { position:relative; width:207px; margin:0px auto 0px; }
-
- }
-
- @media only screen and (min-width: 0px) and (max-width: 479px) {
- .one_third { float:none; width:100%; margin-bottom:20px;}
- .one_third.last { margin-bottom:0px !important;}
- .configurator .conftitle { text-align:center; }
- .configurator .pmbutcont { position:relative; width:207px; margin:0px auto 0px; }
-
-
- }
-
-
-
-
-
-
-
diff --git a/assets/plugins/revolution_slider/css/rs-style.css b/assets/plugins/revolution_slider/css/rs-style.css
deleted file mode 100644
index fc31bca..0000000
--- a/assets/plugins/revolution_slider/css/rs-style.css
+++ /dev/null
@@ -1,106 +0,0 @@
-/*-----------------------------------------------------------------------------
-
-KENBURNER RESPONSIVE BASIC STYLES OF HTML DOCUMENT
-
-Screen Stylesheet
-
-version: 1.0
-date: 07/27/11
-author: themepunch
-email: support@themepunch.com
-website: http://www.themepunch.com
------------------------------------------------------------------------------*/
-
-
-
-
-
- /*********************************************************************************************
- - SET THE SCREEN SIZES FOR THE BANNER IF YOU WISH TO MAKE THE BANNER RESOPONSIVE -
- **********************************************************************************************/
-
- /* - THE BANNER CONTAINER (Padding, Shadow, Border etc. ) - */
-
- .bannercontainer {
- background-color:#fff;
- width:960px;
- position:relative;
- position:relative;
- margin-left:auto;
- margin-right:auto;
-
- }
-
- .banner{
- width:960px;
- height:500px;
- position:relative;
- overflow:hidden;
- }
-
-
- .bannercontainer-simple {
- padding:0px;
- background-color:#fff;
- width:960px;
- position:relative;
- position:relative;
- margin-left:auto;
- margin-right:auto;
-
- }
-
- .banner-simple{
- width:960px;
- height:500px;
- position:relative;
- overflow:hidden;
- }
-
- .fullwidthbanner-container{
- width:100% !important;
- position:relative;
- padding:0;
- max-height:500px !important;
- overflow:hidden;
-}
-
-.fullwidthbanner-container .fullwidthabnner {
- width:100% !important;
- max-height:500px !important;
- position:relative;
-}
-
-
-
- @media only screen and (min-width: 768px) and (max-width: 959px) {
-
- .banner, .bannercontainer { width:760px; height:396px;}
-
-
-
-
- }
-
- @media only screen and (min-width: 480px) and (max-width: 767px) {
- .banner, .bannercontainer { width:480px; height:250px; }
-
-
-
-
- }
-
- @media only screen and (min-width: 0px) and (max-width: 479px) {
- .banner, .bannercontainer { width:320px;height:167px; }
-
-
-
-
- }
-
-
-
-
-
-
-
diff --git a/assets/plugins/revolution_slider/images/tiles/bgtile.jpg b/assets/plugins/revolution_slider/images/tiles/bgtile.jpg
deleted file mode 100644
index 69e0db9..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/bgtile.jpg and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/bgtile.png b/assets/plugins/revolution_slider/images/tiles/bgtile.png
deleted file mode 100644
index 1a3a99f..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/bgtile.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/check.png b/assets/plugins/revolution_slider/images/tiles/check.png
deleted file mode 100644
index f316d32..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/check.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/divider.jpg b/assets/plugins/revolution_slider/images/tiles/divider.jpg
deleted file mode 100644
index 3efc014..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/divider.jpg and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/divider.png b/assets/plugins/revolution_slider/images/tiles/divider.png
deleted file mode 100644
index a74e4e9..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/divider.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/dragnotch.png b/assets/plugins/revolution_slider/images/tiles/dragnotch.png
deleted file mode 100644
index b29152a..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/dragnotch.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/dragsliderbg.png b/assets/plugins/revolution_slider/images/tiles/dragsliderbg.png
deleted file mode 100644
index 26e517c..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/dragsliderbg.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/dropdown.png b/assets/plugins/revolution_slider/images/tiles/dropdown.png
deleted file mode 100644
index 600620b..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/dropdown.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/inputfield.png b/assets/plugins/revolution_slider/images/tiles/inputfield.png
deleted file mode 100644
index 6d2724d..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/inputfield.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/logo.png b/assets/plugins/revolution_slider/images/tiles/logo.png
deleted file mode 100644
index 9e7b084..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/logo.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/minishadow.png b/assets/plugins/revolution_slider/images/tiles/minishadow.png
deleted file mode 100644
index 37162cb..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/minishadow.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/minishadow2.png b/assets/plugins/revolution_slider/images/tiles/minishadow2.png
deleted file mode 100644
index ca23260..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/minishadow2.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/minishadow3.png b/assets/plugins/revolution_slider/images/tiles/minishadow3.png
deleted file mode 100644
index 4ae07b9..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/minishadow3.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/minus.png b/assets/plugins/revolution_slider/images/tiles/minus.png
deleted file mode 100644
index f452587..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/minus.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/no.png b/assets/plugins/revolution_slider/images/tiles/no.png
deleted file mode 100644
index 3bcc3a3..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/no.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/ok.png b/assets/plugins/revolution_slider/images/tiles/ok.png
deleted file mode 100644
index c87d6f6..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/ok.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/plus.png b/assets/plugins/revolution_slider/images/tiles/plus.png
deleted file mode 100644
index 115fb75..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/plus.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/radio.png b/assets/plugins/revolution_slider/images/tiles/radio.png
deleted file mode 100644
index 71eff0f..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/radio.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/rotator-line.png b/assets/plugins/revolution_slider/images/tiles/rotator-line.png
deleted file mode 100644
index ef87974..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/rotator-line.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/rotator.png b/assets/plugins/revolution_slider/images/tiles/rotator.png
deleted file mode 100644
index ae38f31..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/rotator.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/shadow3_large.png b/assets/plugins/revolution_slider/images/tiles/shadow3_large.png
deleted file mode 100644
index d9077e1..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/shadow3_large.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/images/tiles/sliderconfigheadline.png b/assets/plugins/revolution_slider/images/tiles/sliderconfigheadline.png
deleted file mode 100644
index af1dee4..0000000
Binary files a/assets/plugins/revolution_slider/images/tiles/sliderconfigheadline.png and /dev/null differ
diff --git a/assets/plugins/revolution_slider/index-fullwidth.html b/assets/plugins/revolution_slider/index-fullwidth.html
deleted file mode 100644
index afcc0bc..0000000
--- a/assets/plugins/revolution_slider/index-fullwidth.html
+++ /dev/null
@@ -1,465 +0,0 @@
-
-
-
-
-
-
- SLIDER REVOLUTION - The Responsive Slider jQuery Plugin
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/plugins/revolution_slider/index-static.html b/assets/plugins/revolution_slider/index-static.html
deleted file mode 100644
index 4326fd0..0000000
--- a/assets/plugins/revolution_slider/index-static.html
+++ /dev/null
@@ -1,826 +0,0 @@
-
-
-
-
-
-
-
-
-
- SLIDER REVOLUTION - The Responsive Slider jQuery Plugin
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- OVER 1000 SATISFIED CUSTOMERS
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- TIMELINED CAPTIONS
-
- MOVE CAPTIONS IN AND OUT ON ONE SLIDE
-
-
-
- STRAWBERRY COCTAIL
-
- $ 7.49
-
-
-
- COKE & RUM
-
- $ 5.99
-
-
-
- MOJITO COCTAIL
-
- $ 6.79
-
-
-
-
-
-
- SLIDER
-
- REVOLUTION
-
- GOT FULLSCREEN VIDEO
-
-
-
-
-
-
-
-
-
-
-
-
- Have Fun Watching the Video
-
-
-
-
-
-
-
- TOUCH ENABLED
-
- AND
-
- RESPONSIVE
-
-
-
-
-
-
-
-
-
-
-
-
-
- A Happy
-
- Holiday Season
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
TRANSITION (TAKES IMMEDIATE EFFECT)
-
-
-
Select a Transition Type
-
-
-
-
- ORIGINAL PREVIEW
- Random Transitions
- STANDARD
- Box Mask
- Box Mask Mosaic
- Slot Zoom Horizontal
- Slot Slide Horizontal
- Slot Fade Horizontal
- Slot Zoom Vertical
- Slot Slide Vertical
- Slot Fade Vertical
- Curtain One
- Curtain Two
- Curtain Three
- Slide Left
- Slide Right
- Slide Up
- Slide Down
- Fade
- PREMIUM
- Fly In
- Cubic
- Turn Off
- 3D Curtain Horizontal
- 3D Curtain Vertical
- Paper Cut
-
-
-
-
-
-
-
-
-
-
-
-
-
ROTATION (SIMPLE TRANSITIONS)
-
0 degrees
-
-
-
-
-
-
-
-
-
-
-
-
SLOT AMOUNT (USED IN TRANSITIONS)
-
-
Pre Defined Slots
-
-
-
-
-
-
-
-
-
-
-
-
-
-
NAVIGATION STYLE
-
-
-
Select a Navigation Style
-
-
-
-
- Round Bullets
- NavBar with Bullets
- Round Bullets (old version)
- Square Bullets (old version)
- NavBar with Bullets (old version)
-
-
-
-
-
-
-
-
NAVIGATION ARROWS
-
-
-
Select Position of Arrows
-
-
-
-
- Vertical Centered
- Next to Bullets
- Hide Arrows
-
-
-
-
-
-
-
-
NAVIGATION THUMBS
-
-
-
Select Navigation Type
-
-
-
-
- Bullets
- Thumbnails
- No Navigation
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- What else can you set ?
-
-
-
-
-
-
-
-
- Change Speed of Transitions
- Set Countdown time per slide and/or Global
- Turn on / off Visibility of Countdown
- Set the Position of Contdown
- Set per slide Link and Target
- Add Unlimited amount of Captions
- Set Start time and speed of Captions
- Set End time and speed of Captions
-
-
-
-
-
-
-
-
- Set differentEnd and Start Transitions of Captions
- Randomrotate, slide, fade Caption Transitions
- Turn on/off Hiding Navigation and set delay
- Set link per Captions
- Add YouTube and Vimeo Captions
- Set Fullscreen YouTube and Vimeo Videos
- Set AutoStart for Videos
- Video Playback stops Countdown
-
-
-
-
-
-
-
- Turn on/off Hover functions
- Set Size and Amount of visible Thumbs
- Turn on / off Touch functions
- Choose between 3 different Shadows
- Use Api to stop, play, swap slides, and many more.
- Set FullWidth ,Responsive or Static size.
- Turn on/off on Hover Stop function
- Option to Link within the slides via Captions
-
-
-
-
-
-
-
-
-
-
-
- Why Use Slider Revolution
-
-
-
-
-
-
- With an abundance of sliders and banner rotators available on the web, why exactly should you chose Slider Revolution over other products? Slider Revolution is a fully developed slide displaying system offering the capability to show images, videos and captions paired with simple, modern and fancy 3D transitions. On top of that, Slider Revolution is fully responsive and mobile optimized and can take on any dimensions.
-
-
-
-
-
-
-
-
- Slider Compatibility
-
-
-
-
-
-
-
-
-
-
- BASIC SLIDER FEATURES
- SIMPLE TRANSITIONS
- PREMIUM TRANSITIONS
- ROTATION
-
-
-
- FIREFOX 10+
-
-
-
-
-
-
-
- WEBKIT CHROME,SAFARI,OPERA
-
-
-
-
-
-
- IE9
-
-
-
-
-
-
-
- IE7 + 8
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Testimonials
-
-
-
-
-
-
-
Over 1000+ happy buyers can‘t be wrong!
-
-
-
- Nicolas-Gilles says:
- Just to let my testimony of appreciation for the support. Efficiency and speed ! 5/5 Good Work Nicolas-Gilles
-
-
- rhj123456 says:
- Wow, you did a really great job on this. I have a whole slider built without looking at the docs. I love that. Nice work!!!.
-
-
- tverdouw says:
- Awesome slider, with awesome options. Thanks!
-
-
- dervish01 says:
- Hi just purchased the plugin and I have to say a great plugin. You can see it at www.acornwebstudio.co.uk really makes websites look great. THANKS .
-
-
- themesplugins says:
- We selected your plugin as Top 100 Plugins for WordPress.
-
-
- sailo says:
- Perfect, thanks themepunch
-
-
-
-
-
-
-
-
-
-